onebox 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,1236 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en" dir="ltr" class="client-nojs">
3
+ <head>
4
+ <meta charset="UTF-8" /><title>Kevin Bacon - Wikipedia, the free encyclopedia</title>
5
+ <meta name="generator" content="MediaWiki 1.22wmf11" />
6
+ <link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
7
+ <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
8
+ <link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
9
+ <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
10
+ <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
11
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmw.PopUpMediaTransform%7Cskins.vector&amp;only=styles&amp;skin=vector&amp;*" />
12
+ <meta name="ResourceLoaderDynamicStyles" content="" />
13
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector&amp;*" />
14
+ <style>a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
15
+ /* cache key: enwiki:resourceloader:filter:minify-css:7:d11e4771671c2d6cdedf7c90d8131cd5 */</style>
16
+ <script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector&amp;*"></script>
17
+ <script>if(window.mw){
18
+ mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Kevin_Bacon","wgTitle":"Kevin Bacon","wgCurRevisionId":566422525,"wgArticleId":16827,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with dead external links","Articles with dead external links from October 2010","Wikipedia indefinitely semi-protected biographies of living people","Use mdy dates from June 2011","Articles with hCards","All articles with unsourced statements","Articles with unsourced statements from July 2011","Articles with unsourced statements from October 2009","Articles with unsourced statements from January 2008","Articles with unsourced statements from January 2010","Commons category template with no category set","Commons category with page title same as on Wikidata","Wikipedia articles with VIAF identifiers","1958 births","Actors from Philadelphia, Pennsylvania","American film actors","American soap opera actors","American television actors","American voice actors","Best Miniseries or Television Movie Actor Golden Globe winners","Circle in the Square Theatre School alumni","Living people","Obie Award recipients","Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners","Sedgwick family","20th-century American actors","21st-century American actors","American male actors","American atheists"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Kevin_Bacon","wgIsProbablyEditable":false,"wgRestrictionEdit":["autoconfirmed"],"wgRestrictionMove":["autoconfirmed"],"wgVectorEnabledModules":{"collapsiblenav":true,"expandablesearch":false,"footercleanup":true,"sectioneditlinks":false,"experiments":true},"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"templateEditor":false,"templates":false,"preview":false,"previewDialog":false,"publish":false,"toc":false},"wgArticleFeedbackv5Permissions":{"aft-reader":true,"aft-member":false,"aft-editor":false,"aft-monitor":false,"aft-administrator":false,"aft-oversighter":false,"aft-noone":false},"wgVisualEditor":{"isPageWatched":false,"pageLanguageCode":"en","pageLanguageDir":"ltr","magnifyClipIconURL":"//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png"},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgULSAcceptLanguageList":[],"wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","Geo":{"city":"","country":""},"wgNoticeProject":"wikipedia","aftv5Article":{"id":16827,"title":"Kevin Bacon","namespace":0,"categories":["1958 births","20th-century American actors","21st-century American actors","Actors from Philadelphia, Pennsylvania","All articles with dead external links","All articles with unsourced statements","American atheists","American film actors","American male actors","American soap opera actors","American television actors","American voice actors","Articles with dead external links from October 2010","Articles with hCards","Articles with unsourced statements from January 2008","Articles with unsourced statements from January 2010","Articles with unsourced statements from July 2011","Articles with unsourced statements from October 2009","Best Miniseries or Television Movie Actor Golden Globe winners","Circle in the Square Theatre School alumni","Commons category template with no category set","Commons category with page title same as on Wikidata","Living people","Obie Award recipients","Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners","Sedgwick family","Use mdy dates from June 2011","Wikipedia articles with VIAF identifiers","Wikipedia indefinitely semi-protected biographies of living people"],"permissionLevel":false},"wgWikibaseItemId":"q3454165"});
19
+ }</script><script>if(window.mw){
20
+ mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":1,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":false,"showjumplinks":1,"shownumberswatching":1,"showtoc":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,
21
+ "watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"useeditwarning":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"vector-simplesearch":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"aftv5-last-filter":null,"visualeditor-enable":1,"visualeditor-betatempdisable":0,"wikilove-enabled":1,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-email-format":"html","echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-other":false,"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":
22
+ false,"echo-subscriptions-web-reverted":true,"echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,
23
+ "gadget-mySandbox":1});},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
24
+ /* cache key: enwiki:resourceloader:filter:minify-js:7:f3b3aab0a5ce3a6f53c872b2a5937b9d */
25
+ }</script>
26
+ <script>if(window.mw){
27
+ mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","ext.vector.footerCleanup","ext.visualEditor.viewPageTarget.init","ext.wikimediaShopLink.core","ext.uls.init","ext.uls.interface","wikibase.client.init","ext.centralNotice.bannerController","skins.vector.js"]);
28
+ }</script>
29
+ <script src="//bits.wikimedia.org/geoiplookup"></script><link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.22wmf11/skins/vector/csshover.min.htc")}</style><![endif]--></head>
30
+ <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Kevin_Bacon skin-vector action-view vector-animateLayout">
31
+ <div id="mw-page-base" class="noprint"></div>
32
+ <div id="mw-head-base" class="noprint"></div>
33
+ <div id="content" class="mw-body" role="main">
34
+ <a id="top"></a>
35
+ <div id="mw-js-message" style="display:none;"></div>
36
+ <div id="siteNotice"><!-- CentralNotice --></div>
37
+ <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">Kevin Bacon</span></h1>
38
+ <div id="bodyContent">
39
+ <div id="siteSub">From Wikipedia, the free encyclopedia</div>
40
+ <div id="contentSub"></div>
41
+ <div id="jump-to-nav" class="mw-jump">
42
+ Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
43
+ </div>
44
+ <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="dablink">For other uses, see <a href="/wiki/Kevin_Bacon_(disambiguation)" title="Kevin Bacon (disambiguation)">Kevin Bacon (disambiguation)</a>.</div>
45
+ <div class="metadata topicon nopopups" id="protected-icon" style="display:none; right:55px;"><a href="/wiki/Wikipedia:Protection_policy#semi" title="This article is semi-protected to promote compliance with the policy on biographies of living people."><img alt="Page semi-protected" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Padlock-silver.svg/20px-Padlock-silver.svg.png" width="20" height="20" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Padlock-silver.svg/30px-Padlock-silver.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Padlock-silver.svg/40px-Padlock-silver.svg.png 2x" /></a></div>
46
+ <table class="infobox biography vcard" cellspacing="3" style="border-spacing:3px;width:22em;">
47
+ <tr>
48
+ <th colspan="2" style="text-align:center;font-size:125%;font-weight:bold;"><span class="fn">Kevin Bacon</span></th>
49
+ </tr>
50
+ <tr>
51
+ <td colspan="2" style="text-align:center;"><a href="/wiki/File:Kevin_Bacon_Comic-Con_2012.jpg" class="image"><img alt="Kevin Bacon Comic-Con 2012.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Kevin_Bacon_Comic-Con_2012.jpg/225px-Kevin_Bacon_Comic-Con_2012.jpg" width="225" height="296" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Kevin_Bacon_Comic-Con_2012.jpg/338px-Kevin_Bacon_Comic-Con_2012.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/78/Kevin_Bacon_Comic-Con_2012.jpg/450px-Kevin_Bacon_Comic-Con_2012.jpg 2x" /></a><br />
52
+ <div>Bacon at the 2012 <a href="/wiki/San_Diego_Comic-Con_International" title="San Diego Comic-Con International">Comic-Con</a> in San Diego.</div>
53
+ </td>
54
+ </tr>
55
+ <tr>
56
+ <th scope="row" style="text-align:left;">Born</th>
57
+ <td><span class="nickname">Kevin Norwood Bacon</span><br />
58
+ <span style="display:none">(<span class="bday">1958-07-08</span>)</span> July 8, 1958 <span class="noprint ForceAgeToShow">(age&#160;55)</span><br />
59
+ <span class="birthplace"><a href="/wiki/Philadelphia" title="Philadelphia">Philadelphia</a>, <a href="/wiki/Pennsylvania" title="Pennsylvania">Pennsylvania</a>, U.S.</span></td>
60
+ </tr>
61
+ <tr>
62
+ <th scope="row" style="text-align:left;">Nationality</th>
63
+ <td class="category">American</td>
64
+ </tr>
65
+ <tr>
66
+ <th scope="row" style="text-align:left;"><i><a href="/wiki/Alma_mater" title="Alma mater">Alma mater</a></i></th>
67
+ <td><a href="/wiki/Pennsylvania_Governor%27s_School_for_the_Arts" title="Pennsylvania Governor's School for the Arts">Pennsylvania Governor's School for the Arts</a></td>
68
+ </tr>
69
+ <tr>
70
+ <th scope="row" style="text-align:left;">Occupation</th>
71
+ <td class="role">Actor, voice actor, musician</td>
72
+ </tr>
73
+ <tr>
74
+ <th scope="row" style="text-align:left;">Years active</th>
75
+ <td>1978–present</td>
76
+ </tr>
77
+ <tr>
78
+ <th scope="row" style="text-align:left;">Spouse(s)</th>
79
+ <td><a href="/wiki/Kyra_Sedgwick" title="Kyra Sedgwick">Kyra Sedgwick</a> (1988–present; 2 children)</td>
80
+ </tr>
81
+ <tr>
82
+ <th colspan="2" style="text-align:center;">Website</th>
83
+ </tr>
84
+ <tr>
85
+ <td colspan="2" style="text-align:center;"><span class="url"><a rel="nofollow" class="external text" href="http://www.baconbros.com/">www.baconbros.com</a></span></td>
86
+ </tr>
87
+ </table>
88
+ <p><b>Kevin Norwood Bacon</b><sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span>[</span>1<span>]</span></a></sup> (born July 8, 1958) is an American actor and musician whose notable roles include <i><a href="/wiki/National_Lampoon%27s_Animal_House" title="National Lampoon's Animal House">National Lampoon's Animal House</a></i>, <i><a href="/wiki/Diner_(film)" title="Diner (film)">Diner</a></i>, <i><a href="/wiki/Footloose_(1984_film)" title="Footloose (1984 film)">Footloose</a></i>, <i><a href="/wiki/Flatliners" title="Flatliners">Flatliners</a></i>, <i><a href="/wiki/Wild_Things" title="Wild Things">Wild Things</a></i>, <i><a href="/wiki/A_Few_Good_Men" title="A Few Good Men">A Few Good Men</a></i>, <i><a href="/wiki/JFK_(film)" title="JFK (film)">JFK</a></i>, <i><a href="/wiki/The_River_Wild" title="The River Wild">The River Wild</a></i>, <i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i>, <i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i>, <i><a href="/wiki/Hollow_Man" title="Hollow Man">Hollow Man</a></i>, <i><a href="/wiki/Stir_of_Echoes" title="Stir of Echoes">Stir of Echoes</a></i>, <i><a href="/wiki/Trapped_(2002_film)" title="Trapped (2002 film)">Trapped</a></i>, <i><a href="/wiki/Mystic_River_(film)" title="Mystic River (film)">Mystic River</a></i>, <i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i>, <i><a href="/wiki/Friday_the_13th_(1980_film)" title="Friday the 13th (1980 film)">Friday the 13th</a></i>, <i><a href="/wiki/Death_Sentence" title="Death Sentence">Death Sentence</a></i>, <i><a href="/wiki/Frost/Nixon_(film)" title="Frost/Nixon (film)">Frost/Nixon</a></i>, <i><a href="/wiki/X-Men:_First_Class" title="X-Men: First Class">X-Men: First Class</a></i>, and <i><a href="/wiki/Tremors_(film)" title="Tremors (film)">Tremors</a></i>. He currently stars on the <a href="/wiki/Fox_Broadcasting_Company" title="Fox Broadcasting Company">Fox</a> television series <i><a href="/wiki/The_Following" title="The Following">The Following</a></i>.</p>
89
+ <p>Bacon has won <a href="/wiki/Golden_Globe_Award" title="Golden Globe Award">Golden Globe</a> and <a href="/wiki/Screen_Actors_Guild_Awards" title="Screen Actors Guild Awards" class="mw-redirect">Screen Actors Guild Awards</a>, was nominated for an <a href="/wiki/Emmy_Award" title="Emmy Award">Emmy Award</a>,<sup id="cite_ref-awards_2-0" class="reference"><a href="#cite_note-awards-2"><span>[</span>2<span>]</span></a></sup> and was named by <i><a href="/wiki/The_Guardian" title="The Guardian">The Guardian</a></i> as one of the best actors never to have received an <a href="/wiki/Academy_Award" title="Academy Award">Academy Award</a> nomination.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span>[</span>3<span>]</span></a></sup> In 2003, Bacon received a star on the <a href="/wiki/Hollywood_Walk_of_Fame" title="Hollywood Walk of Fame">Hollywood Walk of Fame</a>.<sup id="cite_ref-awards_2-1" class="reference"><a href="#cite_note-awards-2"><span>[</span>2<span>]</span></a></sup></p>
90
+ <div id="toc" class="toc">
91
+ <div id="toctitle">
92
+ <h2>Contents</h2>
93
+ </div>
94
+ <ul>
95
+ <li class="toclevel-1 tocsection-1"><a href="#Early_life"><span class="tocnumber">1</span> <span class="toctext">Early life</span></a></li>
96
+ <li class="toclevel-1 tocsection-2"><a href="#Acting_career"><span class="tocnumber">2</span> <span class="toctext">Acting career</span></a></li>
97
+ <li class="toclevel-1 tocsection-3"><a href="#Personal_life"><span class="tocnumber">3</span> <span class="toctext">Personal life</span></a></li>
98
+ <li class="toclevel-1 tocsection-4"><a href="#Six_Degrees_of_Kevin_Bacon"><span class="tocnumber">4</span> <span class="toctext">Six Degrees of Kevin Bacon</span></a></li>
99
+ <li class="toclevel-1 tocsection-5"><a href="#Music"><span class="tocnumber">5</span> <span class="toctext">Music</span></a></li>
100
+ <li class="toclevel-1 tocsection-6"><a href="#Filmography"><span class="tocnumber">6</span> <span class="toctext">Filmography</span></a>
101
+ <ul>
102
+ <li class="toclevel-2 tocsection-7"><a href="#Films"><span class="tocnumber">6.1</span> <span class="toctext">Films</span></a></li>
103
+ <li class="toclevel-2 tocsection-8"><a href="#Television"><span class="tocnumber">6.2</span> <span class="toctext">Television</span></a></li>
104
+ </ul>
105
+ </li>
106
+ <li class="toclevel-1 tocsection-9"><a href="#References"><span class="tocnumber">7</span> <span class="toctext">References</span></a></li>
107
+ <li class="toclevel-1 tocsection-10"><a href="#External_links"><span class="tocnumber">8</span> <span class="toctext">External links</span></a></li>
108
+ </ul>
109
+ </div>
110
+ <h2><span class="mw-headline" id="Early_life">Early life</span></h2>
111
+ <p>Bacon, one of six children, was born and raised in a close-knit family in <a href="/wiki/Philadelphia" title="Philadelphia">Philadelphia</a>, Pennsylvania.<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>4<span>]</span></a></sup> His mother, Ruth Hilda (née Holmes; 1916–1991), taught at an elementary school and was a liberal activist, while his father, <a href="/wiki/Edmund_Bacon_(architect)" title="Edmund Bacon (architect)">Edmund Norwood Bacon</a> (May 2, 1910 – October 14, 2005), was a well-respected architect and a prominent Philadelphian who had been Executive Director of the Philadelphia City Planning Commission for many years. At 16, in 1975, Bacon won a full scholarship to and attended the <a href="/wiki/Pennsylvania_Governor%27s_School_for_the_Arts" title="Pennsylvania Governor's School for the Arts">Pennsylvania Governor's School for the Arts</a> at Bucknell University,<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>5<span>]</span></a></sup> a state-funded five-week arts program at which he studied theatre under Dr. Glory Van Scott. The experience solidified Bacon's passion for the arts.</p>
112
+ <h2><span class="mw-headline" id="Acting_career">Acting career</span></h2>
113
+ <p>Bacon left home at age 17 to pursue a theater career in New York, where he appeared in a production at the <a href="/wiki/Circle_in_the_Square" title="Circle in the Square" class="mw-redirect">Circle in the Square Theater School</a>. "I wanted life, man, the real thing", he later recalled to <a href="/wiki/Nancy_Mills" title="Nancy Mills" class="mw-redirect">Nancy Mills</a> of <i><a href="/wiki/Cosmopolitan_(magazine)" title="Cosmopolitan (magazine)">Cosmopolitan</a></i>. "The message I got was 'The arts are it. Business is the devil's work. Art and creative expression are next to godliness.' Combine that with an immense ego and you wind up with an actor."<sup id="cite_ref-cosmo91_6-0" class="reference"><a href="#cite_note-cosmo91-6"><span>[</span>6<span>]</span></a></sup> Bacon's debut in the <a href="/wiki/Fraternities_and_sororities" title="Fraternities and sororities" class="mw-redirect">fraternity</a> comedy <i><a href="/wiki/National_Lampoon%27s_Animal_House" title="National Lampoon's Animal House">National Lampoon's Animal House</a></i> in 1978 did not lead to the fame for which he had hoped,<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (July 2011)">citation needed</span></a></i>]</sup> and Bacon returned to waiting tables and auditioning for small roles in theater. He briefly worked on the television soap operas <i><a href="/wiki/Search_for_Tomorrow" title="Search for Tomorrow">Search for Tomorrow</a></i> (1979) and <i><a href="/wiki/Guiding_Light" title="Guiding Light">Guiding Light</a></i> (1980–81) in New York. In 1980, he had a prominent role in the now iconic slasher film <a href="/wiki/Friday_the_13th_(1980_film)" title="Friday the 13th (1980 film)"><i>Friday the 13th</i></a>. He refused an offer of a television series based on <i>Animal House</i> to be filmed in California in order to remain close to the New York stage<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (October 2009)">citation needed</span></a></i>]</sup> . Some of his early stage work included <i>Getting Out</i> performed at New York's <a href="/wiki/Phoenix_Theater" title="Phoenix Theater">Phoenix Theater</a>, and <i><a href="/wiki/Flux" title="Flux">Flux</a></i> which he did at <a href="/wiki/Second_Stage_Theatre" title="Second Stage Theatre">Second Stage Theatre</a> during their 1981–1982 season.</p>
114
+ <p>In 1982, he won an <a href="/wiki/Obie_Award" title="Obie Award">Obie Award</a> for his role in <i><a href="/wiki/Forty_Deuce" title="Forty Deuce">Forty Deuce</a></i>, and soon after made his Broadway debut in <i><a href="/wiki/Slab_Boys" title="Slab Boys" class="mw-redirect">Slab Boys</a></i>, with then-unknowns <a href="/wiki/Sean_Penn" title="Sean Penn">Sean Penn</a> and <a href="/wiki/Val_Kilmer" title="Val Kilmer">Val Kilmer</a>. However, it was not until he portrayed Timothy Fenwick that same year in <a href="/wiki/Barry_Levinson" title="Barry Levinson">Barry Levinson</a>'s <i><a href="/wiki/Diner_(film)" title="Diner (film)">Diner</a></i>&#160;– costarring <a href="/wiki/Steve_Guttenberg" title="Steve Guttenberg">Steve Guttenberg</a>, <a href="/wiki/Daniel_Stern_(actor)" title="Daniel Stern (actor)">Daniel Stern</a>, <a href="/wiki/Mickey_Rourke" title="Mickey Rourke">Mickey Rourke</a>, <a href="/wiki/Tim_Daly" title="Tim Daly">Tim Daly</a> and <a href="/wiki/Ellen_Barkin" title="Ellen Barkin">Ellen Barkin</a>&#160;– that he made an indelible impression on film critics and moviegoers alike.<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2008)">citation needed</span></a></i>]</sup></p>
115
+ <div class="thumb tleft">
116
+ <div class="thumbinner" style="width:152px;"><a href="/wiki/File:Kevin_Bacon.jpg" class="image"><img alt="Kevin Bacon.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kevin_Bacon.jpg/150px-Kevin_Bacon.jpg" width="150" height="187" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kevin_Bacon.jpg/225px-Kevin_Bacon.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kevin_Bacon.jpg/300px-Kevin_Bacon.jpg 2x" /></a>
117
+ <div class="thumbcaption">
118
+ <div class="magnify"><a href="/wiki/File:Kevin_Bacon.jpg" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ <p>Bolstered by the attention garnered by his performance in <i>Diner</i>, Bacon starred in the 1984 box-office smash <i><a href="/wiki/Footloose_(1984_film)" title="Footloose (1984 film)">Footloose</a></i>. Richard Corliss of <i>TIME</i> likened <i>Footloose</i> to the <a href="/wiki/James_Dean" title="James Dean">James Dean</a> classic <i><a href="/wiki/Rebel_Without_a_Cause" title="Rebel Without a Cause">Rebel Without a Cause</a></i> and the old <a href="/wiki/Mickey_Rooney" title="Mickey Rooney">Mickey Rooney</a>/<a href="/wiki/Judy_Garland" title="Judy Garland">Judy Garland</a> musicals, commenting that the film includes "motifs on book burning, mid-life crisis, AWOL parents, fatal car crashes, drug enforcement, and Bible Belt vigilantism."<sup id="cite_ref-time84_7-0" class="reference"><a href="#cite_note-time84-7"><span>[</span>7<span>]</span></a></sup> To prepare for the role, Bacon enrolled at a high school as a transfer student named "Ren McCormick" and studied teenagers before leaving in the middle of the day.<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2010)">citation needed</span></a></i>]</sup> Bacon did earn strong reviews for <i>Footloose</i>,<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span>[</span>8<span>]</span></a></sup> and he appeared on the cover of <i><a href="/wiki/People_(magazine)" title="People (magazine)">People</a></i> magazine soon after its release. Bacon's critical and box-office success lead to a period of <a href="/wiki/Typecasting_(acting)" title="Typecasting (acting)">typecasting</a> in roles similar to the two he portrayed in <i>Diner</i> and <i>Footloose</i>. Bacon would have difficulty shaking this on-screen image. For the next several years he chose films that cast him against either type and experienced, by his own estimation, a career slump. In 1988, he starred in <a href="/wiki/John_Hughes_(filmmaker)" title="John Hughes (filmmaker)">John Hughes</a>' comedy <i><a href="/wiki/She%27s_Having_a_Baby" title="She's Having a Baby">She's Having a Baby</a></i> and the following year he was in another comedy called <i><a href="/wiki/The_Big_Picture_(1989_film)" title="The Big Picture (1989 film)">The Big Picture</a></i>. In 1990, Bacon had two successful roles. He played a character who saved his town from under-the-earth "graboid" monsters in the comedy/horror film <i><a href="/wiki/Tremors_(film)" title="Tremors (film)">Tremors</a></i>&#160;– a role that <i>People</i> found him "far too accomplished"<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (January 2010)">citation needed</span></a></i>]</sup> to play&#160;– and portrayed an earnest medical student experimenting with death in <a href="/wiki/Joel_Schumacher" title="Joel Schumacher">Joel Schumacher</a>'s <i><a href="/wiki/Flatliners" title="Flatliners">Flatliners</a></i>. Bacon's next project was to star opposite <a href="/wiki/Elizabeth_Perkins" title="Elizabeth Perkins">Elizabeth Perkins</a> in <i><a href="/wiki/He_Said,_She_Said" title="He Said, She Said">He Said, She Said</a></i>. Despite lukewarm reviews and low audience turnout, <i>He Said, She Said</i> was illuminating for Bacon. Required to play a character with sexist attitudes, he admitted that the role was not that large a stretch for him. By 1991, Bacon began to give up the idea of playing leading men in big-budget films and to remake himself as a character actor. "The only way I was going to be able to work on 'A' projects with really 'A' directors was if I wasn't the guy who was starring", he confided to <i><a href="/wiki/The_New_York_Times" title="The New York Times">The New York Times</a></i> writer Trip Gabriel. "You can't afford to set up a $40&#160;million movie if you don't have your star."<sup id="cite_ref-nyt94_9-0" class="reference"><a href="#cite_note-nyt94-9"><span>[</span>9<span>]</span></a></sup></p>
123
+ <p>He performed that year as gay prostitute Willie O'Keefe in <a href="/wiki/Oliver_Stone" title="Oliver Stone">Oliver Stone</a>'s <i><a href="/wiki/JFK_(film)" title="JFK (film)">JFK</a></i>. He went on to play a prosecuting attorney in the military courtroom drama <i><a href="/wiki/A_Few_Good_Men_(film)" title="A Few Good Men (film)" class="mw-redirect">A Few Good Men</a></i>. Later that year he returned to the theater to play in <i>Spike Heels</i>, directed by <a href="/wiki/Michael_Greif" title="Michael Greif">Michael Greif</a>.</p>
124
+ <div class="thumb tleft">
125
+ <div class="thumbinner" style="width:152px;"><a href="/wiki/File:KevinBaconApr10.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/KevinBaconApr10.jpg/150px-KevinBaconApr10.jpg" width="150" height="222" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/KevinBaconApr10.jpg/225px-KevinBaconApr10.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6e/KevinBaconApr10.jpg/300px-KevinBaconApr10.jpg 2x" /></a>
126
+ <div class="thumbcaption">
127
+ <div class="magnify"><a href="/wiki/File:KevinBaconApr10.jpg" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
128
+ Bacon receiving a Merit Award in April 2010</div>
129
+ </div>
130
+ </div>
131
+ <p>In 1994, Bacon earned a <a href="/wiki/Golden_Globe_Award" title="Golden Globe Award">Golden Globe</a> nomination for his role in <i><a href="/wiki/The_River_Wild" title="The River Wild">The River Wild</a></i> opposite <a href="/wiki/Meryl_Streep" title="Meryl Streep">Meryl Streep</a>. He described the film to Chase in <i>Cosmopolitan</i> as a "grueling shoot," in which "every one of us fell out of the boat at one point or another and had to be saved." His next film, <i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i>, earned him the Broadcast Film Critic's Association Award in 1995, the same year that he starred in the <a href="/wiki/Blockbuster_(entertainment)" title="Blockbuster (entertainment)">blockbuster</a> hit <i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i>. Bacon reverted to his trademark dark role once again in <i><a href="/wiki/Sleepers_(film)" title="Sleepers (film)">Sleepers</a></i> in 1996. This role was in stark contrast to his appearance in the lighthearted romantic comedy, <i><a href="/wiki/Picture_Perfect_(1997_film)" title="Picture Perfect (1997 film)">Picture Perfect</a></i> the following year. Bacon also made his debut as a director in 1996 with the television film <i><a href="/wiki/Losing_Chase" title="Losing Chase">Losing Chase</a></i>, which was nominated for three Golden Globe Awards, winning one.<sup id="cite_ref-austin_10-0" class="reference"><a href="#cite_note-austin-10"><span>[</span>10<span>]</span></a></sup> Bacon again resurrected his oddball mystique that year as a mentally-challenged houseguest in <i><a href="/wiki/Digging_to_China" title="Digging to China">Digging to China</a></i>, and as a disc jockey corrupted by <a href="/wiki/Payola" title="Payola">payola</a> in <i><a href="/wiki/Telling_Lies_in_America_(film)" title="Telling Lies in America (film)" class="mw-redirect">Telling Lies in America</a></i>. As the executive producer of 1998's <i><a href="/wiki/Wild_Things" title="Wild Things">Wild Things</a></i>, Bacon reserved a supporting role for himself, and went on to star in <i><a href="/wiki/Stir_of_Echoes" title="Stir of Echoes">Stir of Echoes</a></i> (directed by <a href="/wiki/David_Koepp" title="David Koepp">David Koepp</a>) in 1999, and in <a href="/wiki/Paul_Verhoeven" title="Paul Verhoeven">Paul Verhoeven</a>'s <i><a href="/wiki/Hollow_Man" title="Hollow Man">Hollow Man</a></i> in 2000.</p>
132
+ <div class="thumb tright">
133
+ <div class="thumbinner" style="width:262px;"><a href="/wiki/File:KevinBaconTakingChanceFeb09.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/KevinBaconTakingChanceFeb09.jpg/260px-KevinBaconTakingChanceFeb09.jpg" width="260" height="245" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/KevinBaconTakingChanceFeb09.jpg/390px-KevinBaconTakingChanceFeb09.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/KevinBaconTakingChanceFeb09.jpg/520px-KevinBaconTakingChanceFeb09.jpg 2x" /></a>
134
+ <div class="thumbcaption">
135
+ <div class="magnify"><a href="/wiki/File:KevinBaconTakingChanceFeb09.jpg" class="internal" title="Enlarge"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>
136
+ Bacon speaking before a premiere of <i><a href="/wiki/Taking_Chance" title="Taking Chance">Taking Chance</a></i> in February 2009</div>
137
+ </div>
138
+ </div>
139
+ <p>Bacon, <a href="/wiki/Colin_Firth" title="Colin Firth">Colin Firth</a> and <a href="/wiki/Rachel_Blanchard" title="Rachel Blanchard">Rachel Blanchard</a> depict a <a href="/wiki/M%C3%A9nage_%C3%A0_trois" title="Ménage à trois">ménage à trois</a> in their film, <i><a href="/wiki/Where_the_Truth_Lies" title="Where the Truth Lies">Where the Truth Lies</a></i>. Bacon and director <a href="/wiki/Atom_Egoyan" title="Atom Egoyan">Atom Egoyan</a> have condemned the <a href="/wiki/MPAA" title="MPAA" class="mw-redirect">MPAA</a> ratings board decision to give the film their "<a href="/wiki/MPAA_film_rating_system" title="MPAA film rating system" class="mw-redirect">NC-17</a>" rating over the preferable "R". Bacon decried the decision, commenting: "I don't get it, when I see films (that) are extremely violent, extremely objectionable sometimes in terms of the roles that women play, slide by with an R, no problem, because the people happen to have more of their clothes on."<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span>[</span>11<span>]</span></a></sup> Bacon was again acclaimed for a dark starring role playing an offending <a href="/wiki/Pedophile" title="Pedophile" class="mw-redirect">pedophile</a> on parole in the <a href="/wiki/2004_in_film" title="2004 in film">2004 film</a> <i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i>; he was nominated best actor receiving the Independent Spirit Award. He appeared in the <a href="/wiki/HBO_Films" title="HBO Films">HBO Films</a> production of <i><a href="/wiki/Taking_Chance" title="Taking Chance">Taking Chance</a></i>, a film based on a story of the same name written by Lieutenant Colonel <a href="/wiki/Michael_Strobl" title="Michael Strobl">Michael Strobl</a>, an American '<a href="/wiki/Desert_Storm" title="Desert Storm" class="mw-redirect">Desert Storm</a>' war veteran. The film premiered on HBO on February 21, 2009. Bacon won a Golden Globe Award and a <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Miniseries_or_Television_Movie" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie</a> for his role. On July 15, 2010, it was confirmed that Bacon would appear in <a href="/wiki/Matthew_Vaughn" title="Matthew Vaughn">Matthew Vaughn</a>'s <i><a href="/wiki/X-Men:_First_Class" title="X-Men: First Class">X-Men: First Class</a></i>.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span>[</span>12<span>]</span></a></sup> His character was mutant villain <a href="/wiki/Sebastian_Shaw_(comics)" title="Sebastian Shaw (comics)">Sebastian Shaw</a>.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span>[</span>13<span>]</span></a></sup></p>
140
+ <p>In March 2012, Bacon was featured in a performance of <a href="/wiki/Dustin_Lance_Black" title="Dustin Lance Black">Dustin Lance Black</a>'s play, <i><a href="/wiki/8_(play)" title="8 (play)">'8'</a></i> — a staged reenactment of the <a href="/wiki/Perry_v._Brown" title="Perry v. Brown" class="mw-redirect">federal trial</a> that overturned California's <a href="/wiki/Proposition_8" title="Proposition 8" class="mw-redirect">Prop 8 ban</a> on same-sex marriage — as Attorney <a href="/wiki/Charles_J._Cooper" title="Charles J. Cooper">Charles J. Cooper</a>.<sup id="cite_ref-8_the_play_14-0" class="reference"><a href="#cite_note-8_the_play-14"><span>[</span>14<span>]</span></a></sup> The production was held at the <a href="/wiki/Wilshire_Ebell_Theatre" title="Wilshire Ebell Theatre" class="mw-redirect">Wilshire Ebell Theatre</a> and broadcast on YouTube to raise money for the <a href="/wiki/American_Foundation_for_Equal_Rights" title="American Foundation for Equal Rights">American Foundation for Equal Rights</a>.<sup id="cite_ref-8_play_video_15-0" class="reference"><a href="#cite_note-8_play_video-15"><span>[</span>15<span>]</span></a></sup><sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span>[</span>16<span>]</span></a></sup></p>
141
+ <h2><span class="mw-headline" id="Personal_life">Personal life</span></h2>
142
+ <p>Bacon has been married to actress <a href="/wiki/Kyra_Sedgwick" title="Kyra Sedgwick">Kyra Sedgwick</a> since September 4, 1988; they met on the set of the <a href="/wiki/PBS" title="PBS">PBS</a> version of <a href="/wiki/Lanford_Wilson" title="Lanford Wilson">Lanford Wilson</a>'s play <i><a href="/wiki/Lemon_Sky" title="Lemon Sky">Lemon Sky</a></i>. He has said "The time I was hitting what I considered to be bottom was also the time I met my wife, our kids were born, good things were happening. And I was able to keep supporting myself; that always gave me strength."<sup id="cite_ref-cosmo91_6-1" class="reference"><a href="#cite_note-cosmo91-6"><span>[</span>6<span>]</span></a></sup> Bacon and Sedgwick have starred together in <i><a href="/wiki/Pyrates" title="Pyrates">Pyrates</a>,</i> <i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i>, <i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i>, and <i><a href="/wiki/Loverboy_(2005_film)" title="Loverboy (2005 film)">Loverboy</a></i>. They have two children, Travis Sedgwick Bacon (born June 23, 1989 in Los Angeles, California) and <a href="/wiki/Sosie_Ruth_Bacon" title="Sosie Ruth Bacon" class="mw-redirect">Sosie Ruth Bacon</a> (born March 15, 1992). The family resides on the <a href="/wiki/Upper_West_Side" title="Upper West Side">Upper West Side</a> of <a href="/wiki/Manhattan" title="Manhattan">Manhattan</a>.</p>
143
+ <p>Bacon has spoken out for the separation of church and state,<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span>[</span>17<span>]</span></a></sup><sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span>[</span>18<span>]</span></a></sup> and told <i><a href="/wiki/The_Times" title="The Times">The Times</a></i> in 2005 that he did not "believe in God."<sup id="cite_ref-19" class="reference"><a href="#cite_note-19"><span>[</span>19<span>]</span></a></sup> However, he has also said that he is not anti-religion.<sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span>[</span>20<span>]</span></a></sup></p>
144
+ <p>Bacon and Sedgwick appeared in <a href="/wiki/Will.i.am" title="Will.i.am">will.i.am</a>'s video <a href="/wiki/It%27s_a_New_Day_(song)" title="It's a New Day (song)">"It's a New Day"</a>, which was released following <a href="/wiki/Barack_Obama" title="Barack Obama">Barack Obama</a>'s 2008 presidential win.</p>
145
+ <p>Bacon and Sedgwick lost most of their savings in the <a href="/wiki/Ponzi_scheme" title="Ponzi scheme">Ponzi scheme</a> of infamous fraudulent investor <a href="/wiki/Bernard_Madoff" title="Bernard Madoff">Bernard Madoff</a>.<sup id="cite_ref-financialpost_21-0" class="reference"><a href="#cite_note-financialpost-21"><span>[</span>21<span>]</span></a></sup><sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span>[</span>22<span>]</span></a></sup></p>
146
+ <p>Bacon and Sedgwick learned in 2011 via their appearance on the PBS TV show <i>Finding Your Roots</i> with <a href="/wiki/Henry_Louis_Gates" title="Henry Louis Gates">Henry Louis Gates</a> that he and Sedgwick are 9th cousins, once removed.<sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span>[</span>23<span>]</span></a></sup> Bacon and Sedgwick appeared in a video<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span>[</span>24<span>]</span></a></sup> promoting the "Bill of Reproductive Rights," supporting among other things a woman's right to choose and access to birth control. As of November 2012, Bacon starred in adverts for the British mobile and Internet service <a href="/wiki/EE_(telecommunications_company)" title="EE (telecommunications company)">EE</a>.</p>
147
+ <h2><span class="mw-headline" id="Six_Degrees_of_Kevin_Bacon">Six Degrees of Kevin Bacon</span></h2>
148
+ <div class="rellink relarticle mainarticle">Main article: <a href="/wiki/Six_Degrees_of_Kevin_Bacon" title="Six Degrees of Kevin Bacon">Six Degrees of Kevin Bacon</a></div>
149
+ <p>Bacon is the subject of the <a href="/wiki/Trivia" title="Trivia">trivia</a> game titled <i>Six Degrees of Kevin Bacon</i>, based on the idea that, due to his prolific <a href="/wiki/Big_screen" title="Big screen" class="mw-redirect">screen</a> career covering a diverse range of genres, any Hollywood actor can be linked to another in a handful of steps based on their associations with Bacon. The name of the game derives from the idea of <a href="/wiki/Six_degrees_of_separation" title="Six degrees of separation">six degrees of separation</a>. Though he was initially dismayed by the game, the <a href="/wiki/Meme" title="Meme">meme</a> stuck, and Bacon eventually embraced it, forming the charitable initiative <a href="/wiki/SixDegrees.org" title="SixDegrees.org">SixDegrees.org</a>, a social networking site intended to link people and charities to each other.<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span>[</span>25<span>]</span></a></sup></p>
150
+ <p>The measure of proximity to Bacon has been mathematically formalized as the <a href="/wiki/Six_Degrees_of_Kevin_Bacon#Bacon_numbers" title="Six Degrees of Kevin Bacon">Bacon Index</a> and can be referenced at websites including Oracle Of Bacon, which is in turn based upon <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a> data. Google even added a feature to their search engine, whereby searching for an actor's name followed by the words 'Bacon Number' will show the ways in which that actor is connected to Kevin Bacon.<sup id="cite_ref-26" class="reference"><a href="#cite_note-26"><span>[</span>26<span>]</span></a></sup> A similar measurement exists in the mathematics community where one measures how far one is removed from co-writing a mathematical paper with the famous mathematician <a href="/wiki/Paul_Erd%C5%91s" title="Paul Erdős">Paul Erdős</a>. This is done by means of the <a href="/wiki/Erd%C5%91s_number" title="Erdős number">Erdős number</a> which is 0 for <a href="/wiki/Paul_Erd%C5%91s" title="Paul Erdős">Paul Erdős</a> himself, 1 for someone who co-wrote an article with him, 2 for someone who co-wrote with someone who co-wrote with him, etc. People have combined the <a href="/wiki/Six_Degrees_of_Kevin_Bacon#Bacon_numbers" title="Six Degrees of Kevin Bacon">Bacon Index</a> and the <a href="/wiki/Erd%C5%91s_number" title="Erdős number">Erdős number</a> to form the <a href="/wiki/Erd%C5%91s%E2%80%93Bacon_number" title="Erdős–Bacon number">Erdős–Bacon number</a>, which is essentially the sum of the two.</p>
151
+ <h2><span class="mw-headline" id="Music">Music</span></h2>
152
+ <p>Kevin formed a band called <a href="/wiki/The_Bacon_Brothers" title="The Bacon Brothers">The Bacon Brothers</a> with his brother, <a href="/wiki/Michael_Bacon_(musician)" title="Michael Bacon (musician)">Michael</a>. The duo has released six <a href="/wiki/Music_album" title="Music album" class="mw-redirect">albums</a>.</p>
153
+ <h2><span class="mw-headline" id="Filmography">Filmography</span></h2>
154
+ <h3><span class="mw-headline" id="Films">Films</span></h3>
155
+ <table class="wikitable">
156
+ <tr>
157
+ <th>Year</th>
158
+ <th>Film</th>
159
+ <th>Role</th>
160
+ <th>Notes</th>
161
+ </tr>
162
+ <tr>
163
+ <td>1978</td>
164
+ <td><i><a href="/wiki/National_Lampoon%27s_Animal_House" title="National Lampoon's Animal House">National Lampoon's Animal House</a></i></td>
165
+ <td>Chip Diller</td>
166
+ <td></td>
167
+ </tr>
168
+ <tr>
169
+ <td rowspan="2">1979</td>
170
+ <td><i><a href="/wiki/Starting_Over_(1979_film)" title="Starting Over (1979 film)">Starting Over</a></i></td>
171
+ <td>Husband</td>
172
+ <td></td>
173
+ </tr>
174
+ <tr>
175
+ <td><i><a href="/wiki/The_Gift_(1979_film)" title="The Gift (1979 film)">The Gift</a></i></td>
176
+ <td>Teddy</td>
177
+ <td></td>
178
+ </tr>
179
+ <tr>
180
+ <td>1980</td>
181
+ <td><i><a href="/wiki/Hero_at_Large" title="Hero at Large">Hero at Large</a></i></td>
182
+ <td>2nd Teenager</td>
183
+ <td></td>
184
+ </tr>
185
+ <tr>
186
+ <td>1980</td>
187
+ <td><i><a href="/wiki/Friday_the_13th_(1980_film)" title="Friday the 13th (1980 film)">Friday the 13th</a></i></td>
188
+ <td>Jack Burrell</td>
189
+ <td></td>
190
+ </tr>
191
+ <tr>
192
+ <td>1981</td>
193
+ <td><i><a href="/wiki/Only_When_I_Laugh_(film)" title="Only When I Laugh (film)">Only When I Laugh</a></i></td>
194
+ <td>Don</td>
195
+ <td></td>
196
+ </tr>
197
+ <tr>
198
+ <td rowspan="2">1982</td>
199
+ <td><i><a href="/wiki/Diner_(film)" title="Diner (film)">Diner</a></i></td>
200
+ <td>Timothy Fenwick Jr.</td>
201
+ <td></td>
202
+ </tr>
203
+ <tr>
204
+ <td><i><a href="/wiki/Forty_Deuce" title="Forty Deuce">Forty Deuce</a></i></td>
205
+ <td>Ricky</td>
206
+ <td></td>
207
+ </tr>
208
+ <tr>
209
+ <td>1983</td>
210
+ <td><i>Enormous Changes at the Last Minute</i></td>
211
+ <td>Dennis</td>
212
+ <td></td>
213
+ </tr>
214
+ <tr>
215
+ <td>1984</td>
216
+ <td><i><a href="/wiki/Footloose_(1984_film)" title="Footloose (1984 film)">Footloose</a></i></td>
217
+ <td>Ren McCormack</td>
218
+ <td></td>
219
+ </tr>
220
+ <tr>
221
+ <td>1986</td>
222
+ <td><i><a href="/wiki/Quicksilver_(film)" title="Quicksilver (film)">Quicksilver</a></i></td>
223
+ <td>Jack Casey</td>
224
+ <td></td>
225
+ </tr>
226
+ <tr>
227
+ <td rowspan="3">1987</td>
228
+ <td><i><a href="/wiki/White_Water_Summer" title="White Water Summer">White Water Summer</a></i></td>
229
+ <td>Vic</td>
230
+ <td></td>
231
+ </tr>
232
+ <tr>
233
+ <td><i><a href="/wiki/End_of_the_Line_(1987_film)" title="End of the Line (1987 film)">End of the Line</a></i></td>
234
+ <td>Everett</td>
235
+ <td></td>
236
+ </tr>
237
+ <tr>
238
+ <td><i><a href="/wiki/Planes,_Trains_and_Automobiles" title="Planes, Trains and Automobiles">Planes, Trains and Automobiles</a></i></td>
239
+ <td>Taxi Racer</td>
240
+ <td></td>
241
+ </tr>
242
+ <tr>
243
+ <td>1988</td>
244
+ <td><i><a href="/wiki/She%27s_Having_a_Baby" title="She's Having a Baby">She's Having a Baby</a></i></td>
245
+ <td>Jefferson "Jake" Edward Briggs</td>
246
+ <td></td>
247
+ </tr>
248
+ <tr>
249
+ <td rowspan="2">1989</td>
250
+ <td><i><a href="/wiki/Criminal_Law_(film)" title="Criminal Law (film)">Criminal Law</a></i></td>
251
+ <td>Martin Thiel</td>
252
+ <td></td>
253
+ </tr>
254
+ <tr>
255
+ <td><i><a href="/wiki/The_Big_Picture_(1989_film)" title="The Big Picture (1989 film)">The Big Picture</a></i></td>
256
+ <td>Nick Chapman</td>
257
+ <td></td>
258
+ </tr>
259
+ <tr>
260
+ <td rowspan="2">1990</td>
261
+ <td><i><a href="/wiki/Tremors_(film)" title="Tremors (film)">Tremors</a></i></td>
262
+ <td>Valentine "Val" McKee</td>
263
+ <td></td>
264
+ </tr>
265
+ <tr>
266
+ <td><i><a href="/wiki/Flatliners" title="Flatliners">Flatliners</a></i></td>
267
+ <td>David Labraccio</td>
268
+ <td></td>
269
+ </tr>
270
+ <tr>
271
+ <td rowspan="5">1991</td>
272
+ <td><i><a href="/wiki/Pyrates" title="Pyrates">Pyrates</a></i></td>
273
+ <td>Ari</td>
274
+ <td></td>
275
+ </tr>
276
+ <tr>
277
+ <td><i><a href="/wiki/Queens_Logic" title="Queens Logic">Queens Logic</a></i></td>
278
+ <td>Dennis</td>
279
+ <td></td>
280
+ </tr>
281
+ <tr>
282
+ <td><i><a href="/wiki/He_Said,_She_Said" title="He Said, She Said">He Said, She Said</a></i></td>
283
+ <td>Dan Hanson</td>
284
+ <td></td>
285
+ </tr>
286
+ <tr>
287
+ <td><i><a href="/wiki/JFK_(film)" title="JFK (film)">JFK</a></i></td>
288
+ <td>Willie O'Keefe</td>
289
+ <td></td>
290
+ </tr>
291
+ <tr>
292
+ <td><i><a href="/wiki/A_Little_Vicious" title="A Little Vicious">A Little Vicious</a></i></td>
293
+ <td>Narrator</td>
294
+ <td>Short subject</td>
295
+ </tr>
296
+ <tr>
297
+ <td>1992</td>
298
+ <td><i><a href="/wiki/A_Few_Good_Men" title="A Few Good Men">A Few Good Men</a></i></td>
299
+ <td>Capt. Jack Ross</td>
300
+ <td></td>
301
+ </tr>
302
+ <tr>
303
+ <td rowspan="3">1994</td>
304
+ <td><i><a href="/wiki/The_Air_Up_There" title="The Air Up There">The Air Up There</a></i></td>
305
+ <td>Jimmy Dolan</td>
306
+ <td></td>
307
+ </tr>
308
+ <tr>
309
+ <td><i><a href="/wiki/The_River_Wild" title="The River Wild">The River Wild</a></i></td>
310
+ <td>Wade</td>
311
+ <td>Nominated - <a href="/wiki/Golden_Globe_Award_for_Best_Supporting_Actor_-_Motion_Picture" title="Golden Globe Award for Best Supporting Actor - Motion Picture" class="mw-redirect">Golden Globe Award for Best Supporting Actor – Motion Picture</a></td>
312
+ </tr>
313
+ <tr>
314
+ <td><i>New York Skyride</i></td>
315
+ <td>Narrator</td>
316
+ <td>Short subject</td>
317
+ </tr>
318
+ <tr>
319
+ <td rowspan="3">1995</td>
320
+ <td><i><a href="/wiki/Murder_in_the_First" title="Murder in the First">Murder in the First</a></i></td>
321
+ <td>Henri Young</td>
322
+ <td><a href="/wiki/Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Broadcast Film Critics Association Award for Best Actor">Broadcast Film Critics Association Award for Best Actor</a><br />
323
+ Nominated - <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Supporting_Role" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Supporting Role">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Supporting Role</a></td>
324
+ </tr>
325
+ <tr>
326
+ <td><i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i></td>
327
+ <td><a href="/wiki/Jack_Swigert" title="Jack Swigert">Jack Swigert</a></td>
328
+ <td><a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a></td>
329
+ </tr>
330
+ <tr>
331
+ <td><i><a href="/wiki/Balto_(film)" title="Balto (film)">Balto</a></i></td>
332
+ <td><a href="/wiki/List_of_Balto_characters#Balto" title="List of Balto characters">Balto</a></td>
333
+ <td>Voice only</td>
334
+ </tr>
335
+ <tr>
336
+ <td>1996</td>
337
+ <td><i><a href="/wiki/Sleepers_(film)" title="Sleepers (film)">Sleepers</a></i></td>
338
+ <td>Sean Nokes</td>
339
+ <td></td>
340
+ </tr>
341
+ <tr>
342
+ <td rowspan="3">1997</td>
343
+ <td><i><a href="/wiki/Picture_Perfect_(1997_film)" title="Picture Perfect (1997 film)">Picture Perfect</a></i></td>
344
+ <td>Sam Mayfair</td>
345
+ <td></td>
346
+ </tr>
347
+ <tr>
348
+ <td><i><a href="/wiki/Destination_Anywhere" title="Destination Anywhere">Destination Anywhere</a></i></td>
349
+ <td>Mike</td>
350
+ <td></td>
351
+ </tr>
352
+ <tr>
353
+ <td><i><a href="/wiki/Telling_Lies_in_America" title="Telling Lies in America">Telling Lies in America</a></i></td>
354
+ <td>Billy Magic</td>
355
+ <td></td>
356
+ </tr>
357
+ <tr>
358
+ <td rowspan="2">1998</td>
359
+ <td><i><a href="/wiki/Digging_to_China" title="Digging to China">Digging to China</a></i></td>
360
+ <td>Ricky Schroth</td>
361
+ <td></td>
362
+ </tr>
363
+ <tr>
364
+ <td><i><a href="/wiki/Wild_Things" title="Wild Things">Wild Things</a></i></td>
365
+ <td>Sgt. Ray Duquette</td>
366
+ <td></td>
367
+ </tr>
368
+ <tr>
369
+ <td>1999</td>
370
+ <td><i><a href="/wiki/Stir_of_Echoes" title="Stir of Echoes">Stir of Echoes</a></i></td>
371
+ <td>Tom Witzky</td>
372
+ <td></td>
373
+ </tr>
374
+ <tr>
375
+ <td rowspan="3">2000</td>
376
+ <td><i><a href="/wiki/My_Dog_Skip_(film)" title="My Dog Skip (film)">My Dog Skip</a></i></td>
377
+ <td>Jack Morris</td>
378
+ <td></td>
379
+ </tr>
380
+ <tr>
381
+ <td><i><a href="/wiki/We_Married_Margo" title="We Married Margo">We Married Margo</a></i></td>
382
+ <td>Himself</td>
383
+ <td></td>
384
+ </tr>
385
+ <tr>
386
+ <td><i><a href="/wiki/Hollow_Man" title="Hollow Man">Hollow Man</a></i></td>
387
+ <td>Sebastian Caine</td>
388
+ <td></td>
389
+ </tr>
390
+ <tr>
391
+ <td>2001</td>
392
+ <td><i><a href="/wiki/Novocaine_(film)" title="Novocaine (film)">Novocaine</a></i></td>
393
+ <td>Lance Phelps</td>
394
+ <td></td>
395
+ </tr>
396
+ <tr>
397
+ <td>2002</td>
398
+ <td><i><a href="/wiki/Trapped_(2002_film)" title="Trapped (2002 film)">Trapped</a></i></td>
399
+ <td>Joe Hickey</td>
400
+ <td></td>
401
+ </tr>
402
+ <tr>
403
+ <td rowspan="3">2003</td>
404
+ <td><i><a href="/wiki/Mystic_River_(film)" title="Mystic River (film)">Mystic River</a></i></td>
405
+ <td>Sean Devine</td>
406
+ <td><a href="/wiki/Boston_Society_of_Film_Critics_Award_for_Best_Cast" title="Boston Society of Film Critics Award for Best Cast">Boston Society of Film Critics Award for Best Cast</a><br />
407
+ Nominated - <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a></td>
408
+ </tr>
409
+ <tr>
410
+ <td><i><a href="/wiki/In_the_Cut" title="In the Cut">In the Cut</a></i></td>
411
+ <td>John Graham</td>
412
+ <td></td>
413
+ </tr>
414
+ <tr>
415
+ <td><i>Imagine New York</i></td>
416
+ <td>Himself</td>
417
+ <td>Short subject</td>
418
+ </tr>
419
+ <tr>
420
+ <td rowspan="3">2004</td>
421
+ <td><i><a href="/wiki/The_Woodsman" title="The Woodsman">The Woodsman</a></i></td>
422
+ <td>Walter</td>
423
+ <td>Nominated - <a href="/wiki/Chlotrudis_Award_for_Best_Actor" title="Chlotrudis Award for Best Actor">Chlotrudis Award for Best Actor</a><br />
424
+ Nominated - <a href="/wiki/Independent_Spirit_Award_for_Best_Lead_Male" title="Independent Spirit Award for Best Lead Male" class="mw-redirect">Independent Spirit Award for Best Lead Male</a><br />
425
+ Nominated - <a href="/wiki/Satellite_Award_for_Best_Actor_-_Motion_Picture_Drama" title="Satellite Award for Best Actor - Motion Picture Drama" class="mw-redirect">Satellite Award for Best Actor – Motion Picture Drama</a></td>
426
+ </tr>
427
+ <tr>
428
+ <td><i><a href="/wiki/Cavedweller_(film)" title="Cavedweller (film)">Cavedweller</a></i></td>
429
+ <td>Randall Pritchard</td>
430
+ <td></td>
431
+ </tr>
432
+ <tr>
433
+ <td>"Natural Disasters: Forces of Nature"</td>
434
+ <td>Narrator</td>
435
+ <td>Short subject</td>
436
+ </tr>
437
+ <tr>
438
+ <td rowspan="3">2005</td>
439
+ <td><i><a href="/wiki/Loverboy_(2005_film)" title="Loverboy (2005 film)">Loverboy</a></i></td>
440
+ <td>Marty</td>
441
+ <td>Also directed</td>
442
+ </tr>
443
+ <tr>
444
+ <td><i><a href="/wiki/Beauty_Shop" title="Beauty Shop">Beauty Shop</a></i></td>
445
+ <td>Jorge</td>
446
+ <td></td>
447
+ </tr>
448
+ <tr>
449
+ <td><i><a href="/wiki/Where_the_Truth_Lies" title="Where the Truth Lies">Where the Truth Lies</a></i></td>
450
+ <td>Lanny Morris</td>
451
+ <td></td>
452
+ </tr>
453
+ <tr>
454
+ <td rowspan="2">2007</td>
455
+ <td><i><a href="/wiki/Death_Sentence_(2007_film)" title="Death Sentence (2007 film)">Death Sentence</a></i></td>
456
+ <td>Nick Hume</td>
457
+ <td></td>
458
+ </tr>
459
+ <tr>
460
+ <td><i><a href="/wiki/Rails_%26_Ties" title="Rails &amp; Ties">Rails &amp; Ties</a></i></td>
461
+ <td>Tom Stark</td>
462
+ <td></td>
463
+ </tr>
464
+ <tr>
465
+ <td rowspan="3">2008</td>
466
+ <td><i><a href="/wiki/The_Air_I_Breathe" title="The Air I Breathe">The Air I Breathe</a></i></td>
467
+ <td>Love</td>
468
+ <td></td>
469
+ </tr>
470
+ <tr>
471
+ <td><i><a href="/wiki/Frost/Nixon_(film)" title="Frost/Nixon (film)">Frost/Nixon</a></i></td>
472
+ <td><a href="/wiki/Jack_Brennan" title="Jack Brennan">Jack Brennan</a></td>
473
+ <td>Nominated - <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a></td>
474
+ </tr>
475
+ <tr>
476
+ <td><i><a href="/wiki/Saving_Angelo" title="Saving Angelo">Saving Angelo</a></i></td>
477
+ <td>Brent</td>
478
+ <td>Short subject</td>
479
+ </tr>
480
+ <tr>
481
+ <td rowspan="2">2009</td>
482
+ <td><i><a href="/wiki/The_Magic_7" title="The Magic 7">The Magic 7</a></i></td>
483
+ <td>Himself</td>
484
+ <td></td>
485
+ </tr>
486
+ <tr>
487
+ <td><i><a href="/wiki/My_One_and_Only_(film)" title="My One and Only (film)">My One and Only</a></i></td>
488
+ <td>Dan</td>
489
+ <td></td>
490
+ </tr>
491
+ <tr>
492
+ <td rowspan="4">2011</td>
493
+ <td><i><a href="/wiki/Elephant_White_(film)" title="Elephant White (film)" class="mw-redirect">Elephant White</a></i></td>
494
+ <td>Jimmy the Brit</td>
495
+ <td></td>
496
+ </tr>
497
+ <tr>
498
+ <td><i><a href="/wiki/Super_(2011_film)" title="Super (2011 film)" class="mw-redirect">Super</a></i></td>
499
+ <td>Jock</td>
500
+ <td></td>
501
+ </tr>
502
+ <tr>
503
+ <td><i><a href="/wiki/X-Men:_First_Class" title="X-Men: First Class">X-Men: First Class</a></i></td>
504
+ <td><a href="/wiki/Sebastian_Shaw_(comics)" title="Sebastian Shaw (comics)">Sebastian Shaw</a></td>
505
+ <td>Nominated - <a href="/wiki/Teen_Choice_Award" title="Teen Choice Award" class="mw-redirect">Teen Choice Award</a> for Choice Movie Villain</td>
506
+ </tr>
507
+ <tr>
508
+ <td><i><a href="/wiki/Crazy,_Stupid,_Love." title="Crazy, Stupid, Love.">Crazy, Stupid, Love.</a></i></td>
509
+ <td>David Lindhagen</td>
510
+ <td></td>
511
+ </tr>
512
+ <tr>
513
+ <td>2012</td>
514
+ <td><i><a href="/wiki/Jayne_Mansfield%27s_Car" title="Jayne Mansfield's Car">Jayne Mansfield's Car</a></i></td>
515
+ <td>Carroll Caldwell</td>
516
+ <td></td>
517
+ </tr>
518
+ <tr>
519
+ <td>2013</td>
520
+ <td><i><a href="/wiki/R.I.P.D." title="R.I.P.D.">R.I.P.D.</a></i></td>
521
+ <td>Bobby Hayes</td>
522
+ <td></td>
523
+ </tr>
524
+ </table>
525
+ <h3><span class="mw-headline" id="Television">Television</span></h3>
526
+ <table class="wikitable sortable">
527
+ <tr>
528
+ <th>Year</th>
529
+ <th>Title</th>
530
+ <th>Role</th>
531
+ <th>Notes</th>
532
+ </tr>
533
+ <tr>
534
+ <td>1979</td>
535
+ <td><i><a href="/wiki/Search_for_Tomorrow" title="Search for Tomorrow">Search for Tomorrow</a></i></td>
536
+ <td>Todd Adamson</td>
537
+ <td></td>
538
+ </tr>
539
+ <tr>
540
+ <td>1980–1981</td>
541
+ <td><i><a href="/wiki/Guiding_Light" title="Guiding Light">Guiding Light</a></i></td>
542
+ <td>T. J. 'Tim' Werner No.2</td>
543
+ <td>Six episodes</td>
544
+ </tr>
545
+ <tr>
546
+ <td>1983</td>
547
+ <td><i>The Demon Murder Case</i></td>
548
+ <td>Kenny Miller</td>
549
+ <td></td>
550
+ </tr>
551
+ <tr>
552
+ <td>1984</td>
553
+ <td><i><a href="/wiki/Mister_Roberts_(1984_film)" title="Mister Roberts (1984 film)">Mister Roberts</a></i></td>
554
+ <td>Ens. Frank Pulver</td>
555
+ <td></td>
556
+ </tr>
557
+ <tr>
558
+ <td>1985</td>
559
+ <td><i>The Little Sister</i></td>
560
+ <td>Probation Officer</td>
561
+ <td>Uncredited</td>
562
+ </tr>
563
+ <tr>
564
+ <td>1988</td>
565
+ <td><i><a href="/wiki/Lemon_Sky" title="Lemon Sky">Lemon Sky</a></i></td>
566
+ <td>Alan</td>
567
+ <td></td>
568
+ </tr>
569
+ <tr>
570
+ <td>1994</td>
571
+ <td><i><a href="/wiki/Frasier" title="Frasier">Frasier</a></i></td>
572
+ <td>Vic</td>
573
+ <td>Voice only<br />
574
+ Episode: "Adventures in Paradise: Part 2"</td>
575
+ </tr>
576
+ <tr>
577
+ <td>2000</td>
578
+ <td><i><a href="/wiki/God,_the_Devil_and_Bob" title="God, the Devil and Bob">God, the Devil and Bob</a></i></td>
579
+ <td rowspan="3">Himself</td>
580
+ <td>Voice only<br />
581
+ Episode: "Bob Gets Involved"</td>
582
+ </tr>
583
+ <tr>
584
+ <td>2002-2006</td>
585
+ <td><i><a href="/wiki/Will_%26_Grace" title="Will &amp; Grace">Will &amp; Grace</a></i></td>
586
+ <td>Episode: "Bacon and Eggs"<br />
587
+ "The Finale"</td>
588
+ </tr>
589
+ <tr>
590
+ <td>2008</td>
591
+ <td><i><a href="/wiki/The_Colbert_Report" title="The Colbert Report">The Colbert Report</a></i></td>
592
+ <td>Episode: "The Writers Return!"</td>
593
+ </tr>
594
+ <tr>
595
+ <td>2009</td>
596
+ <td><i><a href="/wiki/Taking_Chance" title="Taking Chance">Taking Chance</a></i></td>
597
+ <td>Lt. Col. <a href="/wiki/Michael_Strobl" title="Michael Strobl">Michael Strobl</a></td>
598
+ <td><a href="/wiki/Golden_Globe_Award_for_Best_Actor_%E2%80%93_Miniseries_or_Television_Film" title="Golden Globe Award for Best Actor – Miniseries or Television Film">Golden Globe Award for Best Actor&#160;– Miniseries or Television Film</a><br />
599
+ <a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Miniseries_or_Television_Movie" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie</a><br />
600
+ Nominated - <a href="/wiki/Primetime_Emmy_Award_for_Outstanding_Lead_Actor_%E2%80%93_Miniseries_or_a_Movie" title="Primetime Emmy Award for Outstanding Lead Actor – Miniseries or a Movie" class="mw-redirect">Emmy Award for Outstanding Lead Actor&#160;– Miniseries or a Movie</a><br />
601
+ Nominated - <a href="/wiki/Satellite_Award_for_Best_Actor_%E2%80%93_Miniseries_or_Television_Film" title="Satellite Award for Best Actor – Miniseries or Television Film">Satellite Award for Best Actor&#160;– Miniseries or Television Film</a></td>
602
+ </tr>
603
+ <tr>
604
+ <td>2010</td>
605
+ <td><i><a href="/wiki/Bored_to_Death" title="Bored to Death">Bored to Death</a></i></td>
606
+ <td>Himself</td>
607
+ <td>Episode: "Forty-Two Down!"</td>
608
+ </tr>
609
+ <tr>
610
+ <td>2011</td>
611
+ <td><i><a href="/wiki/Robot_Chicken" title="Robot Chicken">Robot Chicken</a></i></td>
612
+ <td>Pringle<br />
613
+ Ren McCormack</td>
614
+ <td>Voice only<br />
615
+ Episode: "Beastmaster and Commander"</td>
616
+ </tr>
617
+ <tr>
618
+ <td>2013–present</td>
619
+ <td><i><a href="/wiki/The_Following" title="The Following">The Following</a></i></td>
620
+ <td>Ryan Hardy</td>
621
+ <td>Lead role<br />
622
+ <a href="/wiki/Saturn_Award_for_Best_Actor_on_Television" title="Saturn Award for Best Actor on Television">Saturn Award for Best Actor on Television</a> <small>(2013)</small></td>
623
+ </tr>
624
+ </table>
625
+ <p><b>Directing:</b></p>
626
+ <ul>
627
+ <li><i><a href="/wiki/Losing_Chase" title="Losing Chase">Losing Chase</a></i> (1996)</li>
628
+ <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2006) (Episode: Serving the King: Part 2)</li>
629
+ <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2007) (Episode: Blindsided)</li>
630
+ <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2008) (Episode: Sudden Death)</li>
631
+ <li><i><a href="/wiki/The_Closer" title="The Closer">The Closer</a></i> (2009) (Episode: Waivers of Extradition)</li>
632
+ </ul>
633
+ <h2><span class="mw-headline" id="References">References</span></h2>
634
+ <div class="reflist references-column-count references-column-count-2" style="-moz-column-count: 2; -webkit-column-count: 2; column-count: 2; list-style-type: decimal;">
635
+ <ol class="references">
636
+ <li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><span class="citation web">Gary Boyd Roberts. <a rel="nofollow" class="external text" href="http://www.newenglandancestors.org/research/services/articles_gbr78.asp">"Ten Further Hollywood Figures (or Groups Thereof)"</a>. New England Historic Genealogical Society<span class="reference-accessdate">. Retrieved January 2, 2008</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.au=Gary+Boyd+Roberts&amp;rft.aulast=Gary+Boyd+Roberts&amp;rft.btitle=Ten+Further+Hollywood+Figures+%28or+Groups+Thereof%29&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.newenglandancestors.org%2Fresearch%2Fservices%2Farticles_gbr78.asp&amp;rft.pub=New+England+Historic+Genealogical+Society&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
637
+ <li id="cite_note-awards-2"><span class="mw-cite-backlink">^ <a href="#cite_ref-awards_2-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-awards_2-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.imdb.com/name/nm0000102/awards">Awards</a> at <a href="/wiki/IMDB" title="IMDB" class="mw-redirect">IMDB</a></span></li>
638
+ <li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><span class="citation web">Singer, Leigh (February 19, 2009). <a rel="nofollow" class="external text" href="http://www.guardian.co.uk/film/filmblog/2009/feb/19/best-actors-never-nominated-for-oscars">"Oscars: the best actors never to have been nominated"</a>. <i>The Guardian</i>. UK<span class="reference-accessdate">. Retrieved May 2, 2010</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Oscars%3A+the+best+actors+never+to+have+been+nominated&amp;rft.aufirst=Leigh&amp;rft.aulast=Singer&amp;rft.au=Singer%2C+Leigh&amp;rft.date=February+19%2C+2009&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.guardian.co.uk%2Ffilm%2Ffilmblog%2F2009%2Ffeb%2F19%2Fbest-actors-never-nominated-for-oscars&amp;rft.jtitle=The+Guardian&amp;rft.place=UK&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
639
+ <li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.biography.com/people/kevin-bacon-9542173">"Kevin Bacon"</a>. <i>Biography.com</i><span class="reference-accessdate">. Retrieved July 21, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Kevin+Bacon&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.biography.com%2Fpeople%2Fkevin-bacon-9542173&amp;rft.jtitle=Biography.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
640
+ <li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://movies.yahoo.com/person/kevin-bacon/biography.html">"ABOUT KEVIN BACON"</a>. <i>yahoo movies</i><span class="reference-accessdate">. Retrieved July 21, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=ABOUT+KEVIN+BACON&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fmovies.yahoo.com%2Fperson%2Fkevin-bacon%2Fbiography.html&amp;rft.jtitle=yahoo+movies&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
641
+ <li id="cite_note-cosmo91-6"><span class="mw-cite-backlink">^ <a href="#cite_ref-cosmo91_6-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-cosmo91_6-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><i>Cosmopolitan</i>. March 1991, p. 92.</span></li>
642
+ <li id="cite_note-time84-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-time84_7-0">^</a></b></span> <span class="reference-text"><span class="citation news">Richard Corliss (February 20, 1984). <a rel="nofollow" class="external text" href="http://www.time.com/time/magazine/article/0,9171,950019,00.html">"Revel Without a Cause"</a>. <i>TIME</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Revel+Without+a+Cause&amp;rft.aulast=Richard+Corliss&amp;rft.au=Richard+Corliss&amp;rft.date=February+20%2C+1984&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.time.com%2Ftime%2Fmagazine%2Farticle%2F0%2C9171%2C950019%2C00.html&amp;rft.jtitle=TIME&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
643
+ <li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.thebiographychannel.co.uk/biography_story/522:492/1/Kevin_Bacon.htm">"Kevin Bacon"</a>. Biography Channel.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=Kevin+Bacon&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.thebiographychannel.co.uk%2Fbiography_story%2F522%3A492%2F1%2FKevin_Bacon.htm&amp;rft.pub=Biography+Channel&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
644
+ <li id="cite_note-nyt94-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-nyt94_9-0">^</a></b></span> <span class="reference-text"><span class="citation news">Trip Gabriel (September 25, 1994). <a rel="nofollow" class="external text" href="http://query.nytimes.com/gst/fullpage.html?res=9C07E6D91F3BF936A1575AC0A962958260&amp;sec=&amp;spon=&amp;pagewanted=all">"A Second Wind Is Blowing For Kevin Bacon"</a>. <i>The New York Times</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=A+Second+Wind+Is+Blowing+For+Kevin+Bacon&amp;rft.aulast=Trip+Gabriel&amp;rft.au=Trip+Gabriel&amp;rft.date=September+25%2C+1994&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fquery.nytimes.com%2Fgst%2Ffullpage.html%3Fres%3D9C07E6D91F3BF936A1575AC0A962958260%26sec%3D%26spon%3D%26pagewanted%3Dall&amp;rft.jtitle=The+New+York+Times&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
645
+ <li id="cite_note-austin-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-austin_10-0">^</a></b></span> <span class="reference-text"><span class="citation web">Macor, Alison (February 7, 1997). <a rel="nofollow" class="external text" href="http://www.austinchronicle.com/calendar/film/1997-02-07/283342/">"Losing Chase"</a>. <i><a href="/wiki/The_Austin_Chronicle" title="The Austin Chronicle">The Austin Chronicle</a></i><span class="reference-accessdate">. Retrieved April 17, 2013</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Losing+Chase&amp;rft.aufirst=Alison&amp;rft.aulast=Macor&amp;rft.au=Macor%2C+Alison&amp;rft.date=February+7%2C+1997&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.austinchronicle.com%2Fcalendar%2Ffilm%2F1997-02-07%2F283342%2F&amp;rft.jtitle=The+Austin+Chronicle&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
646
+ <li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><span class="citation news">Bruce Kirkland (September 14, 2005). <a rel="nofollow" class="external text" href="http://jam.canoe.ca/Movies/2005/09/14/1216527.html">"Kevin Bacon irked over movie rating"</a>. <i>Toronto Sun</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Kevin+Bacon+irked+over+movie+rating&amp;rft.au=Bruce+Kirkland&amp;rft.aulast=Bruce+Kirkland&amp;rft.date=September+14%2C+2005&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fjam.canoe.ca%2FMovies%2F2005%2F09%2F14%2F1216527.html&amp;rft.jtitle=Toronto+Sun&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
647
+ <li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><span class="citation news">Kit, Borys (July 15, 2010). <a rel="nofollow" class="external text" href="http://heatvision.hollywoodreporter.com/2010/07/winters-bone-star-cast-as-mystique-in-xmen-first-class.html">"'Winter's Bone' star cast in 'X-Men: First Class' (exclusive)"</a>. <i>Heat Vision</i><span class="reference-accessdate">. Retrieved July 16, 2010</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=%27Winter%27s+Bone%27+star+cast+in+%27X-Men%3A+First+Class%27+%28exclusive%29&amp;rft.aufirst=Borys&amp;rft.au=Kit%2C+Borys&amp;rft.aulast=Kit&amp;rft.date=July+15%2C+2010&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fheatvision.hollywoodreporter.com%2F2010%2F07%2Fwinters-bone-star-cast-as-mystique-in-xmen-first-class.html&amp;rft.jtitle=Heat+Vision&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span><sup class="noprint Inline-Template"><span title="&#160;since October 2010" style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot">dead link</a></i>]</span></sup></span></li>
648
+ <li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.forcesofgeek.com/2010/07/kevin-bacon-playing-sebastian-shaw-in-x.html">"KEVIN BACON Playing SEBASTIAN SHAW in X-MEN: FIRST CLASS"</a>. forcesofgeek.com. July 16, 2010<span class="reference-accessdate">. Retrieved July 20, 2010</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=KEVIN+BACON+Playing+SEBASTIAN+SHAW+in+X-MEN%3A+FIRST+CLASS&amp;rft.date=July+16%2C+2010&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.forcesofgeek.com%2F2010%2F07%2Fkevin-bacon-playing-sebastian-shaw-in-x.html&amp;rft.pub=forcesofgeek.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
649
+ <li id="cite_note-8_the_play-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-8_the_play_14-0">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.accesshollywood.com/jesse-tyler-ferguson/glee-stars-touched-by-brad-pitt-and-george-clooneys-support-of-8_article_61543">"'Glee' Stars 'Touched' By Pitt &amp; Clooney's Support Of '8'"</a>. <a href="/wiki/Access_Hollywood" title="Access Hollywood">Access Hollywood</a>. accesshollywood.com<span class="reference-accessdate">. Retrieved March 18, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=%27Glee%27+Stars+%27Touched%27+By+Pitt+%26+Clooney%27s+Support+Of+%278%27&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.accesshollywood.com%2Fjesse-tyler-ferguson%2Fglee-stars-touched-by-brad-pitt-and-george-clooneys-support-of-8_article_61543&amp;rft.pub=Access+Hollywood.+accesshollywood.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
650
+ <li id="cite_note-8_play_video-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-8_play_video_15-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="https://www.youtube.com/watch?v=qlUG8F9uVgM">""8": A Play about the Fight for Marriage Equality"</a>. <a href="/wiki/YouTube" title="YouTube">YouTube</a><span class="reference-accessdate">. Retrieved March 18, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=%228%22%3A+A+Play+about+the+Fight+for+Marriage+Equality&amp;rft.genre=book&amp;rft_id=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DqlUG8F9uVgM&amp;rft.pub=YouTube&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
651
+ <li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><span class="citation news"><a rel="nofollow" class="external text" href="http://www.pinknews.co.uk/2012/03/01/youtube-to-broadcast-proposition-8-play-live/">"YouTube to broadcast Proposition 8 play live"</a>. pinknews.co.uk<span class="reference-accessdate">. Retrieved March 18, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=YouTube+to+broadcast+Proposition+8+play+live&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.pinknews.co.uk%2F2012%2F03%2F01%2Fyoutube-to-broadcast-proposition-8-play-live%2F&amp;rft.pub=pinknews.co.uk&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
652
+ <li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://www.au.org/media/church-and-state/archives/2008/05/two-thumbs-up.html">http://www.au.org/media/church-and-state/archives/2008/05/two-thumbs-up.html</a></span></li>
653
+ <li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text">Amy Argetsinger and Roxanne Roberts, The Reliable Source, <i>Washington Post</i>, March 26, 2008. <a rel="nofollow" class="external free" href="http://www.washingtonpost.com/wp-dyn/content/article/2008/03/25/AR2008032503852.html">http://www.washingtonpost.com/wp-dyn/content/article/2008/03/25/AR2008032503852.html</a> accessed September 24, 2011.</span></li>
654
+ <li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text">"I think there is a puritanical wind that is blowing. I have never seen such a lack of separation between church and state in America. I don't believe in God, but if I did I would say that sex is a God-given right." Wendy Ide, "The Outsider Wants In", <i>The Times</i> (London), 1 December 2005.</span></li>
655
+ <li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.foxnews.com/story/0,2933,343589,00.html">"The Bacon Brothers Go 'On the Record'"</a>. Fox News<span class="reference-accessdate">. Retrieved 2011-10-11</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=The+Bacon+Brothers+Go+%27On+the+Record%27&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.foxnews.com%2Fstory%2F0%2C2933%2C343589%2C00.html&amp;rft.pub=Fox+News&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
656
+ <li id="cite_note-financialpost-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-financialpost_21-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://economiccrisis.us/2009/06/may-god-spare-mercy-victim-tells-madoff/">"'May God spare you no mercy', victim tells Madoff"</a>. <i>Economic Crisis</i>. June 30, 2009<span class="reference-accessdate">. Retrieved May 18, 2013</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=%27May+God+spare+you+no+mercy%27%2C+victim+tells+Madoff&amp;rft.date=June+30%2C+2009&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Feconomiccrisis.us%2F2009%2F06%2Fmay-god-spare-mercy-victim-tells-madoff%2F&amp;rft.jtitle=Economic+Crisis&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
657
+ <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text">Bacon confirmed this on Late Show with Craig Ferguson, June 8, 2009</span></li>
658
+ <li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><span class="citation web">Smolenyak, Megan (2011-07-18). <a rel="nofollow" class="external text" href="http://www.huffingtonpost.com/megan-smolenyak-smolenyak/6-degrees-of-separation-k_b_900707.html">"6 Degrees of Separation: Kyra Sedgwick and Kevin Bacon Are Cousins"</a>. <i>Huffington Post</i><span class="reference-accessdate">. Retrieved July 29, 2011</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=6+Degrees+of+Separation%3A+Kyra+Sedgwick+and+Kevin+Bacon+Are+Cousins&amp;rft.aufirst=Megan&amp;rft.aulast=Smolenyak&amp;rft.au=Smolenyak%2C+Megan&amp;rft.date=2011-07-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.huffingtonpost.com%2Fmegan-smolenyak-smolenyak%2F6-degrees-of-separation-k_b_900707.html&amp;rft.jtitle=Huffington+Post&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
659
+ <li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.drawtheline.org/watch-stuff">"Watch Stuff - Bill of Reproductive Rights"</a><span class="reference-accessdate">. Retrieved February 19, 2013</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=Watch+Stuff+-+Bill+of+Reproductive+Rights&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.drawtheline.org%2Fwatch-stuff&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
660
+ <li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.sixdegrees.org/">"Six Degrees"</a><span class="reference-accessdate">. Retrieved January 2, 2008</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.btitle=Six+Degrees&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.sixdegrees.org%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
661
+ <li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text"><span class="citation web">Gilbertson, Scott (2012-09-13). <a rel="nofollow" class="external text" href="http://www.webmonkey.com/2012/09/easter-egg-google-connects-the-dots-for-bacon-number-search/">"Easter Egg: Google Connects the Dots for ‘Bacon Number’ Search"</a>. <i>webmonkey</i><span class="reference-accessdate">. Retrieved September 13, 2012</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AKevin+Bacon&amp;rft.atitle=Easter+Egg%3A+Google+Connects+the+Dots+for+%E2%80%98Bacon+Number%E2%80%99+Search&amp;rft.aufirst=Scott&amp;rft.au=Gilbertson%2C+Scott&amp;rft.aulast=Gilbertson&amp;rft.date=2012-09-13&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.webmonkey.com%2F2012%2F09%2Feaster-egg-google-connects-the-dots-for-bacon-number-search%2F&amp;rft.jtitle=webmonkey&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
662
+ </ol>
663
+ </div>
664
+ <h2><span class="mw-headline" id="External_links">External links</span></h2>
665
+ <table class="metadata mbox-small plainlinks" style="border:1px solid #aaa; background-color:#f9f9f9;">
666
+ <tr>
667
+ <td class="mbox-image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" /></td>
668
+ <td class="mbox-text plainlist" style="">Wikimedia Commons has media related to: <i><b><a href="//commons.wikimedia.org/wiki/Category:Kevin_Bacon" class="extiw" title="commons:Category:Kevin Bacon">Kevin Bacon</a></b></i></td>
669
+ </tr>
670
+ </table>
671
+ <ul>
672
+ <li><a rel="nofollow" class="external text" href="http://www.imdb.com/name/nm102/">Kevin Bacon</a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a></li>
673
+ <li><a rel="nofollow" class="external text" href="http://www.ibdb.com/person.asp?ID=90569">Kevin Bacon</a> at the <a href="/wiki/Internet_Broadway_Database" title="Internet Broadway Database">Internet Broadway Database</a></li>
674
+ <li><a rel="nofollow" class="external text" href="http://www.lortel.org/LLA_archive/index.cfm?search_by=people&amp;first=Kevin&amp;last=Bacon&amp;middle=">Kevin Bacon</a> at the <a href="/wiki/Lortel_Archives" title="Lortel Archives">Internet Off-Broadway Database</a></li>
675
+ <li><a rel="nofollow" class="external text" href="http://www.allrovi.com/name/p3164">Kevin Bacon</a> at <a href="/wiki/AllRovi" title="AllRovi">AllRovi</a></li>
676
+ <li><a rel="nofollow" class="external text" href="http://worldcat.org/identities/lccn-n88-34930">Works by or about Kevin Bacon</a> in libraries (<a href="/wiki/WorldCat" title="WorldCat">WorldCat</a> catalog)</li>
677
+ <li><a rel="nofollow" class="external text" href="http://oracleofbacon.org">Oracle of Bacon</a></li>
678
+ </ul>
679
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
680
+ <tr>
681
+ <td style="padding:2px;">
682
+ <table cellspacing="0" class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
683
+ <tr>
684
+ <th scope="col" class="navbox-title" colspan="2">
685
+ <div class="noprint plainlinks hlist navbar mini">
686
+ <ul>
687
+ <li class="nv-view"><a href="/wiki/Template:Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Template:Broadcast Film Critics Association Award for Best Actor"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
688
+ <li class="nv-talk"><a href="/wiki/Template_talk:Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Template talk:Broadcast Film Critics Association Award for Best Actor"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
689
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Broadcast_Film_Critics_Association_Award_for_Best_Actor&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
690
+ </ul>
691
+ </div>
692
+ <div style="font-size:110%;"><a href="/wiki/Broadcast_Film_Critics_Association_Award_for_Best_Actor" title="Broadcast Film Critics Association Award for Best Actor">Broadcast Film Critics Association Award for Best Actor</a></div>
693
+ </th>
694
+ </tr>
695
+ <tr style="height:2px;">
696
+ <td></td>
697
+ </tr>
698
+ <tr>
699
+ <td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0px;">
700
+ <div style="padding:0em 0.25em;">
701
+ <ul>
702
+ <li><strong class="selflink">Kevin Bacon</strong> (1995)</li>
703
+ <li><a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a> (1996)</li>
704
+ <li><a href="/wiki/Jack_Nicholson" title="Jack Nicholson">Jack Nicholson</a> (1997)</li>
705
+ <li><a href="/wiki/Ian_McKellen" title="Ian McKellen">Ian McKellen</a> (1998)</li>
706
+ <li><a href="/wiki/Russell_Crowe" title="Russell Crowe">Russell Crowe</a> (1999)</li>
707
+ </ul>
708
+ </div>
709
+ </td>
710
+ </tr>
711
+ <tr style="height:2px;">
712
+ <td></td>
713
+ </tr>
714
+ <tr>
715
+ <td colspan="2" class="navbox-list navbox-even hlist" style="width:100%;padding:0px;">
716
+ <div style="padding:0em 0.25em;">
717
+ <ul>
718
+ <li><a href="/wiki/Russell_Crowe" title="Russell Crowe">Russell Crowe</a> (2000)</li>
719
+ <li><a href="/wiki/Russell_Crowe" title="Russell Crowe">Russell Crowe</a> (2001)</li>
720
+ <li><a href="/wiki/Daniel_Day-Lewis" title="Daniel Day-Lewis">Daniel Day-Lewis</a>/<a href="/wiki/Jack_Nicholson" title="Jack Nicholson">Jack Nicholson</a> (2002)</li>
721
+ <li><a href="/wiki/Sean_Penn" title="Sean Penn">Sean Penn</a> (2003)</li>
722
+ <li><a href="/wiki/Jamie_Foxx" title="Jamie Foxx">Jamie Foxx</a> (2004)</li>
723
+ <li><a href="/wiki/Philip_Seymour_Hoffman" title="Philip Seymour Hoffman">Philip Seymour Hoffman</a> (2005)</li>
724
+ <li><a href="/wiki/Forest_Whitaker" title="Forest Whitaker">Forest Whitaker</a> (2006)</li>
725
+ <li><a href="/wiki/Daniel_Day-Lewis" title="Daniel Day-Lewis">Daniel Day-Lewis</a> (2007)</li>
726
+ <li><a href="/wiki/Sean_Penn" title="Sean Penn">Sean Penn</a> (2008)</li>
727
+ <li><a href="/wiki/Jeff_Bridges" title="Jeff Bridges">Jeff Bridges</a> (2009)</li>
728
+ </ul>
729
+ </div>
730
+ </td>
731
+ </tr>
732
+ <tr style="height:2px;">
733
+ <td></td>
734
+ </tr>
735
+ <tr>
736
+ <td colspan="2" class="navbox-list navbox-odd hlist" style="width:100%;padding:0px;">
737
+ <div style="padding:0em 0.25em;">
738
+ <ul>
739
+ <li><a href="/wiki/Colin_Firth" title="Colin Firth">Colin Firth</a> (2010)</li>
740
+ <li><a href="/wiki/George_Clooney" title="George Clooney">George Clooney</a> (2011)</li>
741
+ <li><a href="/wiki/Daniel_Day-Lewis" title="Daniel Day-Lewis">Daniel Day-Lewis</a> (2012)</li>
742
+ </ul>
743
+ </div>
744
+ </td>
745
+ </tr>
746
+ </table>
747
+ </td>
748
+ </tr>
749
+ </table>
750
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
751
+ <tr>
752
+ <td style="padding:2px;">
753
+ <table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
754
+ <tr>
755
+ <th scope="col" class="navbox-title" colspan="2" style="background: #CFB53B;">
756
+ <div class="noprint plainlinks hlist navbar mini">
757
+ <ul>
758
+ <li class="nv-view"><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019" title="Template:GoldenGlobeBestActorTVMiniseriesFilm 2000–2019"><span title="View this template" style="background: #CFB53B;;background:none transparent;border:none;;">v</span></a></li>
759
+ <li class="nv-talk"><a href="/wiki/Template_talk:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019" title="Template talk:GoldenGlobeBestActorTVMiniseriesFilm 2000–2019"><span title="Discuss this template" style="background: #CFB53B;;background:none transparent;border:none;;">t</span></a></li>
760
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019&amp;action=edit"><span title="Edit this template" style="background: #CFB53B;;background:none transparent;border:none;;">e</span></a></li>
761
+ </ul>
762
+ </div>
763
+ <div style="font-size:110%;"><a href="/wiki/Golden_Globe_Award_for_Best_Actor_%E2%80%93_Miniseries_or_Television_Film" title="Golden Globe Award for Best Actor – Miniseries or Television Film">Golden Globe Award for Best Actor – Miniseries or Television Film</a> (2000–2019)</div>
764
+ </th>
765
+ </tr>
766
+ <tr style="height:2px;">
767
+ <td></td>
768
+ </tr>
769
+ <tr>
770
+ <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
771
+ <div style="padding:0em 0.25em;">
772
+ <ul>
773
+ <li><a href="/wiki/Brian_Dennehy" title="Brian Dennehy">Brian Dennehy</a> (2000)</li>
774
+ <li><a href="/wiki/James_Franco" title="James Franco">James Franco</a> (2001)</li>
775
+ <li><a href="/wiki/Albert_Finney" title="Albert Finney">Albert Finney</a> (2002)</li>
776
+ <li><a href="/wiki/Al_Pacino" title="Al Pacino">Al Pacino</a> (2003)</li>
777
+ <li><a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a> (2004)</li>
778
+ <li><a href="/wiki/Jonathan_Rhys_Meyers" title="Jonathan Rhys Meyers">Jonathan Rhys Meyers</a> (2005)</li>
779
+ <li><a href="/wiki/Bill_Nighy" title="Bill Nighy">Bill Nighy</a> (2006)</li>
780
+ <li><a href="/wiki/Jim_Broadbent" title="Jim Broadbent">Jim Broadbent</a> (2007)</li>
781
+ <li><a href="/wiki/Paul_Giamatti" title="Paul Giamatti">Paul Giamatti</a> (2008)</li>
782
+ <li><strong class="selflink">Kevin Bacon</strong> (2009)</li>
783
+ <li><a href="/wiki/Al_Pacino" title="Al Pacino">Al Pacino</a> (2010)</li>
784
+ <li><a href="/wiki/Idris_Elba" title="Idris Elba">Idris Elba</a> (2011)</li>
785
+ <li><a href="/wiki/Kevin_Costner" title="Kevin Costner">Kevin Costner</a> (2012)</li>
786
+ </ul>
787
+ </div>
788
+ </td>
789
+ </tr>
790
+ <tr style="height:2px;">
791
+ <td></td>
792
+ </tr>
793
+ <tr>
794
+ <td class="navbox-abovebelow" colspan="2" style="background: #CFB53B;">
795
+ <div>
796
+ <div class="hlist" style="font-size:smaller">
797
+ <ul>
798
+ <li><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm" title="Template:GoldenGlobeBestActorTVMiniseriesFilm">Complete list</a></li>
799
+ <li><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm_1981%E2%80%931999" title="Template:GoldenGlobeBestActorTVMiniseriesFilm 1981–1999">(1981–1999)</a></li>
800
+ <li><a href="/wiki/Template:GoldenGlobeBestActorTVMiniseriesFilm_2000%E2%80%932019" title="Template:GoldenGlobeBestActorTVMiniseriesFilm 2000–2019">(2000–2019)</a></li>
801
+ </ul>
802
+ </div>
803
+ </div>
804
+ </td>
805
+ </tr>
806
+ </table>
807
+ </td>
808
+ </tr>
809
+ </table>
810
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
811
+ <tr>
812
+ <td style="padding:2px;">
813
+ <table cellspacing="0" class="nowraplinks hlist collapsible collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
814
+ <tr>
815
+ <th scope="col" class="navbox-title" colspan="2">
816
+ <div class="noprint plainlinks hlist navbar mini">
817
+ <ul>
818
+ <li class="nv-view"><a href="/wiki/Template:Saturn_Award_for_Best_Actor_on_Television" title="Template:Saturn Award for Best Actor on Television"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
819
+ <li class="nv-talk"><a href="/wiki/Template_talk:Saturn_Award_for_Best_Actor_on_Television" title="Template talk:Saturn Award for Best Actor on Television"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
820
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Saturn_Award_for_Best_Actor_on_Television&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
821
+ </ul>
822
+ </div>
823
+ <div style="font-size:110%;"><a href="/wiki/Saturn_Award_for_Best_Actor_on_Television" title="Saturn Award for Best Actor on Television">Saturn Award for Best Actor on Television</a></div>
824
+ </th>
825
+ </tr>
826
+ <tr style="height:2px;">
827
+ <td></td>
828
+ </tr>
829
+ <tr>
830
+ <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
831
+ <div style="padding:0em 0.25em;">
832
+ <ul>
833
+ <li><a href="/wiki/Kyle_Chandler" title="Kyle Chandler">Kyle Chandler</a> (1996)</li>
834
+ <li><a href="/wiki/Steven_Weber_(actor)" title="Steven Weber (actor)">Steven Weber</a> (1997)</li>
835
+ <li><a href="/wiki/Richard_Dean_Anderson" title="Richard Dean Anderson">Richard Dean Anderson</a> (1998)</li>
836
+ <li><a href="/wiki/David_Boreanaz" title="David Boreanaz">David Boreanaz</a> (1999)</li>
837
+ <li><a href="/wiki/Robert_Patrick" title="Robert Patrick">Robert Patrick</a> (2000)</li>
838
+ <li><a href="/wiki/Ben_Browder" title="Ben Browder">Ben Browder</a> (2001)</li>
839
+ <li><a href="/wiki/David_Boreanaz" title="David Boreanaz">David Boreanaz</a> (2002)</li>
840
+ <li><a href="/wiki/David_Boreanaz" title="David Boreanaz">David Boreanaz</a> (2003)</li>
841
+ <li><a href="/wiki/Ben_Browder" title="Ben Browder">Ben Browder</a> (2004)</li>
842
+ <li><a href="/wiki/Matthew_Fox" title="Matthew Fox">Matthew Fox</a> (2005)</li>
843
+ <li><a href="/wiki/Michael_C._Hall" title="Michael C. Hall">Michael C. Hall</a> (2006)</li>
844
+ <li><a href="/wiki/Matthew_Fox" title="Matthew Fox">Matthew Fox</a> (2007)</li>
845
+ <li><a href="/wiki/Edward_James_Olmos" title="Edward James Olmos">Edward James Olmos</a> (2008)</li>
846
+ <li><a href="/wiki/Josh_Holloway" title="Josh Holloway">Josh Holloway</a> (2009)</li>
847
+ <li><a href="/wiki/Stephen_Moyer" title="Stephen Moyer">Stephen Moyer</a> (2010)</li>
848
+ <li><a href="/wiki/Bryan_Cranston" title="Bryan Cranston">Bryan Cranston</a> (2011)</li>
849
+ <li><strong class="selflink">Kevin Bacon</strong> / <a href="/wiki/Bryan_Cranston" title="Bryan Cranston">Bryan Cranston</a> (2012)</li>
850
+ </ul>
851
+ </div>
852
+ </td>
853
+ </tr>
854
+ </table>
855
+ </td>
856
+ </tr>
857
+ </table>
858
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
859
+ <tr>
860
+ <td style="padding:2px;">
861
+ <table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
862
+ <tr>
863
+ <th scope="col" class="navbox-title" colspan="2" style="background: #ABCDEF;">
864
+ <div class="noprint plainlinks hlist navbar mini">
865
+ <ul>
866
+ <li class="nv-view"><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie 1994–2009"><span title="View this template" style="background: #ABCDEF;;background:none transparent;border:none;;">v</span></a></li>
867
+ <li class="nv-talk"><a href="/wiki/Template_talk:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009" title="Template talk:ScreenActorsGuildAward MaleTVMiniseriesMovie 1994–2009"><span title="Discuss this template" style="background: #ABCDEF;;background:none transparent;border:none;;">t</span></a></li>
868
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009&amp;action=edit"><span title="Edit this template" style="background: #ABCDEF;;background:none transparent;border:none;;">e</span></a></li>
869
+ </ul>
870
+ </div>
871
+ <div style="font-size:110%;"><a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Male_Actor_in_a_Miniseries_or_Television_Movie" title="Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie">Screen Actors Guild Award for Outstanding Performance by a Male Actor in a Miniseries or Television Movie</a> (1994–2009)</div>
872
+ </th>
873
+ </tr>
874
+ <tr style="height:2px;">
875
+ <td></td>
876
+ </tr>
877
+ <tr>
878
+ <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
879
+ <div style="padding:0em 0.25em;">
880
+ <ul>
881
+ <li><a href="/wiki/Ra%C3%BAl_Juli%C3%A1" title="Raúl Juliá">Raúl Juliá</a> (1994)</li>
882
+ <li><a href="/wiki/Gary_Sinise" title="Gary Sinise">Gary Sinise</a> (1995)</li>
883
+ <li><a href="/wiki/Alan_Rickman" title="Alan Rickman">Alan Rickman</a> (1996)</li>
884
+ <li><a href="/wiki/Gary_Sinise" title="Gary Sinise">Gary Sinise</a> (1997)</li>
885
+ <li><a href="/wiki/Christopher_Reeve" title="Christopher Reeve">Christopher Reeve</a> (1998)</li>
886
+ <li><a href="/wiki/Jack_Lemmon" title="Jack Lemmon">Jack Lemmon</a> (1999)</li>
887
+ <li><a href="/wiki/Brian_Dennehy" title="Brian Dennehy">Brian Dennehy</a> (2000)</li>
888
+ <li><a href="/wiki/Ben_Kingsley" title="Ben Kingsley">Ben Kingsley</a> (2001)</li>
889
+ <li><a href="/wiki/William_H._Macy" title="William H. Macy">William H. Macy</a> (2002)</li>
890
+ <li><a href="/wiki/Al_Pacino" title="Al Pacino">Al Pacino</a> (2003)</li>
891
+ <li><a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a> (2004)</li>
892
+ <li><a href="/wiki/Paul_Newman" title="Paul Newman">Paul Newman</a> (2005)</li>
893
+ <li><a href="/wiki/Jeremy_Irons" title="Jeremy Irons">Jeremy Irons</a> (2006)</li>
894
+ <li><a href="/wiki/Kevin_Kline" title="Kevin Kline">Kevin Kline</a> (2007)</li>
895
+ <li><a href="/wiki/Paul_Giamatti" title="Paul Giamatti">Paul Giamatti</a> (2008)</li>
896
+ <li><strong class="selflink">Kevin Bacon</strong> (2009)</li>
897
+ </ul>
898
+ </div>
899
+ </td>
900
+ </tr>
901
+ <tr style="height:2px;">
902
+ <td></td>
903
+ </tr>
904
+ <tr>
905
+ <td class="navbox-abovebelow" colspan="2" style="background: #ABCDEF;">
906
+ <div>
907
+ <ul>
908
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie">Complete list</a></li>
909
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_1994%E2%80%932009" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie 1994–2009">(1994–2009)</a></li>
910
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_MaleTVMiniseriesMovie_2010%E2%80%932029" title="Template:ScreenActorsGuildAward MaleTVMiniseriesMovie 2010–2029">(2010–2029)</a></li>
911
+ </ul>
912
+ </div>
913
+ </td>
914
+ </tr>
915
+ </table>
916
+ </td>
917
+ </tr>
918
+ </table>
919
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
920
+ <tr>
921
+ <td style="padding:2px;">
922
+ <table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
923
+ <tr>
924
+ <th scope="col" class="navbox-title" colspan="2" style="background: #ABCDEF;">
925
+ <div class="noprint plainlinks hlist navbar mini">
926
+ <ul>
927
+ <li class="nv-view"><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000" title="Template:ScreenActorsGuildAward CastMotionPicture 1995–2000"><span title="View this template" style="background: #ABCDEF;;background:none transparent;border:none;;">v</span></a></li>
928
+ <li class="nv-talk"><a href="/wiki/Template_talk:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000" title="Template talk:ScreenActorsGuildAward CastMotionPicture 1995–2000"><span title="Discuss this template" style="background: #ABCDEF;;background:none transparent;border:none;;">t</span></a></li>
929
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000&amp;action=edit"><span title="Edit this template" style="background: #ABCDEF;;background:none transparent;border:none;;">e</span></a></li>
930
+ </ul>
931
+ </div>
932
+ <div style="font-size:110%;"><a href="/wiki/Screen_Actors_Guild_Award_for_Outstanding_Performance_by_a_Cast_in_a_Motion_Picture" title="Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture">Screen Actors Guild Award for Outstanding Performance by a Cast in a Motion Picture</a> (1995–2000)</div>
933
+ </th>
934
+ </tr>
935
+ <tr style="height:2px;">
936
+ <td></td>
937
+ </tr>
938
+ <tr>
939
+ <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
940
+ <div style="padding:0em 0.25em;">
941
+ <ul>
942
+ <li><i><a href="/wiki/Apollo_13_(film)" title="Apollo 13 (film)">Apollo 13</a></i> (1995)&#160;: <span class="wrap"><small><strong class="selflink">Kevin Bacon</strong>, <a href="/wiki/Tom_Hanks" title="Tom Hanks">Tom Hanks</a>, <a href="/wiki/Ed_Harris" title="Ed Harris">Ed Harris</a>, <a href="/wiki/Bill_Paxton" title="Bill Paxton">Bill Paxton</a>, <a href="/wiki/Kathleen_Quinlan" title="Kathleen Quinlan">Kathleen Quinlan</a>, <a href="/wiki/Gary_Sinise" title="Gary Sinise">Gary Sinise</a></small></span></li>
943
+ </ul>
944
+ <ul>
945
+ <li><i><a href="/wiki/The_Birdcage" title="The Birdcage">The Birdcage</a></i> (1996)&#160;: <span class="wrap"><small><a href="/wiki/Hank_Azaria" title="Hank Azaria">Hank Azaria</a>, <a href="/wiki/Christine_Baranski" title="Christine Baranski">Christine Baranski</a>, <a href="/wiki/Dan_Futterman" title="Dan Futterman">Dan Futterman</a>, <a href="/wiki/Gene_Hackman" title="Gene Hackman">Gene Hackman</a>, <a href="/wiki/Nathan_Lane" title="Nathan Lane">Nathan Lane</a>, <a href="/wiki/Dianne_Wiest" title="Dianne Wiest">Dianne Wiest</a>, <a href="/wiki/Robin_Williams" title="Robin Williams">Robin Williams</a></small></span></li>
946
+ </ul>
947
+ <ul>
948
+ <li><i><a href="/wiki/The_Full_Monty" title="The Full Monty">The Full Monty</a></i> (1997)&#160;: <span class="wrap"><small><a href="/wiki/Mark_Addy" title="Mark Addy">Mark Addy</a>, <a href="/wiki/Paul_Barber_(actor)" title="Paul Barber (actor)">Paul Barber</a>, <a href="/wiki/Robert_Carlyle" title="Robert Carlyle">Robert Carlyle</a>, <a href="/wiki/Deirdre_Costello" title="Deirdre Costello">Deirdre Costello</a>, <a href="/wiki/Steve_Huison" title="Steve Huison">Steve Huison</a>, <a href="/wiki/Bruce_Jones_(actor)" title="Bruce Jones (actor)">Bruce Jones</a>, <a href="/wiki/Lesley_Sharp" title="Lesley Sharp">Lesley Sharp</a>, <a href="/wiki/William_Snape" title="William Snape">William Snape</a>, <a href="/wiki/Hugo_Speer" title="Hugo Speer">Hugo Speer</a>, <a href="/wiki/Tom_Wilkinson" title="Tom Wilkinson">Tom Wilkinson</a>, <a href="/wiki/Emily_Woof" title="Emily Woof">Emily Woof</a></small></span></li>
949
+ </ul>
950
+ <ul>
951
+ <li><i><a href="/wiki/Shakespeare_in_Love" title="Shakespeare in Love">Shakespeare in Love</a></i> (1998)&#160;: <span class="wrap"><small><a href="/wiki/Ben_Affleck" title="Ben Affleck">Ben Affleck</a>, <a href="/wiki/Simon_Callow" title="Simon Callow">Simon Callow</a>, <a href="/wiki/Jim_Carter_(actor)" title="Jim Carter (actor)">Jim Carter</a>, <a href="/wiki/Martin_Clunes" title="Martin Clunes">Martin Clunes</a>, <a href="/wiki/Judi_Dench" title="Judi Dench">Judi Dench</a>, <a href="/wiki/Joseph_Fiennes" title="Joseph Fiennes">Joseph Fiennes</a>, <a href="/wiki/Colin_Firth" title="Colin Firth">Colin Firth</a>, <a href="/wiki/Gwyneth_Paltrow" title="Gwyneth Paltrow">Gwyneth Paltrow</a>, <a href="/wiki/Geoffrey_Rush" title="Geoffrey Rush">Geoffrey Rush</a>, <a href="/wiki/Antony_Sher" title="Antony Sher">Antony Sher</a>, <a href="/wiki/Imelda_Staunton" title="Imelda Staunton">Imelda Staunton</a></small></span></li>
952
+ </ul>
953
+ <ul>
954
+ <li><i><a href="/wiki/American_Beauty_(film)" title="American Beauty (film)">American Beauty</a></i> (1999)&#160;: <span class="wrap"><small><a href="/wiki/Annette_Bening" title="Annette Bening">Annette Bening</a>, <a href="/wiki/Wes_Bentley" title="Wes Bentley">Wes Bentley</a>, <a href="/wiki/Thora_Birch" title="Thora Birch">Thora Birch</a>, <a href="/wiki/Chris_Cooper_(actor)" title="Chris Cooper (actor)">Chris Cooper</a>, <a href="/wiki/Peter_Gallagher" title="Peter Gallagher">Peter Gallagher</a>, <a href="/wiki/Allison_Janney" title="Allison Janney">Allison Janney</a>, <a href="/wiki/Kevin_Spacey" title="Kevin Spacey">Kevin Spacey</a>, <a href="/wiki/Mena_Suvari" title="Mena Suvari">Mena Suvari</a></small></span></li>
955
+ </ul>
956
+ <ul>
957
+ <li><i><a href="/wiki/Traffic_(2000_film)" title="Traffic (2000 film)">Traffic</a></i> (2000)&#160;: <span class="wrap"><small><a href="/wiki/Steven_Bauer" title="Steven Bauer">Steven Bauer</a>, <a href="/wiki/Benjamin_Bratt" title="Benjamin Bratt">Benjamin Bratt</a>, <a href="/wiki/James_Brolin" title="James Brolin">James Brolin</a>, <a href="/wiki/Don_Cheadle" title="Don Cheadle">Don Cheadle</a>, <a href="/wiki/Erika_Christensen" title="Erika Christensen">Erika Christensen</a>, <a href="/wiki/Clifton_Collins,_Jr." title="Clifton Collins, Jr.">Clifton Collins, Jr.</a>, <a href="/wiki/Benicio_del_Toro" title="Benicio del Toro">Benicio del Toro</a>, <a href="/wiki/Michael_Douglas" title="Michael Douglas">Michael Douglas</a>, <a href="/wiki/Miguel_Ferrer" title="Miguel Ferrer">Miguel Ferrer</a>, <a href="/wiki/Albert_Finney" title="Albert Finney">Albert Finney</a>, <a href="/wiki/Topher_Grace" title="Topher Grace">Topher Grace</a>, <a href="/wiki/Luis_Guzm%C3%A1n" title="Luis Guzmán">Luis Guzmán</a>, <a href="/wiki/Amy_Irving" title="Amy Irving">Amy Irving</a>, <a href="/wiki/Tom%C3%A1s_Mili%C3%A1n" title="Tomás Milián">Tomás Milián</a>, <a href="/wiki/D._W._Moffett" title="D. W. Moffett">D. W. Moffett</a>, <a href="/wiki/Dennis_Quaid" title="Dennis Quaid">Dennis Quaid</a>, <a href="/wiki/Peter_Riegert" title="Peter Riegert">Peter Riegert</a>, <a href="/wiki/Jacob_Vargas" title="Jacob Vargas">Jacob Vargas</a>, <a href="/wiki/Catherine_Zeta-Jones" title="Catherine Zeta-Jones">Catherine Zeta-Jones</a></small></span></li>
958
+ </ul>
959
+ </div>
960
+ </td>
961
+ </tr>
962
+ <tr style="height:2px;">
963
+ <td></td>
964
+ </tr>
965
+ <tr>
966
+ <td class="navbox-abovebelow" colspan="2" style="background: #ABCDEF;">
967
+ <div>
968
+ <ul>
969
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture" title="Template:ScreenActorsGuildAward CastMotionPicture">Complete list</a></li>
970
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_1995%E2%80%932000" title="Template:ScreenActorsGuildAward CastMotionPicture 1995–2000">(1995–2000)</a></li>
971
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_2001%E2%80%932010" title="Template:ScreenActorsGuildAward CastMotionPicture 2001–2010">(2001–2010)</a></li>
972
+ <li><a href="/wiki/Template:ScreenActorsGuildAward_CastMotionPicture_2011%E2%80%932020" title="Template:ScreenActorsGuildAward CastMotionPicture 2011–2020">(2011–2020)</a></li>
973
+ </ul>
974
+ </div>
975
+ </td>
976
+ </tr>
977
+ </table>
978
+ </td>
979
+ </tr>
980
+ </table>
981
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
982
+ <tr>
983
+ <td style="padding:2px;">
984
+ <table cellspacing="0" class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
985
+ <tr>
986
+ <th scope="row" class="navbox-group"><a href="/wiki/Authority_control" title="Authority control">Authority control</a></th>
987
+ <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
988
+ <div style="padding:0em 0.25em;">
989
+ <ul>
990
+ <li><a href="/wiki/Virtual_International_Authority_File" title="Virtual International Authority File">VIAF</a>: <span class="uid"><a rel="nofollow" class="external text" href="http://viaf.org/viaf/39570812">39570812</a></span></li>
991
+ </ul>
992
+ </div>
993
+ </td>
994
+ </tr>
995
+ </table>
996
+ </td>
997
+ </tr>
998
+ </table>
999
+ <table id="persondata" class="persondata" style="border:1px solid #aaa; display:none; speak:none;">
1000
+ <tr>
1001
+ <th colspan="2"><a href="/wiki/Wikipedia:Persondata" title="Wikipedia:Persondata">Persondata</a></th>
1002
+ </tr>
1003
+ <tr>
1004
+ <td class="persondata-label" style="color:#aaa;">Name</td>
1005
+ <td>Bacon, Kevin Norwood</td>
1006
+ </tr>
1007
+ <tr>
1008
+ <td class="persondata-label" style="color:#aaa;">Alternative names</td>
1009
+ <td></td>
1010
+ </tr>
1011
+ <tr>
1012
+ <td class="persondata-label" style="color:#aaa;">Short description</td>
1013
+ <td>American film and theater actor, musician</td>
1014
+ </tr>
1015
+ <tr>
1016
+ <td class="persondata-label" style="color:#aaa;">Date of birth</td>
1017
+ <td>July 8, 1958</td>
1018
+ </tr>
1019
+ <tr>
1020
+ <td class="persondata-label" style="color:#aaa;">Place of birth</td>
1021
+ <td><a href="/wiki/Philadelphia,_Pennsylvania" title="Philadelphia, Pennsylvania" class="mw-redirect">Philadelphia, Pennsylvania</a></td>
1022
+ </tr>
1023
+ <tr>
1024
+ <td class="persondata-label" style="color:#aaa;">Date of death</td>
1025
+ <td></td>
1026
+ </tr>
1027
+ <tr>
1028
+ <td class="persondata-label" style="color:#aaa;">Place of death</td>
1029
+ <td></td>
1030
+ </tr>
1031
+ </table>
1032
+ <p><span id="interwiki-fr-fa"></span></p>
1033
+ <!--
1034
+ NewPP limit report
1035
+ Preprocessor visited node count: 5302/1000000
1036
+ Preprocessor generated node count: 18521/1500000
1037
+ Post‐expand include size: 98885/2048000 bytes
1038
+ Template argument size: 11791/2048000 bytes
1039
+ Highest expansion depth: 20/40
1040
+ Expensive parser function count: 17/500
1041
+ Lua time usage: 0.181s
1042
+ Lua memory usage: 2.63 MB
1043
+ -->
1044
+ <!-- Saved in parser cache with key enwiki:pcache:idhash:16827-0!*!0!!en!4!* and timestamp 20130731064303 -->
1045
+ <noscript><img src="//en.wikipedia.org/w/index.php?title=Special:CentralAutoLogin/start&amp;type=1x1&amp;from=enwiki" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div> <div class="printfooter">
1046
+ Retrieved from "<a href="http://en.wikipedia.org/w/index.php?title=Kevin_Bacon&amp;oldid=566422525">http://en.wikipedia.org/w/index.php?title=Kevin_Bacon&amp;oldid=566422525</a>" </div>
1047
+ <div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Categories" title="Help:Categories">Categories</a>: <ul><li><a href="/wiki/Category:1958_births" title="Category:1958 births">1958 births</a></li><li><a href="/wiki/Category:Actors_from_Philadelphia,_Pennsylvania" title="Category:Actors from Philadelphia, Pennsylvania">Actors from Philadelphia, Pennsylvania</a></li><li><a href="/wiki/Category:American_film_actors" title="Category:American film actors">American film actors</a></li><li><a href="/wiki/Category:American_soap_opera_actors" title="Category:American soap opera actors">American soap opera actors</a></li><li><a href="/wiki/Category:American_television_actors" title="Category:American television actors">American television actors</a></li><li><a href="/wiki/Category:American_voice_actors" title="Category:American voice actors">American voice actors</a></li><li><a href="/wiki/Category:Best_Miniseries_or_Television_Movie_Actor_Golden_Globe_winners" title="Category:Best Miniseries or Television Movie Actor Golden Globe winners">Best Miniseries or Television Movie Actor Golden Globe winners</a></li><li><a href="/wiki/Category:Circle_in_the_Square_Theatre_School_alumni" title="Category:Circle in the Square Theatre School alumni">Circle in the Square Theatre School alumni</a></li><li><a href="/wiki/Category:Living_people" title="Category:Living people">Living people</a></li><li><a href="/wiki/Category:Obie_Award_recipients" title="Category:Obie Award recipients">Obie Award recipients</a></li><li><a href="/wiki/Category:Outstanding_Performance_by_a_Cast_in_a_Motion_Picture_Screen_Actors_Guild_Award_winners" title="Category:Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners">Outstanding Performance by a Cast in a Motion Picture Screen Actors Guild Award winners</a></li><li><a href="/wiki/Category:Sedgwick_family" title="Category:Sedgwick family">Sedgwick family</a></li><li><a href="/wiki/Category:20th-century_American_actors" title="Category:20th-century American actors">20th-century American actors</a></li><li><a href="/wiki/Category:21st-century_American_actors" title="Category:21st-century American actors">21st-century American actors</a></li><li><a href="/wiki/Category:American_male_actors" title="Category:American male actors">American male actors</a></li><li><a href="/wiki/Category:American_atheists" title="Category:American atheists">American atheists</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:All_articles_with_dead_external_links" title="Category:All articles with dead external links">All articles with dead external links</a></li><li><a href="/wiki/Category:Articles_with_dead_external_links_from_October_2010" title="Category:Articles with dead external links from October 2010">Articles with dead external links from October 2010</a></li><li><a href="/wiki/Category:Wikipedia_indefinitely_semi-protected_biographies_of_living_people" title="Category:Wikipedia indefinitely semi-protected biographies of living people">Wikipedia indefinitely semi-protected biographies of living people</a></li><li><a href="/wiki/Category:Use_mdy_dates_from_June_2011" title="Category:Use mdy dates from June 2011">Use mdy dates from June 2011</a></li><li><a href="/wiki/Category:Articles_with_hCards" title="Category:Articles with hCards">Articles with hCards</a></li><li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_July_2011" title="Category:Articles with unsourced statements from July 2011">Articles with unsourced statements from July 2011</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_October_2009" title="Category:Articles with unsourced statements from October 2009">Articles with unsourced statements from October 2009</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_January_2008" title="Category:Articles with unsourced statements from January 2008">Articles with unsourced statements from January 2008</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_January_2010" title="Category:Articles with unsourced statements from January 2010">Articles with unsourced statements from January 2010</a></li><li><a href="/wiki/Category:Commons_category_template_with_no_category_set" title="Category:Commons category template with no category set">Commons category template with no category set</a></li><li><a href="/wiki/Category:Commons_category_with_page_title_same_as_on_Wikidata" title="Category:Commons category with page title same as on Wikidata">Commons category with page title same as on Wikidata</a></li><li><a href="/wiki/Category:Wikipedia_articles_with_VIAF_identifiers" title="Category:Wikipedia articles with VIAF identifiers">Wikipedia articles with VIAF identifiers</a></li></ul></div></div> <div class="visualClear"></div>
1048
+ </div>
1049
+ </div>
1050
+ <div id="mw-navigation">
1051
+ <h2>Navigation menu</h2>
1052
+ <div id="mw-head">
1053
+ <div id="p-personal" role="navigation" class="">
1054
+ <h3>Personal tools</h3>
1055
+ <ul>
1056
+ <li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Kevin+Bacon&amp;type=signup">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Kevin+Bacon" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li> </ul>
1057
+ </div>
1058
+ <div id="left-navigation">
1059
+ <div id="p-namespaces" role="navigation" class="vectorTabs">
1060
+ <h3>Namespaces</h3>
1061
+ <ul>
1062
+ <li id="ca-nstab-main" class="selected"><span><a href="/wiki/Kevin_Bacon" title="View the content page [c]" accesskey="c">Article</a></span></li>
1063
+ <li id="ca-talk"><span><a href="/wiki/Talk:Kevin_Bacon" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
1064
+ </ul>
1065
+ </div>
1066
+ <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet">
1067
+ <h3 id="mw-vector-current-variant">
1068
+ </h3>
1069
+ <h3><span>Variants</span><a href="#"></a></h3>
1070
+ <div class="menu">
1071
+ <ul>
1072
+ </ul>
1073
+ </div>
1074
+ </div>
1075
+ </div>
1076
+ <div id="right-navigation">
1077
+ <div id="p-views" role="navigation" class="vectorTabs">
1078
+ <h3>Views</h3>
1079
+ <ul>
1080
+ <li id="ca-view" class="selected"><span><a href="/wiki/Kevin_Bacon" >Read</a></span></li>
1081
+ <li id="ca-viewsource"><span><a href="/w/index.php?title=Kevin_Bacon&amp;action=edit" title="This page is protected.&#10;You can view its source [e]" accesskey="e">View source</a></span></li>
1082
+ <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Kevin_Bacon&amp;action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
1083
+ </ul>
1084
+ </div>
1085
+ <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet">
1086
+ <h3><span>Actions</span><a href="#"></a></h3>
1087
+ <div class="menu">
1088
+ <ul>
1089
+ </ul>
1090
+ </div>
1091
+ </div>
1092
+ <div id="p-search" role="search">
1093
+ <h3><label for="searchInput">Search</label></h3>
1094
+ <form action="/w/index.php" id="searchform">
1095
+ <div id="simpleSearch">
1096
+ <input name="search" placeholder="Search" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search Wikipedia for this text" id="searchButton"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/vector/images/search-ltr.png?303-4" alt="Search" width="12" height="13" /></button> <input type='hidden' name="title" value="Special:Search"/>
1097
+ </div>
1098
+ </form>
1099
+ </div>
1100
+ </div>
1101
+ </div>
1102
+ <div id="mw-panel">
1103
+ <div id="p-logo" role="banner"><a style="background-image: url(//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);" href="/wiki/Main_Page" title="Visit the main page"></a></div>
1104
+ <div class="portal" role="navigation" id='p-navigation'>
1105
+ <h3>Navigation</h3>
1106
+ <div class="body">
1107
+ <ul>
1108
+ <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
1109
+ <li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
1110
+ <li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
1111
+ <li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
1112
+ <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
1113
+ <li id="n-sitesupport"><a href="//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li>
1114
+ </ul>
1115
+ </div>
1116
+ </div>
1117
+ <div class="portal" role="navigation" id='p-interaction'>
1118
+ <h3>Interaction</h3>
1119
+ <div class="body">
1120
+ <ul>
1121
+ <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
1122
+ <li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
1123
+ <li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
1124
+ <li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
1125
+ <li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact page</a></li>
1126
+ </ul>
1127
+ </div>
1128
+ </div>
1129
+ <div class="portal" role="navigation" id='p-tb'>
1130
+ <h3>Toolbox</h3>
1131
+ <div class="body">
1132
+ <ul>
1133
+ <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Kevin_Bacon" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
1134
+ <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Kevin_Bacon" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
1135
+ <li id="t-upload"><a href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u">Upload file</a></li>
1136
+ <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
1137
+ <li id="t-permalink"><a href="/w/index.php?title=Kevin_Bacon&amp;oldid=566422525" title="Permanent link to this revision of the page">Permanent link</a></li>
1138
+ <li id="t-info"><a href="/w/index.php?title=Kevin_Bacon&amp;action=info">Page information</a></li>
1139
+ <li id="t-wikibase"><a href="//www.wikidata.org/wiki/Q3454165" title="Link to connected data repository item">Data item</a></li>
1140
+ <li id="t-cite"><a href="/w/index.php?title=Special:Cite&amp;page=Kevin_Bacon&amp;id=566422525" title="Information on how to cite this page">Cite this page</a></li> </ul>
1141
+ </div>
1142
+ </div>
1143
+ <div class="portal" role="navigation" id='p-coll-print_export'>
1144
+ <h3>Print/export</h3>
1145
+ <div class="body">
1146
+ <ul>
1147
+ <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Kevin+Bacon">Create a book</a></li>
1148
+ <li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Kevin+Bacon&amp;oldid=566422525&amp;writer=rl">Download as PDF</a></li>
1149
+ <li id="t-print"><a href="/w/index.php?title=Kevin_Bacon&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>
1150
+ </ul>
1151
+ </div>
1152
+ </div>
1153
+ <div class="portal" role="navigation" id='p-lang'>
1154
+ <h3>Languages</h3>
1155
+ <div class="body">
1156
+ <ul>
1157
+ <li class="interwiki-ar"><a href="//ar.wikipedia.org/wiki/%D9%83%D9%8A%D9%81%D9%8A%D9%86_%D8%A8%D9%8A%D9%83%D9%86" title="كيفين بيكن" lang="ar" hreflang="ar">العربية</a></li>
1158
+ <li class="interwiki-an"><a href="//an.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="an" hreflang="an">Aragonés</a></li>
1159
+ <li class="interwiki-zh-min-nan"><a href="//zh-min-nan.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="zh-min-nan" hreflang="zh-min-nan">Bân-lâm-gú</a></li>
1160
+ <li class="interwiki-bg"><a href="//bg.wikipedia.org/wiki/%D0%9A%D0%B5%D0%B2%D0%B8%D0%BD_%D0%91%D0%B5%D0%B9%D0%BA%D1%8A%D0%BD" title="Кевин Бейкън" lang="bg" hreflang="bg">Български</a></li>
1161
+ <li class="interwiki-ca"><a href="//ca.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="ca" hreflang="ca">Català</a></li>
1162
+ <li class="interwiki-da"><a href="//da.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="da" hreflang="da">Dansk</a></li>
1163
+ <li class="interwiki-de"><a href="//de.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="de" hreflang="de">Deutsch</a></li>
1164
+ <li class="interwiki-el"><a href="//el.wikipedia.org/wiki/%CE%9A%CE%AD%CE%B2%CE%B9%CE%BD_%CE%9C%CF%80%CE%AD%CE%B9%CE%BA%CE%BF%CE%BD" title="Κέβιν Μπέικον" lang="el" hreflang="el">Ελληνικά</a></li>
1165
+ <li class="interwiki-es"><a href="//es.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="es" hreflang="es">Español</a></li>
1166
+ <li class="interwiki-eu"><a href="//eu.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="eu" hreflang="eu">Euskara</a></li>
1167
+ <li class="interwiki-fa"><a href="//fa.wikipedia.org/wiki/%DA%A9%D9%88%DB%8C%D9%86_%D8%A8%DB%8C%DA%A9%D9%86" title="کوین بیکن" lang="fa" hreflang="fa">فارسی</a></li>
1168
+ <li class="interwiki-fr"><a href="//fr.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="fr" hreflang="fr">Français</a></li>
1169
+ <li class="interwiki-gl"><a href="//gl.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="gl" hreflang="gl">Galego</a></li>
1170
+ <li class="interwiki-ko"><a href="//ko.wikipedia.org/wiki/%EC%BC%80%EB%B9%88_%EB%B2%A0%EC%9D%B4%EC%BB%A8" title="케빈 베이컨" lang="ko" hreflang="ko">한국어</a></li>
1171
+ <li class="interwiki-hr"><a href="//hr.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="hr" hreflang="hr">Hrvatski</a></li>
1172
+ <li class="interwiki-io"><a href="//io.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="io" hreflang="io">Ido</a></li>
1173
+ <li class="interwiki-id"><a href="//id.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="id" hreflang="id">Bahasa Indonesia</a></li>
1174
+ <li class="interwiki-it"><a href="//it.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="it" hreflang="it">Italiano</a></li>
1175
+ <li class="interwiki-he"><a href="//he.wikipedia.org/wiki/%D7%A7%D7%95%D7%95%D7%99%D7%9F_%D7%91%D7%99%D7%99%D7%A7%D7%95%D7%9F" title="קווין בייקון" lang="he" hreflang="he">עברית</a></li>
1176
+ <li class="interwiki-ka"><a href="//ka.wikipedia.org/wiki/%E1%83%99%E1%83%94%E1%83%95%E1%83%98%E1%83%9C_%E1%83%91%E1%83%94%E1%83%98%E1%83%99%E1%83%9D%E1%83%9C%E1%83%98" title="კევინ ბეიკონი" lang="ka" hreflang="ka">ქართული</a></li>
1177
+ <li class="interwiki-hu"><a href="//hu.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="hu" hreflang="hu">Magyar</a></li>
1178
+ <li class="interwiki-nl"><a href="//nl.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="nl" hreflang="nl">Nederlands</a></li>
1179
+ <li class="interwiki-ja"><a href="//ja.wikipedia.org/wiki/%E3%82%B1%E3%83%B4%E3%82%A3%E3%83%B3%E3%83%BB%E3%83%99%E3%83%BC%E3%82%B3%E3%83%B3" title="ケヴィン・ベーコン" lang="ja" hreflang="ja">日本語</a></li>
1180
+ <li class="interwiki-no"><a href="//no.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="no" hreflang="no">Norsk bokmål</a></li>
1181
+ <li class="interwiki-oc"><a href="//oc.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="oc" hreflang="oc">Occitan</a></li>
1182
+ <li class="interwiki-pl"><a href="//pl.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="pl" hreflang="pl">Polski</a></li>
1183
+ <li class="interwiki-pt"><a href="//pt.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="pt" hreflang="pt">Português</a></li>
1184
+ <li class="interwiki-ru"><a href="//ru.wikipedia.org/wiki/%D0%91%D1%8D%D0%B9%D0%BA%D0%BE%D0%BD,_%D0%9A%D0%B5%D0%B2%D0%B8%D0%BD" title="Бэйкон, Кевин" lang="ru" hreflang="ru">Русский</a></li>
1185
+ <li class="interwiki-simple"><a href="//simple.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="simple" hreflang="simple">Simple English</a></li>
1186
+ <li class="interwiki-sk"><a href="//sk.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="sk" hreflang="sk">Slovenčina</a></li>
1187
+ <li class="interwiki-sr"><a href="//sr.wikipedia.org/wiki/%D0%9A%D0%B5%D0%B2%D0%B8%D0%BD_%D0%91%D0%B5%D1%98%D0%BA%D0%BE%D0%BD" title="Кевин Бејкон" lang="sr" hreflang="sr">Српски / srpski</a></li>
1188
+ <li class="interwiki-sh"><a href="//sh.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="sh" hreflang="sh">Srpskohrvatski / српскохрватски</a></li>
1189
+ <li class="interwiki-fi"><a href="//fi.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="fi" hreflang="fi">Suomi</a></li>
1190
+ <li class="interwiki-sv"><a href="//sv.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="sv" hreflang="sv">Svenska</a></li>
1191
+ <li class="interwiki-th"><a href="//th.wikipedia.org/wiki/%E0%B9%80%E0%B8%84%E0%B8%A7%E0%B8%B4%E0%B8%99_%E0%B9%80%E0%B8%9A%E0%B8%84%E0%B8%AD%E0%B8%99" title="เควิน เบคอน" lang="th" hreflang="th">ไทย</a></li>
1192
+ <li class="interwiki-tr"><a href="//tr.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="tr" hreflang="tr">Türkçe</a></li>
1193
+ <li class="interwiki-uk"><a href="//uk.wikipedia.org/wiki/%D0%9A%D0%B5%D0%B2%D1%96%D0%BD_%D0%91%D0%B5%D0%B9%D0%BA%D0%BE%D0%BD" title="Кевін Бейкон" lang="uk" hreflang="uk">Українська</a></li>
1194
+ <li class="interwiki-vi"><a href="//vi.wikipedia.org/wiki/Kevin_Bacon" title="Kevin Bacon" lang="vi" hreflang="vi">Tiếng Việt</a></li>
1195
+ <li class="interwiki-zh"><a href="//zh.wikipedia.org/wiki/%E5%87%AF%E6%96%87%C2%B7%E8%B4%9D%E8%82%AF" title="凯文·贝肯" lang="zh" hreflang="zh">中文</a></li>
1196
+ <li class="uls-p-lang-dummy"><a href="#"></a></li>
1197
+ <li class="wbc-editpage"><a href="//www.wikidata.org/wiki/Q3454165#sitelinks-wikipedia" title="Edit interlanguage links">Edit links</a></li>
1198
+ </ul>
1199
+ </div>
1200
+ </div>
1201
+ </div>
1202
+ </div>
1203
+ <div id="footer" role="contentinfo">
1204
+ <ul id="footer-info">
1205
+ <li id="footer-info-lastmod"> This page was last modified on 30 July 2013 at 13:18.<br /></li>
1206
+ <li id="footer-info-copyright">Text is available under the <a rel="license" href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a><a rel="license" href="//creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></a>;
1207
+ additional terms may apply. By using this site, you agree to the <a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy.</a> <br/>
1208
+ Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
1209
+ </ul>
1210
+ <ul id="footer-places">
1211
+ <li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
1212
+ <li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
1213
+ <li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
1214
+ <li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
1215
+ <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/wiki/Kevin_Bacon" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
1216
+ </ul>
1217
+ <ul id="footer-icons" class="noprint">
1218
+ <li id="footer-copyrightico">
1219
+ <a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
1220
+ </li>
1221
+ <li id="footer-poweredbyico">
1222
+ <a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/static-1.22wmf11/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
1223
+ </li>
1224
+ </ul>
1225
+ <div style="clear:both"></div>
1226
+ </div>
1227
+ <script>/*<![CDATA[*/window.jQuery && jQuery.ready();/*]]>*/</script><script>if(window.mw){
1228
+ mw.loader.state({"site":"loading","user":"ready","user.groups":"ready"});
1229
+ }</script>
1230
+ <script>if(window.mw){
1231
+ mw.loader.load(["mediawiki.action.view.postEdit","mobile.desktop","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.DRN-wizard","ext.gadget.charinsert","mw.MwEmbedSupport.style","ext.vector.collapsibleNav","ext.articleFeedbackv5.startup","schema.Edit","ext.gettingstarted.logging","ext.gettingstarted.openTask","ext.navigationTiming","mw.PopUpMediaTransform"],null,true);
1232
+ }</script>
1233
+ <script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=scripts&amp;skin=vector&amp;*"></script>
1234
+ <!-- Served by mw1018 in 0.228 secs. -->
1235
+ </body>
1236
+ </html>