imdb 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/imdb.gemspec +2 -1
- data/lib/imdb/base.rb +18 -1
- data/lib/imdb/movie_list.rb +15 -13
- data/lib/imdb/version.rb +1 -1
- data/spec/fixtures/fullcredits +2267 -0
- data/spec/fixtures/top_250 +10755 -10755
- data/spec/fixtures/tt0242653 +1501 -1501
- data/spec/fixtures/tt1821700 +1311 -0
- data/spec/imdb/movie_spec.rb +13 -1
- data/spec/spec_helper.rb +2 -0
- metadata +10 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5731f8a5fc6bfa0a19f721fa58b42654269ce2d
|
4
|
+
data.tar.gz: fd837bcdd1abee11e69cebf4361229a6651876d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d654bf6a0f2c8fee0307faada4510754bd9ef24ea595995233ec7d2a84c1e836a7ee22af014cf9b84aff5b45196199f5df0f778ada2a091cacf195067d4e87ba
|
7
|
+
data.tar.gz: 67c45eac01484f7a07740d153a81c9c520eddc4627976553b8c29b1cc46bc8b48b520d1a9813dbad944cf2191e2824a11b16a3ddfe908839d3f2bd58b87cfac8
|
data/README.md
CHANGED
data/imdb.gemspec
CHANGED
@@ -19,11 +19,12 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
20
|
s.require_paths = ["lib"]
|
21
21
|
|
22
|
-
s.add_dependency 'nokogiri', '
|
22
|
+
s.add_dependency 'nokogiri', '= 1.6.2.1'
|
23
23
|
|
24
24
|
s.add_development_dependency 'rake', '~> 10.0.3'
|
25
25
|
s.add_development_dependency 'rspec', '~> 2.13.0'
|
26
26
|
s.add_development_dependency 'gokdok'
|
27
27
|
s.add_development_dependency 'rdoc', '~> 4.0'
|
28
28
|
s.add_development_dependency 'fakeweb'
|
29
|
+
|
29
30
|
end
|
data/lib/imdb/base.rb
CHANGED
@@ -2,8 +2,9 @@ module Imdb
|
|
2
2
|
|
3
3
|
# Represents something on IMDB.com
|
4
4
|
class Base
|
5
|
+
|
5
6
|
attr_accessor :id, :url, :title, :also_known_as
|
6
|
-
|
7
|
+
|
7
8
|
# Initialize a new IMDB movie object with it's IMDB id (as a String)
|
8
9
|
#
|
9
10
|
# movie = Imdb::Movie.new("0095016")
|
@@ -48,6 +49,18 @@ module Imdb
|
|
48
49
|
document.search("h5[text()^='Director'] ~ div a").map { |link| link.content.strip } rescue []
|
49
50
|
end
|
50
51
|
|
52
|
+
# Returns the names of Writers
|
53
|
+
def writers
|
54
|
+
writers_list = Array.new
|
55
|
+
i = 0
|
56
|
+
|
57
|
+
fullcredits_document.search("h4[text()^='Writing Credits'] + table tbody tr td[class='name']").map {|name|
|
58
|
+
writers_list[i] = name.content.strip if !writers_list.include? name.content.strip
|
59
|
+
i=i+1
|
60
|
+
} rescue []
|
61
|
+
writers_list
|
62
|
+
end
|
63
|
+
|
51
64
|
# Returns the url to the "Watch a trailer" page
|
52
65
|
def trailer_url
|
53
66
|
'http://imdb.com' + document.at("a[@href*='/video/screenplay/']")["href"] rescue nil
|
@@ -173,6 +186,10 @@ module Imdb
|
|
173
186
|
def releaseinfo_document
|
174
187
|
@releaseinfo_document ||= Nokogiri::HTML(Imdb::Movie.find_by_id(@id, "releaseinfo"))
|
175
188
|
end
|
189
|
+
|
190
|
+
def fullcredits_document
|
191
|
+
@fullcredits_document ||= Nokogiri::HTML(Imdb::Movie.find_by_id(@id, "fullcredits"))
|
192
|
+
end
|
176
193
|
|
177
194
|
# Use HTTParty to fetch the raw HTML for this movie.
|
178
195
|
def self.find_by_id(imdb_id, page = :combined)
|
data/lib/imdb/movie_list.rb
CHANGED
@@ -1,33 +1,35 @@
|
|
1
1
|
module Imdb
|
2
2
|
|
3
3
|
class MovieList
|
4
|
+
|
4
5
|
def movies
|
5
6
|
@movies ||= parse_movies
|
6
7
|
end
|
7
8
|
|
8
9
|
private
|
10
|
+
|
9
11
|
def parse_movies
|
10
12
|
document.search("a[@href^='/title/tt']").reject do |element|
|
11
13
|
element.inner_html.imdb_strip_tags.empty? ||
|
12
14
|
element.inner_html.imdb_strip_tags == "X" ||
|
13
15
|
element.parent.inner_html =~ /media from/i
|
14
|
-
|
15
|
-
|
16
|
+
end.map do |element|
|
17
|
+
id = element['href'][/\d+/]
|
16
18
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
19
|
+
data = element.parent.inner_html.split("<br />")
|
20
|
+
title = (!data[0].nil? && !data[1].nil? && data[0] =~ /img/) ? data[1] : data[0]
|
21
|
+
title = title.imdb_strip_tags.imdb_unescape_html
|
22
|
+
title.gsub!(/\s+\(\d\d\d\d\)$/, '')
|
21
23
|
|
22
|
-
|
24
|
+
alternative_titles = []
|
23
25
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
26
|
+
if title =~ /\saka\s/
|
27
|
+
titles = title.split(/\saka\s/)
|
28
|
+
title = titles.shift.strip.imdb_unescape_html
|
29
|
+
end
|
28
30
|
|
29
|
-
|
30
|
-
|
31
|
+
!title.strip.blank? ? [id, title] : nil
|
32
|
+
end.compact.uniq.map do |values|
|
31
33
|
Imdb::Movie.new(*values)
|
32
34
|
end
|
33
35
|
end
|
data/lib/imdb/version.rb
CHANGED
@@ -0,0 +1,2267 @@
|
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Date: Fri, 31 Jan 2014 10:08:09 GMT
|
3
|
+
Server: HTTPDaemon
|
4
|
+
X-Frame-Options: SAMEORIGIN
|
5
|
+
Cache-Control: private
|
6
|
+
Content-Type: text/html; charset=iso-8859-1
|
7
|
+
Set-Cookie: uu=BCYs1WsZfq5lJLP3BH2tGkP1lfio9IzYzz0wOxNvxOnOMV7Hd-CHxsLESXYGhR7wjvUWA3953VcQG2S9aWPNgflNbeZh-5b2nOfzUV5dLkh5PtgUfKgYvfUitMv9H8FadrhK6v_dFlzvEhWHPoyRP5kBOK4n_AjKt7B9VlzDj6sEteU;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
|
8
|
+
Set-Cookie: cs=83Vlq2dE7X0JTwVQZ8ERTgiOAiSO2RITtsmaRI1agSQNygFHrnoBFx7ZEhQoWVIEjtkkY91OkiSJXeR3/a3nc5mZspee2SSyblESJI7vJDOO2RIkjvkSJI7ZEmTOiWIUg=;expires=Sat, 01 Feb 2014 08:00:00 GMT;path=/;domain=.imdb.com
|
9
|
+
Vary: Accept-Encoding,User-Agent
|
10
|
+
P3P: policyref="http://i.imdb.com/images/p3p.xml",CP="CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC "
|
11
|
+
Transfer-Encoding: chunked
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
<!DOCTYPE html>
|
16
|
+
<html
|
17
|
+
xmlns:og="http://ogp.me/ns#"
|
18
|
+
xmlns:fb="http://www.facebook.com/2008/fbml">
|
19
|
+
<head>
|
20
|
+
<script type="text/javascript">var ue_t0=window.ue_t0||+new Date();</script>
|
21
|
+
<script type="text/javascript">
|
22
|
+
var ue_mid = "A1EVAM02EL8SFB";
|
23
|
+
var ue_sn = "www.imdb.com";
|
24
|
+
var ue_furl = "fls-na.amazon.com";
|
25
|
+
var ue_sid = "926-8691387-9282387";
|
26
|
+
var ue_id = "1KV3QEC1CF4JX1EWYTVV";
|
27
|
+
(function(e){var c=e,a={main_scope:"mainscopecsm",q:[],t0:c.ue_t0||+new Date(),d:g};function g(h){return +new Date()-(h?0:a.t0)}function d(h){return function(){a.q.push({n:h,a:arguments,t:a.d()})}}function b(k,j,h){var i={m:k,f:j,l:h,fromOnError:1,args:arguments};c.ueLogError(i);return false}b.skipTrace=1;e.onerror=b;function f(){c.uex("ld")}if(e.addEventListener){e.addEventListener("load",f,false)}else{if(e.attachEvent){e.attachEvent("onload",f)}}a.tag=d("tag");a.log=d("log");a.reset=d("rst");c.ue_csm=c;c.ue=a;c.ueLogError=d("err");c.ues=d("ues");c.uet=d("uet");c.uex=d("uex");c.uet("ue")})(window);(function(e,d){var a=e.ue||{};function c(g){if(!g){return}var f=d.head||d.getElementsByTagName("head")[0]||d.documentElement,h=d.createElement("script");h.async="async";h.src=g;f.insertBefore(h,f.firstChild)}function b(){var k=e.ue_cdn||"z-ecx.images-amazon.com",g=e.ue_cdns||"images-na.ssl-images-amazon.com",j="/images/G/01/csminstrumentation/",h=e.ue_file||"ue-full-ef584a44e8ea58e3d4d928956600a9b6._V1_.js",f,i;if(h.indexOf("NSTRUMENTATION_FIL")>=0){return}if("ue_https" in e){f=e.ue_https}else{f=e.location&&e.location.protocol=="https:"?1:0}i=f?"https://":"http://";i+=f?g:k;i+=j;i+=h;c(i)}if(!e.ue_inline){b()}a.uels=c;e.ue=a})(window,document);
|
28
|
+
</script>
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
|
33
|
+
|
34
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
35
|
+
<title>Waar (2013) - Full Cast & Crew - IMDb</title>
|
36
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
37
|
+
|
38
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
39
|
+
<link rel="canonical" href="http://www.imdb.com/title/tt1821700/fullcredits/" />
|
40
|
+
<meta property="og:url" content="http://www.imdb.com/title/tt1821700/fullcredits/" />
|
41
|
+
|
42
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
43
|
+
<link rel="icon" type="image/ico" href="http://ia.media-imdb.com/images/G/01/imdb/images/favicon-2165806970._V379387995_.ico" />
|
44
|
+
<link rel="shortcut icon" type="image/x-icon" href="http://ia.media-imdb.com/images/G/01/imdb/images/desktop-favicon-2165806970._V379390718_.ico" />
|
45
|
+
<link href="http://ia.media-imdb.com/images/G/01/imdb/images/mobile/apple-touch-icon-web-4151659188._V361295786_.png" rel="apple-touch-icon">
|
46
|
+
<link href="http://ia.media-imdb.com/images/G/01/imdb/images/mobile/apple-touch-icon-web-76x76-53536248._V361295462_.png" rel="apple-touch-icon" sizes="76x76">
|
47
|
+
<link href="http://ia.media-imdb.com/images/G/01/imdb/images/mobile/apple-touch-icon-web-120x120-2442878471._V361295428_.png" rel="apple-touch-icon" sizes="120x120">
|
48
|
+
<link href="http://ia.media-imdb.com/images/G/01/imdb/images/mobile/apple-touch-icon-web-152x152-1475823641._V361295368_.png" rel="apple-touch-icon" sizes="152x152">
|
49
|
+
<link rel="search" type="application/opensearchdescription+xml" href="http://ia.media-imdb.com/images/G/01/imdb/images/imdbsearch-3349468880._V379388505_.xml" title="IMDb" />
|
50
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
51
|
+
|
52
|
+
|
53
|
+
<link rel='image_src' href="http://ia.media-imdb.com/images/M/MV5BMjI2NjM2MjYzMV5BMl5BanBnXkFtZTgwMjc0NTE1MDE@._V1_SY1200_CR89,0,630,1200_AL_.jpg">
|
54
|
+
<meta property='og:image' content="http://ia.media-imdb.com/images/M/MV5BMjI2NjM2MjYzMV5BMl5BanBnXkFtZTgwMjc0NTE1MDE@._V1_SY1200_CR89,0,630,1200_AL_.jpg" />
|
55
|
+
|
56
|
+
<meta property='og:type' content="video.movie" />
|
57
|
+
<meta property='fb:app_id' content='115109575169727' />
|
58
|
+
<meta property='og:title' content="Waar (2013)" />
|
59
|
+
<meta property='og:site_name' content='IMDb' />
|
60
|
+
<meta name="title" content="Waar (2013) - IMDb" />
|
61
|
+
<meta name="description" content="Waar (2013) cast and crew credits, including actors, actresses, directors, writers and more." />
|
62
|
+
<meta property="og:description" content="Waar (2013) cast and crew credits, including actors, actresses, directors, writers and more." />
|
63
|
+
<meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits" />
|
64
|
+
<meta name="request_id" content="1KV3QEC1CF4JX1EWYTVV" />
|
65
|
+
|
66
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
67
|
+
<!-- h=ics-http-1e-c1xl-i-66614e35.us-east-1 -->
|
68
|
+
|
69
|
+
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/title-2436721979._V336358874_.css" />
|
70
|
+
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/collections/ie-1918465287._V354866480_.css" /><![endif]-->
|
71
|
+
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-mega-3538633082._V355276482_.css" />
|
72
|
+
<noscript>
|
73
|
+
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/wheel/nojs-2627072490._V343672767_.css">
|
74
|
+
</noscript>
|
75
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
76
|
+
|
77
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
|
78
|
+
<script>
|
79
|
+
window.ads_js_start = new Date().getTime();
|
80
|
+
var imdbads = imdbads || {}; imdbads.cmd = imdbads.cmd || [];
|
81
|
+
</script>
|
82
|
+
<!-- begin SRA -->
|
83
|
+
<script>
|
84
|
+
(function(){var d=function(o){return Object.prototype.toString.call(o)==="[object Array]";},g=function(q,p){var o;for(o=0;o<q.length;o++){if(o in q){p.call(null,q[o],o);}}},h=[],k,b,l=false,n=false,f=function(){var o=[],p=[],q={};g(h,function(s){var r="";g(s.dartsite.split("/"),function(t){if(t!==""){if(t in q){}else{q[t]=o.length;o.push(t);}r+="/"+q[t];}});p.push(r);});return{iu_parts:o,enc_prev_ius:p};},c=function(){var o=[];g(h,function(q){var p=[];g(q.sizes,function(r){p.push(r.join("x"));});o.push(p.join("|"));});return o;},m=function(){var o=[];g(h,function(p){o.push(a(p.targeting));});return o.join("|");},a=function(r,o){var q,p,s=[];for(q in r){p=[];for(j=0;j<r[q].length;j++){p.push(encodeURIComponent(r[q][j]));}if(o){s.push(q+"="+encodeURIComponent(p.join(",")));}else{s.push(q+"="+p.join(","));}}return s.join("&");},e=function(){var o=+new Date();if(n){return;}if(!this.readyState||"loaded"===this.readyState){n=true;if(l){imdbads.cmd.push(function(){for(i=0;i<h.length;i++){generic.monitoring.record_metric(h[i].name+".fail",csm.duration(o));}});}}};window.tinygpt={define_slot:function(r,q,o,p){h.push({dartsite:r.replace(/\/$/,""),sizes:q,name:o,targeting:p});},set_targeting:function(o){k=o;},callback:function(p){var q,o={},s,r=+new Date();l=false;for(q=0;q<h.length;q++){s=h[q].dartsite;name=h[q].name;if(p[q][s]){o[name]=p[q][s];}else{window.console&&console.error&&console.error("Unable to correlate GPT response for "+name);}}imdbads.cmd.push(function(){for(q=0;q<h.length;q++){ad_utils.slot_events.trigger(h[q].name,"request",{timestamp:b});ad_utils.slot_events.trigger(h[q].name,"tagdeliver",{timestamp:r});}ad_utils.gpt.handle_response(o);});},send:function(){var r=[],q=function(s,t){if(d(t)){t=t.join(",");}if(t){r.push(s+"="+encodeURIComponent(""+t));}},o,p;if(h.length===0){tinygpt.callback({});return;}q("gdfp_req","1");q("correlator",Math.floor(4503599627370496*Math.random()));q("output","json_html");q("callback","tinygpt.callback");q("impl","fifs");q("json_a","1");result=f();q("iu_parts",result.iu_parts);q("enc_prev_ius",result.enc_prev_ius);q("prev_iu_szs",c());q("prev_scp",m());q("cust_params",a(k,true));o=document.createElement("script");p=document.getElementsByTagName("script")[0];o.async=true;o.type="text/javascript";o.src="http://pubads.g.doubleclick.net/gampad/ads?"+r.join("&");o.id="tinygpt";o.onload=o.onerror=o.onreadystatechange=e;l=true;p.parentNode.insertBefore(o,p);b=+new Date();}};})();</script>
|
85
|
+
<script>
|
86
|
+
tinygpt.define_slot('/4215/imdb2.consumer.title/',
|
87
|
+
[[728,90],[1008,150],[1008,200],[1008,30],[970,250],[9,1]],
|
88
|
+
'top_ad',
|
89
|
+
{
|
90
|
+
'p': ['top','t']
|
91
|
+
});
|
92
|
+
tinygpt.define_slot('/4215/imdb2.consumer.title/',
|
93
|
+
[[300,250],[300,600],[11,1]],
|
94
|
+
'top_rhs',
|
95
|
+
{
|
96
|
+
'p': ['tr']
|
97
|
+
});
|
98
|
+
tinygpt.define_slot('/4215/imdb2.consumer.title/',
|
99
|
+
[[728,90],[2,1]],
|
100
|
+
'bottom_ad',
|
101
|
+
{
|
102
|
+
'p': ['b']
|
103
|
+
});
|
104
|
+
tinygpt.set_targeting({
|
105
|
+
'd' : [],
|
106
|
+
's' : [],
|
107
|
+
'g' : ['ac','th','dr'],
|
108
|
+
'tt' : ['f'],
|
109
|
+
'm' : [],
|
110
|
+
'coo' : ['pk'],
|
111
|
+
'b' : [],
|
112
|
+
'id' : ['tt1821700'],
|
113
|
+
'ab' : ['b'],
|
114
|
+
'bpx' : ['1'],
|
115
|
+
's' : ['3072','3075','32','750a','750','863a','863','3','4','12','67','142','150','283','333','336','337','338','341','343','344','622','762','833','921','1009','1046','1324','2285','3101','3102','3103','3175','3327','3717','4005','4030','4509','5611'],
|
116
|
+
'u': ['607726152806'],
|
117
|
+
'oe': ['utf-8']
|
118
|
+
});
|
119
|
+
tinygpt.send();
|
120
|
+
</script>
|
121
|
+
<!-- begin ads header -->
|
122
|
+
<script src="http://ia.media-imdb.com/images/G/01/imdbads/js/collections/ads-2194844025._V336338557_.js"></script>
|
123
|
+
<script>
|
124
|
+
doWithAds = function(){};
|
125
|
+
</script>
|
126
|
+
<script>
|
127
|
+
doWithAds = function(inside, failureMessage){
|
128
|
+
if ('consoleLog' in window &&
|
129
|
+
'generic' in window &&
|
130
|
+
'ad_utils' in window &&
|
131
|
+
'custom' in window &&
|
132
|
+
'monitoring' in generic &&
|
133
|
+
'document_is_ready' in generic) {
|
134
|
+
try{
|
135
|
+
inside.call(this);
|
136
|
+
}catch(e) {
|
137
|
+
if ( window.ueLogError ) {
|
138
|
+
if(typeof failureMessage !== 'undefined'){
|
139
|
+
e.message = failureMessage;
|
140
|
+
}
|
141
|
+
e.attribution = "Advertising";
|
142
|
+
e.logLevel = "ERROR";
|
143
|
+
ueLogError(e);
|
144
|
+
}
|
145
|
+
if( (document.location.hash.match('debug=1')) &&
|
146
|
+
(typeof failureMessage !== 'undefined') ){
|
147
|
+
console.error(failureMessage);
|
148
|
+
}
|
149
|
+
}
|
150
|
+
} else {
|
151
|
+
if( (document.location.hash.match('debug=1')) &&
|
152
|
+
(typeof failureMessage !== 'undefined') ){
|
153
|
+
console.error(failureMessage);
|
154
|
+
}
|
155
|
+
}
|
156
|
+
};
|
157
|
+
</script><script>
|
158
|
+
doWithAds(function(){
|
159
|
+
generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);
|
160
|
+
ad_utils.weblab.set_treatment('gpt single-request', 'Use GPT ad requests.');
|
161
|
+
generic.monitoring.enable_weblab_metrics('107', '2', [
|
162
|
+
'csm_core_ads_load', 'csm_core_ads_iframe', 'csm_core_ads_reflow', 'csm_core_ads_tagdeliver', 'csm_core_ads_request',
|
163
|
+
'csm_top_ad_load', 'csm_top_ad_iframe', 'csm_top_ad_reflow', 'csm_top_ad_tagdeliver', 'csm_top_ad_request',
|
164
|
+
'csm_top_rhs_load', 'csm_top_rhs_iframe', 'csm_top_rhs_reflow', 'csm_top_rhs_tagdeliver', 'csm_top_rhs_request',
|
165
|
+
'top_ad.got_ad', 'top_rhs.got_ad', 'injected_billboard.got_ad', 'injected_navstrip.got_ad', 'bottom_ad.got_ad',
|
166
|
+
'top_ad.blank', 'top_rhs.blank', 'injected_billboard.blank', 'injected_navstrip.blank', 'bottom_ad.blank',
|
167
|
+
'top_ad.null', 'top_rhs.null', 'injected_billboard.null', 'injected_navstrip.null', 'bottom_ad.null',
|
168
|
+
'page_load'
|
169
|
+
]);
|
170
|
+
generic.monitoring.set_forester_info("title");
|
171
|
+
generic.monitoring.set_twilight_info(
|
172
|
+
"title_subpage",
|
173
|
+
"PK",
|
174
|
+
"aac656ba1d4206edb707ea499f33d1478d460f03",
|
175
|
+
"2014-05-29T12%3A22%3A48GMT",
|
176
|
+
"http://s.media-imdb.com/twilight/?",
|
177
|
+
"consumer");
|
178
|
+
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
179
|
+
generic.monitoring.start_timing("page_load");
|
180
|
+
generic.seconds_to_midnight = 67032;
|
181
|
+
generic.days_to_midnight = 0.7758333086967468;
|
182
|
+
ad_utils.set_slots_on_page({ 'injected_navstrip':1, 'top_rhs':1, 'top_ad':1, 'bottom_ad':1, 'injected_billboard':1 });
|
183
|
+
custom.full_page.data_url = "http://ia.media-imdb.com/images/G/01/imdbads/js/graffiti_data-1150089811._V336142543_.js";
|
184
|
+
consoleLog('advertising initialized','ads');
|
185
|
+
},"ads js missing, skipping ads setup.");
|
186
|
+
var _gaq = _gaq || [];
|
187
|
+
_gaq.push(['_setCustomVar', 4, 'ads_abtest_treatment', 'b']);
|
188
|
+
</script>
|
189
|
+
<script>
|
190
|
+
doWithAds(function(){
|
191
|
+
ad_utils.register_punt_ad("top_ad","728","90"," \r\n\r\n<a target=\"_blank\" href=\"http://aax-us-east.amazon-adsystem.com/x/c/QWCC9Fz6OBD_AlJ-op58NocAAAFGR-7BeQEAAADKYhHWPQ/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWvt5GKWZqLOifZoGhiFtF786Vtf9Wxn6Y22QwLnJsw-U0LzvdqNsM1JXpqlPUaE2JfbAa-BFcYGrrwyAiq21zlHyl-LHWdqiCjhIJrGW8wbBazxqp.mARhbfRPCD1ysniij2muiDdmCqXcvbWpmqsc-HjBu.vwa7zsYABDDcHAYNkNDgC5KsGCwVmCPAskhXhBQ5tnAe3wqyXkh1hE0xhxwZCIJxfg-c88T53cCorsJJZR0Uncjey6nPwv8qZVUqqZr1.3mKpzFhQjqOm2MT6fMQvoW5qLdwSgAESDd47.0Skc1d8wSegHpwKBYiF5mlKJ.lyD.Q-Qs7mvroAqAJTBcdTL.UeDbQu7tB7YOM3-0hUu6Kkb2t7YUBcvfkJjAZ8DaC4bRy4pBC7DVJhkR2q1TAN4t-2MEhlxEgaF7c-43j0FdCZ1oDxZKyvqlH5DKfZwTKhrEFSrA.zinaYpKNh8spa4V0FpeWmTWcFU0XEqYIBgyCkKzk.yV-G.eUdRPr4HBMqv2j2csRff.hjZkEW30VqCimkVbMWo95kBjfcHE2MnnPs0.2UzvwRZb6WFN7i-aBWpTfc4.F5CAHQUWpNMH8JHX6C1KdwCtVMrW6FYVda6ToPGV26sNCsBvgXF2pb9s1FBk7A8o6IAcezxR3gPQ3hq4vIgX13CWTV2GPZk5GONeFiojjCHC.zWpYKAfk58czuC86sKTuc0lgAR4zB4jDyvTwtJtY6idzEcnAXlnCQYF3djDlXDRgI1LWXMrvJaUNOjmfaHsQCRZ84eBmSHbdea5DWyIAs92s-3Vxtbc3EJoK5YfuwOopu3W5xbWfVh4rtgvd3YtPR5X.iIrTURginSJSOx9Tkl0KIAEbvWqfriAKYlrIag5ihzXBA1qR2ZqZyV7NAykf71EfNBjynBTLK5dcfrY6cb0TcbDn-5fRABDVGU0JAmj54Q7mMW4qPIOIZfcXWMvDrkLXr7MZe9648mhiDqxh6uS2BtByeWrbm0X.JvCQxipInAQBPIkwUh0Rxcy9oIYCQs81cIq7eqsIGMwu5GsZmQT-9RVqm70vCpfPCJZ.udAubG5q-XfOWg1KYSCex4ZuQIpvrL6ZU-q2fSWssATQSpjEAiBPQnSfLEe4lH8cv1W-DMH-jnxYzZmm3mk1e-fhcIvYhz24MFBjkVVsTJWbzQwbX7uL4RyMpHFm.bLhZUV5ZHZssoSC2ciIfZCKyvOH71gAFAEKteybC7hRkHkt9Y.28nDtVNBeSGespCAJGHmFTpjLAQBYYc7JeB3tr2xfxZiri-EtNQRL6bp1-7nMw-XlkBvcDexiS4kKTRYwcnU8I5Amt1DkbDmMwoUCX0bPiaFE6LxbeXsF2u7rAGpSqUJcj8QFkm8WMyy5YomxGqUrGIYHrqSGJ.OYvVyyjCXFvBzdqp2F.7voZVqQeawLny85r99uB.vq5KIHGypsCXmBz7LX4M9p4gA3gbi-dpbx.hnRl2IIVNU_\"><img src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1392341081995/gc_gen_house-728x90.png\" alt=\"\" title=\"\" width=\"728\" height=\"90\" border=\"0\"></a>\r\n\r\n<\!-- creativeModDate = 1401353449000 --\>\n <div id=\"top_ad_webbug\" style=\"display:none;\">\n <img src=\"http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=5aaad614-30b0-4119-9336-b175a1748704&pj=[PUNT_ORIGIN]\" border=\"0\" height=\"1\" width=\"1\" alt=\"\"/>\n </div>\n");
|
192
|
+
}, "ad_utils not defined, skipping punt ad data setup.");
|
193
|
+
</script>
|
194
|
+
<script>
|
195
|
+
doWithAds(function(){
|
196
|
+
ad_utils.register_punt_ad("top_rhs","300","250"," \r\n\r\n<a target=\"_blank\" href=\"http://aax-us-east.amazon-adsystem.com/x/c/QYAf2T_Qp6ovy6HRyer3RQ4AAAFGR-7BeQEAAADKiSdW-Q/http://pda-bes.amazon.com/c?i=1$AgAAAAAAAAAEAAAAAAAAAAIAAAAArjFRWnlAzm661Jk3D.koW2Z5LG4O6mpPQMB3nLA5NrGi459e3Q0tFHhgTr4D1cWkMBeMdsOxrqN0Xv5RabLOJ0hTkdWBTVBmyOKhAdVA-0KXBiLwoNdfQ2Le49nk0UKqruG2FzR6noogINwaF45Hxgvf9uUtBdTIc8.RHwW.8.DGEcw1KE.4wxFoiPLbwIU34T6nz6aX3sTeBj9IokrNupdthVs2.k6vGqA5G4aXrnwjOVLp7W4gaUy3sO-iqamKZO0VKsachFOs3vXmC.HEuMhmKwXbRcU.kIp84jnHOqFhxA7j20v3JbHknmZ58u7sy5dUPJY-j-SE.pZs9206PQ1x6Ms4zulyZIupSUTLditta4U1N95Fn-cEXqsrwNLtmH6BSJCRx0hAtxq0VYBvSvDpf1r5-DnyontHU7Cl4FYYpoS7omn3lDvL0uOhuBbEJCv7EZSiotHKGccrZzo7oMFDXQxdACWMG2cNvBn3M5VXPI5EoDG26nUGwNrG1JOEoYlNhRiiq706U7L4wi2T2ufT4bKL1nLJCgv2Z73Vd.DFmJsbXJ8yDTJrYMYmAzTdkAU0nkUBeqe1U5nVOonOheIM.xUwPfofpOgYgbs12Kn2weMWqZ283w9Ax.EDfTxGytcF79z-M4vsVXxVjxghIRrwLxp7kyaueYv0p1T-rPgbFZM5t4lpihdeAlfUYMkj3Ty5vPAPLF3lUbs5ukk2RQM4S76OKaEQw.g3q8VT5VswssTj2dytEL6Al1RK9VXBopGpDGwGYvYIdGT86nDohvs1uxT1LBX2zaqSK47TMUkiUZ8bIb4JYh71OMPWukqH1PazgtWo3GE77VuxHfwjK5f.4Ex5cP1rvYik44lPvcN27Wph4Rg9fa3n97DKuXleYrvMrNSY-vp9As3ErdceE8Vz2imAkdjNRxnsyYaGy9nabpXGWdpcN9Vpam.TNd0l5xB0qEqANCQfHC.or81IhyrBjYq3WDt.NIlOxnLJP2nmbD4ooMTp3lJhnD2izViAwjuXxVF43eC6QFKfHu6sYlnoBlO0xFBwRvcEksm9Fk7WUeRhGWrNr1Mm-0Boa2Yzj.IiVADp0vYNrVM6eCIFFLFlbrfjj4ZrQ.IXhskFwfzJSkD5frl3jWlS2qnTd1pbuJI.a4ppaSscs9N349Jh3RE8RJSh9bTnDjs9p.jUo7ZcTbBCktUK.17mn9jHbXnFNx7tOheA5CmGxoGzHAIrrH25FfoqN1lnMXRQp6cH4x5cNDCFW0SbZyWOdVp47d9fDdCMU0qJnFrb7CoscCElXP7cMlztuR-PHm1eswz2ZaTes9wScaCLxRl51a2KxPGqPRXzxTCEzRe.MljxkImwBgUX97qafWcDKgIWo9uk6cj9yW.NvB43bmvPMEiL3UV3GXzViATdcS4zvX.s1TKTCWFsl9174HRG1VXwboUiZk0QjB5THf68NxdQYrvwpMjt8UwYJiGgWuvdkV6DJsJWX9T22eVIMZYD304gl5740H3kufA.x87fpPvLL.k5G9WkFE96UHkevxMkxULzA8JRhDCG5Xm5YAQ96LGZmyoYzqpqqg.NTCTw1mhUNqordyM.GWzjsXebAigz9KMtYowvVdF-VZI1Fcdc2rqAUKRXGVRDovNbmg0ZrOOV.dBuXqUMSDHdJA__\"><img src=\"//d2o307dm5mqftz.cloudfront.net/1505855001/1392344630469/gc_gen_t2_house-300x250.png\" alt=\"\" title=\"\" width=\"300\" height=\"250\" border=\"0\"></a>\r\n\r\n<\!-- creativeModDate = 1401353449000 --\>\n <div id=\"top_rhs_webbug\" style=\"display:none;\">\n <img src=\"http://aax-us-east.amazon-adsystem.com/e/loi/imp?b=25e235b7-e94a-4188-946d-0d1781bba25c&pj=[PUNT_ORIGIN]\" border=\"0\" height=\"1\" width=\"1\" alt=\"\"/>\n </div>\n");
|
197
|
+
}, "ad_utils not defined, skipping punt ad data setup.");
|
198
|
+
</script>
|
199
|
+
<script>doWithAds(function() { ad_utils.ads_header.done(); });</script>
|
200
|
+
<!-- end ads header -->
|
201
|
+
<script type="text/javascript">
|
202
|
+
// ensures js doesn't die if ads service fails.
|
203
|
+
// Note that we need to define the js here, since ad js is being rendered inline after this.
|
204
|
+
(function(f) {
|
205
|
+
// Fallback javascript, when the ad Service call fails.
|
206
|
+
|
207
|
+
if((window.csm === undefined || window.generic === undefined || window.consoleLog === undefined)) {
|
208
|
+
if (console !== undefined && console.log !== undefined) {
|
209
|
+
console.log("one or more of window.csm, window.generic or window.consoleLog has been stubbed...");
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
window.csm = window.csm || { measure:f, record:f, duration:f, listen:f, metrics:{} };
|
214
|
+
window.generic = window.generic || { monitoring: { start_timing: f, stop_timing: f } };
|
215
|
+
window.consoleLog = window.consoleLog || f;
|
216
|
+
})(function() {});
|
217
|
+
</script>
|
218
|
+
<script>
|
219
|
+
if ('csm' in window) {
|
220
|
+
csm.measure('csm_head_delivery_finished');
|
221
|
+
}
|
222
|
+
</script>
|
223
|
+
</head>
|
224
|
+
<body id="styleguide-v2" class="fixed">
|
225
|
+
<script>
|
226
|
+
if (typeof uet == 'function') {
|
227
|
+
uet("bb");
|
228
|
+
}
|
229
|
+
</script>
|
230
|
+
<script>
|
231
|
+
if ('csm' in window) {
|
232
|
+
csm.measure('csm_body_delivery_started');
|
233
|
+
}
|
234
|
+
</script>
|
235
|
+
<div id="wrapper">
|
236
|
+
<div id="root" class="redesign">
|
237
|
+
<script>
|
238
|
+
if (typeof uet == 'function') {
|
239
|
+
uet("ns");
|
240
|
+
}
|
241
|
+
</script>
|
242
|
+
<div id="nb20" class="navbarSprite">
|
243
|
+
<div id="supertab">
|
244
|
+
<!-- begin TOP_AD -->
|
245
|
+
<div id="top_ad_wrapper" class="dfp_slot">
|
246
|
+
<script type="text/javascript">
|
247
|
+
doWithAds(function(){
|
248
|
+
ad_utils.register_ad('top_ad');
|
249
|
+
});
|
250
|
+
</script>
|
251
|
+
<iframe data-dart-params="#imdb2.consumer.title/;!TILE!;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;oe=utf-8;[CLIENT_SIDE_KEYVALUES];u=607726152806;ord=607726152806?" id="top_ad" name="top_ad" class="yesScript" width="0" height="0" data-original-width="0" data-original-height="85" data-config-width="0" data-config-height="85" data-cookie-width="0" data-cookie-height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });"></iframe>
|
252
|
+
<noscript><a href="http://ad.doubleclick.net/N4215/jump/imdb2.consumer.title/;tile=0;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;ord=607726152806?" target="_blank"><img src="http://ad.doubleclick.net/N4215/ad/imdb2.consumer.title/;tile=0;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;ord=607726152806?" border="0" alt="advertisement" /></a></noscript>
|
253
|
+
</div>
|
254
|
+
<div id="top_ad_reflow_helper"></div>
|
255
|
+
<script>
|
256
|
+
doWithAds(function(){
|
257
|
+
ad_utils.gpt.render_ad('top_ad');
|
258
|
+
}, "ad_utils not defined, unable to render client-side GPT ad.");
|
259
|
+
</script>
|
260
|
+
<!-- End TOP_AD -->
|
261
|
+
|
262
|
+
</div>
|
263
|
+
<div id="navbar" class="navbarSprite">
|
264
|
+
<noscript>
|
265
|
+
<link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-no-js-4175877511._V379390803_.css" />
|
266
|
+
</noscript>
|
267
|
+
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://ia.media-imdb.com/images/G/01/imdb/css/site/consumer-navbar-ie-470687728._V379390980_.css"><![endif]-->
|
268
|
+
<span id="home_img_holder">
|
269
|
+
<a href="/?ref_=nv_home" title="Home" class="navbarSprite" id="home_img" ></a> <span class="alt_logo">
|
270
|
+
<a href="/?ref_=nv_home" title="Home" >IMDb</a>
|
271
|
+
</span>
|
272
|
+
</span>
|
273
|
+
<form
|
274
|
+
onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
275
|
+
method="get"
|
276
|
+
action="/find"
|
277
|
+
class="nav-searchbar-inner"
|
278
|
+
id="navbar-form"
|
279
|
+
|
280
|
+
>
|
281
|
+
<div id="nb_search">
|
282
|
+
<noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
|
283
|
+
<button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
|
284
|
+
<input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more...">
|
285
|
+
<div class="quicksearch_dropdown_wrapper">
|
286
|
+
<select name="s" id="quicksearch" class="quicksearch_dropdown navbarSprite"
|
287
|
+
onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
|
288
|
+
<option value="all" >All</option>
|
289
|
+
<option value="tt" >Titles</option>
|
290
|
+
<option value="ep" >TV Episodes</option>
|
291
|
+
<option value="nm" >Names</option>
|
292
|
+
<option value="co" >Companies</option>
|
293
|
+
<option value="kw" >Keywords</option>
|
294
|
+
<option value="ch" >Characters</option>
|
295
|
+
<option value="vi" >Videos</option>
|
296
|
+
<option value="qu" >Quotes</option>
|
297
|
+
<option value="bi" >Bios</option>
|
298
|
+
<option value="pl" >Plots</option>
|
299
|
+
</select>
|
300
|
+
</div>
|
301
|
+
<div id="navbar-suggestionsearch"></div>
|
302
|
+
</div>
|
303
|
+
</form>
|
304
|
+
<div id="megaMenu">
|
305
|
+
<ul id="consumer_main_nav" class="main_nav">
|
306
|
+
<li class="spacer"></li>
|
307
|
+
<li class="css_nav_item" id="navTitleMenu">
|
308
|
+
<p class="navCategory">
|
309
|
+
<a href="/movies-in-theaters/?ref_=nv_tp_inth_1" >Movies</a>,
|
310
|
+
<a href="/tv/?ref_=nv_tp_tvhm_2" >TV</a><br />
|
311
|
+
& <a href="/showtimes/?ref_=nv_tp_sh_3" >Showtimes</a></p>
|
312
|
+
<span class="downArrow"></span>
|
313
|
+
<div id="navMenu1" class="sub_nav">
|
314
|
+
<div id="titleAd"></div>
|
315
|
+
<div class="subNavListContainer">
|
316
|
+
<h5>MOVIES</h5>
|
317
|
+
<ul>
|
318
|
+
<li><a href="/movies-in-theaters/?ref_=nv_mv_inth_1" >In Theaters</a></li>
|
319
|
+
<li><a href="/showtimes/?ref_=nv_mv_sh_2" >Showtimes & Tickets</a></li>
|
320
|
+
<li><a href="/trailers/?ref_=nv_mv_tr_3" >Latest Trailers</a></li>
|
321
|
+
<li><a href="/movies-coming-soon/?ref_=nv_mv_cs_4" >Coming Soon</a></li>
|
322
|
+
<li><a href="/calendar/?ref_=nv_mv_cal_5" >Release Calendar</a></li>
|
323
|
+
</ul>
|
324
|
+
<h5>CHARTS & TRENDS</h5>
|
325
|
+
<ul>
|
326
|
+
<li><a href="/search/title?count=100&title_type=feature,tv_series&ref_=nv_ch_mm_1" >Popular Movies & TV</a></li>
|
327
|
+
<li><a href="/chart/?ref_=nv_ch_cht_2" >Box Office</a></li>
|
328
|
+
<li><a href="/search/title?count=100&groups=oscar_best_picture_winners&sort=year,desc&ref_=nv_ch_osc_3" >Oscar Winners</a></li>
|
329
|
+
<li><a href="/chart/top?ref_=nv_ch_250_4" >Top 250</a></li>
|
330
|
+
<li><a href="/genre/?ref_=nv_ch_gr_5" >Most Popular by Genre</a></li>
|
331
|
+
</ul>
|
332
|
+
</div>
|
333
|
+
<div class="subNavListContainer">
|
334
|
+
<h5>TV & VIDEO</h5>
|
335
|
+
<ul>
|
336
|
+
<li><a href="/tv/?ref_=nv_tvv_hm_1" >TV Home</a></li>
|
337
|
+
<li><a href="/tvgrid/?ref_=nv_tvv_ls_2" >On Tonight</a></li>
|
338
|
+
<li><a href="/watchnow/?ref_=nv_tvv_wn_3" >Watch Now on Amazon</a></li>
|
339
|
+
<li><a href="/sections/dvd/?ref_=nv_tvv_dvd_4" >DVD & Blu-Ray</a></li>
|
340
|
+
<li><a href="/tv/blog?ref_=nv_tvv_blog_5" >TV Blog</a></li>
|
341
|
+
</ul>
|
342
|
+
<h5>SPECIAL FEATURES</h5>
|
343
|
+
<ul>
|
344
|
+
<li><a href="/x-ray/?ref_=nv_sf_xray_1" >X-Ray for Movies & TV</a></li>
|
345
|
+
<li><a href="/poll/?ref_=nv_sf_pl_2" >Polls</a></li>
|
346
|
+
</ul>
|
347
|
+
</div>
|
348
|
+
</div>
|
349
|
+
</li>
|
350
|
+
<li class="spacer"></li>
|
351
|
+
<li class="css_nav_item" id="navNameMenu">
|
352
|
+
<p class="navCategory">
|
353
|
+
<a href="/search/name?gender=male,female&ref_=nv_tp_cel_1" >Celebs</a>,
|
354
|
+
<a href="/event/?ref_=nv_tp_ev_2" >Events</a><br />
|
355
|
+
& <a href="/media/index/rg1176148480?ref_=nv_tp_ph_3" >Photos</a></p>
|
356
|
+
<span class="downArrow"></span>
|
357
|
+
<div id="navMenu2" class="sub_nav">
|
358
|
+
<div id="nameAd"></div>
|
359
|
+
<div class="subNavListContainer">
|
360
|
+
<h5>CELEBS</h5>
|
361
|
+
<ul>
|
362
|
+
<li><a href="/search/name?birth_monthday=05-29&refine=birth_monthday&ref_=nv_cel_brn_1" >Born Today</a></li>
|
363
|
+
<li><a href="/news/celebrity?ref_=nv_cel_nw_2" >Celebrity News</a></li>
|
364
|
+
<li><a href="/search/name?gender=male,female&ref_=nv_cel_m_3" >Most Popular Celebs</a></li>
|
365
|
+
</ul>
|
366
|
+
<h5>PHOTOS</h5>
|
367
|
+
<ul>
|
368
|
+
<li><a href="/media/index/rg1176148480?ref_=nv_ph_ls_1" >Latest Stills</a></li>
|
369
|
+
<li><a href="/media/index/rg1528338944?ref_=nv_ph_lp_2" >Latest Posters</a></li>
|
370
|
+
<li><a href="/sections/photos/premieres/?ref_=nv_ph_prem_3" >Movie & TV Premieres</a></li>
|
371
|
+
<li><a href="/sections/photos/red_carpet/?ref_=nv_ph_red_4" >On the Red Carpet</a></li>
|
372
|
+
<li><a href="/sections/photos/special_galleries/?ref_=nv_ph_sp_5" >Special Galleries</a></li>
|
373
|
+
</ul>
|
374
|
+
</div>
|
375
|
+
<div class="subNavListContainer">
|
376
|
+
<h5>EVENTS</h5>
|
377
|
+
<ul>
|
378
|
+
<li><a href="/sxsw/?ref_=nv_ev_sxsw_1" >SXSW Film Festival</a></li>
|
379
|
+
<li><a href="/oscars/?ref_=nv_ev_rto_2" >Road to the Oscars</a></li>
|
380
|
+
<li><a href="/emmys/?ref_=nv_ev_rte_3" >Road to the Emmys</a></li>
|
381
|
+
<li><a href="/comic-con/?ref_=nv_ev_comic_4" >Comic-Con</a></li>
|
382
|
+
<li><a href="/cannes/?ref_=nv_ev_can_5" >Cannes</a></li>
|
383
|
+
<li><a href="/tribeca/?ref_=nv_ev_tri_6" >Tribeca</a></li>
|
384
|
+
<li><a href="/sundance/?ref_=nv_ev_sun_7" >Sundance</a></li>
|
385
|
+
<li><a href="/event/?ref_=nv_ev_all_8" >More Popular Events</a></li>
|
386
|
+
</ul>
|
387
|
+
</div>
|
388
|
+
</div>
|
389
|
+
</li>
|
390
|
+
<li class="spacer"></li>
|
391
|
+
<li class="css_nav_item" id="navNewsMenu">
|
392
|
+
<p class="navCategory">
|
393
|
+
<a href="/news/top?ref_=nv_tp_nw_1" >News</a> &<br />
|
394
|
+
<a href="/boards/?ref_=nv_tp_bd_2" >Community</a></p>
|
395
|
+
<span class="downArrow"></span>
|
396
|
+
<div id="navMenu3" class="sub_nav">
|
397
|
+
<div id="latestHeadlines">
|
398
|
+
<div class="subNavListContainer">
|
399
|
+
<h5>LATEST HEADLINES</h5>
|
400
|
+
<ul>
|
401
|
+
<li itemprop="headline">
|
402
|
+
<a href="/news/ni57230607/?ref_=nv_nw_tn_1" > Maya Angelou Dead at 86
|
403
|
+
</a><br />
|
404
|
+
<span class="time">22 hours ago</span>
|
405
|
+
</li>
|
406
|
+
<li itemprop="headline">
|
407
|
+
<a href="/news/ni57232139/?ref_=nv_nw_tn_2" > ‘World War Z’ Sequel to Be Written by Steven Knight (Exclusive)
|
408
|
+
</a><br />
|
409
|
+
<span class="time">14 hours ago</span>
|
410
|
+
</li>
|
411
|
+
<li itemprop="headline">
|
412
|
+
<a href="/news/ni57231164/?ref_=nv_nw_tn_3" > Forbes' 100 Most Powerful Women List Revealed: Beyoncé, Ellen DeGeneres and Angelina Jolie Make the Cut!
|
413
|
+
</a><br />
|
414
|
+
<span class="time">19 hours ago</span>
|
415
|
+
</li>
|
416
|
+
</ul>
|
417
|
+
</div>
|
418
|
+
</div>
|
419
|
+
<div class="subNavListContainer">
|
420
|
+
<h5>NEWS</h5>
|
421
|
+
<ul>
|
422
|
+
<li><a href="/news/top?ref_=nv_nw_tp_1" >Top News</a></li>
|
423
|
+
<li><a href="/news/movie?ref_=nv_nw_mv_2" >Movie News</a></li>
|
424
|
+
<li><a href="/news/tv?ref_=nv_nw_tv_3" >TV News</a></li>
|
425
|
+
<li><a href="/news/celebrity?ref_=nv_nw_cel_4" >Celebrity News</a></li>
|
426
|
+
<li><a href="/news/indie?ref_=nv_nw_ind_5" >Indie News</a></li>
|
427
|
+
</ul>
|
428
|
+
<h5>COMMUNITY</h5>
|
429
|
+
<ul>
|
430
|
+
<li><a href="/boards/?ref_=nv_cm_bd_1" >Message Boards</a></li>
|
431
|
+
<li><a href="/czone/?ref_=nv_cm_cz_2" >Contributor Zone</a></li>
|
432
|
+
<li><a href="/games/guess?ref_=nv_cm_qz_3" >Quiz Game</a></li>
|
433
|
+
<li><a href="/poll/?ref_=nv_cm_pl_4" >Polls</a></li>
|
434
|
+
</ul>
|
435
|
+
</div>
|
436
|
+
</div>
|
437
|
+
</li>
|
438
|
+
<li class="spacer"></li>
|
439
|
+
<li class="css_nav_item" id="navWatchlistMenu">
|
440
|
+
<p class="navCategory singleLine watchlist">
|
441
|
+
<a href="/list/watchlist?ref_=nv_wl_all_0" >Watchlist</a>
|
442
|
+
</p>
|
443
|
+
<span class="downArrow"></span>
|
444
|
+
<div id="navMenu4" class="sub_nav">
|
445
|
+
<h5>
|
446
|
+
YOUR WATCHLIST
|
447
|
+
</h5>
|
448
|
+
<ul id="navWatchlist">
|
449
|
+
</ul>
|
450
|
+
<script>
|
451
|
+
if (!('imdb' in window)) { window.imdb = {}; }
|
452
|
+
window.imdb.watchlistTeaserData = [
|
453
|
+
{
|
454
|
+
href : "/list/watchlist",
|
455
|
+
src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot1_logged_in-893415420._V360061163_.jpg"
|
456
|
+
},
|
457
|
+
{
|
458
|
+
href : "/search/title?count=100&title_type=feature,tv_series",
|
459
|
+
src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot2_popular-4090757197._V360060945_.jpg"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
href : "/chart/top",
|
463
|
+
src : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/watchlist_slot3_top250-575799966._V360061165_.jpg"
|
464
|
+
}
|
465
|
+
];
|
466
|
+
</script>
|
467
|
+
</div>
|
468
|
+
</li>
|
469
|
+
<li class="spacer"></li>
|
470
|
+
</ul>
|
471
|
+
<script>
|
472
|
+
if (!('imdb' in window)) { window.imdb = {}; }
|
473
|
+
window.imdb.navbarAdSlots = {
|
474
|
+
titleAd : {
|
475
|
+
clickThru : "/title/tt2024544/",
|
476
|
+
imageUrl : "http://ia.media-imdb.com/images/M/MV5BMTA1MDg4NjgzMTdeQTJeQWpwZ15BbWU3MDIxMDM2Nzk@.V1._SY315_CR15,0,410,315_.jpg",
|
477
|
+
titleYears : "2013",
|
478
|
+
rank : 146,
|
479
|
+
headline : "12 Years a Slave"
|
480
|
+
},
|
481
|
+
nameAd : {
|
482
|
+
clickThru : "/name/nm0000136/",
|
483
|
+
imageUrl : "http://ia.media-imdb.com/images/M/MV5BMjQ0NzA5NTQzOF5BMl5BanBnXkFtZTcwOTkwNjE5Ng@@._V1._SX250_CR0,0,250,315_.jpg",
|
484
|
+
rank : 52,
|
485
|
+
headline : "Johnny Depp"
|
486
|
+
}
|
487
|
+
}
|
488
|
+
</script>
|
489
|
+
</div>
|
490
|
+
<div id="nb_extra">
|
491
|
+
<ul id="nb_extra_nav" class="main_nav">
|
492
|
+
<li class="css_nav_item" id="navProMenu">
|
493
|
+
<p class="navCategory">
|
494
|
+
<a href="http://pro.imdb.com/?ref_=cons_nb_hm" > <img alt="IMDbPro Menu" src="http://ia.media-imdb.com/images/G/01/imdb/images/navbar/imdbpro_logo_nb-720143162._V377744227_.png" />
|
495
|
+
</a> </p>
|
496
|
+
<span class="downArrow"></span>
|
497
|
+
<div id="navMenuPro" class="sub_nav">
|
498
|
+
<a href="http://pro.imdb.com/?ref_=cons_nb_hm" id="proLink" > <div id="proAd">
|
499
|
+
<script>
|
500
|
+
if (!('imdb' in window)) { window.imdb = {}; }
|
501
|
+
window.imdb.proMenuTeaser = {
|
502
|
+
imageUrl : "http://ia.media-imdb.com/images/G/01/imdb/images/navbar/imdbpro_menu_user-2082544740._V377744226_.jpg"
|
503
|
+
};
|
504
|
+
</script>
|
505
|
+
</div>
|
506
|
+
<div class="subNavListContainer">
|
507
|
+
<img alt="Go to IMDbPro" title="Go to IMDbPro" src="http://ia.media-imdb.com/images/G/01/imdb/images/navbar/imdbpro_logo_menu-2185879182._V377744253_.png" />
|
508
|
+
<h5>GET INFORMED</h5>
|
509
|
+
<p>Industry information at your fingertips</p>
|
510
|
+
<h5>GET CONNECTED</h5>
|
511
|
+
<p>Over 200,000 Hollywood insiders</p>
|
512
|
+
<h5>GET DISCOVERED</h5>
|
513
|
+
<p>Enhance your IMDb Page</p>
|
514
|
+
<p><strong>Go to IMDbPro »</strong></p>
|
515
|
+
</div>
|
516
|
+
</a> </div>
|
517
|
+
</li>
|
518
|
+
<li class="spacer"><span class="ghost">|</span></li>
|
519
|
+
<li>
|
520
|
+
<a href="/apps/?ref_=nb_app" >IMDb Apps</a>
|
521
|
+
</li>
|
522
|
+
<li class="spacer"><span class="ghost">|</span></li>
|
523
|
+
<li>
|
524
|
+
<a href="/help/?ref_=nb_hlp" >Help</a>
|
525
|
+
</li>
|
526
|
+
</ul>
|
527
|
+
</div>
|
528
|
+
<div id="nb_personal">
|
529
|
+
<ul id="consumer_user_nav" class="main_nav">
|
530
|
+
<li class="css_nav_menu" id="navUserMenu">
|
531
|
+
<p class="navCategory singleLine">
|
532
|
+
<a href="/user/ur53044956/?ref_=nb_usr_prof_0" >Asad Ali Bhatti</a> </p>
|
533
|
+
<span class="downArrow"></span>
|
534
|
+
<div class="sub_nav">
|
535
|
+
<div class="subNavListContainer">
|
536
|
+
<br />
|
537
|
+
<ul>
|
538
|
+
<li>
|
539
|
+
<a href="https://secure.imdb.com/register-imdb/personalize?ref_=nv_usr_pers_1" >Site Settings</a>
|
540
|
+
</li>
|
541
|
+
</ul>
|
542
|
+
</div>
|
543
|
+
<div class="subNavListContainer">
|
544
|
+
<h5>YOUR ACTIVITY</h5>
|
545
|
+
<ul>
|
546
|
+
<li><a href="/user/ur53044956/?ref_=nv_usr_prof_2" >Your Profile</a></li>
|
547
|
+
<li><a href="/user/ur53044956/lists?ref_=nv_usr_lst_3" >Your Lists</a></li>
|
548
|
+
<li><a href="/user/ur53044956/ratings?ref_=nv_usr_rt_4" >Your Ratings</a></li>
|
549
|
+
<li><a href="/profile/recently-viewed?ref_=nv_usr_rvi_5" >Recently Viewed</a></li>
|
550
|
+
</ul>
|
551
|
+
</div>
|
552
|
+
<div class="subNavListContainer">
|
553
|
+
<br />
|
554
|
+
<ul>
|
555
|
+
<li>
|
556
|
+
<a href="/register/logout?ref_=nv_usr_lgout_6" id="nblogout" >Logout</a>
|
557
|
+
</li>
|
558
|
+
</ul>
|
559
|
+
</div>
|
560
|
+
</div>
|
561
|
+
</li>
|
562
|
+
</ul>
|
563
|
+
</div>
|
564
|
+
</div>
|
565
|
+
</div>
|
566
|
+
|
567
|
+
<!-- no content received for slot: navstrip -->
|
568
|
+
|
569
|
+
|
570
|
+
<!-- begin injectable INJECTED_NAVSTRIP -->
|
571
|
+
<div id="injected_navstrip_wrapper" class="injected_slot">
|
572
|
+
<iframe id="injected_navstrip" name="injected_navstrip" class="yesScript" width="0" height="0" data-dart-params="#imdb2.consumer.title/;oe=utf-8;u=607726152806;ord=607726152806?" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="0" data-cookie-height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });"></iframe> </div>
|
573
|
+
<script>
|
574
|
+
doWithAds(function(){
|
575
|
+
ad_utils.inject_ad.register('injected_navstrip');
|
576
|
+
}, "ad_utils not defined, unable to render injected ad.");
|
577
|
+
</script>
|
578
|
+
<div id="injected_navstrip_reflow_helper"></div>
|
579
|
+
<!-- end injectable INJECTED_NAVSTRIP -->
|
580
|
+
|
581
|
+
<script>
|
582
|
+
if (typeof uet == 'function') {
|
583
|
+
uet("ne");
|
584
|
+
}
|
585
|
+
</script>
|
586
|
+
<div id="pagecontent" itemscope itemtype="http://schema.org/Movie">
|
587
|
+
|
588
|
+
<!-- begin injectable INJECTED_BILLBOARD -->
|
589
|
+
<div id="injected_billboard_wrapper" class="injected_slot">
|
590
|
+
<iframe id="injected_billboard" name="injected_billboard" class="yesScript" width="0" height="0" data-dart-params="#imdb2.consumer.title/;oe=utf-8;u=607726152806;ord=607726152806?" data-original-width="0" data-original-height="0" data-config-width="0" data-config-height="0" data-cookie-width="0" data-cookie-height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });"></iframe> </div>
|
591
|
+
<script>
|
592
|
+
doWithAds(function(){
|
593
|
+
ad_utils.inject_ad.register('injected_billboard');
|
594
|
+
}, "ad_utils not defined, unable to render injected ad.");
|
595
|
+
</script>
|
596
|
+
<div id="injected_billboard_reflow_helper"></div>
|
597
|
+
<!-- end injectable INJECTED_BILLBOARD -->
|
598
|
+
|
599
|
+
|
600
|
+
<div id="content-2-wide" class="redesign">
|
601
|
+
<div id="main">
|
602
|
+
<div class="article listo">
|
603
|
+
<span class=rightcornerlink >
|
604
|
+
<a href="/updates?edit=tt1821700/fullcredits&ref_=ttfc_fc_edt" >Edit</a>
|
605
|
+
</span>
|
606
|
+
<div class="subpage_title_block">
|
607
|
+
<a href="/title/tt1821700/?ref_=ttfc_fc_tt" > <img itemprop="image"
|
608
|
+
class="poster"
|
609
|
+
height="98"
|
610
|
+
width="67"
|
611
|
+
alt="Waar (2013) Poster"
|
612
|
+
src="http://ia.media-imdb.com/images/M/MV5BMjI2NjM2MjYzMV5BMl5BanBnXkFtZTgwMjc0NTE1MDE@._V1_SX67_CR0,0,67,98_AL_.jpg" />
|
613
|
+
</a> <div class="parent">
|
614
|
+
<h3 itemprop="name">
|
615
|
+
<a href="/title/tt1821700/?ref_=ttfc_fc_tt" itemprop='url'>Waar</a> <span class="nobr">
|
616
|
+
(2013)
|
617
|
+
</span>
|
618
|
+
</h3>
|
619
|
+
</div>
|
620
|
+
<script>
|
621
|
+
if ('csm' in window) {
|
622
|
+
csm.measure('csm_body_delivery_started');
|
623
|
+
}
|
624
|
+
</script>
|
625
|
+
<h1 class="header">Full Cast & Crew</h1>
|
626
|
+
</div>
|
627
|
+
<div id="fullcredits_content" class="header">
|
628
|
+
|
629
|
+
<h4 class="dataHeaderWithBorder">Directed by </h4>
|
630
|
+
<table class="simpleTable simpleCreditsTable">
|
631
|
+
<colgroup>
|
632
|
+
<col class="column1">
|
633
|
+
<col class="column2">
|
634
|
+
<col class="column3">
|
635
|
+
</colgroup>
|
636
|
+
<tbody>
|
637
|
+
|
638
|
+
<tr>
|
639
|
+
<td class="name">
|
640
|
+
<a href="/name/nm2850440/?ref_=ttfc_fc_dr1" > Bilal Lashari
|
641
|
+
</a> </td>
|
642
|
+
<td colspan="2"></td>
|
643
|
+
</tr>
|
644
|
+
</tbody>
|
645
|
+
</table>
|
646
|
+
<h4 class="dataHeaderWithBorder">Writing Credits
|
647
|
+
<span>(in alphabetical order)</span>
|
648
|
+
|
649
|
+
</h4>
|
650
|
+
<table class="simpleTable simpleCreditsTable">
|
651
|
+
<colgroup>
|
652
|
+
<col class="column1">
|
653
|
+
<col class="column2">
|
654
|
+
<col class="column3">
|
655
|
+
</colgroup>
|
656
|
+
<tbody>
|
657
|
+
<tr>
|
658
|
+
<td class="name">
|
659
|
+
<a href="/name/nm4274636/?ref_=ttfc_fc_wr1" > Hassan Waqas Rana
|
660
|
+
</a> </td>
|
661
|
+
<td colspan="2"></td>
|
662
|
+
</tr>
|
663
|
+
</tbody>
|
664
|
+
</table>
|
665
|
+
<h4 name="cast" id="cast" class="dataHeaderWithBorder">
|
666
|
+
|
667
|
+
Cast
|
668
|
+
<span> (in credits order) </span>
|
669
|
+
|
670
|
+
</h4>
|
671
|
+
<table class="cast_list">
|
672
|
+
<tr><td colspan="4" class="castlist_label"></td></tr>
|
673
|
+
<tr class="odd">
|
674
|
+
<td class="primary_photo">
|
675
|
+
<a href="/name/nm0787030/?ref_=ttfc_fc_cl_i1" ><img height="44" width="32" alt="Shaan" title="Shaan"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMTY0MTIxMDEyN15BMl5BanBnXkFtZTcwMTcyNTI1MQ@@._V1_SY44_CR3,0,32,44_AL_.jpg" /></a> </td>
|
676
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
677
|
+
<a href="/name/nm0787030/?ref_=ttfc_fc_cl_t1" itemprop='url'> <span class="itemprop" itemprop="name">Shaan</span>
|
678
|
+
</a> </td>
|
679
|
+
<td class="ellipsis">
|
680
|
+
...
|
681
|
+
</td>
|
682
|
+
<td class="character">
|
683
|
+
<div>
|
684
|
+
<a href="/character/ch0402521/?ref_=ttfc_fc_cl_t1" >Mujtaba</a>
|
685
|
+
|
686
|
+
</div>
|
687
|
+
</td>
|
688
|
+
</tr>
|
689
|
+
<tr class="even">
|
690
|
+
<td class="primary_photo">
|
691
|
+
<a href="/name/nm4273857/?ref_=ttfc_fc_cl_i2" ><img height="44" width="32" alt="Hamza Abbasi" title="Hamza Abbasi"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
692
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
693
|
+
<a href="/name/nm4273857/?ref_=ttfc_fc_cl_t2" itemprop='url'> <span class="itemprop" itemprop="name">Hamza Abbasi</span>
|
694
|
+
</a> </td>
|
695
|
+
<td class="ellipsis">
|
696
|
+
...
|
697
|
+
</td>
|
698
|
+
<td class="character">
|
699
|
+
<div>
|
700
|
+
<a href="/character/ch0404463/?ref_=ttfc_fc_cl_t2" >Ehtesham</a>
|
701
|
+
|
702
|
+
</div>
|
703
|
+
</td>
|
704
|
+
</tr>
|
705
|
+
<tr class="odd">
|
706
|
+
<td class="primary_photo">
|
707
|
+
<a href="/name/nm4272534/?ref_=ttfc_fc_cl_i3" ><img height="44" width="32" alt="Shamoon Abbasi" title="Shamoon Abbasi"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
708
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
709
|
+
<a href="/name/nm4272534/?ref_=ttfc_fc_cl_t3" itemprop='url'> <span class="itemprop" itemprop="name">Shamoon Abbasi</span>
|
710
|
+
</a> </td>
|
711
|
+
<td class="ellipsis">
|
712
|
+
...
|
713
|
+
</td>
|
714
|
+
<td class="character">
|
715
|
+
<div>
|
716
|
+
<a href="/character/ch0403448/?ref_=ttfc_fc_cl_t3" >Ramal</a>
|
717
|
+
|
718
|
+
</div>
|
719
|
+
</td>
|
720
|
+
</tr>
|
721
|
+
<tr class="even">
|
722
|
+
<td class="primary_photo">
|
723
|
+
<a href="/name/nm3697281/?ref_=ttfc_fc_cl_i4" ><img height="44" width="32" alt="Aisha Khan" title="Aisha Khan"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
724
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
725
|
+
<a href="/name/nm3697281/?ref_=ttfc_fc_cl_t4" itemprop='url'> <span class="itemprop" itemprop="name">Aisha Khan</span>
|
726
|
+
</a> </td>
|
727
|
+
<td class="ellipsis">
|
728
|
+
...
|
729
|
+
</td>
|
730
|
+
<td class="character">
|
731
|
+
<div>
|
732
|
+
Javeria
|
733
|
+
|
734
|
+
</div>
|
735
|
+
</td>
|
736
|
+
</tr>
|
737
|
+
<tr class="odd">
|
738
|
+
<td class="primary_photo">
|
739
|
+
<a href="/name/nm4723652/?ref_=ttfc_fc_cl_i5" ><img height="44" width="32" alt="Meesha Shafi" title="Meesha Shafi"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMjgyNDk5MzEyMF5BMl5BanBnXkFtZTcwMDYwMDg5Nw@@._V1_SX32_CR0,0,32,44_AL_.jpg" /></a> </td>
|
740
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
741
|
+
<a href="/name/nm4723652/?ref_=ttfc_fc_cl_t5" itemprop='url'> <span class="itemprop" itemprop="name">Meesha Shafi</span>
|
742
|
+
</a> </td>
|
743
|
+
<td class="ellipsis">
|
744
|
+
...
|
745
|
+
</td>
|
746
|
+
<td class="character">
|
747
|
+
<div>
|
748
|
+
Lakshmi (alias Zoya)
|
749
|
+
|
750
|
+
</div>
|
751
|
+
</td>
|
752
|
+
</tr>
|
753
|
+
<tr class="even">
|
754
|
+
<td class="primary_photo">
|
755
|
+
<a href="/name/nm1803952/?ref_=ttfc_fc_cl_i6" ><img height="44" width="32" alt="Ali Azmat" title="Ali Azmat"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
756
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
757
|
+
<a href="/name/nm1803952/?ref_=ttfc_fc_cl_t6" itemprop='url'> <span class="itemprop" itemprop="name">Ali Azmat</span>
|
758
|
+
</a> </td>
|
759
|
+
<td class="ellipsis">
|
760
|
+
...
|
761
|
+
</td>
|
762
|
+
<td class="character">
|
763
|
+
<div>
|
764
|
+
Ejaz Khan (Politician)
|
765
|
+
|
766
|
+
</div>
|
767
|
+
</td>
|
768
|
+
</tr>
|
769
|
+
<tr class="odd">
|
770
|
+
<td class="primary_photo">
|
771
|
+
<a href="/name/nm2850440/?ref_=ttfc_fc_cl_i7" ><img height="44" width="32" alt="Bilal Lashari" title="Bilal Lashari"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
772
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
773
|
+
<a href="/name/nm2850440/?ref_=ttfc_fc_cl_t7" itemprop='url'> <span class="itemprop" itemprop="name">Bilal Lashari</span>
|
774
|
+
</a> </td>
|
775
|
+
<td class="ellipsis">
|
776
|
+
...
|
777
|
+
</td>
|
778
|
+
<td class="character">
|
779
|
+
<div>
|
780
|
+
<a href="/character/ch0403472/?ref_=ttfc_fc_cl_t7" >Ali - Sniper</a>
|
781
|
+
|
782
|
+
</div>
|
783
|
+
</td>
|
784
|
+
</tr>
|
785
|
+
<tr class="even">
|
786
|
+
<td class="primary_photo">
|
787
|
+
<a href="/name/nm6027507/?ref_=ttfc_fc_cl_i8" ><img height="44" width="32" alt="Kamran Lashari" title="Kamran Lashari"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
788
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
789
|
+
<a href="/name/nm6027507/?ref_=ttfc_fc_cl_t8" itemprop='url'> <span class="itemprop" itemprop="name">Kamran Lashari</span>
|
790
|
+
</a> </td>
|
791
|
+
<td class="ellipsis">
|
792
|
+
...
|
793
|
+
</td>
|
794
|
+
<td class="character">
|
795
|
+
<div>
|
796
|
+
Head of Security Wing
|
797
|
+
|
798
|
+
</div>
|
799
|
+
</td>
|
800
|
+
</tr>
|
801
|
+
<tr class="odd">
|
802
|
+
<td class="primary_photo">
|
803
|
+
<a href="/name/nm5882271/?ref_=ttfc_fc_cl_i9" ><img height="44" width="32" alt="Batin Farooqi" title="Batin Farooqi"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
804
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
805
|
+
<a href="/name/nm5882271/?ref_=ttfc_fc_cl_t9" itemprop='url'> <span class="itemprop" itemprop="name">Batin Farooqi</span>
|
806
|
+
</a> </td>
|
807
|
+
<td class="ellipsis">
|
808
|
+
...
|
809
|
+
</td>
|
810
|
+
<td class="character">
|
811
|
+
<div>
|
812
|
+
Militant
|
813
|
+
|
814
|
+
</div>
|
815
|
+
</td>
|
816
|
+
</tr>
|
817
|
+
<tr class="even">
|
818
|
+
<td class="primary_photo">
|
819
|
+
<a href="/name/nm6027514/?ref_=ttfc_fc_cl_i10" ><img height="44" width="32" alt="Uzma Khan" title="Uzma Khan"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V379389446_.png" class="" /></a> </td>
|
820
|
+
<td class="itemprop" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
821
|
+
<a href="/name/nm6027514/?ref_=ttfc_fc_cl_t10" itemprop='url'> <span class="itemprop" itemprop="name">Uzma Khan</span>
|
822
|
+
</a> </td>
|
823
|
+
<td class="ellipsis">
|
824
|
+
...
|
825
|
+
</td>
|
826
|
+
<td class="character">
|
827
|
+
<div>
|
828
|
+
Mujtaba's Wife
|
829
|
+
|
830
|
+
</div>
|
831
|
+
</td>
|
832
|
+
</tr>
|
833
|
+
</table>
|
834
|
+
<div class="full_cast form-box">
|
835
|
+
<form method="post" action="/character/create?ref_=ttfc_fc_chcr">
|
836
|
+
<input type="hidden" value="tt1821700" name="title">
|
837
|
+
<div class="form-txt">Create a character page for:
|
838
|
+
<select id="character_select" name="name" data-tconst="tt1821700">
|
839
|
+
<option value="Javeria">Javeria</option>
|
840
|
+
<option value="Lakshmi (alias Zoya)">Lakshmi (alias Zoya)</option>
|
841
|
+
<option value="Ejaz Khan (Politician)">Ejaz Khan (Politician)</option>
|
842
|
+
<option value="Head of Security Wing">Head of Security Wing</option>
|
843
|
+
<option value="Militant">Militant</option>
|
844
|
+
<option value="Mujtaba's Wife">Mujtaba's Wife</option>
|
845
|
+
</select>
|
846
|
+
<button class="btn small">Create »</button>
|
847
|
+
<a href="/help/show_leaf?createchar&ref_=ttfc_fc_chcr_hlp" class="btn small" >?</a>
|
848
|
+
</div>
|
849
|
+
</form>
|
850
|
+
</div>
|
851
|
+
<h4 class="dataHeaderWithBorder">Produced by </h4>
|
852
|
+
<table class="simpleTable simpleCreditsTable">
|
853
|
+
<colgroup>
|
854
|
+
<col class="column1">
|
855
|
+
<col class="column2">
|
856
|
+
<col class="column3">
|
857
|
+
</colgroup>
|
858
|
+
<tbody>
|
859
|
+
|
860
|
+
<tr>
|
861
|
+
<td class="name">
|
862
|
+
<a href="/name/nm4723189/?ref_=ttfc_fc_cr2" > Jameel Ahmed
|
863
|
+
</a> </td>
|
864
|
+
<td>...</td>
|
865
|
+
<td class="credit">
|
866
|
+
line producer
|
867
|
+
</td>
|
868
|
+
</tr>
|
869
|
+
|
870
|
+
<tr>
|
871
|
+
<td class="name">
|
872
|
+
<a href="/name/nm4274636/?ref_=ttfc_fc_cr3" > Hassan Waqas Rana
|
873
|
+
</a> </td>
|
874
|
+
<td>...</td>
|
875
|
+
<td class="credit">
|
876
|
+
executive producer / producer
|
877
|
+
</td>
|
878
|
+
</tr>
|
879
|
+
</tbody>
|
880
|
+
</table>
|
881
|
+
<h4 class="dataHeaderWithBorder">Cinematography by </h4>
|
882
|
+
<table class="simpleTable simpleCreditsTable">
|
883
|
+
<colgroup>
|
884
|
+
<col class="column1">
|
885
|
+
<col class="column2">
|
886
|
+
<col class="column3">
|
887
|
+
</colgroup>
|
888
|
+
<tbody>
|
889
|
+
|
890
|
+
<tr>
|
891
|
+
<td class="name">
|
892
|
+
<a href="/name/nm2850440/?ref_=ttfc_fc_cr4" > Bilal Lashari
|
893
|
+
</a> </td>
|
894
|
+
<td colspan="2"></td>
|
895
|
+
</tr>
|
896
|
+
</tbody>
|
897
|
+
</table>
|
898
|
+
<h4 class="dataHeaderWithBorder">Film Editing by </h4>
|
899
|
+
<table class="simpleTable simpleCreditsTable">
|
900
|
+
<colgroup>
|
901
|
+
<col class="column1">
|
902
|
+
<col class="column2">
|
903
|
+
<col class="column3">
|
904
|
+
</colgroup>
|
905
|
+
<tbody>
|
906
|
+
|
907
|
+
<tr>
|
908
|
+
<td class="name">
|
909
|
+
<a href="/name/nm2850440/?ref_=ttfc_fc_cr5" > Bilal Lashari
|
910
|
+
</a> </td>
|
911
|
+
<td colspan="2"></td>
|
912
|
+
</tr>
|
913
|
+
</tbody>
|
914
|
+
</table>
|
915
|
+
<h4 class="dataHeaderWithBorder">Production Design by </h4>
|
916
|
+
<table class="simpleTable simpleCreditsTable">
|
917
|
+
<colgroup>
|
918
|
+
<col class="column1">
|
919
|
+
<col class="column2">
|
920
|
+
<col class="column3">
|
921
|
+
</colgroup>
|
922
|
+
<tbody>
|
923
|
+
|
924
|
+
<tr>
|
925
|
+
<td class="name">
|
926
|
+
<a href="/name/nm4723189/?ref_=ttfc_fc_cr6" > Jameel Ahmed
|
927
|
+
</a> </td>
|
928
|
+
<td colspan="2"></td>
|
929
|
+
</tr>
|
930
|
+
</tbody>
|
931
|
+
</table>
|
932
|
+
<h4 class="dataHeaderWithBorder">Makeup Department </h4>
|
933
|
+
<table class="simpleTable simpleCreditsTable">
|
934
|
+
<colgroup>
|
935
|
+
<col class="column1">
|
936
|
+
<col class="column2">
|
937
|
+
<col class="column3">
|
938
|
+
</colgroup>
|
939
|
+
<tbody>
|
940
|
+
|
941
|
+
<tr>
|
942
|
+
<td class="name">
|
943
|
+
<a href="/name/nm6058940/?ref_=ttfc_fc_cr7" > Khawar Riaz
|
944
|
+
</a> </td>
|
945
|
+
<td>...</td>
|
946
|
+
<td class="credit">
|
947
|
+
makeup artist
|
948
|
+
</td>
|
949
|
+
</tr>
|
950
|
+
|
951
|
+
<tr>
|
952
|
+
<td class="name">
|
953
|
+
<a href="/name/nm6058941/?ref_=ttfc_fc_cr8" > Shahjahan
|
954
|
+
</a> </td>
|
955
|
+
<td>...</td>
|
956
|
+
<td class="credit">
|
957
|
+
special makeup effects artist
|
958
|
+
</td>
|
959
|
+
</tr>
|
960
|
+
|
961
|
+
<tr>
|
962
|
+
<td class="name">
|
963
|
+
<a href="/name/nm6058942/?ref_=ttfc_fc_cr9" > Sajid Wahab
|
964
|
+
</a> </td>
|
965
|
+
<td>...</td>
|
966
|
+
<td class="credit">
|
967
|
+
makeup artist
|
968
|
+
</td>
|
969
|
+
</tr>
|
970
|
+
</tbody>
|
971
|
+
</table>
|
972
|
+
<h4 class="dataHeaderWithBorder">Production Management </h4>
|
973
|
+
<table class="simpleTable simpleCreditsTable">
|
974
|
+
<colgroup>
|
975
|
+
<col class="column1">
|
976
|
+
<col class="column2">
|
977
|
+
<col class="column3">
|
978
|
+
</colgroup>
|
979
|
+
<tbody>
|
980
|
+
|
981
|
+
<tr>
|
982
|
+
<td class="name">
|
983
|
+
<a href="/name/nm6093497/?ref_=ttfc_fc_cr10" > Alvina Ijaza
|
984
|
+
</a> </td>
|
985
|
+
<td>...</td>
|
986
|
+
<td class="credit">
|
987
|
+
assistant production manager
|
988
|
+
</td>
|
989
|
+
</tr>
|
990
|
+
|
991
|
+
<tr>
|
992
|
+
<td class="name">
|
993
|
+
<a href="/name/nm6058943/?ref_=ttfc_fc_cr11" > Muhammad Kamran
|
994
|
+
</a> </td>
|
995
|
+
<td>...</td>
|
996
|
+
<td class="credit">
|
997
|
+
unit production manager
|
998
|
+
</td>
|
999
|
+
</tr>
|
1000
|
+
|
1001
|
+
<tr>
|
1002
|
+
<td class="name">
|
1003
|
+
<a href="/name/nm6093495/?ref_=ttfc_fc_cr12" > Muhammad Shakeel
|
1004
|
+
</a> </td>
|
1005
|
+
<td>...</td>
|
1006
|
+
<td class="credit">
|
1007
|
+
production manager
|
1008
|
+
</td>
|
1009
|
+
</tr>
|
1010
|
+
|
1011
|
+
<tr>
|
1012
|
+
<td class="name">
|
1013
|
+
<a href="/name/nm6093496/?ref_=ttfc_fc_cr13" > Rana Sarmad Umair
|
1014
|
+
</a> </td>
|
1015
|
+
<td>...</td>
|
1016
|
+
<td class="credit">
|
1017
|
+
assistant production manager
|
1018
|
+
</td>
|
1019
|
+
</tr>
|
1020
|
+
</tbody>
|
1021
|
+
</table>
|
1022
|
+
<h4 class="dataHeaderWithBorder">Second Unit Director or Assistant Director </h4>
|
1023
|
+
<table class="simpleTable simpleCreditsTable">
|
1024
|
+
<colgroup>
|
1025
|
+
<col class="column1">
|
1026
|
+
<col class="column2">
|
1027
|
+
<col class="column3">
|
1028
|
+
</colgroup>
|
1029
|
+
<tbody>
|
1030
|
+
|
1031
|
+
<tr>
|
1032
|
+
<td class="name">
|
1033
|
+
<a href="/name/nm6058943/?ref_=ttfc_fc_cr14" > Muhammad Kamran
|
1034
|
+
</a> </td>
|
1035
|
+
<td>...</td>
|
1036
|
+
<td class="credit">
|
1037
|
+
assistant director
|
1038
|
+
</td>
|
1039
|
+
</tr>
|
1040
|
+
</tbody>
|
1041
|
+
</table>
|
1042
|
+
<h4 class="dataHeaderWithBorder">Sound Department </h4>
|
1043
|
+
<table class="simpleTable simpleCreditsTable">
|
1044
|
+
<colgroup>
|
1045
|
+
<col class="column1">
|
1046
|
+
<col class="column2">
|
1047
|
+
<col class="column3">
|
1048
|
+
</colgroup>
|
1049
|
+
<tbody>
|
1050
|
+
|
1051
|
+
<tr>
|
1052
|
+
<td class="name">
|
1053
|
+
<a href="/name/nm1873852/?ref_=ttfc_fc_cr15" > Sergei Groshev
|
1054
|
+
</a> </td>
|
1055
|
+
<td>...</td>
|
1056
|
+
<td class="credit">
|
1057
|
+
sound re-recording mixer
|
1058
|
+
</td>
|
1059
|
+
</tr>
|
1060
|
+
|
1061
|
+
<tr>
|
1062
|
+
<td class="name">
|
1063
|
+
<a href="/name/nm5870930/?ref_=ttfc_fc_cr16" > Hasil Kureshi
|
1064
|
+
</a> </td>
|
1065
|
+
<td>...</td>
|
1066
|
+
<td class="credit">
|
1067
|
+
sound designer
|
1068
|
+
</td>
|
1069
|
+
</tr>
|
1070
|
+
|
1071
|
+
<tr>
|
1072
|
+
<td class="name">
|
1073
|
+
<a href="/name/nm5587043/?ref_=ttfc_fc_cr17" > Mohammad Naseer
|
1074
|
+
</a> </td>
|
1075
|
+
<td>...</td>
|
1076
|
+
<td class="credit">
|
1077
|
+
sound recordist
|
1078
|
+
</td>
|
1079
|
+
</tr>
|
1080
|
+
|
1081
|
+
<tr>
|
1082
|
+
<td class="name">
|
1083
|
+
<a href="/name/nm4586050/?ref_=ttfc_fc_cr18" > Aamir Qureshi
|
1084
|
+
</a> </td>
|
1085
|
+
<td>...</td>
|
1086
|
+
<td class="credit">
|
1087
|
+
boom operator
|
1088
|
+
</td>
|
1089
|
+
</tr>
|
1090
|
+
</tbody>
|
1091
|
+
</table>
|
1092
|
+
<h4 class="dataHeaderWithBorder">Special Effects by </h4>
|
1093
|
+
<table class="simpleTable simpleCreditsTable">
|
1094
|
+
<colgroup>
|
1095
|
+
<col class="column1">
|
1096
|
+
<col class="column2">
|
1097
|
+
<col class="column3">
|
1098
|
+
</colgroup>
|
1099
|
+
<tbody>
|
1100
|
+
|
1101
|
+
<tr>
|
1102
|
+
<td class="name">
|
1103
|
+
<a href="/name/nm6093498/?ref_=ttfc_fc_cr19" > Ice Animation
|
1104
|
+
</a> </td>
|
1105
|
+
<td>...</td>
|
1106
|
+
<td class="credit">
|
1107
|
+
special effects
|
1108
|
+
</td>
|
1109
|
+
</tr>
|
1110
|
+
</tbody>
|
1111
|
+
</table>
|
1112
|
+
<h4 class="dataHeaderWithBorder">Visual Effects by </h4>
|
1113
|
+
<table class="simpleTable simpleCreditsTable">
|
1114
|
+
<colgroup>
|
1115
|
+
<col class="column1">
|
1116
|
+
<col class="column2">
|
1117
|
+
<col class="column3">
|
1118
|
+
</colgroup>
|
1119
|
+
<tbody>
|
1120
|
+
|
1121
|
+
<tr>
|
1122
|
+
<td class="name">
|
1123
|
+
<a href="/name/nm6043184/?ref_=ttfc_fc_cr20" > Syed Waqar Alam
|
1124
|
+
</a> </td>
|
1125
|
+
<td>...</td>
|
1126
|
+
<td class="credit">
|
1127
|
+
visual effects artist
|
1128
|
+
</td>
|
1129
|
+
</tr>
|
1130
|
+
|
1131
|
+
<tr>
|
1132
|
+
<td class="name">
|
1133
|
+
<a href="/name/nm4724047/?ref_=ttfc_fc_cr21" > Umar Garcia Tariq
|
1134
|
+
</a> </td>
|
1135
|
+
<td>...</td>
|
1136
|
+
<td class="credit">
|
1137
|
+
visual effects supervisor
|
1138
|
+
</td>
|
1139
|
+
</tr>
|
1140
|
+
|
1141
|
+
<tr>
|
1142
|
+
<td class="name">
|
1143
|
+
<a href="/name/nm6202418/?ref_=ttfc_fc_cr22" > Ali Haider
|
1144
|
+
</a> </td>
|
1145
|
+
<td>...</td>
|
1146
|
+
<td class="credit">
|
1147
|
+
visual effects lead
|
1148
|
+
</td>
|
1149
|
+
</tr>
|
1150
|
+
|
1151
|
+
<tr>
|
1152
|
+
<td class="name">
|
1153
|
+
<a href="/name/nm6095385/?ref_=ttfc_fc_cr23" > Haider Iqbal
|
1154
|
+
</a> </td>
|
1155
|
+
<td>...</td>
|
1156
|
+
<td class="credit">
|
1157
|
+
visual effects line producer
|
1158
|
+
</td>
|
1159
|
+
</tr>
|
1160
|
+
|
1161
|
+
<tr>
|
1162
|
+
<td class="name">
|
1163
|
+
<a href="/name/nm6037450/?ref_=ttfc_fc_cr24" > Malik.Gillani
|
1164
|
+
</a> </td>
|
1165
|
+
<td>...</td>
|
1166
|
+
<td class="credit">
|
1167
|
+
visual effects
|
1168
|
+
</td>
|
1169
|
+
</tr>
|
1170
|
+
|
1171
|
+
<tr>
|
1172
|
+
<td class="name">
|
1173
|
+
<a href="/name/nm6277209/?ref_=ttfc_fc_cr25" > Rizwan Muhammad
|
1174
|
+
</a> </td>
|
1175
|
+
<td>...</td>
|
1176
|
+
<td class="credit">
|
1177
|
+
visual effects artist
|
1178
|
+
</td>
|
1179
|
+
</tr>
|
1180
|
+
|
1181
|
+
<tr>
|
1182
|
+
<td class="name">
|
1183
|
+
<a href="/name/nm6345552/?ref_=ttfc_fc_cr26" > Raheel Qureshi
|
1184
|
+
</a> </td>
|
1185
|
+
<td>...</td>
|
1186
|
+
<td class="credit">
|
1187
|
+
visual effects artist
|
1188
|
+
</td>
|
1189
|
+
</tr>
|
1190
|
+
|
1191
|
+
<tr>
|
1192
|
+
<td class="name">
|
1193
|
+
<a href="/name/nm6086361/?ref_=ttfc_fc_cr27" > Fahad Riaz
|
1194
|
+
</a> </td>
|
1195
|
+
<td>...</td>
|
1196
|
+
<td class="credit">
|
1197
|
+
animator
|
1198
|
+
</td>
|
1199
|
+
</tr>
|
1200
|
+
|
1201
|
+
<tr>
|
1202
|
+
<td class="name">
|
1203
|
+
<a href="/name/nm6288010/?ref_=ttfc_fc_cr28" > Talha Shamsi
|
1204
|
+
</a> </td>
|
1205
|
+
<td>...</td>
|
1206
|
+
<td class="credit">
|
1207
|
+
modeling supervisor
|
1208
|
+
</td>
|
1209
|
+
</tr>
|
1210
|
+
|
1211
|
+
<tr>
|
1212
|
+
<td class="name">
|
1213
|
+
<a href="/name/nm6090541/?ref_=ttfc_fc_cr29" > Zubair Tahir
|
1214
|
+
</a> </td>
|
1215
|
+
<td>...</td>
|
1216
|
+
<td class="credit">
|
1217
|
+
senior compositor
|
1218
|
+
</td>
|
1219
|
+
</tr>
|
1220
|
+
</tbody>
|
1221
|
+
</table>
|
1222
|
+
<h4 class="dataHeaderWithBorder">Stunts </h4>
|
1223
|
+
<table class="simpleTable simpleCreditsTable">
|
1224
|
+
<colgroup>
|
1225
|
+
<col class="column1">
|
1226
|
+
<col class="column2">
|
1227
|
+
<col class="column3">
|
1228
|
+
</colgroup>
|
1229
|
+
<tbody>
|
1230
|
+
|
1231
|
+
<tr>
|
1232
|
+
<td class="name">
|
1233
|
+
<a href="/name/nm6093499/?ref_=ttfc_fc_cr30" > Aboo
|
1234
|
+
</a> </td>
|
1235
|
+
<td>...</td>
|
1236
|
+
<td class="credit">
|
1237
|
+
stunt performer
|
1238
|
+
</td>
|
1239
|
+
</tr>
|
1240
|
+
|
1241
|
+
<tr>
|
1242
|
+
<td class="name">
|
1243
|
+
<a href="/name/nm3753595/?ref_=ttfc_fc_cr31" > Sher Khan
|
1244
|
+
</a> </td>
|
1245
|
+
<td>...</td>
|
1246
|
+
<td class="credit">
|
1247
|
+
stunt performer
|
1248
|
+
</td>
|
1249
|
+
</tr>
|
1250
|
+
</tbody>
|
1251
|
+
</table>
|
1252
|
+
<h4 class="dataHeaderWithBorder">Camera and Electrical Department </h4>
|
1253
|
+
<table class="simpleTable simpleCreditsTable">
|
1254
|
+
<colgroup>
|
1255
|
+
<col class="column1">
|
1256
|
+
<col class="column2">
|
1257
|
+
<col class="column3">
|
1258
|
+
</colgroup>
|
1259
|
+
<tbody>
|
1260
|
+
|
1261
|
+
<tr>
|
1262
|
+
<td class="name">
|
1263
|
+
<a href="/name/nm6144181/?ref_=ttfc_fc_cr32" > Muhammad Akram
|
1264
|
+
</a> </td>
|
1265
|
+
<td>...</td>
|
1266
|
+
<td class="credit">
|
1267
|
+
electrician
|
1268
|
+
</td>
|
1269
|
+
</tr>
|
1270
|
+
|
1271
|
+
<tr>
|
1272
|
+
<td class="name">
|
1273
|
+
<a href="/name/nm6144183/?ref_=ttfc_fc_cr33" > Waris Ali
|
1274
|
+
</a> </td>
|
1275
|
+
<td>...</td>
|
1276
|
+
<td class="credit">
|
1277
|
+
lighting technician
|
1278
|
+
</td>
|
1279
|
+
</tr>
|
1280
|
+
|
1281
|
+
<tr>
|
1282
|
+
<td class="name">
|
1283
|
+
<a href="/name/nm6093490/?ref_=ttfc_fc_cr34" > Arshad Altaf
|
1284
|
+
</a> </td>
|
1285
|
+
<td>...</td>
|
1286
|
+
<td class="credit">
|
1287
|
+
camera operator
|
1288
|
+
</td>
|
1289
|
+
</tr>
|
1290
|
+
|
1291
|
+
<tr>
|
1292
|
+
<td class="name">
|
1293
|
+
<a href="/name/nm2668352/?ref_=ttfc_fc_cr35" > Arshad
|
1294
|
+
</a> </td>
|
1295
|
+
<td>...</td>
|
1296
|
+
<td class="credit">
|
1297
|
+
lighting technician
|
1298
|
+
</td>
|
1299
|
+
</tr>
|
1300
|
+
|
1301
|
+
<tr>
|
1302
|
+
<td class="name">
|
1303
|
+
<a href="/name/nm6144186/?ref_=ttfc_fc_cr36" > Basit
|
1304
|
+
</a> </td>
|
1305
|
+
<td>...</td>
|
1306
|
+
<td class="credit">
|
1307
|
+
grip
|
1308
|
+
</td>
|
1309
|
+
</tr>
|
1310
|
+
|
1311
|
+
<tr>
|
1312
|
+
<td class="name">
|
1313
|
+
<a href="/name/nm5390762/?ref_=ttfc_fc_cr37" > Saeed Cheema
|
1314
|
+
</a> </td>
|
1315
|
+
<td>...</td>
|
1316
|
+
<td class="credit">
|
1317
|
+
focus puller
|
1318
|
+
</td>
|
1319
|
+
</tr>
|
1320
|
+
|
1321
|
+
<tr>
|
1322
|
+
<td class="name">
|
1323
|
+
<a href="/name/nm6144182/?ref_=ttfc_fc_cr38" > Malik Lal Din
|
1324
|
+
</a> </td>
|
1325
|
+
<td>...</td>
|
1326
|
+
<td class="credit">
|
1327
|
+
lighting technician
|
1328
|
+
</td>
|
1329
|
+
</tr>
|
1330
|
+
|
1331
|
+
<tr>
|
1332
|
+
<td class="name">
|
1333
|
+
<a href="/name/nm6144188/?ref_=ttfc_fc_cr39" > Fazal
|
1334
|
+
</a> </td>
|
1335
|
+
<td>...</td>
|
1336
|
+
<td class="credit">
|
1337
|
+
grip
|
1338
|
+
</td>
|
1339
|
+
</tr>
|
1340
|
+
|
1341
|
+
<tr>
|
1342
|
+
<td class="name">
|
1343
|
+
<a href="/name/nm4724047/?ref_=ttfc_fc_cr40" > Umar Garcia Tariq
|
1344
|
+
</a> </td>
|
1345
|
+
<td>...</td>
|
1346
|
+
<td class="credit">
|
1347
|
+
chief digital imaging technician
|
1348
|
+
</td>
|
1349
|
+
</tr>
|
1350
|
+
|
1351
|
+
<tr>
|
1352
|
+
<td class="name">
|
1353
|
+
<a href="/name/nm6144187/?ref_=ttfc_fc_cr41" > Asif Gul
|
1354
|
+
</a> </td>
|
1355
|
+
<td>...</td>
|
1356
|
+
<td class="credit">
|
1357
|
+
grip
|
1358
|
+
</td>
|
1359
|
+
</tr>
|
1360
|
+
|
1361
|
+
<tr>
|
1362
|
+
<td class="name">
|
1363
|
+
<a href="/name/nm6093491/?ref_=ttfc_fc_cr42" > Athar Hussain
|
1364
|
+
</a> </td>
|
1365
|
+
<td>...</td>
|
1366
|
+
<td class="credit">
|
1367
|
+
assistant camera / still photographer
|
1368
|
+
</td>
|
1369
|
+
</tr>
|
1370
|
+
|
1371
|
+
<tr>
|
1372
|
+
<td class="name">
|
1373
|
+
<a href="/name/nm6144185/?ref_=ttfc_fc_cr43" > Meraj
|
1374
|
+
</a> </td>
|
1375
|
+
<td>...</td>
|
1376
|
+
<td class="credit">
|
1377
|
+
lighting technician
|
1378
|
+
</td>
|
1379
|
+
</tr>
|
1380
|
+
|
1381
|
+
<tr>
|
1382
|
+
<td class="name">
|
1383
|
+
<a href="/name/nm6093492/?ref_=ttfc_fc_cr44" > Raja Najeeb
|
1384
|
+
</a> </td>
|
1385
|
+
<td>...</td>
|
1386
|
+
<td class="credit">
|
1387
|
+
assistant camera
|
1388
|
+
</td>
|
1389
|
+
</tr>
|
1390
|
+
|
1391
|
+
<tr>
|
1392
|
+
<td class="name">
|
1393
|
+
<a href="/name/nm6093494/?ref_=ttfc_fc_cr45" > Sarah Panni
|
1394
|
+
</a> </td>
|
1395
|
+
<td>...</td>
|
1396
|
+
<td class="credit">
|
1397
|
+
still photographer
|
1398
|
+
</td>
|
1399
|
+
</tr>
|
1400
|
+
|
1401
|
+
<tr>
|
1402
|
+
<td class="name">
|
1403
|
+
<a href="/name/nm6093493/?ref_=ttfc_fc_cr46" > Allah Rakha
|
1404
|
+
</a> </td>
|
1405
|
+
<td>...</td>
|
1406
|
+
<td class="credit">
|
1407
|
+
gaffer
|
1408
|
+
</td>
|
1409
|
+
</tr>
|
1410
|
+
|
1411
|
+
<tr>
|
1412
|
+
<td class="name">
|
1413
|
+
<a href="/name/nm2528746/?ref_=ttfc_fc_cr47" > Luke Rocheleau
|
1414
|
+
</a> </td>
|
1415
|
+
<td>...</td>
|
1416
|
+
<td class="credit">
|
1417
|
+
steadicam operator
|
1418
|
+
</td>
|
1419
|
+
</tr>
|
1420
|
+
|
1421
|
+
<tr>
|
1422
|
+
<td class="name">
|
1423
|
+
<a href="/name/nm6144184/?ref_=ttfc_fc_cr48" > Shahid
|
1424
|
+
</a> </td>
|
1425
|
+
<td>...</td>
|
1426
|
+
<td class="credit">
|
1427
|
+
lighting technician
|
1428
|
+
</td>
|
1429
|
+
</tr>
|
1430
|
+
|
1431
|
+
<tr>
|
1432
|
+
<td class="name">
|
1433
|
+
<a href="/name/nm6156310/?ref_=ttfc_fc_cr49" > Shahid
|
1434
|
+
</a> </td>
|
1435
|
+
<td>...</td>
|
1436
|
+
<td class="credit">
|
1437
|
+
lighting technician
|
1438
|
+
</td>
|
1439
|
+
</tr>
|
1440
|
+
|
1441
|
+
<tr>
|
1442
|
+
<td class="name">
|
1443
|
+
<a href="/name/nm6093489/?ref_=ttfc_fc_cr50" > Shayan Latif Sheikh
|
1444
|
+
</a> </td>
|
1445
|
+
<td>...</td>
|
1446
|
+
<td class="credit">
|
1447
|
+
camera operator
|
1448
|
+
</td>
|
1449
|
+
</tr>
|
1450
|
+
|
1451
|
+
<tr>
|
1452
|
+
<td class="name">
|
1453
|
+
<a href="/name/nm6144189/?ref_=ttfc_fc_cr51" > Waseem
|
1454
|
+
</a> </td>
|
1455
|
+
<td>...</td>
|
1456
|
+
<td class="credit">
|
1457
|
+
grip
|
1458
|
+
</td>
|
1459
|
+
</tr>
|
1460
|
+
</tbody>
|
1461
|
+
</table>
|
1462
|
+
<h4 class="dataHeaderWithBorder">Animation Department </h4>
|
1463
|
+
<table class="simpleTable simpleCreditsTable">
|
1464
|
+
<colgroup>
|
1465
|
+
<col class="column1">
|
1466
|
+
<col class="column2">
|
1467
|
+
<col class="column3">
|
1468
|
+
</colgroup>
|
1469
|
+
<tbody>
|
1470
|
+
|
1471
|
+
<tr>
|
1472
|
+
<td class="name">
|
1473
|
+
<a href="/name/nm6098780/?ref_=ttfc_fc_cr52" > Raheel Jawaid
|
1474
|
+
</a> </td>
|
1475
|
+
<td>...</td>
|
1476
|
+
<td class="credit">
|
1477
|
+
animator
|
1478
|
+
</td>
|
1479
|
+
</tr>
|
1480
|
+
|
1481
|
+
<tr>
|
1482
|
+
<td class="name">
|
1483
|
+
<a href="/name/nm6037450/?ref_=ttfc_fc_cr53" > Malik.Gillani
|
1484
|
+
</a> </td>
|
1485
|
+
<td>...</td>
|
1486
|
+
<td class="credit">
|
1487
|
+
animator
|
1488
|
+
</td>
|
1489
|
+
</tr>
|
1490
|
+
</tbody>
|
1491
|
+
</table>
|
1492
|
+
<h4 class="dataHeaderWithBorder">Costume and Wardrobe Department </h4>
|
1493
|
+
<table class="simpleTable simpleCreditsTable">
|
1494
|
+
<colgroup>
|
1495
|
+
<col class="column1">
|
1496
|
+
<col class="column2">
|
1497
|
+
<col class="column3">
|
1498
|
+
</colgroup>
|
1499
|
+
<tbody>
|
1500
|
+
|
1501
|
+
<tr>
|
1502
|
+
<td class="name">
|
1503
|
+
<a href="/name/nm6144190/?ref_=ttfc_fc_cr54" > Iftikhar Ahmad Shaheen Shah
|
1504
|
+
</a> </td>
|
1505
|
+
<td>...</td>
|
1506
|
+
<td class="credit">
|
1507
|
+
wardrobe assistant
|
1508
|
+
</td>
|
1509
|
+
</tr>
|
1510
|
+
</tbody>
|
1511
|
+
</table>
|
1512
|
+
<h4 class="dataHeaderWithBorder">Music Department </h4>
|
1513
|
+
<table class="simpleTable simpleCreditsTable">
|
1514
|
+
<colgroup>
|
1515
|
+
<col class="column1">
|
1516
|
+
<col class="column2">
|
1517
|
+
<col class="column3">
|
1518
|
+
</colgroup>
|
1519
|
+
<tbody>
|
1520
|
+
|
1521
|
+
<tr>
|
1522
|
+
<td class="name">
|
1523
|
+
<a href="/name/nm1803952/?ref_=ttfc_fc_cr55" > Ali Azmat
|
1524
|
+
</a> </td>
|
1525
|
+
<td>...</td>
|
1526
|
+
<td class="credit">
|
1527
|
+
singer
|
1528
|
+
</td>
|
1529
|
+
</tr>
|
1530
|
+
|
1531
|
+
<tr>
|
1532
|
+
<td class="name">
|
1533
|
+
<a href="/name/nm5870929/?ref_=ttfc_fc_cr56" > Amir Munawar
|
1534
|
+
</a> </td>
|
1535
|
+
<td>...</td>
|
1536
|
+
<td class="credit">
|
1537
|
+
music composer
|
1538
|
+
</td>
|
1539
|
+
</tr>
|
1540
|
+
</tbody>
|
1541
|
+
</table>
|
1542
|
+
<h4 class="dataHeaderWithBorder">Other crew </h4>
|
1543
|
+
<table class="simpleTable simpleCreditsTable">
|
1544
|
+
<colgroup>
|
1545
|
+
<col class="column1">
|
1546
|
+
<col class="column2">
|
1547
|
+
<col class="column3">
|
1548
|
+
</colgroup>
|
1549
|
+
<tbody>
|
1550
|
+
|
1551
|
+
<tr>
|
1552
|
+
<td class="name">
|
1553
|
+
<a href="/name/nm6051879/?ref_=ttfc_fc_cr57" > Muhammad Waqas
|
1554
|
+
</a> </td>
|
1555
|
+
<td>...</td>
|
1556
|
+
<td class="credit">
|
1557
|
+
film marketing
|
1558
|
+
</td>
|
1559
|
+
</tr>
|
1560
|
+
</tbody>
|
1561
|
+
</table>
|
1562
|
+
<h4 class="dataHeaderWithBorder">Thanks </h4>
|
1563
|
+
<table class="simpleTable simpleCreditsTable">
|
1564
|
+
<colgroup>
|
1565
|
+
<col class="column1">
|
1566
|
+
<col class="column2">
|
1567
|
+
<col class="column3">
|
1568
|
+
</colgroup>
|
1569
|
+
<tbody>
|
1570
|
+
|
1571
|
+
<tr>
|
1572
|
+
<td class="name">
|
1573
|
+
<a href="/name/nm6051879/?ref_=ttfc_fc_cr58" > Muhammad Waqas
|
1574
|
+
</a> </td>
|
1575
|
+
<td>...</td>
|
1576
|
+
<td class="credit">
|
1577
|
+
special thanks
|
1578
|
+
</td>
|
1579
|
+
</tr>
|
1580
|
+
</tbody>
|
1581
|
+
</table>
|
1582
|
+
|
1583
|
+
</div>
|
1584
|
+
</div>
|
1585
|
+
|
1586
|
+
|
1587
|
+
|
1588
|
+
<div class="article" id="see_also">
|
1589
|
+
<h2>See also</h2>
|
1590
|
+
<p>
|
1591
|
+
<span class="nobr">
|
1592
|
+
<a href="/title/tt1821700/releaseinfo?ref_=ttfc_sa_1" class="link" >Release Dates</a>
|
1593
|
+
<span class="ghost">|</span></span> <span class="nobr">
|
1594
|
+
<a href="/title/tt1821700/officialsites?ref_=ttfc_sa_2" class="link" >Official Sites</a>
|
1595
|
+
<span class="ghost">|</span></span> <span class="nobr">
|
1596
|
+
<a href="/title/tt1821700/business?ref_=ttfc_sa_3" class="link ghost" >Box Office/Business</a>
|
1597
|
+
<span class="ghost">|</span></span> <span class="nobr">
|
1598
|
+
<a href="/title/tt1821700/companycredits?ref_=ttfc_sa_4" class="link" >Company Credits</a>
|
1599
|
+
<span class="ghost">|</span></span> <span class="nobr">
|
1600
|
+
<a href="/title/tt1821700/locations?ref_=ttfc_sa_5" class="link" >Filming Locations</a>
|
1601
|
+
<span class="ghost">|</span></span> <span class="nobr">
|
1602
|
+
<a href="/title/tt1821700/technical?ref_=ttfc_sa_6" class="link" >Technical Specs</a>
|
1603
|
+
<span class="ghost">|</span></span> <span class="nobr">
|
1604
|
+
<a href="/title/tt1821700/literature?ref_=ttfc_sa_7" class="link ghost" >Literature</a>
|
1605
|
+
</span> </p>
|
1606
|
+
</div>
|
1607
|
+
|
1608
|
+
<script>
|
1609
|
+
if ('csm' in window) {
|
1610
|
+
csm.measure('csm_TitleContributeWidget_started');
|
1611
|
+
}
|
1612
|
+
</script>
|
1613
|
+
|
1614
|
+
<div class="article contribute">
|
1615
|
+
<div class="rightcornerlink">
|
1616
|
+
<a href="/help/?adding/&ref_=ttfc_cn_hlp" >Getting Started</a>
|
1617
|
+
<span>|</span>
|
1618
|
+
<a href="/czone/?ref_=ttfc_cn_cz" >Contributor Zone</a> »</div>
|
1619
|
+
<h2>Contribute to This Page</h2>
|
1620
|
+
|
1621
|
+
<div class="button-box">
|
1622
|
+
<form method="post" action="/updates?ref_=ttfc_cn_edt">
|
1623
|
+
<input type="hidden" name="auto" value="legacy/title/tt1821700/">
|
1624
|
+
<button class="btn primary large" type="submit">Edit page</button>
|
1625
|
+
</form>
|
1626
|
+
</div>
|
1627
|
+
|
1628
|
+
|
1629
|
+
|
1630
|
+
|
1631
|
+
|
1632
|
+
|
1633
|
+
|
1634
|
+
</div>
|
1635
|
+
|
1636
|
+
<script>
|
1637
|
+
if ('csm' in window) {
|
1638
|
+
csm.measure('csm_TitleContributeWidget_finished');
|
1639
|
+
}
|
1640
|
+
</script>
|
1641
|
+
|
1642
|
+
</div>
|
1643
|
+
|
1644
|
+
|
1645
|
+
<div id="sidebar">
|
1646
|
+
|
1647
|
+
<!-- begin TOP_RHS -->
|
1648
|
+
<div id="top_rhs_wrapper" class="dfp_slot">
|
1649
|
+
<script type="text/javascript">
|
1650
|
+
doWithAds(function(){
|
1651
|
+
ad_utils.register_ad('top_rhs');
|
1652
|
+
});
|
1653
|
+
</script>
|
1654
|
+
<iframe data-dart-params="#imdb2.consumer.title/;!TILE!;sz=300x250,300x600,11x1;p=tr;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;oe=utf-8;[CLIENT_SIDE_KEYVALUES];u=607726152806;ord=607726152806?" id="top_rhs" name="top_rhs" class="yesScript" width="300" height="250" data-original-width="300" data-original-height="250" data-config-width="300" data-config-height="250" data-cookie-width="300" data-cookie-height="250" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });"></iframe>
|
1655
|
+
<noscript><a href="http://ad.doubleclick.net/N4215/jump/imdb2.consumer.title/;tile=1;sz=300x250,300x600,11x1;p=tr;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;ord=607726152806?" target="_blank"><img src="http://ad.doubleclick.net/N4215/ad/imdb2.consumer.title/;tile=1;sz=300x250,300x600,11x1;p=tr;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;ord=607726152806?" border="0" alt="advertisement" /></a></noscript>
|
1656
|
+
</div>
|
1657
|
+
<div id="top_rhs_reflow_helper"></div>
|
1658
|
+
<div id="top_rhs_after" class="after_ad" style="visibility:hidden;">
|
1659
|
+
<a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a>
|
1660
|
+
</div>
|
1661
|
+
<script>
|
1662
|
+
doWithAds(function(){
|
1663
|
+
ad_utils.gpt.render_ad('top_rhs');
|
1664
|
+
}, "ad_utils not defined, unable to render client-side GPT ad.");
|
1665
|
+
</script>
|
1666
|
+
<!-- End TOP_RHS -->
|
1667
|
+
|
1668
|
+
|
1669
|
+
|
1670
|
+
|
1671
|
+
<div class="aux-content-widget-3 links subnav" div="quicklinks">
|
1672
|
+
|
1673
|
+
<a href="/title/tt1821700/?ref_=ttfc_ql" class="subnav_heading" >Waar</a> <hr/>
|
1674
|
+
|
1675
|
+
|
1676
|
+
<h4>Details</h4>
|
1677
|
+
<ul class="quicklinks">
|
1678
|
+
<li class="subnav_item_main subnav_selected">
|
1679
|
+
<a href="/title/tt1821700/fullcredits?ref_=ttfc_ql_1" class="link" >Full Cast and Crew</a>
|
1680
|
+
</li>
|
1681
|
+
<li class="subnav_item_main">
|
1682
|
+
<a href="/title/tt1821700/releaseinfo?ref_=ttfc_ql_2" class="link" >Release Dates</a>
|
1683
|
+
</li>
|
1684
|
+
<li class="subnav_item_main">
|
1685
|
+
<a href="/title/tt1821700/officialsites?ref_=ttfc_ql_3" class="link" >Official Sites</a>
|
1686
|
+
</li>
|
1687
|
+
<li class="subnav_item_main">
|
1688
|
+
<a href="/title/tt1821700/business?ref_=ttfc_ql_4" class="link ghost" >Box Office/Business</a>
|
1689
|
+
</li>
|
1690
|
+
<li class="subnav_item_main">
|
1691
|
+
<a href="/title/tt1821700/companycredits?ref_=ttfc_ql_5" class="link" >Company Credits</a>
|
1692
|
+
</li>
|
1693
|
+
<li class="subnav_item_main">
|
1694
|
+
<a href="/title/tt1821700/locations?ref_=ttfc_ql_6" class="link" >Filming Locations</a>
|
1695
|
+
</li>
|
1696
|
+
<li class="subnav_item_main">
|
1697
|
+
<a href="/title/tt1821700/technical?ref_=ttfc_ql_7" class="link" >Technical Specs</a>
|
1698
|
+
</li>
|
1699
|
+
<li class="subnav_item_main">
|
1700
|
+
<a href="/title/tt1821700/literature?ref_=ttfc_ql_8" class="link ghost" >Literature</a>
|
1701
|
+
</li>
|
1702
|
+
</ul>
|
1703
|
+
<hr/>
|
1704
|
+
|
1705
|
+
<div id="full_subnav">
|
1706
|
+
|
1707
|
+
|
1708
|
+
|
1709
|
+
<h4>Storyline</h4>
|
1710
|
+
<ul class="quicklinks">
|
1711
|
+
<li class="subnav_item_main">
|
1712
|
+
<a href="/title/tt1821700/taglines?ref_=ttfc_ql_stry_1" class="link ghost" >Taglines</a>
|
1713
|
+
</li>
|
1714
|
+
<li class="subnav_item_main">
|
1715
|
+
<a href="/title/tt1821700/plotsummary?ref_=ttfc_ql_stry_2" class="link" >Plot Summary</a>
|
1716
|
+
</li>
|
1717
|
+
<li class="subnav_item_main">
|
1718
|
+
<a href="/title/tt1821700/synopsis?ref_=ttfc_ql_stry_3" class="link ghost" >Synopsis</a>
|
1719
|
+
</li>
|
1720
|
+
<li class="subnav_item_main">
|
1721
|
+
<a href="/title/tt1821700/keywords?ref_=ttfc_ql_stry_4" class="link" >Plot Keywords</a>
|
1722
|
+
</li>
|
1723
|
+
<li class="subnav_item_main">
|
1724
|
+
<a href="/title/tt1821700/parentalguide?ref_=ttfc_ql_stry_5" class="link" >Parents Guide</a>
|
1725
|
+
</li>
|
1726
|
+
</ul>
|
1727
|
+
|
1728
|
+
|
1729
|
+
<h4>Did You Know?</h4>
|
1730
|
+
<ul class="quicklinks">
|
1731
|
+
<li class="subnav_item_main">
|
1732
|
+
<a href="/title/tt1821700/trivia?ref_=ttfc_ql_trv_1" class="link" >Trivia</a>
|
1733
|
+
</li>
|
1734
|
+
<li class="subnav_item_main">
|
1735
|
+
<a href="/title/tt1821700/goofs?ref_=ttfc_ql_trv_2" class="link" >Goofs</a>
|
1736
|
+
</li>
|
1737
|
+
<li class="subnav_item_main">
|
1738
|
+
<a href="/title/tt1821700/crazycredits?ref_=ttfc_ql_trv_3" class="link ghost" >Crazy Credits</a>
|
1739
|
+
</li>
|
1740
|
+
<li class="subnav_item_main">
|
1741
|
+
<a href="/title/tt1821700/quotes?ref_=ttfc_ql_trv_4" class="link" >Quotes</a>
|
1742
|
+
</li>
|
1743
|
+
<li class="subnav_item_main">
|
1744
|
+
<a href="/title/tt1821700/alternateversions?ref_=ttfc_ql_trv_5" class="link ghost" >Alternate Versions</a>
|
1745
|
+
</li>
|
1746
|
+
<li class="subnav_item_main">
|
1747
|
+
<a href="/title/tt1821700/movieconnections?ref_=ttfc_ql_trv_6" class="link ghost" >Connections</a>
|
1748
|
+
</li>
|
1749
|
+
<li class="subnav_item_main">
|
1750
|
+
<a href="/title/tt1821700/soundtrack?ref_=ttfc_ql_trv_7" class="link" >Soundtracks</a>
|
1751
|
+
</li>
|
1752
|
+
</ul>
|
1753
|
+
|
1754
|
+
|
1755
|
+
<h4>Photo & Video</h4>
|
1756
|
+
<ul class="quicklinks">
|
1757
|
+
<li class="subnav_item_main">
|
1758
|
+
<a href="/title/tt1821700/mediaindex?ref_=ttfc_ql_pv_1" class="link" >Photo Gallery</a>
|
1759
|
+
</li>
|
1760
|
+
<li class="subnav_item_main">
|
1761
|
+
<a href="/title/tt1821700/videogallery?ref_=ttfc_ql_pv_2" class="link" >Trailers and Videos</a>
|
1762
|
+
</li>
|
1763
|
+
</ul>
|
1764
|
+
|
1765
|
+
|
1766
|
+
<h4>Opinion</h4>
|
1767
|
+
<ul class="quicklinks">
|
1768
|
+
<li class="subnav_item_main">
|
1769
|
+
<a href="/title/tt1821700/awards?ref_=ttfc_ql_op_1" class="link ghost" >Awards</a>
|
1770
|
+
</li>
|
1771
|
+
<li class="subnav_item_main">
|
1772
|
+
<a href="/title/tt1821700/faq?ref_=ttfc_ql_op_2" class="link" >FAQ</a>
|
1773
|
+
</li>
|
1774
|
+
<li class="subnav_item_main">
|
1775
|
+
<a href="/title/tt1821700/reviews?ref_=ttfc_ql_op_3" class="link" >User Reviews</a>
|
1776
|
+
</li>
|
1777
|
+
<li class="subnav_item_main">
|
1778
|
+
<a href="/title/tt1821700/ratings?ref_=ttfc_ql_op_4" class="link" >User Ratings</a>
|
1779
|
+
</li>
|
1780
|
+
<li class="subnav_item_main">
|
1781
|
+
<a href="/title/tt1821700/externalreviews?ref_=ttfc_ql_op_5" class="link" >External Reviews</a>
|
1782
|
+
</li>
|
1783
|
+
<li class="subnav_item_main">
|
1784
|
+
<a href="/title/tt1821700/criticreviews?ref_=ttfc_ql_op_6" class="link ghost" >Metacritic Reviews</a>
|
1785
|
+
</li>
|
1786
|
+
<li class="subnav_item_main">
|
1787
|
+
<a href="/title/tt1821700/board/?ref_=ttfc_ql_op_7" class="link" >Message Board</a>
|
1788
|
+
</li>
|
1789
|
+
</ul>
|
1790
|
+
|
1791
|
+
|
1792
|
+
<h4>TV</h4>
|
1793
|
+
<ul class="quicklinks">
|
1794
|
+
<li class="subnav_item_main">
|
1795
|
+
<a href="/title/tt1821700/tvschedule?ref_=ttfc_ql_tv_1" class="link ghost" >TV Schedule</a>
|
1796
|
+
</li>
|
1797
|
+
</ul>
|
1798
|
+
|
1799
|
+
|
1800
|
+
<h4>Related Items</h4>
|
1801
|
+
<ul class="quicklinks">
|
1802
|
+
<li class="subnav_item_main">
|
1803
|
+
<a href="/title/tt1821700/news?ref_=ttfc_ql_rel_1" class="link" >NewsDesk</a>
|
1804
|
+
</li>
|
1805
|
+
<li class="subnav_item_main">
|
1806
|
+
<a href="/showtimes/title/tt1821700?ref_=ttfc_ql_rel_2" class="link ghost" >Showtimes</a>
|
1807
|
+
</li>
|
1808
|
+
<li class="subnav_item_main">
|
1809
|
+
<a href="/title/tt1821700/externalsites?ref_=ttfc_ql_rel_3" class="link" >External Sites</a>
|
1810
|
+
</li>
|
1811
|
+
</ul>
|
1812
|
+
|
1813
|
+
|
1814
|
+
<h4>Professional Services</h4>
|
1815
|
+
<ul class="quicklinks">
|
1816
|
+
<li class="subnav_item_main">
|
1817
|
+
<a href="http://pro.imdb.com/title/tt1821700?ref_=ttfc_ql_pro_1" class="link" >Get more at IMDbPro</a>
|
1818
|
+
</li>
|
1819
|
+
<li class="subnav_item_main">
|
1820
|
+
<a href="https://secure.imdb.com/store/photos/?ref_=ttfc_ql_pro_2" class="link" >Add posters & stills to this title</a>
|
1821
|
+
</li>
|
1822
|
+
</ul>
|
1823
|
+
<hr/>
|
1824
|
+
</div>
|
1825
|
+
|
1826
|
+
<div class="show_more"><span class="titlePageSprite arrows show"></span>Explore More</div>
|
1827
|
+
<div class="show_less"><span class="titlePageSprite arrows hide"></span>Show Less</div>
|
1828
|
+
</div>
|
1829
|
+
<div class="aux-content-widget-2" id="social-share-widget">
|
1830
|
+
|
1831
|
+
<div class="social">
|
1832
|
+
<div class="social_networking">
|
1833
|
+
<span><strong>Share</strong> this page:</span>
|
1834
|
+
<a onclick="window.open("http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2F", 'newWindow', 'width=626, height=436'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2F" target="_blank" title="Share on Facebook" class="share_icon facebook"></a>
|
1835
|
+
<a onclick="window.open("http://twitter.com/intent/tweet?text=Waar%20(2013)%20-%20http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2F", 'newWindow', 'width=815, height=436'); return false;" href="http://twitter.com/intent/tweet?text=Waar%20(2013)%20-%20http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2F" target="_blank" title="Share on Twitter" class="share_icon twitter"></a>
|
1836
|
+
<a onclick="$('div.social input[name=share-link]').show().select(); return false;" title="Share the page" class="share_icon share_url_link" href="http://www.imdb.com/title/tt1821700/"></a>
|
1837
|
+
</div>
|
1838
|
+
<input type="text" name="share-link" value="http://www.imdb.com/title/tt1821700/" readonly>
|
1839
|
+
</div>
|
1840
|
+
<script type="text/javascript">generic.monitoring.start_timing("facebook_like_iframe");</script>
|
1841
|
+
<div class="social_networking_like">
|
1842
|
+
<iframe
|
1843
|
+
id="iframe_like"
|
1844
|
+
name="fbLikeIFrame_0"
|
1845
|
+
class="social-iframe"
|
1846
|
+
scrolling="no"
|
1847
|
+
frameborder="0"
|
1848
|
+
allowTransparency="allowTransparency"
|
1849
|
+
ref="http://www.imdb.com/title/tt1821700/"
|
1850
|
+
width=280
|
1851
|
+
height=65></iframe>
|
1852
|
+
</div>
|
1853
|
+
</div>
|
1854
|
+
<div class="aux-content-widget-2">
|
1855
|
+
<div id="relatedListsWidget">
|
1856
|
+
<div class="rightcornerlink">
|
1857
|
+
<a href="/list/create?ref_=ttfc_rls" >Create a list</a> »
|
1858
|
+
</div>
|
1859
|
+
<h3>User Lists</h3>
|
1860
|
+
<p>Related lists from IMDb users</p>
|
1861
|
+
|
1862
|
+
<div class="list-preview even">
|
1863
|
+
<div class="list-preview-item-narrow">
|
1864
|
+
<a href="/list/ls006835361?ref_=ttfc_rls_1" ><img height="86" width="86" alt="list image" title="list image"src="/images/nopicture/medium/film.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMjE0NzgwODI4M15BMl5BanBnXkFtZTcwNjg3OTA0MQ@@._V1_SX86_CR0,0,86,86_AL_.jpg" /></a> </div>
|
1865
|
+
<div class="list_name">
|
1866
|
+
<strong><a href="/list/ls006835361?ref_=ttfc_rls_1" >My All Time Best War Movies</a></strong>
|
1867
|
+
</div>
|
1868
|
+
<div class="list_meta">
|
1869
|
+
a list of 44 titles
|
1870
|
+
<br />created 20 Jan 2012
|
1871
|
+
</div>
|
1872
|
+
<div class="clear"> </div>
|
1873
|
+
</div>
|
1874
|
+
<div class="list-preview odd">
|
1875
|
+
<div class="list-preview-item-narrow">
|
1876
|
+
<a href="/list/ls056407874?ref_=ttfc_rls_2" ><img height="86" width="86" alt="list image" title="list image"src="/images/nopicture/medium/film.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMjI2NjM2MjYzMV5BMl5BanBnXkFtZTgwMjc0NTE1MDE@._V1_SX86_CR0,0,86,86_AL_.jpg" /></a> </div>
|
1877
|
+
<div class="list_name">
|
1878
|
+
<strong><a href="/list/ls056407874?ref_=ttfc_rls_2" >A mirar!</a></strong>
|
1879
|
+
</div>
|
1880
|
+
<div class="list_meta">
|
1881
|
+
a list of 21 titles
|
1882
|
+
<br />created 8 months ago
|
1883
|
+
</div>
|
1884
|
+
<div class="clear"> </div>
|
1885
|
+
</div>
|
1886
|
+
<div class="list-preview even">
|
1887
|
+
<div class="list-preview-item-narrow">
|
1888
|
+
<a href="/list/ls054288889?ref_=ttfc_rls_3" ><img height="86" width="86" alt="list image" title="list image"src="/images/nopicture/medium/film.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMTA2NTkwNjUxNTZeQTJeQWpwZ15BbWU3MDE2OTMxMTg@._V1_SX86_CR0,0,86,86_AL_.jpg" /></a> </div>
|
1889
|
+
<div class="list_name">
|
1890
|
+
<strong><a href="/list/ls054288889?ref_=ttfc_rls_3" >Need to C</a></strong>
|
1891
|
+
</div>
|
1892
|
+
<div class="list_meta">
|
1893
|
+
a list of 26 titles
|
1894
|
+
<br />created 5 months ago
|
1895
|
+
</div>
|
1896
|
+
<div class="clear"> </div>
|
1897
|
+
</div>
|
1898
|
+
<div class="list-preview odd">
|
1899
|
+
<div class="list-preview-item-narrow">
|
1900
|
+
<a href="/list/ls059594650?ref_=ttfc_rls_4" ><img height="86" width="86" alt="list image" title="list image"src="/images/nopicture/medium/film.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMjI3OTIwNTMzOF5BMl5BanBnXkFtZTgwNzEzOTcxMDE@._V1_SX86_CR0,0,86,86_AL_.jpg" /></a> </div>
|
1901
|
+
<div class="list_name">
|
1902
|
+
<strong><a href="/list/ls059594650?ref_=ttfc_rls_4" >2013 MUST SEE</a></strong>
|
1903
|
+
</div>
|
1904
|
+
<div class="list_meta">
|
1905
|
+
a list of 25 titles
|
1906
|
+
<br />created 4 months ago
|
1907
|
+
</div>
|
1908
|
+
<div class="clear"> </div>
|
1909
|
+
</div>
|
1910
|
+
<div class="list-preview even">
|
1911
|
+
<div class="list-preview-item-narrow">
|
1912
|
+
<a href="/list/ls059277157?ref_=ttfc_rls_5" ><img height="86" width="86" alt="list image" title="list image"src="/images/nopicture/medium/film.png"class="loadlate hidden " loadlate="http://ia.media-imdb.com/images/M/MV5BMjEyMjcyNDI4MF5BMl5BanBnXkFtZTcwMDA5Mzg3OA@@._V1_SX86_CR0,0,86,86_AL_.jpg" /></a> </div>
|
1913
|
+
<div class="list_name">
|
1914
|
+
<strong><a href="/list/ls059277157?ref_=ttfc_rls_5" >Non ora</a></strong>
|
1915
|
+
</div>
|
1916
|
+
<div class="list_meta">
|
1917
|
+
a list of 36 titles
|
1918
|
+
<br />created 3 months ago
|
1919
|
+
</div>
|
1920
|
+
<div class="clear"> </div>
|
1921
|
+
</div>
|
1922
|
+
<div class="see-more">
|
1923
|
+
<a href="/lists/tt1821700?ref_=ttfc_rls_sm" >See all related lists</a> »
|
1924
|
+
</div>
|
1925
|
+
</div>
|
1926
|
+
</div>
|
1927
|
+
|
1928
|
+
<!-- no content received for slot: bottom_rhs -->
|
1929
|
+
|
1930
|
+
</div>
|
1931
|
+
|
1932
|
+
</div>
|
1933
|
+
|
1934
|
+
<div id="content-1" class="redesign clear">
|
1935
|
+
</div>
|
1936
|
+
|
1937
|
+
<br class="clear" />
|
1938
|
+
</div>
|
1939
|
+
|
1940
|
+
|
1941
|
+
<div id="footer" class="ft">
|
1942
|
+
<hr width="100%" size=1>
|
1943
|
+
<div id="rvi-div">
|
1944
|
+
<div class="recently-viewed"> </div>
|
1945
|
+
<br class="clear">
|
1946
|
+
<hr width="100%" size="1">
|
1947
|
+
</div>
|
1948
|
+
|
1949
|
+
<!-- begin BOTTOM_AD -->
|
1950
|
+
<div id="bottom_ad_wrapper" class="dfp_slot">
|
1951
|
+
<script type="text/javascript">
|
1952
|
+
doWithAds(function(){
|
1953
|
+
ad_utils.register_ad('bottom_ad');
|
1954
|
+
});
|
1955
|
+
</script>
|
1956
|
+
<iframe data-dart-params="#imdb2.consumer.title/;!TILE!;sz=728x90,2x1;p=b;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;oe=utf-8;[CLIENT_SIDE_KEYVALUES];u=607726152806;ord=607726152806?" id="bottom_ad" name="bottom_ad" class="yesScript" width="728" height="90" data-original-width="728" data-original-height="90" data-config-width="728" data-config-height="90" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });"></iframe>
|
1957
|
+
<noscript><a href="http://ad.doubleclick.net/N4215/jump/imdb2.consumer.title/;tile=2;sz=728x90,2x1;p=b;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;ord=607726152806?" target="_blank"><img src="http://ad.doubleclick.net/N4215/ad/imdb2.consumer.title/;tile=2;sz=728x90,2x1;p=b;g=ac;g=th;g=dr;tt=f;coo=pk;id=tt1821700;ab=b;bpx=1;s=3072;s=3075;s=32;s=750a;s=750;s=863a;s=863;s=3;s=4;s=12;s=67;s=142;s=150;s=283;s=333;s=336;s=337;s=338;s=341;s=343;s=344;s=622;s=762;s=833;s=921;s=1009;s=1046;s=1324;s=2285;s=3101;s=3102;s=3103;s=3175;s=3327;s=3717;s=4005;s=4030;s=4509;s=5611;ord=607726152806?" border="0" alt="advertisement" /></a></noscript>
|
1958
|
+
</div>
|
1959
|
+
<div id="bottom_ad_reflow_helper"></div>
|
1960
|
+
<script>
|
1961
|
+
doWithAds(function(){
|
1962
|
+
ad_utils.gpt.render_ad('bottom_ad');
|
1963
|
+
}, "ad_utils not defined, unable to render client-side GPT ad.");
|
1964
|
+
</script>
|
1965
|
+
<!-- End BOTTOM_AD -->
|
1966
|
+
|
1967
|
+
<p class="footer" align="center">
|
1968
|
+
|
1969
|
+
<a
|
1970
|
+
onclick="(new Image()).src='/rg/home/footer/images/b.gif?link=/';"
|
1971
|
+
href="/"
|
1972
|
+
>Home</a>
|
1973
|
+
| <a
|
1974
|
+
onclick="(new Image()).src='/rg/search/footer/images/b.gif?link=/search';"
|
1975
|
+
href="/search"
|
1976
|
+
>Search</a>
|
1977
|
+
| <a
|
1978
|
+
onclick="(new Image()).src='/rg/siteindex/footer/images/b.gif?link=/a2z';"
|
1979
|
+
href="/a2z"
|
1980
|
+
>Site Index</a>
|
1981
|
+
| <a
|
1982
|
+
onclick="(new Image()).src='/rg/intheaters/footer/images/b.gif?link=/movies-in-theaters/';"
|
1983
|
+
href="/movies-in-theaters/"
|
1984
|
+
>In Theaters</a>
|
1985
|
+
| <a
|
1986
|
+
onclick="(new Image()).src='/rg/comingsoon/footer/images/b.gif?link=/movies-coming-soon/';"
|
1987
|
+
href="/movies-coming-soon/"
|
1988
|
+
>Coming Soon</a>
|
1989
|
+
| <a
|
1990
|
+
onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=/chart/';"
|
1991
|
+
href="/chart/"
|
1992
|
+
>Top Movies</a>
|
1993
|
+
| <a
|
1994
|
+
onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=/chart/top';"
|
1995
|
+
href="/chart/top"
|
1996
|
+
>Top 250</a>
|
1997
|
+
| <a
|
1998
|
+
onclick="(new Image()).src='/rg/tv/footer/images/b.gif?link=/sections/tv/';"
|
1999
|
+
href="/sections/tv/"
|
2000
|
+
>TV</a>
|
2001
|
+
| <a
|
2002
|
+
onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=/news/';"
|
2003
|
+
href="/news/"
|
2004
|
+
>News</a>
|
2005
|
+
| <a
|
2006
|
+
onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=/boards/';"
|
2007
|
+
href="/boards/"
|
2008
|
+
>Message Boards</a>
|
2009
|
+
| <a
|
2010
|
+
onclick="(new Image()).src='/rg/pressroom/footer/images/b.gif?link=/pressroom/';"
|
2011
|
+
href="/pressroom/"
|
2012
|
+
>Press Room</a>
|
2013
|
+
<br>
|
2014
|
+
|
2015
|
+
<a
|
2016
|
+
onclick="(new Image()).src='/rg/account/footer/images/b.gif?link=https://secure.imdb.com/register-imdb/personalize';"
|
2017
|
+
href="https://secure.imdb.com/register-imdb/personalize"
|
2018
|
+
>Account</a>
|
2019
|
+
| <a
|
2020
|
+
onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=/advertising/';"
|
2021
|
+
href="/advertising/"
|
2022
|
+
>Advertising</a>
|
2023
|
+
| <a
|
2024
|
+
onclick="(new Image()).src='/rg/helpdesk/footer/images/b.gif?link=/helpdesk/contact';"
|
2025
|
+
href="/helpdesk/contact"
|
2026
|
+
>Contact Us</a>
|
2027
|
+
| <a
|
2028
|
+
onclick="(new Image()).src='/rg/jobs/footer/images/b.gif?link=/jobs';"
|
2029
|
+
href="/jobs"
|
2030
|
+
>Jobs</a>
|
2031
|
+
| <a href="http://pro.imdb.com/?ref_=cons_ft_hm" >IMDbPro</a>
|
2032
|
+
| <a
|
2033
|
+
onclick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com/';"
|
2034
|
+
href="http://www.boxofficemojo.com/"
|
2035
|
+
>Box Office Mojo</a>
|
2036
|
+
| <a
|
2037
|
+
onclick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com/';"
|
2038
|
+
href="http://www.withoutabox.com/"
|
2039
|
+
>Withoutabox</a>
|
2040
|
+
<br /><br />
|
2041
|
+
IMDb Mobile:
|
2042
|
+
<a
|
2043
|
+
onclick="(new Image()).src='/rg/mobile-ios/footer/images/b.gif?link=/apps/ios/';"
|
2044
|
+
href="/apps/ios/"
|
2045
|
+
>iPhone/iPad</a>
|
2046
|
+
| <a
|
2047
|
+
onclick="(new Image()).src='/rg/mobile-android/footer/images/b.gif?link=/android';"
|
2048
|
+
href="/android"
|
2049
|
+
>Android</a>
|
2050
|
+
| <a
|
2051
|
+
onclick="(new Image()).src='/rg/mobile-web/footer/images/b.gif?link=http://m.imdb.com';"
|
2052
|
+
href="http://m.imdb.com"
|
2053
|
+
>Mobile site</a>
|
2054
|
+
| <a
|
2055
|
+
onclick="(new Image()).src='/rg/mobile-win7/footer/images/b.gif?link=/windowsphone';"
|
2056
|
+
href="/windowsphone"
|
2057
|
+
>Windows Phone 7</a>
|
2058
|
+
| IMDb Social:
|
2059
|
+
<a
|
2060
|
+
onclick="(new Image()).src='/rg/facebook/footer/images/b.gif?link=http://www.facebook.com/imdb';"
|
2061
|
+
href="http://www.facebook.com/imdb"
|
2062
|
+
>Facebook</a>
|
2063
|
+
| <a
|
2064
|
+
onclick="(new Image()).src='/rg/twitter/footer/images/b.gif?link=http://twitter.com/imdb';"
|
2065
|
+
href="http://twitter.com/imdb"
|
2066
|
+
>Twitter</a>
|
2067
|
+
<br /><br />
|
2068
|
+
</p>
|
2069
|
+
|
2070
|
+
<p class="footer" align="center">
|
2071
|
+
<a
|
2072
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
|
2073
|
+
href="/help/show_article?conditions"
|
2074
|
+
>Copyright ©</a> 1990-2014
|
2075
|
+
<a
|
2076
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/';"
|
2077
|
+
href="/help/"
|
2078
|
+
>IMDb.com, Inc.</a>
|
2079
|
+
<br>
|
2080
|
+
<a
|
2081
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
|
2082
|
+
href="/help/show_article?conditions"
|
2083
|
+
>Conditions of Use</a> | <a
|
2084
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/privacy';"
|
2085
|
+
href="/privacy"
|
2086
|
+
>Privacy Policy</a> | <a
|
2087
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=//www.amazon.com/InterestBasedAds';"
|
2088
|
+
href="//www.amazon.com/InterestBasedAds"
|
2089
|
+
>Interest-Based Ads</a>
|
2090
|
+
<br>
|
2091
|
+
An <span id="amazon_logo" class="footer_logo" align="middle"></span> company.
|
2092
|
+
</p>
|
2093
|
+
|
2094
|
+
|
2095
|
+
|
2096
|
+
|
2097
|
+
<table class="footer" id="amazon-affiliates">
|
2098
|
+
<tr>
|
2099
|
+
<td colspan="8">
|
2100
|
+
Amazon Affiliates
|
2101
|
+
</td>
|
2102
|
+
</tr>
|
2103
|
+
<tr>
|
2104
|
+
<td class="amazon-affiliate-site-first">
|
2105
|
+
|
2106
|
+
<a class="amazon-affiliate-site-link" href="http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20">
|
2107
|
+
<span class="amazon-affiliate-site-name">Amazon Instant Video</span><br>
|
2108
|
+
<span class="amazon-affiliate-site-desc">Watch Movies &<br>TV Online</span>
|
2109
|
+
</a>
|
2110
|
+
</td>
|
2111
|
+
|
2112
|
+
<td class="amazon-affiliate-site-item-nth">
|
2113
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20 >
|
2114
|
+
<span class="amazon-affiliate-site-name">Prime Instant Video</span><br>
|
2115
|
+
<span class="amazon-affiliate-site-desc">Unlimited Streaming<br>of Movies & TV</span>
|
2116
|
+
</a>
|
2117
|
+
</td>
|
2118
|
+
<td class="amazon-affiliate-site-item-nth">
|
2119
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.de/b?ie=UTF8&node=284266&tag=imdbpr1-de-21 >
|
2120
|
+
<span class="amazon-affiliate-site-name">Amazon Germany</span><br>
|
2121
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
2122
|
+
</a>
|
2123
|
+
</td>
|
2124
|
+
<td class="amazon-affiliate-site-item-nth">
|
2125
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.it/b?ie=UTF8&node=412606031&tag=imdbpr1-it-21 >
|
2126
|
+
<span class="amazon-affiliate-site-name">Amazon Italy</span><br>
|
2127
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
2128
|
+
</a>
|
2129
|
+
</td>
|
2130
|
+
<td class="amazon-affiliate-site-item-nth">
|
2131
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.fr/b?ie=UTF8&node=405322&tag=imdbpr1-fr-21 >
|
2132
|
+
<span class="amazon-affiliate-site-name">Amazon France</span><br>
|
2133
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
2134
|
+
</a>
|
2135
|
+
</td>
|
2136
|
+
<td class="amazon-affiliate-site-item-nth">
|
2137
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.in/movies-tv-shows/b/?ie=UTF&node=976416031&tag=imdbpr1-in-21 >
|
2138
|
+
<span class="amazon-affiliate-site-name">Amazon India</span><br>
|
2139
|
+
<span class="amazon-affiliate-site-desc">Buy Movie and<br>TV Show DVDs</span>
|
2140
|
+
</a>
|
2141
|
+
</td>
|
2142
|
+
<td class="amazon-affiliate-site-item-nth">
|
2143
|
+
<a class="amazon-affiliate-site-link" href=http://www.dpreview.com >
|
2144
|
+
<span class="amazon-affiliate-site-name">DPReview</span><br>
|
2145
|
+
<span class="amazon-affiliate-site-desc">Digital<br>Photography</span>
|
2146
|
+
</a>
|
2147
|
+
</td>
|
2148
|
+
<td class="amazon-affiliate-site-item-nth">
|
2149
|
+
<a class="amazon-affiliate-site-link" href=http://www.audible.com >
|
2150
|
+
<span class="amazon-affiliate-site-name">Audible</span><br>
|
2151
|
+
<span class="amazon-affiliate-site-desc">Download<br>Audio Books</span>
|
2152
|
+
</a>
|
2153
|
+
</td>
|
2154
|
+
</tr>
|
2155
|
+
</table>
|
2156
|
+
</div>
|
2157
|
+
</div>
|
2158
|
+
</div>
|
2159
|
+
|
2160
|
+
<script type="text/javascript" src="http://ia.media-imdb.com/images/G/01/imdb/js/collections/title-2315291687._V351752244_.js"></script>
|
2161
|
+
|
2162
|
+
<script type="text/imdblogin-js" id="login">
|
2163
|
+
jQuery(document).ready(function(){
|
2164
|
+
window.imdb.login_lightbox("https://secure.imdb.com", "http://www.imdb.com/title/tt1821700/fullcredits/");
|
2165
|
+
});
|
2166
|
+
</script>
|
2167
|
+
|
2168
|
+
<script type="text/javascript">
|
2169
|
+
jQuery(
|
2170
|
+
function() {
|
2171
|
+
var isAdvertisingThemed = !!(window.custom && window.custom.full_page && window.custom.full_page.theme),
|
2172
|
+
url = "http://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&href=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2F&colorscheme=light",
|
2173
|
+
like = document.getElementById('iframe_like');
|
2174
|
+
|
2175
|
+
if (!isAdvertisingThemed && like) {
|
2176
|
+
like.src = url;
|
2177
|
+
like.onload = function () { generic.monitoring.stop_timing('facebook_like_iframe', '', false); };
|
2178
|
+
} else if (isAdvertisingThemed) {
|
2179
|
+
$('.social_networking_like').closest('.aux-content-widget-2').hide();
|
2180
|
+
}
|
2181
|
+
}
|
2182
|
+
|
2183
|
+
);
|
2184
|
+
</script>
|
2185
|
+
<!-- begin ads footer -->
|
2186
|
+
|
2187
|
+
<!-- Begin SIS code -->
|
2188
|
+
<iframe id="sis_pixel_sitewide" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0" style="display: none;"></iframe>
|
2189
|
+
<script>
|
2190
|
+
setTimeout(function(){
|
2191
|
+
try{
|
2192
|
+
//sis3.0 pixel
|
2193
|
+
var url_sis3 = 'http://s.amazon-adsystem.com/iu3?',
|
2194
|
+
params_sis3 = [
|
2195
|
+
"d=imdb.com",
|
2196
|
+
"a1=010144631a04c5fa3f6bdea554cb4e368e30d10795353b0e1d18ee52662ea8ec5808",
|
2197
|
+
"a2=0101550f2ae68e9bbcb675ec36aad01568b15f81773398b065827fec2c02be22d3a2",
|
2198
|
+
"pId=",
|
2199
|
+
"r=1",
|
2200
|
+
"rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2Ffullcredits%2F",
|
2201
|
+
"encoding=server",
|
2202
|
+
"cb=607726152806"
|
2203
|
+
];
|
2204
|
+
|
2205
|
+
(document.getElementById('sis_pixel_sitewide')).src = url_sis3 + params_sis3.join('&');
|
2206
|
+
}
|
2207
|
+
catch(e){
|
2208
|
+
if ('consoleLog' in window){
|
2209
|
+
consoleLog('Pixel failure ' + e.toString(),'sis');
|
2210
|
+
}
|
2211
|
+
if (window.ueLogError) {
|
2212
|
+
window.ueLogError(e);
|
2213
|
+
}
|
2214
|
+
}
|
2215
|
+
}, 5);
|
2216
|
+
</script>
|
2217
|
+
<!-- End SIS code -->
|
2218
|
+
|
2219
|
+
<!-- begin comscore beacon -->
|
2220
|
+
<script type="text/javascript" src='http://ia.media-imdb.com/images/G/01/imdbads/js/beacon-58460835._V379390778_.js'></script>
|
2221
|
+
<script type="text/javascript">
|
2222
|
+
if(window.COMSCORE){
|
2223
|
+
COMSCORE.beacon({
|
2224
|
+
c1: 2,
|
2225
|
+
c2:"6034961",
|
2226
|
+
c3:"",
|
2227
|
+
c4:"http://www.imdb.com/title/tt1821700/fullcredits/",
|
2228
|
+
c5:"",
|
2229
|
+
c6:"",
|
2230
|
+
c15:""
|
2231
|
+
});
|
2232
|
+
}
|
2233
|
+
</script>
|
2234
|
+
<noscript>
|
2235
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1821700%2Ffullcredits%2F&c5=c6=&15=&cj=1"/>
|
2236
|
+
</noscript>
|
2237
|
+
<!-- end comscore beacon -->
|
2238
|
+
|
2239
|
+
<script>
|
2240
|
+
doWithAds(function(){
|
2241
|
+
(new Image()).src = "http://www.amazon.com/aan/2009-05-01/imdb/default?slot=sitewide-iframe&u=607726152806&ord=607726152806";
|
2242
|
+
},"unable to request AAN pixel");
|
2243
|
+
</script>
|
2244
|
+
|
2245
|
+
<script>
|
2246
|
+
doWithAds(function(){
|
2247
|
+
window.jQuery && jQuery(function(){
|
2248
|
+
generic.document_is_ready()
|
2249
|
+
});
|
2250
|
+
generic.monitoring.stop_timing('page_load','',true);
|
2251
|
+
generic.monitoring.all_events_started();
|
2252
|
+
}, "No monitoring or document_is_ready object in generic");
|
2253
|
+
</script>
|
2254
|
+
<!-- end ads footer -->
|
2255
|
+
|
2256
|
+
<div id="servertime" time="147"/>
|
2257
|
+
|
2258
|
+
|
2259
|
+
|
2260
|
+
<script>
|
2261
|
+
if (typeof uet == 'function') {
|
2262
|
+
uet("be");
|
2263
|
+
}
|
2264
|
+
</script>
|
2265
|
+
</body>
|
2266
|
+
</html>
|
2267
|
+
|