express_templates 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +53 -0
  4. data/Rakefile +32 -0
  5. data/lib/express_templates/component.rb +92 -0
  6. data/lib/express_templates/components/html_tag.rb +36 -0
  7. data/lib/express_templates/components/wrapper.rb +51 -0
  8. data/lib/express_templates/components/yielder.rb +21 -0
  9. data/lib/express_templates/components.rb +8 -0
  10. data/lib/express_templates/expander.rb +116 -0
  11. data/lib/express_templates/html5_emitter.rb +45 -0
  12. data/lib/express_templates/renderer.rb +16 -0
  13. data/lib/express_templates/template/handler.rb +15 -0
  14. data/lib/express_templates/version.rb +3 -0
  15. data/lib/express_templates.rb +12 -0
  16. data/lib/tasks/gara_tasks.rake +4 -0
  17. data/test/component_test.rb +77 -0
  18. data/test/dummy/Rakefile +6 -0
  19. data/test/dummy/app/assets/javascripts/application.js +13 -0
  20. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  21. data/test/dummy/app/controllers/application_controller.rb +5 -0
  22. data/test/dummy/app/controllers/hello_controller.rb +5 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/views/hello/show.html.et +5 -0
  25. data/test/dummy/app/views/layouts/application.html.et +15 -0
  26. data/test/dummy/bin/bundle +3 -0
  27. data/test/dummy/bin/rails +4 -0
  28. data/test/dummy/bin/rake +4 -0
  29. data/test/dummy/config/application.rb +26 -0
  30. data/test/dummy/config/boot.rb +5 -0
  31. data/test/dummy/config/environment.rb +5 -0
  32. data/test/dummy/config/environments/development.rb +37 -0
  33. data/test/dummy/config/environments/production.rb +82 -0
  34. data/test/dummy/config/environments/test.rb +39 -0
  35. data/test/dummy/config/initializers/assets.rb +8 -0
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  38. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/test/dummy/config/initializers/inflections.rb +16 -0
  40. data/test/dummy/config/initializers/mime_types.rb +4 -0
  41. data/test/dummy/config/initializers/session_store.rb +3 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/en.yml +23 -0
  44. data/test/dummy/config/routes.rb +4 -0
  45. data/test/dummy/config/secrets.yml +22 -0
  46. data/test/dummy/config.ru +4 -0
  47. data/test/dummy/log/development.log +6478 -0
  48. data/test/dummy/log/test.log +20859 -0
  49. data/test/dummy/public/404.html +67 -0
  50. data/test/dummy/public/422.html +67 -0
  51. data/test/dummy/public/500.html +66 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/test/controllers/hello_controller_test.rb +14 -0
  54. data/test/dummy/test/helpers/hello_helper_test.rb +4 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/219e4ef52e71a2dd3142d36271626492 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/29331726baea36717bf28565c0be1881 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/4584795e7f513db14ffca10dab44759e +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/72a227156d935c44e2aad8718b3952fb +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/cfea650552ed221f83ea2c8fc3198c53 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/e27275f4020fd1fc40de79a1e5db4c96 +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  67. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  68. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  69. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  70. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  71. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  72. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  73. data/test/expander_stack_test.rb +41 -0
  74. data/test/expander_test.rb +56 -0
  75. data/test/fixtures/a_big_page.html +595 -0
  76. data/test/gara_test.rb +19 -0
  77. data/test/handler_test.rb +122 -0
  78. data/test/performance_test.rb +93 -0
  79. data/test/test_helper.rb +17 -0
  80. data/test/wrapper_test.rb +23 -0
  81. metadata +271 -0
@@ -0,0 +1,595 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en" dir="ltr" class="client-nojs">
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <title>Idiocracy - Wikipedia, the free encyclopedia</title>
7
+ <meta name="generator" content="MediaWiki 1.24wmf15" />
8
+ <link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/Idiocracy" />
9
+ <link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Idiocracy&amp;action=edit" />
10
+ <link rel="edit" title="Edit this page" href="/w/index.php?title=Idiocracy&amp;action=edit" />
11
+ <link rel="apple-touch-icon" href="//bits.wikimedia.org/apple-touch/wikipedia.png" />
12
+ <link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
13
+ <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
14
+ <link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
15
+ <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
16
+ <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
17
+ <link rel="canonical" href="http://en.wikipedia.org/wiki/Idiocracy" />
18
+ <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%2Cfeatured-articles-links%2CrefToolbar%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles%7Cwikibase.client.init&amp;only=styles&amp;skin=vector&amp;*" />
19
+ <meta name="ResourceLoaderDynamicStyles" content="" />
20
+ <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;*" />
21
+ <style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
22
+ /* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style>
23
+ <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>
24
+ <script>if(window.mw){
25
+ mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Idiocracy","wgTitle":"Idiocracy","wgCurRevisionId":620425246,"wgRevisionId":620425246,"wgArticleId":2600144,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with dead external links","Articles with dead external links from October 2010","Use mdy dates from August 2011","2006 films","All film articles using the film date template","English-language films","Film articles using image size parameter","2000s comedy films","2000s science fiction films","American films","American comedy science fiction films","American political comedy films","American satirical films","Films directed by Mike Judge","Cryonics in fiction","Dystopian films","Films about fictional Presidents of the United States","Films set in the 26th century","Films shot in Austin, Texas","20th Century Fox films"],"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":"Idiocracy","wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"preview":false,"previewDialog":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":true,"wgVisualEditor":{"isPageWatched":false,"magnifyClipIconURL":"//bits.wikimedia.org/static-1.24wmf15/skins/common/images/magnify-clip.png","pageLanguageCode":"en","pageLanguageDir":"ltr","svgMaxSize":2048,"namespacesWithSubpages":{"6":0,"8":0,"1":true,"2":true,"3":true,"4":true,"5":true,"7":true,"9":true,"10":true,"11":true,"12":true,"13":true,"14":true,"15":true,"100":true,"101":true,"102":true,"103":true,"104":true,"105":true,"106":true,"107":true,"108":true,"109":true,"110":true,"111":true,"447":true,"2600":false,"828":true,"829":true}},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgULSAcceptLanguageList":["en-us","en"],"wgULSCurrentAutonym":"English","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q1347609"});
26
+ }</script><script>if(window.mw){
27
+ mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"editfont":"default","editondblclick":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nickname":"","norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rows":25,"showhiddencats":false,"shownumberswatching":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,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,
28
+ "useeditwarning":1,"prefershttps":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"multimediaviewer-enable":true,"visualeditor-enable":0,"visualeditor-betatempdisable":0,"visualeditor-enable-experimental":0,"visualeditor-enable-language":0,"visualeditor-hidebetawelcome":0,"wikilove-enabled":1,"mathJax":false,"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-subscriptions-web-education-program":true,"echo-subscriptions-email-education-program":false,"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-user-rights":true,"echo-subscriptions-web-user-rights":true,"echo-subscriptions-email-other":false,
29
+ "echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":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,"echo-subscriptions-web-flow-discussion":true,"echo-subscriptions-email-flow-discussion":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","language":"en","variant-gan":"gan","variant-iu":"iu","variant-kk":"kk","variant-ku":"ku","variant-shi":"shi","variant-sr":"sr","variant-tg":"tg","variant-uz":"uz","variant-zh":"zh","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,
30
+ "searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs118":false,"searchNs119":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"searchNs2600":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-geonotice":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-refToolbar":1,"gadget-mySandbox":1,"gadget-featured-articles-links":1,"variant":"en"});},{},{});mw.loader.implement("user.tokens",function($,jQuery){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
31
+ /* cache key: enwiki:resourceloader:filter:minify-js:7:60f7f3b86f015db81a0405743c714f26 */
32
+ }</script>
33
+ <script>if(window.mw){
34
+ mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","mmv.head","ext.visualEditor.viewPageTarget.init","ext.uls.init","ext.uls.interface","ext.centralNotice.bannerController","skins.vector.js"]);
35
+ }</script>
36
+ <link rel="dns-prefetch" href="//meta.wikimedia.org" />
37
+ <!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.24wmf15/skins/Vector/csshover.min.htc")}</style><![endif]-->
38
+ </head>
39
+ <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Idiocracy skin-vector action-view vector-animateLayout">
40
+ <div id="mw-page-base" class="noprint"></div>
41
+ <div id="mw-head-base" class="noprint"></div>
42
+ <div id="content" class="mw-body" role="main">
43
+ <a id="top"></a>
44
+
45
+ <div id="siteNotice"><!-- CentralNotice --></div>
46
+ <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto"><i>Idiocracy</i></span></h1>
47
+ <div id="bodyContent" class="mw-body-content">
48
+ <div id="siteSub">From Wikipedia, the free encyclopedia</div>
49
+ <div id="contentSub"></div>
50
+ <div id="jump-to-nav" class="mw-jump">
51
+ Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
52
+ </div>
53
+ <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><table class="infobox vevent" cellspacing="3" style="border-spacing:3px;width:22em;font-size: 90%;;">
54
+ <tr>
55
+ <th colspan="2" class="summary" style="text-align:center;font-size:125%;font-weight:bold;font-size: 110%; font-style: italic;">Idiocracy</th>
56
+ </tr>
57
+ <tr>
58
+ <td colspan="2" style="text-align:center;"><a href="/wiki/File:Idiocracy_movie_poster.jpg" class="image" title="Film poster in the style of Leonardo da Vinci's &quot;Vitruvian Man&quot; showing an imperfect slob"><img alt="Film poster in the style of Leonardo da Vinci's &quot;Vitruvian Man&quot; showing an imperfect slob" src="//upload.wikimedia.org/wikipedia/en/6/6b/Idiocracy_movie_poster.jpg" width="225" height="333" class="thumbborder" data-file-width="203" data-file-height="300" /></a>
59
+ <div style="font-size: 95%; line-height: 1.5em;">Theatrical release poster</div>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Directed by</th>
64
+ <td><a href="/wiki/Mike_Judge" title="Mike Judge">Mike Judge</a></td>
65
+ </tr>
66
+ <tr>
67
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Produced by</th>
68
+ <td>Mike Judge<br />
69
+ Elysa Koplovitz<br />
70
+ Michael Nelson</td>
71
+ </tr>
72
+ <tr>
73
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Written by</th>
74
+ <td>Mike Judge<br />
75
+ <a href="/wiki/Etan_Cohen" title="Etan Cohen">Etan Cohen</a></td>
76
+ </tr>
77
+ <tr>
78
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Starring</th>
79
+ <td><a href="/wiki/Luke_Wilson" title="Luke Wilson">Luke Wilson</a><br />
80
+ <a href="/wiki/Maya_Rudolph" title="Maya Rudolph">Maya Rudolph</a><br />
81
+ <a href="/wiki/Dax_Shepard" title="Dax Shepard">Dax Shepard</a><br />
82
+ <a href="/wiki/Terry_Crews" title="Terry Crews">Terry Alan Crews</a></td>
83
+ </tr>
84
+ <tr>
85
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Narrated by</th>
86
+ <td>Earl Mann</td>
87
+ </tr>
88
+ <tr>
89
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Music by</th>
90
+ <td><a href="/wiki/Theodore_Shapiro_(composer)" title="Theodore Shapiro (composer)">Theodore Shapiro</a></td>
91
+ </tr>
92
+ <tr>
93
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Cinematography</th>
94
+ <td><a href="/wiki/Tim_Suhrstedt" title="Tim Suhrstedt">Tim Suhrstedt</a></td>
95
+ </tr>
96
+ <tr>
97
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Edited by</th>
98
+ <td><a href="/wiki/David_Rennie_(editor)" title="David Rennie (editor)">David Rennie</a></td>
99
+ </tr>
100
+ <tr>
101
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Production<br />
102
+ &#160;&#160;company</th>
103
+ <td><a href="/wiki/Mike_Judge" title="Mike Judge">Judgemental Films</a></td>
104
+ </tr>
105
+ <tr>
106
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Distributed by</th>
107
+ <td><a href="/wiki/20th_Century_Fox" title="20th Century Fox">20th Century Fox</a></td>
108
+ </tr>
109
+ <tr>
110
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Release date(s)</th>
111
+ <td>
112
+ <div class="plainlist" style="margin-left: 0em;">
113
+ <ul>
114
+ <li>September&#160;1,&#160;2006<span style="display:none">&#160;(<span class="bday dtstart published updated">2006-09-01</span>)</span></li>
115
+ </ul>
116
+ </div>
117
+ </td>
118
+ </tr>
119
+ <tr>
120
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Running time</th>
121
+ <td>84 minutes</td>
122
+ </tr>
123
+ <tr>
124
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Country</th>
125
+ <td>United States</td>
126
+ </tr>
127
+ <tr>
128
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Language</th>
129
+ <td>English</td>
130
+ </tr>
131
+ <tr>
132
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Budget</th>
133
+ <td>$2-4 million</td>
134
+ </tr>
135
+ <tr>
136
+ <th scope="row" style="text-align:left;white-space: nowrap;;">Box office</th>
137
+ <td>$495,303 <small>(worldwide)</small><sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span>[</span>1<span>]</span></a></sup></td>
138
+ </tr>
139
+ </table>
140
+ <p><i><b>Idiocracy</b></i> is a 2006 American <a href="/wiki/Satire" title="Satire">satirical</a> <a href="/wiki/Comic_science_fiction" title="Comic science fiction">science fiction comedy</a> film directed by <a href="/wiki/Mike_Judge" title="Mike Judge">Mike Judge</a> and starring <a href="/wiki/Luke_Wilson" title="Luke Wilson">Luke Wilson</a>, <a href="/wiki/Maya_Rudolph" title="Maya Rudolph">Maya Rudolph</a>, <a href="/wiki/Dax_Shepard" title="Dax Shepard">Dax Shepard</a>, and <a href="/wiki/Terry_Crews" title="Terry Crews">Terry Crews</a>. The film tells the story of two people who take part in a top-secret military hibernation experiment, only to awaken 500 years later in a <a href="/wiki/Dystopia" title="Dystopia">dystopian</a> society wherein <a href="/wiki/Advertising" title="Advertising">advertising</a>, <a href="/wiki/Commercialism" title="Commercialism">commercialism</a>, and cultural <a href="/wiki/Anti-intellectualism" title="Anti-intellectualism">anti-intellectualism</a> have run rampant and <a href="/wiki/Dysgenics" title="Dysgenics">dysgenic</a> pressure has resulted in a uniformly unthinking society devoid of <a href="/wiki/Need_for_cognition" title="Need for cognition">intellectual curiosity</a>, <a href="/wiki/Social_responsibility" title="Social responsibility">social responsibility</a>, and coherent notions of justice and <a href="/wiki/Human_rights" title="Human rights">human rights</a>.</p>
141
+ <p>Despite its lack of a <a href="/wiki/Wide_release" title="Wide release">major theatrical release</a>, the film has achieved a <a href="/wiki/Cult_following" title="Cult following">cult following</a>.<sup id="cite_ref-NYTJoke_2-0" class="reference"><a href="#cite_note-NYTJoke-2"><span>[</span>2<span>]</span></a></sup></p>
142
+ <p></p>
143
+ <div id="toc" class="toc">
144
+ <div id="toctitle">
145
+ <h2>Contents</h2>
146
+ </div>
147
+ <ul>
148
+ <li class="toclevel-1 tocsection-1"><a href="#Plot"><span class="tocnumber">1</span> <span class="toctext">Plot</span></a></li>
149
+ <li class="toclevel-1 tocsection-2"><a href="#Cast"><span class="tocnumber">2</span> <span class="toctext">Cast</span></a></li>
150
+ <li class="toclevel-1 tocsection-3"><a href="#Production"><span class="tocnumber">3</span> <span class="toctext">Production</span></a></li>
151
+ <li class="toclevel-1 tocsection-4"><a href="#Release"><span class="tocnumber">4</span> <span class="toctext">Release</span></a>
152
+ <ul>
153
+ <li class="toclevel-2 tocsection-5"><a href="#Box_office_performance"><span class="tocnumber">4.1</span> <span class="toctext">Box office performance</span></a></li>
154
+ <li class="toclevel-2 tocsection-6"><a href="#Critical_reception"><span class="tocnumber">4.2</span> <span class="toctext">Critical reception</span></a></li>
155
+ <li class="toclevel-2 tocsection-7"><a href="#Home_media"><span class="tocnumber">4.3</span> <span class="toctext">Home media</span></a></li>
156
+ </ul>
157
+ </li>
158
+ <li class="toclevel-1 tocsection-8"><a href="#Spin-off"><span class="tocnumber">5</span> <span class="toctext">Spin-off</span></a></li>
159
+ <li class="toclevel-1 tocsection-9"><a href="#Analysis"><span class="tocnumber">6</span> <span class="toctext">Analysis</span></a></li>
160
+ <li class="toclevel-1 tocsection-10"><a href="#See_also"><span class="tocnumber">7</span> <span class="toctext">See also</span></a></li>
161
+ <li class="toclevel-1 tocsection-11"><a href="#References"><span class="tocnumber">8</span> <span class="toctext">References</span></a></li>
162
+ <li class="toclevel-1 tocsection-12"><a href="#External_links"><span class="tocnumber">9</span> <span class="toctext">External links</span></a></li>
163
+ </ul>
164
+ </div>
165
+ <p></p>
166
+ <h2><span class="mw-headline" id="Plot">Plot</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=1" title="Edit section: Plot">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
167
+ <p>A <a href="/wiki/United_States_Army" title="United States Army">U.S. Army</a> librarian, Corporal Joe Bauers (<a href="/wiki/Luke_Wilson" title="Luke Wilson">Luke Wilson</a>), and a prostitute, Rita (<a href="/wiki/Maya_Rudolph" title="Maya Rudolph">Maya Rudolph</a>), are selected for a <a href="/wiki/Suspended_animation" title="Suspended animation">suspended animation</a> experiment on grounds of 'average' appearance, intelligence, behavior, etc. Rita's pimp "Upgrayedd" (<a href="/wiki/Scarface_(rapper)" title="Scarface (rapper)">Brad Jordan</a>), has been bribed to allow her to take part. The experiment is forgotten when the officer in charge (Michael McCafferty) is arrested. Five hundred years later, Joe and Rita's suspension chambers are unearthed by the collapse of a mountain-sized garbage pile, and Joe's suspension chamber smashes through the wall of Frito Pendejo's (<a href="/wiki/Dax_Shepard" title="Dax Shepard">Dax Shepard</a>) apartment, whose occupant expels him.</p>
168
+ <p>Joe, suspecting hallucination, enters a hospital. The former Washington, D.C. has lost most of its infrastructure, with people living in plastic huts called "domistile". The human population has become morbidly stupid, speak only low <a href="/wiki/Register_(sociolinguistics)" title="Register (sociolinguistics)">registers</a> of English competently, and are profoundly <a href="/wiki/Anti-intellectualism" title="Anti-intellectualism">anti-intellectual</a>. Joe is arrested for not having a bar code tattoo to pay for his doctor's appointment, only then realizing the current year and society's state. At Joe's trial, Frito causes Joe to be sent to prison. Rita returns to her former profession.</p>
169
+ <p>Joe is renamed "Not Sure" by a faulty identity tattooing machine, and takes an I.Q. test before escaping. Once free Joe asks Frito whether a time machine exists to return himself to 2005, and Frito agrees to help after Joe promises to open a bank account under Frito's name in Joe's time, which will be worth billions by 2505. On the way to the time machine, Joe and Frito arrive at a gigantic <a href="/wiki/Costco" title="Costco">Costco</a> store, where a tattoo scanner identifies Joe as a fugitive. He is taken to the <a href="/wiki/White_House" title="White House">White House</a>, where he is appointed <a href="/wiki/United_States_Secretary_of_the_Interior" title="United States Secretary of the Interior">Secretary of the Interior</a>, on the grounds that his I.Q. test identified him as the most-intelligent man alive. In a speech, President Camacho (<a href="/wiki/Terry_Crews" title="Terry Crews">Terry Crews</a>) gives Joe the job of fixing the nation's food shortages, <a href="/wiki/Dust_bowl" title="Dust bowl" class="mw-redirect">dust bowls</a>, and crippled economy within a week; whereafter Joe discovers that the nation's crops are irrigated with a <a href="/wiki/Sports_drink" title="Sports drink">sports drink</a> named "Brawndo", whose <a href="/wiki/Eponymous" title="Eponymous" class="mw-redirect">eponymous</a> parent corporation had purchased the <a href="/wiki/Food_and_Drug_Administration" title="Food and Drug Administration">FDA</a> and <a href="/wiki/Federal_Communications_Commission" title="Federal Communications Commission">FCC</a>. When Joe has it replaced with water without visibly improving the crops, Brawndo's stock drops to zero and half the population lost their positions, causing mass riots.</p>
170
+ <p>Joe is sentenced to die in a <a href="/wiki/Monster_truck" title="Monster truck">monster truck</a> <a href="/wiki/Demolition_derby" title="Demolition derby">demolition derby</a> featuring undefeated "Rehabilitation Officer" Beef Supreme (<a href="/wiki/Andrew_Wilson_(actor)" title="Andrew Wilson (actor)">Andrew Wilson</a>), when Rita discovers that Joe's reintroduction of water to the soil has prompted vegetation in the fields. Frito shows the crops on the stadium's display screen, and Camacho gives Joe a full pardon, appointing him Vice President. Joe and Rita find that the time machine Frito spoke of is an inaccurate, history-themed amusement ride. Following Camacho's retirement, Joe is elected President. Joe and Rita marry and conceive the world's three smartest children, while Frito, now Vice President, takes eight wives and fathers 32 of the world's most stupid children. A post-credits scene shows a third suspension chamber releasing Upgrayedd, intent on tracking Rita.</p>
171
+ <h2><span class="mw-headline" id="Cast">Cast</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=2" title="Edit section: Cast">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
172
+ <table class="multicol" role="presentation">
173
+ <tr>
174
+ <td align="left" valign="top">
175
+ <ul>
176
+ <li><a href="/wiki/Luke_Wilson" title="Luke Wilson">Luke Wilson</a> as Cpl. Joe Bauers, a.k.a. "Not Sure"</li>
177
+ <li><a href="/wiki/Maya_Rudolph" title="Maya Rudolph">Maya Rudolph</a> as Rita</li>
178
+ <li><a href="/wiki/Dax_Shepard" title="Dax Shepard">Dax Shepard</a> as Frito Pendejo</li>
179
+ <li><a href="/wiki/Terry_Crews" title="Terry Crews">Terry Alan Crews</a> as U.S. President Dwayne Elizondo Mountain Dew Herbert Camacho &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</li>
180
+ <li>Anthony Campos as <a href="/wiki/Secretary_of_Defense" title="Secretary of Defense" class="mw-redirect">Secretary of Defense</a></li>
181
+ <li><a href="/wiki/David_Herman" title="David Herman">David Herman</a> as <a href="/wiki/Secretary_of_State" title="Secretary of State">Secretary of State</a></li>
182
+ <li>Kevin McAfee as Bailiff</li>
183
+ <li>Robert Musgrave as Sgt. Keller</li>
184
+ <li>Michael McCafferty as Lt. Col. Collins</li>
185
+ <li><a href="/wiki/Justin_Long" title="Justin Long">Justin Long</a> as Dr. Lexus</li>
186
+ </ul>
187
+ </td>
188
+ <td align="left" valign="top">
189
+ <ul>
190
+ <li><a href="/wiki/Andrew_Wilson_(actor)" title="Andrew Wilson (actor)">Andrew Wilson</a> as Beef Supreme</li>
191
+ <li>Kevin Klee as Hormel Chavez</li>
192
+ <li><a href="/wiki/Scarface_(rapper)" title="Scarface (rapper)">Brad "Scarface" Jordan</a> as Upgrayedd (pronounced "Upgrade")</li>
193
+ <li><a href="/wiki/Thomas_Haden_Church" title="Thomas Haden Church">Thomas Haden Church</a> as Brawndo <a href="/wiki/Chief_Executive_Officer" title="Chief Executive Officer" class="mw-redirect">CEO</a></li>
194
+ <li><a href="/wiki/Stephen_Root" title="Stephen Root">Stephen Root</a> as Judge Hank "The Hangman" BMW</li>
195
+ <li>Brendan Hill as <a href="/wiki/Secretary_of_Energy" title="Secretary of Energy" class="mw-redirect">Secretary of Energy</a></li>
196
+ <li><a href="/wiki/Tom_Kenny" title="Tom Kenny">Tom Kenny</a> as voice of the IPPA Computer</li>
197
+ <li><a href="/wiki/Sara_Rue" title="Sara Rue">Sara Rue</a> as the <a href="/wiki/United_States_Attorney_General" title="United States Attorney General">Attorney General</a> <i>(uncredited)</i></li>
198
+ <li><a href="/wiki/Randal_Reeder" title="Randal Reeder">Randal Reeder</a> as Secret Service Thug</li>
199
+ </ul>
200
+ </td>
201
+ </tr>
202
+ </table>
203
+ <h2><span class="mw-headline" id="Production">Production</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=3" title="Edit section: Production">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
204
+ <p>Early working titles included <i>The United States of Uhh-merica</i><sup id="cite_ref-npr_3-0" class="reference"><a href="#cite_note-npr-3"><span>[</span>3<span>]</span></a></sup> and <i>3001</i>. <a href="/wiki/Principal_photography" title="Principal photography">Filming</a> took place in 2004 on several stages at <a href="/wiki/Austin_Studios" title="Austin Studios">Austin Studios</a><sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>4<span>]</span></a></sup><sup id="cite_ref-AS-Garcia_5-0" class="reference"><a href="#cite_note-AS-Garcia-5"><span>[</span>5<span>]</span></a></sup> and in the cities of Austin, San Marcos, Pflugerville, and Round Rock, Texas.<sup id="cite_ref-TXFilm_6-0" class="reference"><a href="#cite_note-TXFilm-6"><span>[</span>6<span>]</span></a></sup></p>
205
+ <p>Test screenings around March 2005 produced unofficial reports of poor audience reactions. After some re-shooting in the summer of 2005, a UK test screening in August produced a report of a positive impression.<sup id="cite_ref-AICN_7-0" class="reference"><a href="#cite_note-AICN-7"><span>[</span>7<span>]</span></a></sup></p>
206
+ <h2><span class="mw-headline" id="Release">Release</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=4" title="Edit section: Release">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
207
+ <p><i>Idiocracy</i><span style="padding-left:0.1em;">'</span>s original release date was August 5, 2005, according to Mike Judge.<sup id="cite_ref-Dark_8-0" class="reference"><a href="#cite_note-Dark-8"><span>[</span>8<span>]</span></a></sup> In April 2006, a release date was set for September 1, 2006. In August, numerous articles<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span>[</span>9<span>]</span></a></sup> revealed that release was to be put on hold indefinitely. <i>Idiocracy</i> was released as scheduled but only in seven cities (Los Angeles, Atlanta, Toronto, Chicago, Dallas, Houston, and Mike Judge's hometown, Austin, Texas),<sup id="cite_ref-AS-Garcia_5-1" class="reference"><a href="#cite_note-AS-Garcia-5"><span>[</span>5<span>]</span></a></sup> and expanded to only 130 theaters,<sup id="cite_ref-AP_10-0" class="reference"><a href="#cite_note-AP-10"><span>[</span>10<span>]</span></a></sup> not the usual <a href="/wiki/Wide_release" title="Wide release">wide release</a> of 600 or more theaters.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span>[</span>11<span>]</span></a></sup> According to the <i><a href="/wiki/Austin_American-Statesman" title="Austin American-Statesman">Austin American-Statesman</a></i>, <a href="/wiki/20th_Century_Fox" title="20th Century Fox">20th Century Fox</a>, the film's distributor, did nothing to promote the movie;<sup id="cite_ref-AS-Garcia_5-2" class="reference"><a href="#cite_note-AS-Garcia-5"><span>[</span>5<span>]</span></a></sup> while posters were released to theatres, "no movie trailers, no ads, and only two stills,"<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span>[</span>12<span>]</span></a></sup> and no press kits were released.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span>[</span>13<span>]</span></a></sup></p>
208
+ <p>The film was not screened for critics.<sup id="cite_ref-Rabin_14-0" class="reference"><a href="#cite_note-Rabin-14"><span>[</span>14<span>]</span></a></sup> Lack of concrete information from Fox led to speculation that the distributor may have actively tried to keep the film from being seen by a large audience, while fulfilling a contractual obligation for theatrical release ahead of a DVD release, according to Ryan Pearson of the <a href="/wiki/Associated_Press" title="Associated Press">AP</a>.<sup id="cite_ref-AP_10-1" class="reference"><a href="#cite_note-AP-10"><span>[</span>10<span>]</span></a></sup> That speculation was followed by open criticism of the studio's lack of support from <a href="/wiki/Ain%27t_It_Cool_News" title="Ain't It Cool News">Ain't It Cool News</a>, <i><a href="/wiki/Time_(magazine)" title="Time (magazine)">Time</a></i>, and <i><a href="/wiki/Esquire_(magazine)" title="Esquire (magazine)">Esquire</a></i>.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span>[</span>15<span>]</span></a></sup><sup id="cite_ref-Stein_16-0" class="reference"><a href="#cite_note-Stein-16"><span>[</span>16<span>]</span></a></sup><sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span>[</span>17<span>]</span></a></sup> <i>Time</i><span style="padding-left:0.1em;">'</span>s Joel Stein wrote "the film's ads and trailers tested atrociously", but, "still, abandoning <i>Idiocracy</i> seems particularly unjust, since Judge has made a lot of money for Fox."<sup id="cite_ref-Stein_16-1" class="reference"><a href="#cite_note-Stein-16"><span>[</span>16<span>]</span></a></sup></p>
209
+ <p>In <i><a href="/wiki/The_New_York_Times" title="The New York Times">The New York Times</a></i>, Dan Mitchell argued that Fox might be shying away from the cautionary tale about low-intelligence <a href="/wiki/Dysgenic" title="Dysgenic" class="mw-redirect">dysgenics</a>, because the company did not want to offend either its viewers or potential advertisers portrayed negatively in the film<sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span>[</span>18<span>]</span></a></sup> noting that in the film, <a href="/wiki/Starbucks" title="Starbucks">Starbucks</a> delivers handjobs, and the motto of <a href="/wiki/Carl%27s_Jr." title="Carl's Jr.">Carl's Jr.</a> has degenerated from "Don't Bother Me. I'm Eating." to "Fuck You! I'm Eating!"<sup id="cite_ref-MBAcasestudysolutions.com_19-0" class="reference"><a href="#cite_note-MBAcasestudysolutions.com-19"><span>[</span>19<span>]</span></a></sup></p>
210
+ <h3><span class="mw-headline" id="Box_office_performance">Box office performance</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=5" title="Edit section: Box office performance">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
211
+ <p><span id="Box_office"></span></p>
212
+ <table class="wikitable" style="width:100%;">
213
+ <tr>
214
+ <th rowspan="2">Film</th>
215
+ <th colspan="1">Release date</th>
216
+ <th colspan="3">Box office revenue</th>
217
+ <th colspan="2">Box office ranking</th>
218
+ <th rowspan="2" style="text-align:center;">Budget</th>
219
+ <th rowspan="2" style="text-align:center;">Reference</th>
220
+ </tr>
221
+ <tr>
222
+ <th>United States</th>
223
+ <th>United States</th>
224
+ <th>International</th>
225
+ <th>Worldwide</th>
226
+ <th>All time United States</th>
227
+ <th>All time worldwide</th>
228
+ </tr>
229
+ <tr>
230
+ <td><i>Idiocracy</i></td>
231
+ <td style="text-align:center;">September 2006</td>
232
+ <td style="text-align:center;">$444,093</td>
233
+ <td style="text-align:center;">$51,210</td>
234
+ <td style="text-align:center;">$495,303</td>
235
+ <td style="text-align:center;">#6,914</td>
236
+ <td style="text-align:center;">Unknown</td>
237
+ <td style="text-align:center;">Unknown</td>
238
+ <td style="text-align:center;"><sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span>[</span>20<span>]</span></a></sup></td>
239
+ </tr>
240
+ </table>
241
+ <p>Box office receipts totaled $444,093 in 135 theaters in the U.S.<sup id="cite_ref-mojo2_21-0" class="reference"><a href="#cite_note-mojo2-21"><span>[</span>21<span>]</span></a></sup></p>
242
+ <h3><span class="mw-headline" id="Critical_reception">Critical reception</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=6" title="Edit section: Critical reception">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
243
+ <p><i>Idiocracy</i> was not screened for critics, but the film received generally favorable reviews. Praise focused on concept, casting, and humor; the bulk of the criticism was directed at the film's release issues or at special effects and plot problems. <i><a href="/wiki/Los_Angeles_Times" title="Los Angeles Times">Los Angeles Times</a></i> reviewer Carina Chocano described it as "spot on" satire and a "pitch-black, bleakly hilarious vision of an American future", although the "plot, naturally, is silly and not exactly bound by logic. But it's Judge's gimlet-eyed knack for nightmarish extrapolation that makes <i>Idiocracy</i> a cathartic delight."<sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span>[</span>22<span>]</span></a></sup> In a review only 87 words long<sup id="cite_ref-AP_10-2" class="reference"><a href="#cite_note-AP-10"><span>[</span>10<span>]</span></a></sup> in <i><a href="/wiki/Entertainment_Weekly" title="Entertainment Weekly">Entertainment Weekly</a></i>, Joshua Rich gave the film an "EW Grade" of "D" stating that "Mike Judge implores us to reflect on a future in which <a href="/wiki/Britney_Spears" title="Britney Spears">Britney</a> and <a href="/wiki/Kevin_Federline" title="Kevin Federline">K-Fed</a> are like the new <a href="/wiki/Adam_and_Eve" title="Adam and Eve">Adam and Eve</a>."<sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span>[</span>23<span>]</span></a></sup> The <i><a href="/wiki/AV_Club" title="AV Club" class="mw-redirect">AV Club</a></i><span style="padding-left:0.1em;">'</span>s Nathan Rabin found Luke Wilson "perfectly cast [...] as a quintessential everyman"; and wrote of the film: "Like so much superior science fiction, <i>Idiocracy</i> uses a fantastical future to comment on a present. [...] There's a good chance that Judge's smartly lowbrow <i>Idiocracy</i> will be mistaken for what it's satirizing."<sup id="cite_ref-Rabin_14-1" class="reference"><a href="#cite_note-Rabin-14"><span>[</span>14<span>]</span></a></sup></p>
244
+ <p>In other countries the film was reviewed positively. John Patterson, critic for <i><a href="/wiki/The_Guardian" title="The Guardian">The Guardian</a></i> (U.K.), wrote, "<i>Idiocracy</i> isn't a masterpiece—Fox seems to have stiffed Judge on money at every stage—but it's endlessly funny", and of the film's popularity, described seeing the film "in a half-empty house. Two days later, same place, same show—packed-out."<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span>[</span>24<span>]</span></a></sup> Brazilian news magazine <i>Veja</i> called the film "<a href="/wiki/Politically_incorrect" title="Politically incorrect" class="mw-redirect">politically incorrect</a>", recommended that readers see the DVD, and wrote "the film went flying through [American] theaters and did not open in Brazil. Proof that the future contemplated by Judge is not that far away."<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span>[</span>25<span>]</span></a></sup></p>
245
+ <p>Critic Alexandre Koball of CinePlayers.com (Brazil), while giving the movie a score of 5/5 along with another staff reviewer, wrote, "<i>Idiocracy</i> is not exactly [...] funny nor [...] innovative but it's a movie to make you think, even if for five minutes. And for that it manages to stay one level above the terrible average of comedy movies released in the last years in the United States."<sup id="cite_ref-mojo_26-0" class="reference"><a href="#cite_note-mojo-26"><span>[</span>26<span>]</span></a></sup></p>
246
+ <p><a href="/wiki/Rotten_Tomatoes" title="Rotten Tomatoes">Rotten Tomatoes</a> returned a 73% "fresh" rating based on 41 reviews by critics,<sup id="cite_ref-27" class="reference"><a href="#cite_note-27"><span>[</span>27<span>]</span></a></sup> and <a href="/wiki/Metacritic" title="Metacritic">Metacritic</a> gave a score of 64% based on 8 critics.<sup id="cite_ref-28" class="reference"><a href="#cite_note-28"><span>[</span>28<span>]</span></a></sup></p>
247
+ <h3><span class="mw-headline" id="Home_media">Home media</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=7" title="Edit section: Home media">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
248
+ <p><i>Idiocracy</i> was released on DVD on January 9, 2007 with cropped and widescreen aspect ratios, <a href="/wiki/Deleted_scene" title="Deleted scene">deleted scenes</a>, English and Spanish spoken language tracks, and subtitles in English, Spanish, and French. As of February 2007, it had earned $9 million on DVD rentals, over 20 times its gross domestic box office revenue of under $450,000.<sup id="cite_ref-29" class="reference"><a href="#cite_note-29"><span>[</span>29<span>]</span></a></sup></p>
249
+ <p>In the United Kingdom, uncut versions of the film have been shown on satellite channel Sky Comedy on February 26, 2009 with the <a href="/wiki/Freeview_(UK)" title="Freeview (UK)">Freeview</a> premiere shown on <a href="/wiki/Film4" title="Film4">Film4</a> on April 26, 2009.</p>
250
+ <h2><span class="mw-headline" id="Spin-off">Spin-off</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=8" title="Edit section: Spin-off">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
251
+ <p>In August 2012, Crews said he was in talks with director Judge and Fox over a possible <i>Idiocracy</i> <a href="/wiki/Spin-off_(media)" title="Spin-off (media)">spin-off</a> featuring his President Camacho character, initially conceived as a <a href="/wiki/Web_series" title="Web series">web series</a>.<sup id="cite_ref-30" class="reference"><a href="#cite_note-30"><span>[</span>30<span>]</span></a></sup> A week before the <a href="/wiki/2012_United_States_presidential_election" title="2012 United States presidential election" class="mw-redirect">2012 elections</a> he reprised the character in a series of shorts for website <a href="/wiki/Funny_or_Die" title="Funny or Die">Funny or Die</a>.</p>
252
+ <h2><span class="mw-headline" id="Analysis">Analysis</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=9" title="Edit section: Analysis">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
253
+ <p>The idea of a <a href="/wiki/Dystopia" title="Dystopia">dystopian</a> society based on <a href="/wiki/Dysgenics" title="Dysgenics">dysgenics</a> is not new. <a href="/wiki/H._G._Wells" title="H. G. Wells">H. G. Wells</a>' <i><a href="/wiki/The_Time_Machine" title="The Time Machine">The Time Machine</a></i> postulates a devolved society of humans, as does the short story "<a href="/wiki/The_Marching_Morons" title="The Marching Morons">The Marching Morons</a>" by <a href="/wiki/Cyril_M._Kornbluth" title="Cyril M. Kornbluth">Cyril M. Kornbluth</a>, akin to the "Epsilon-minus Semi-Morons" of <a href="/wiki/Aldous_Huxley" title="Aldous Huxley">Aldous Huxley</a>'s <i><a href="/wiki/Brave_New_World" title="Brave New World">Brave New World</a></i>.<sup id="cite_ref-31" class="reference"><a href="#cite_note-31"><span>[</span>31<span>]</span></a></sup><sup id="cite_ref-32" class="reference"><a href="#cite_note-32"><span>[</span>32<span>]</span></a></sup></p>
254
+ <h2><span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=10" title="Edit section: See also">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
255
+ <ul>
256
+ <li><a href="/wiki/Demographic-economic_paradox" title="Demographic-economic paradox">Demographic-economic paradox</a> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</li>
257
+ <li><a href="/wiki/Fertility_and_intelligence" title="Fertility and intelligence">Fertility and intelligence</a></li>
258
+ <li><a href="/wiki/Flynn_effect" title="Flynn effect">Flynn effect</a></li>
259
+ <li><i><a href="/wiki/Infinite_Jest" title="Infinite Jest">Infinite Jest</a></i></li>
260
+ <li><i><a href="/wiki/Sexmission" title="Sexmission">Sexmission</a></i></li>
261
+ <li><a href="/wiki/William_Shockley" title="William Shockley">William Shockley</a></li>
262
+ <li><i><a href="/wiki/Sleeper_(1973_film)" title="Sleeper (1973 film)">Sleeper</a></i></li>
263
+ <li>"<a href="/wiki/The_Marching_Morons" title="The Marching Morons">The Marching Morons</a>"</li>
264
+ </ul>
265
+ <h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=11" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
266
+ <div class="reflist columns references-column-width" style="-moz-column-width: 30em; -webkit-column-width: 30em; column-width: 30em; list-style-type: decimal;">
267
+ <ol class="references">
268
+ <li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://boxofficemojo.com/movies/?page=main&amp;id=idiocracy.htm">Box Office Summary (BoxOfficeMojo)</a></span></li>
269
+ <li id="cite_note-NYTJoke-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-NYTJoke_2-0">^</a></b></span> <span class="reference-text"><span class="citation news">Walker, Rob (2008-05-04). <a rel="nofollow" class="external text" href="http://www.nytimes.com/2008/05/04/magazine/04wwln-consumed-t.html">"This Joke’s for You"</a>. <i>The New York Times</i><span class="reference-accessdate">. Retrieved 2009-05-26</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=This+Joke%E2%80%99s+for+You&amp;rft.aufirst=Rob&amp;rft.aulast=Walker&amp;rft.au=Walker%2C+Rob&amp;rft.date=2008-05-04&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.nytimes.com%2F2008%2F05%2F04%2Fmagazine%2F04wwln-consumed-t.html&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>
270
+ <li id="cite_note-npr-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-npr_3-0">^</a></b></span> <span class="reference-text"><span class="citation web">Pierce, Thomas (January 11, 2007). <a rel="nofollow" class="external text" href="http://www.npr.org/templates/story/story.php?storyId=6783693">"So What Idiot Kept This Movie Out of Theaters? (3rd item)"</a>. <a href="/wiki/NPR" title="NPR">NPR</a><span class="reference-accessdate">. Retrieved 2007-02-09</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.aufirst=Thomas&amp;rft.aulast=Pierce&amp;rft.au=Pierce%2C+Thomas&amp;rft.btitle=So+What+Idiot+Kept+This+Movie+Out+of+Theaters%3F+%283rd+item%29&amp;rft.date=January+11%2C+2007&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D6783693&amp;rft.pub=NPR&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
271
+ <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://web.archive.org/web/20071008210602/http://www.austinfilm.org/idiocracy">"<i>Idiocracy</i> at Austin Studios. Facilities usage."</a>. Austin Studios<i>;</i>. Austin Film Society. Archived from <a rel="nofollow" class="external text" href="http://www.austinfilm.org/idiocracy">the original</a> on 2007-10-08<span class="reference-accessdate">. Retrieved 2010-06-18</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=%27%27Idiocracy%27%27+at+Austin+Studios.+Facilities+usage.&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.austinfilm.org%2Fidiocracy&amp;rft.jtitle=%27%27Austin+Studios%27%27%3B&amp;rft.pub=Austin+Film+Society&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
272
+ <li id="cite_note-AS-Garcia-5"><span class="mw-cite-backlink">^ <a href="#cite_ref-AS-Garcia_5-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-AS-Garcia_5-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-AS-Garcia_5-2"><sup><i><b>c</b></i></sup></a></span> <span class="reference-text"><span class="citation news">Garcia, Chris (August 30, 2006). <a rel="nofollow" class="external text" href="http://www.statesman.com/search/content/shared/movies/stories/2006/09/idiocracy.html">"Was 'Idiocracy' treated idiotically?"</a>. Austin American-Statesman<span class="reference-accessdate">. Retrieved 2007-02-09</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.aufirst=Chris&amp;rft.au=Garcia%2C+Chris&amp;rft.aulast=Garcia&amp;rft.btitle=Was+%27Idiocracy%27+treated+idiotically%3F&amp;rft.date=August+30%2C+2006&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.statesman.com%2Fsearch%2Fcontent%2Fshared%2Fmovies%2Fstories%2F2006%2F09%2Fidiocracy.html&amp;rft.pub=Austin+American-Statesman&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
273
+ <li id="cite_note-TXFilm-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-TXFilm_6-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://web.archive.org/web/20080822033056/http://www.governor.state.tx.us/divisions/film/general/00film.htm">"Texas Film Commission Filmography (2000-2007)"</a>. <i>Office of the Governor</i>. Archived from <a rel="nofollow" class="external text" href="http://www.governor.state.tx.us/divisions/film/general/00film.htm">the original</a> on 2008-08-22<span class="reference-accessdate">. Retrieved 2010-06-20</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Texas+Film+Commission+Filmography+%282000-2007%29&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.governor.state.tx.us%2Fdivisions%2Ffilm%2Fgeneral%2F00film.htm&amp;rft.jtitle=Office+of+the+Governor&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
274
+ <li id="cite_note-AICN-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-AICN_7-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.aintitcool.com/node/21057">"Mike Judge's <i>Idiocracy</i> Tests! (etc.)"</a>. <i>Eric Vespe quoting anonymous contributor</i>. AintItCoolNews.com. August 22, 2005<span class="reference-accessdate">. Retrieved 2007-02-09</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Mike+Judge%27s+%27%27Idiocracy%27%27+Tests%21+%28etc.%29&amp;rft.date=August+22%2C+2005&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.aintitcool.com%2Fnode%2F21057&amp;rft.jtitle=Eric+Vespe+quoting+anonymous+contributor&amp;rft.pub=AintItCoolNews.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
275
+ <li id="cite_note-Dark-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-Dark_8-0">^</a></b></span> <span class="reference-text"><span class="citation web">Franklin, Garth (February 28, 2005). <a rel="nofollow" class="external text" href="http://web.archive.org/web/20080205220006/http://www.darkhorizons.com/news05/050228g.php">"Mike Judge Still Not In "3001<span style="padding-right:0.2em;">"</span>"</a>. <i>Dark Horizons</i>. Archived from <a rel="nofollow" class="external text" href="http://www.darkhorizons.com/news05/050228g.php">the original</a> on 2008-02-05<span class="reference-accessdate">. Retrieved 2010-08-21</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Mike+Judge+Still+Not+In+%223001%22&amp;rft.aufirst=Garth&amp;rft.au=Franklin%2C+Garth&amp;rft.aulast=Franklin&amp;rft.date=February+28%2C+2005&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.darkhorizons.com%2Fnews05%2F050228g.php&amp;rft.jtitle=Dark+Horizons&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
276
+ <li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><span class="citation web">Carroll, Larry (August 30, 2006). <a rel="nofollow" class="external text" href="http://www.mtv.com/movies/news/articles/1538260/story.jhtml">"MTV Movie File"</a>. <i>MTV</i>. Viacom<span class="reference-accessdate">. Retrieved 2007-02-09</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=MTV+Movie+File&amp;rft.au=Carroll%2C+Larry&amp;rft.aufirst=Larry&amp;rft.aulast=Carroll&amp;rft.date=August+30%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.mtv.com%2Fmovies%2Fnews%2Farticles%2F1538260%2Fstory.jhtml&amp;rft.jtitle=MTV&amp;rft.pub=Viacom&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
277
+ <li id="cite_note-AP-10"><span class="mw-cite-backlink">^ <a href="#cite_ref-AP_10-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-AP_10-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-AP_10-2"><sup><i><b>c</b></i></sup></a></span> <span class="reference-text"><span class="citation news">Pearson, Ryan (September 8, 2006). <a rel="nofollow" class="external text" href="http://asap.ap.org/stories/859107.s">"The mystery of 'Idiocracy<span style="padding-right:0.2em;">'</span>"</a>. AP<span class="reference-accessdate">. Retrieved 2006-11-25</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.aufirst=Ryan&amp;rft.aulast=Pearson&amp;rft.au=Pearson%2C+Ryan&amp;rft.btitle=The+mystery+of+%27Idiocracy%27&amp;rft.date=September+8%2C+2006&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fasap.ap.org%2Fstories%2F859107.s&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
278
+ <li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.boxofficemojo.com/about/boxoffice.htm">About Movie Box Office Tracking and Terms</a>. Box Office Mojo. Retrieved 2010-08-28.</span></li>
279
+ <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 web">Kernion, Jette (October 22, 2006). <a rel="nofollow" class="external text" href="http://www.cinematical.com/2006/10/22/indieseen-time-for-mike-judge-to-go-indie">"Time for Mike Judge to go Indie"</a>. <i>Cinematical</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Time+for+Mike+Judge+to+go+Indie&amp;rft.aufirst=Jette&amp;rft.au=Kernion%2C+Jette&amp;rft.aulast=Kernion&amp;rft.date=October+22%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.cinematical.com%2F2006%2F10%2F22%2Findieseen-time-for-mike-judge-to-go-indie&amp;rft.jtitle=Cinematical&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
280
+ <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 web">Patel, Nihar (September 8, 2006). <a rel="nofollow" class="external text" href="http://www.npr.org/templates/story/story.php?storyId=5788260">"A Paucity of Publicity for 'Idiocracy<span style="padding-right:0.2em;">'</span>"</a>. <i>Day to Day</i>. NPR.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=A+Paucity+of+Publicity+for+%27Idiocracy%27&amp;rft.aufirst=Nihar&amp;rft.aulast=Patel&amp;rft.au=Patel%2C+Nihar&amp;rft.date=September+8%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.npr.org%2Ftemplates%2Fstory%2Fstory.php%3FstoryId%3D5788260&amp;rft.jtitle=Day+to+Day&amp;rft.pub=NPR&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span> Transcript.</span></li>
281
+ <li id="cite_note-Rabin-14"><span class="mw-cite-backlink">^ <a href="#cite_ref-Rabin_14-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-Rabin_14-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation web">Rabin, Nathan (September 6, 2006). <a rel="nofollow" class="external text" href="http://www.avclub.com/articles/idiocracy,3812/">"<i>Idiocracy</i> (review)"</a>. <i>The A.V. Club</i>. The Onion<span class="reference-accessdate">. Retrieved 2007-02-08</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=%27%27Idiocracy%27%27+%28review%29&amp;rft.aufirst=Nathan&amp;rft.aulast=Rabin&amp;rft.au=Rabin%2C+Nathan&amp;rft.date=September+6%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.avclub.com%2Farticles%2Fidiocracy%2C3812%2F&amp;rft.jtitle=The+A.V.+Club&amp;rft.pub=The+Onion&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
282
+ <li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><span class="citation web">Vespe, Eric (September 2, 2006). <a rel="nofollow" class="external text" href="http://www.aintitcool.com/node/24374">"Open Letter to Fox re: IDIOCRACY!!!"</a>. Ain't It Cool News.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.aufirst=Eric&amp;rft.aulast=Vespe&amp;rft.au=Vespe%2C+Eric&amp;rft.btitle=Open+Letter+to+Fox+re%3A+IDIOCRACY%21%21%21&amp;rft.date=September+2%2C+2006&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.aintitcool.com%2Fnode%2F24374&amp;rft.pub=Ain%27t+It+Cool+News&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
283
+ <li id="cite_note-Stein-16"><span class="mw-cite-backlink">^ <a href="#cite_ref-Stein_16-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-Stein_16-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation news">Stein, Joel (September 10, 2006). <a rel="nofollow" class="external text" href="http://www.time.com/time/magazine/article/0,9171,1533437,00.html">"Dude, Where's My Film?"</a>. <i>Time Magazine</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Dude%2C+Where%27s+My+Film%3F&amp;rft.aufirst=Joel&amp;rft.aulast=Stein&amp;rft.au=Stein%2C+Joel&amp;rft.date=September+10%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.time.com%2Ftime%2Fmagazine%2Farticle%2F0%2C9171%2C1533437%2C00.html&amp;rft.jtitle=Time+Magazine&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
284
+ <li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><span class="citation journal">Raftery, Brian (June 1, 2006). <a rel="nofollow" class="external text" href="http://www.esquire.com/features/ESQ0606MJUDGE_84">"Mike Judge Is Getting Screwed (Again)"</a>. <i>Esquire</i>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Mike+Judge+Is+Getting+Screwed+%28Again%29&amp;rft.aufirst=Brian&amp;rft.aulast=Raftery&amp;rft.au=Raftery%2C+Brian&amp;rft.date=June+1%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.esquire.com%2Ffeatures%2FESQ0606MJUDGE_84&amp;rft.jtitle=Esquire&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
285
+ <li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><span class="citation news">Mitchell, Dan (September 9, 2006). <a rel="nofollow" class="external text" href="http://www.nytimes.com/2006/09/09/business/09online.html">"Shying away from Degeneracy"</a>. <i>New York Times</i><span class="reference-accessdate">. Retrieved 2006-11-25</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Shying+away+from+Degeneracy&amp;rft.aufirst=Dan&amp;rft.aulast=Mitchell&amp;rft.au=Mitchell%2C+Dan&amp;rft.date=September+9%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.nytimes.com%2F2006%2F09%2F09%2Fbusiness%2F09online.html&amp;rft.jtitle=New+York+Times&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
286
+ <li id="cite_note-MBAcasestudysolutions.com-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-MBAcasestudysolutions.com_19-0">^</a></b></span> <span class="reference-text"><span class="citation web">Adawi, Kamal (August 8, 2008). <a rel="nofollow" class="external text" href="http://www.mbacasestudysolutions.com/Blog/Idiocracy_Film_Large_Corporation_Theme_8-8-2008.html">"Idiocracy is Pure Genius"</a>. MBAcasestudysolutions.com<span class="reference-accessdate">. Retrieved 2008-08-10</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.au=Adawi%2C+Kamal&amp;rft.aufirst=Kamal&amp;rft.aulast=Adawi&amp;rft.btitle=Idiocracy+is+Pure+Genius&amp;rft.date=August+8%2C+2008&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.mbacasestudysolutions.com%2FBlog%2FIdiocracy_Film_Large_Corporation_Theme_8-8-2008.html&amp;rft.pub=MBAcasestudysolutions.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
287
+ <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://boxofficemojo.com/movies/?id=idiocracy.htm">"Idiocracy (2006)"</a>. <i><a href="/wiki/Box_Office_Mojo" title="Box Office Mojo">Box Office Mojo</a></i><span class="reference-accessdate">. Retrieved 2011-08-19</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Idiocracy+%282006%29&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fboxofficemojo.com%2Fmovies%2F%3Fid%3Didiocracy.htm&amp;rft.jtitle=Box+Office+Mojo&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
288
+ <li id="cite_note-mojo2-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-mojo2_21-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.boxofficemojo.com/movies/?id=idiocracy.htm">"Idiocracy"</a>. <i>Box Office Mojo</i>. Amazon.com<span class="reference-accessdate">. Retrieved 2007-02-02</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Idiocracy&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.boxofficemojo.com%2Fmovies%2F%3Fid%3Didiocracy.htm&amp;rft.jtitle=Box+Office+Mojo&amp;rft.pub=Amazon.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
289
+ <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text"><span class="citation web">Chocano, Carina (September 4, 2006). <a rel="nofollow" class="external text" href="http://www.calendarlive.com/movies/reviews/cl-et-idiocracy4sep04,0,3328767.story">"Movie review&#160;: 'Idiocracy<span style="padding-right:0.2em;">'</span>"</a>. <i>Los Angeles Times</i>. calendarlive.com<span class="reference-accessdate">. Retrieved 2010-09-29</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Movie+review+%3A+%27Idiocracy%27&amp;rft.au=Chocano%2C+Carina&amp;rft.aufirst=Carina&amp;rft.aulast=Chocano&amp;rft.date=September+4%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.calendarlive.com%2Fmovies%2Freviews%2Fcl-et-idiocracy4sep04%2C0%2C3328767.story&amp;rft.jtitle=Los+Angeles+Times&amp;rft.pub=calendarlive.com&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 style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title="&#160;since October 2010">dead link</span></a></i>]</span></sup></span></li>
290
+ <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 news">Rich, Joshua (August 30, 2006). <a rel="nofollow" class="external text" href="http://www.ew.com/ew/article/0,,1528246,00.html">"Idiocracy (2006)"</a>. <i>ew.com</i><span class="reference-accessdate">. Retrieved 2010-09-29</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Idiocracy+%282006%29&amp;rft.aufirst=Joshua&amp;rft.aulast=Rich&amp;rft.au=Rich%2C+Joshua&amp;rft.date=August+30%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.ew.com%2Few%2Farticle%2F0%2C%2C1528246%2C00.html&amp;rft.jtitle=ew.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
291
+ <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 news">Patterson, John (September 8, 2006). <a rel="nofollow" class="external text" href="http://www.guardian.co.uk/film/2006/sep/08/johnpatterson">"On film&#160;: Stupid Fox"</a>. <i>The Guardian</i> (UK)<span class="reference-accessdate">. Retrieved 2010-09-28</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=On+film+%3A+Stupid+Fox&amp;rft.aufirst=John&amp;rft.aulast=Patterson&amp;rft.au=Patterson%2C+John&amp;rft.date=September+8%2C+2006&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.guardian.co.uk%2Ffilm%2F2006%2Fsep%2F08%2Fjohnpatterson&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>
292
+ <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://veja.abril.com.br/210307/veja_recomenda.shtml">"Idiocracy"</a>. <i>veja.com</i> (in Portuguese). Brazil: VEJA. March 21, 2007<span class="reference-accessdate">. Retrieved 2010-09-16</span>. "...o filme passou voando pelos cinemas americanos e nem estreou nos brasileiros. Prova de que o futuro vislumbrado por Judge não está assim tão distante."</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Idiocracy&amp;rft.date=March+21%2C+2007&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fveja.abril.com.br%2F210307%2Fveja_recomenda.shtml&amp;rft.jtitle=veja.com&amp;rft.place=Brazil&amp;rft.pub=VEJA&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
293
+ <li id="cite_note-mojo-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-mojo_26-0">^</a></b></span> <span class="reference-text"><span class="citation web">Koball, Alexandre (April 12, 2007). <a rel="nofollow" class="external text" href="http://www.cineplayers.com/critica.php?id=1179">"Idiocracy (2006)"</a>. <i>CinePlayers.com</i> (in Portuguese). Brazil<span class="reference-accessdate">. Retrieved 2010-09-16</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Idiocracy+%282006%29&amp;rft.aufirst=Alexandre&amp;rft.au=Koball%2C+Alexandre&amp;rft.aulast=Koball&amp;rft.date=April+12%2C+2007&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.cineplayers.com%2Fcritica.php%3Fid%3D1179&amp;rft.jtitle=CinePlayers.com&amp;rft.place=Brazil&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
294
+ <li id="cite_note-27"><span class="mw-cite-backlink"><b><a href="#cite_ref-27">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.rottentomatoes.com/m/idiocracy/">"<i>Idiocracy</i>"</a>. <a href="/wiki/Rotten_Tomatoes" title="Rotten Tomatoes">Rotten Tomatoes</a><span class="reference-accessdate">. Retrieved 2009-09-08</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.btitle=%27%27Idiocracy%27%27&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Fidiocracy%2F&amp;rft.pub=Rotten+Tomatoes&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
295
+ <li id="cite_note-28"><span class="mw-cite-backlink"><b><a href="#cite_ref-28">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://www.metacritic.com/film/titles/idiocracy">"Idiocracy"</a>. Metacritic<span class="reference-accessdate">. Retrieved 2009-09-08</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.btitle=Idiocracy&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.metacritic.com%2Ffilm%2Ftitles%2Fidiocracy&amp;rft.pub=Metacritic&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
296
+ <li id="cite_note-29"><span class="mw-cite-backlink"><b><a href="#cite_ref-29">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://boxofficemojo.com/movies/?page=homevideo&amp;id=idiocracy.htm">DVD/ Home Video summary (BoxOfficeMojo)</a></span></li>
297
+ <li id="cite_note-30"><span class="mw-cite-backlink"><b><a href="#cite_ref-30">^</a></b></span> <span class="reference-text"><span class="citation web">Yamato, Jen (August 6, 2012). <a rel="nofollow" class="external text" href="http://movieline.com/2012/08/06/idiocracy-movie-spin-off-terry-crews-president-camacho/">"<i>Idiocracy</i> Spin-Off In The Works? Terry Crews Talks"</a>. <i>Movieline</i><span class="reference-accessdate">. Retrieved 2012-10-08</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=%27%27Idiocracy%27%27+Spin-Off+In+The+Works%3F+Terry+Crews+Talks&amp;rft.aufirst=Jen&amp;rft.aulast=Yamato&amp;rft.au=Yamato%2C+Jen&amp;rft.date=August+6%2C+2012&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fmovieline.com%2F2012%2F08%2F06%2Fidiocracy-movie-spin-off-terry-crews-president-camacho%2F&amp;rft.jtitle=Movieline&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
298
+ <li id="cite_note-31"><span class="mw-cite-backlink"><b><a href="#cite_ref-31">^</a></b></span> <span class="reference-text"><span class="citation web">Tremblay, Ronald Michel (November 4, 2009). <a rel="nofollow" class="external text" href="http://www.atlanticfreepress.com/news/1/12221-humankinds-future-social-and-political-utopia-or-idiocracy.html">"Humankind’s future: social and political Utopia or Idiocracy?"</a>. <i>Atlantic Free Press</i><span class="reference-accessdate">. Retrieved 2010-05-08</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.atitle=Humankind%E2%80%99s+future%3A+social+and+political+Utopia+or+Idiocracy%3F&amp;rft.aufirst=Ronald+Michel&amp;rft.aulast=Tremblay&amp;rft.au=Tremblay%2C+Ronald+Michel&amp;rft.date=November+4%2C+2009&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.atlanticfreepress.com%2Fnews%2F1%2F12221-humankinds-future-social-and-political-utopia-or-idiocracy.html&amp;rft.jtitle=Atlantic+Free+Press&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
299
+ <li id="cite_note-32"><span class="mw-cite-backlink"><b><a href="#cite_ref-32">^</a></b></span> <span class="reference-text"><span class="citation web">Grigg, William Norman (May 14, 2010). <a rel="nofollow" class="external text" href="http://www.lewrockwell.com/grigg/grigg-w146.html">"Idiocracy Rising"</a>. Lew Rockwell<span class="reference-accessdate">. Retrieved 2010-10-02</span>.</span><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AIdiocracy&amp;rft.aufirst=William+Norman&amp;rft.au=Grigg%2C+William+Norman&amp;rft.aulast=Grigg&amp;rft.btitle=Idiocracy+Rising&amp;rft.date=May+14%2C+2010&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fwww.lewrockwell.com%2Fgrigg%2Fgrigg-w146.html&amp;rft.pub=Lew+Rockwell&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span></span></li>
300
+ </ol>
301
+ </div>
302
+ <h2><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Idiocracy&amp;action=edit&amp;section=12" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
303
+ <table class="mbox-small plainlinks" style="border:1px solid #aaa;background-color:#f9f9f9;">
304
+ <tr>
305
+ <td class="mbox-image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/34px-Wikiquote-logo.svg.png" width="34" height="40" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/51px-Wikiquote-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/68px-Wikiquote-logo.svg.png 2x" data-file-width="300" data-file-height="355" /></td>
306
+ <td class="mbox-text plainlist">Wikiquote has quotations related to: <i><b><a href="//en.wikiquote.org/wiki/Special:Search/Idiocracy" class="extiw" title="q:Special:Search/Idiocracy">Idiocracy</a></b></i></td>
307
+ </tr>
308
+ </table>
309
+ <ul>
310
+ <li><a rel="nofollow" class="external text" href="http://www.imdb.com/title/tt0387808/"><i>Idiocracy</i></a> at the <a href="/wiki/Internet_Movie_Database" title="Internet Movie Database">Internet Movie Database</a></li>
311
+ <li><a rel="nofollow" class="external text" href="http://www.boxofficemojo.com/movies/?id=idiocracy.htm"><i>Idiocracy</i></a> at <a href="/wiki/Box_Office_Mojo" title="Box Office Mojo">Box Office Mojo</a></li>
312
+ <li><a rel="nofollow" class="external text" href="http://www.rottentomatoes.com/m/idiocracy/"><i>Idiocracy</i></a> at <a href="/wiki/Rotten_Tomatoes" title="Rotten Tomatoes">Rotten Tomatoes</a></li>
313
+ <li><a rel="nofollow" class="external text" href="http://www.metacritic.com/movie/idiocracy"><i>Idiocracy</i></a> at <a href="/wiki/Metacritic" title="Metacritic">Metacritic</a></li>
314
+ <li><a rel="nofollow" class="external text" href="http://www.youtube.com/results?search_query=foxhomeent+idiocracy">Scenes from the film</a> at the <a href="/wiki/Fox_Home_Entertainment" title="Fox Home Entertainment" class="mw-redirect">Fox Home Entertainment</a> YouTube channel.</li>
315
+ </ul>
316
+ <table cellspacing="0" class="navbox" style="border-spacing:0;">
317
+ <tr>
318
+ <td style="padding:2px;">
319
+ <table cellspacing="0" class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
320
+ <tr>
321
+ <th scope="col" class="navbox-title" colspan="2">
322
+ <div class="plainlinks hlist navbar mini">
323
+ <ul>
324
+ <li class="nv-view"><a href="/wiki/Template:Mike_Judge" title="Template:Mike Judge"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
325
+ <li class="nv-talk"><a href="/wiki/Template_talk:Mike_Judge" title="Template talk:Mike Judge"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
326
+ <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Mike_Judge&amp;action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
327
+ </ul>
328
+ </div>
329
+ <div style="font-size:110%;"><a href="/wiki/Mike_Judge" title="Mike Judge">Mike Judge</a></div>
330
+ </th>
331
+ </tr>
332
+ <tr style="height:2px;">
333
+ <td colspan="2"></td>
334
+ </tr>
335
+ <tr>
336
+ <th scope="row" class="navbox-group"><b>Animated TV series</b></th>
337
+ <td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
338
+ <div style="padding:0em 0.25em;">
339
+ <ul>
340
+ <li><i><a href="/wiki/Beavis_and_Butt-head" title="Beavis and Butt-head">Beavis and Butt-head</a></i> (1993–1997, 2011)</li>
341
+ <li><i><a href="/wiki/King_of_the_Hill" title="King of the Hill">King of the Hill</a></i> (1997–2010)</li>
342
+ <li><i><a href="/wiki/The_Goode_Family" title="The Goode Family">The Goode Family</a></i> (2009)</li>
343
+ </ul>
344
+ </div>
345
+ </td>
346
+ </tr>
347
+ <tr style="height:2px;">
348
+ <td colspan="2"></td>
349
+ </tr>
350
+ <tr>
351
+ <th scope="row" class="navbox-group"><b>Feature films</b></th>
352
+ <td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
353
+ <div style="padding:0em 0.25em;">
354
+ <ul>
355
+ <li><i><a href="/wiki/Beavis_and_Butt-head_Do_America" title="Beavis and Butt-head Do America">Beavis and Butt-head Do America</a></i> (1996)</li>
356
+ <li><i><a href="/wiki/Office_Space" title="Office Space">Office Space</a></i> (1999)</li>
357
+ <li><i><strong class="selflink">Idiocracy</strong></i> (2006)</li>
358
+ <li><i><a href="/wiki/Extract_(film)" title="Extract (film)">Extract</a></i> (2009)</li>
359
+ </ul>
360
+ </div>
361
+ </td>
362
+ </tr>
363
+ <tr style="height:2px;">
364
+ <td colspan="2"></td>
365
+ </tr>
366
+ <tr>
367
+ <th scope="row" class="navbox-group"><b>Television series</b></th>
368
+ <td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
369
+ <div style="padding:0em 0.25em;">
370
+ <ul>
371
+ <li><i><a href="/wiki/Silicon_Valley_(TV_series)" title="Silicon Valley (TV series)">Silicon Valley</a></i> (2014)</li>
372
+ </ul>
373
+ </div>
374
+ </td>
375
+ </tr>
376
+ <tr style="height:2px;">
377
+ <td colspan="2"></td>
378
+ </tr>
379
+ <tr>
380
+ <th scope="row" class="navbox-group"><b>Other</b></th>
381
+ <td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
382
+ <div style="padding:0em 0.25em;">
383
+ <ul>
384
+ <li><i><a href="/wiki/The_Honky_Problem" title="The Honky Problem">The Honky Problem</a></i></li>
385
+ <li><i><a href="/wiki/Milton_(cartoon)" title="Milton (cartoon)">Milton</a></i></li>
386
+ <li><i><a href="/wiki/Frog_Baseball" title="Frog Baseball">Frog Baseball</a></i></li>
387
+ <li><i><a href="/wiki/Peace,_Love_%26_Understanding_(Beavis_and_Butt-head)" title="Peace, Love &amp; Understanding (Beavis and Butt-head)">Peace, Love and Understanding</a></i></li>
388
+ <li>"<a href="/wiki/The_Wind_(Zac_Brown_Band_song)" title="The Wind (Zac Brown Band song)">The Wind</a>"</li>
389
+ </ul>
390
+ </div>
391
+ </td>
392
+ </tr>
393
+ </table>
394
+ </td>
395
+ </tr>
396
+ </table>
397
+
398
+
399
+ <!--
400
+ NewPP limit report
401
+ Parsed by mw1109
402
+ CPU time usage: 1.020 seconds
403
+ Real time usage: 1.114 seconds
404
+ Preprocessor visited node count: 2352/1000000
405
+ Preprocessor generated node count: 12458/1500000
406
+ Post‐expand include size: 63718/2048000 bytes
407
+ Template argument size: 2217/2048000 bytes
408
+ Highest expansion depth: 21/40
409
+ Expensive parser function count: 4/500
410
+ Lua time usage: 0.171/10.000 seconds
411
+ Lua memory usage: 3.22 MB/50 MB
412
+ -->
413
+
414
+ <!-- Saved in parser cache with key enwiki:pcache:idhash:2600144-0!*!0!!en!4!* and timestamp 20140812113946 and revision id 620425246
415
+ -->
416
+ <noscript><img src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div> <div class="printfooter">
417
+ Retrieved from "<a dir="ltr" href="http://en.wikipedia.org/w/index.php?title=Idiocracy&amp;oldid=620425246">http://en.wikipedia.org/w/index.php?title=Idiocracy&amp;oldid=620425246</a>" </div>
418
+ <div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/wiki/Category:2006_films" title="Category:2006 films">2006 films</a></li><li><a href="/wiki/Category:English-language_films" title="Category:English-language films">English-language films</a></li><li><a href="/wiki/Category:2000s_comedy_films" title="Category:2000s comedy films">2000s comedy films</a></li><li><a href="/wiki/Category:2000s_science_fiction_films" title="Category:2000s science fiction films">2000s science fiction films</a></li><li><a href="/wiki/Category:American_films" title="Category:American films">American films</a></li><li><a href="/wiki/Category:American_comedy_science_fiction_films" title="Category:American comedy science fiction films">American comedy science fiction films</a></li><li><a href="/wiki/Category:American_political_comedy_films" title="Category:American political comedy films">American political comedy films</a></li><li><a href="/wiki/Category:American_satirical_films" title="Category:American satirical films">American satirical films</a></li><li><a href="/wiki/Category:Films_directed_by_Mike_Judge" title="Category:Films directed by Mike Judge">Films directed by Mike Judge</a></li><li><a href="/wiki/Category:Cryonics_in_fiction" title="Category:Cryonics in fiction">Cryonics in fiction</a></li><li><a href="/wiki/Category:Dystopian_films" title="Category:Dystopian films">Dystopian films</a></li><li><a href="/wiki/Category:Films_about_fictional_Presidents_of_the_United_States" title="Category:Films about fictional Presidents of the United States">Films about fictional Presidents of the United States</a></li><li><a href="/wiki/Category:Films_set_in_the_26th_century" title="Category:Films set in the 26th century">Films set in the 26th century</a></li><li><a href="/wiki/Category:Films_shot_in_Austin,_Texas" title="Category:Films shot in Austin, Texas">Films shot in Austin, Texas</a></li><li><a href="/wiki/Category:20th_Century_Fox_films" title="Category:20th Century Fox films">20th Century Fox films</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:Use_mdy_dates_from_August_2011" title="Category:Use mdy dates from August 2011">Use mdy dates from August 2011</a></li><li><a href="/wiki/Category:All_film_articles_using_the_film_date_template" title="Category:All film articles using the film date template">All film articles using the film date template</a></li><li><a href="/wiki/Category:Film_articles_using_image_size_parameter" title="Category:Film articles using image size parameter">Film articles using image size parameter</a></li></ul></div></div> <div class="visualClear"></div>
419
+ </div>
420
+ </div>
421
+ <div id="mw-navigation">
422
+ <h2>Navigation menu</h2>
423
+
424
+ <div id="mw-head">
425
+ <div id="p-personal" role="navigation" class="" aria-labelledby="p-personal-label">
426
+ <h3 id="p-personal-label">Personal tools</h3>
427
+ <ul>
428
+ <li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Idiocracy&amp;type=signup">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Idiocracy" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li> </ul>
429
+ </div>
430
+ <div id="left-navigation">
431
+ <div id="p-namespaces" role="navigation" class="vectorTabs" aria-labelledby="p-namespaces-label">
432
+ <h3 id="p-namespaces-label">Namespaces</h3>
433
+ <ul>
434
+ <li id="ca-nstab-main" class="selected"><span><a href="/wiki/Idiocracy" title="View the content page [c]" accesskey="c">Article</a></span></li>
435
+ <li id="ca-talk"><span><a href="/wiki/Talk:Idiocracy" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
436
+ </ul>
437
+ </div>
438
+ <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-variants-label">
439
+ <h3 id="p-variants-label"><span
440
+ style="display: block;" >Variants</span><a href="#"></a></h3>
441
+
442
+ <div class="menu">
443
+ <ul>
444
+ </ul>
445
+ </div>
446
+ </div>
447
+ </div>
448
+ <div id="right-navigation">
449
+ <div id="p-views" role="navigation" class="vectorTabs" aria-labelledby="p-views-label">
450
+ <h3 id="p-views-label">Views</h3>
451
+ <ul>
452
+ <li id="ca-view" class="selected"><span><a href="/wiki/Idiocracy" >Read</a></span></li>
453
+ <li id="ca-edit"><span><a href="/w/index.php?title=Idiocracy&amp;action=edit" title="You can edit this page. Please use the preview button before saving [e]" accesskey="e">Edit</a></span></li>
454
+ <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Idiocracy&amp;action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
455
+ </ul>
456
+ </div>
457
+ <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-cactions-label">
458
+ <h3 id="p-cactions-label"><span>More</span><a href="#"></a></h3>
459
+
460
+ <div class="menu">
461
+ <ul>
462
+ </ul>
463
+ </div>
464
+ </div>
465
+ <div id="p-search" role="search">
466
+ <h3>
467
+ <label for="searchInput">Search</label>
468
+ </h3>
469
+
470
+ <form action="/w/index.php" id="searchform">
471
+ <div id="simpleSearch">
472
+ <input type="search" name="search" placeholder="Search" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /><input type="hidden" value="Special:Search" name="title" /><input type="submit" name="fulltext" value="Search" title="Search Wikipedia for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton" /><input type="submit" name="go" value="Go" title="Go to a page with this exact name if one exists" id="searchButton" class="searchButton" /> </div>
473
+ </form>
474
+ </div>
475
+ </div>
476
+ </div>
477
+ <div id="mw-panel">
478
+ <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>
479
+ <div class="portal" role="navigation" id='p-navigation' aria-labelledby='p-navigation-label'>
480
+ <h3 id='p-navigation-label'>Navigation</h3>
481
+
482
+ <div class="body">
483
+ <ul>
484
+ <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
485
+ <li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
486
+ <li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
487
+ <li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
488
+ <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
489
+ <li id="n-sitesupport"><a href="https://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>
490
+ <li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikimedia Shop">Wikimedia Shop</a></li>
491
+ </ul>
492
+ </div>
493
+ </div>
494
+ <div class="portal" role="navigation" id='p-interaction' aria-labelledby='p-interaction-label'>
495
+ <h3 id='p-interaction-label'>Interaction</h3>
496
+
497
+ <div class="body">
498
+ <ul>
499
+ <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
500
+ <li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
501
+ <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>
502
+ <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>
503
+ <li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact page</a></li>
504
+ </ul>
505
+ </div>
506
+ </div>
507
+ <div class="portal" role="navigation" id='p-tb' aria-labelledby='p-tb-label'>
508
+ <h3 id='p-tb-label'>Tools</h3>
509
+
510
+ <div class="body">
511
+ <ul>
512
+ <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Idiocracy" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
513
+ <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Idiocracy" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
514
+ <li id="t-upload"><a href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u">Upload file</a></li>
515
+ <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
516
+ <li id="t-permalink"><a href="/w/index.php?title=Idiocracy&amp;oldid=620425246" title="Permanent link to this revision of the page">Permanent link</a></li>
517
+ <li id="t-info"><a href="/w/index.php?title=Idiocracy&amp;action=info">Page information</a></li>
518
+ <li id="t-wikibase"><a href="//www.wikidata.org/wiki/Q1347609" title="Link to connected data repository item [g]" accesskey="g">Wikidata item</a></li>
519
+ <li id="t-cite"><a href="/w/index.php?title=Special:Cite&amp;page=Idiocracy&amp;id=620425246" title="Information on how to cite this page">Cite this page</a></li> </ul>
520
+ </div>
521
+ </div>
522
+ <div class="portal" role="navigation" id='p-coll-print_export' aria-labelledby='p-coll-print_export-label'>
523
+ <h3 id='p-coll-print_export-label'>Print/export</h3>
524
+
525
+ <div class="body">
526
+ <ul>
527
+ <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Idiocracy">Create a book</a></li>
528
+ <li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Idiocracy&amp;oldid=620425246&amp;writer=rl">Download as PDF</a></li>
529
+ <li id="t-print"><a href="/w/index.php?title=Idiocracy&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>
530
+ </ul>
531
+ </div>
532
+ </div>
533
+ <div class="portal" role="navigation" id='p-lang' aria-labelledby='p-lang-label'>
534
+ <h3 id='p-lang-label'>Languages</h3>
535
+
536
+ <div class="body">
537
+ <ul>
538
+ <li class="interlanguage-link interwiki-ca"><a href="//ca.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Catalan" lang="ca" hreflang="ca">Català</a></li>
539
+ <li class="interlanguage-link interwiki-de"><a href="//de.wikipedia.org/wiki/Idiocracy" title="Idiocracy – German" lang="de" hreflang="de">Deutsch</a></li>
540
+ <li class="interlanguage-link interwiki-es"><a href="//es.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Spanish" lang="es" hreflang="es">Español</a></li>
541
+ <li class="interlanguage-link interwiki-fr"><a href="//fr.wikipedia.org/wiki/Idiocracy" title="Idiocracy – French" lang="fr" hreflang="fr">Français</a></li>
542
+ <li class="interlanguage-link interwiki-id"><a href="//id.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Indonesian" lang="id" hreflang="id">Bahasa Indonesia</a></li>
543
+ <li class="interlanguage-link interwiki-it"><a href="//it.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Italian" lang="it" hreflang="it">Italiano</a></li>
544
+ <li class="interlanguage-link interwiki-nl"><a href="//nl.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Dutch" lang="nl" hreflang="nl">Nederlands</a></li>
545
+ <li class="interlanguage-link interwiki-ja"><a href="//ja.wikipedia.org/wiki/26%E4%B8%96%E7%B4%80%E9%9D%92%E5%B9%B4" title="26世紀青年 – Japanese" lang="ja" hreflang="ja">日本語</a></li>
546
+ <li class="interlanguage-link interwiki-no"><a href="//no.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Norwegian (bokmål)" lang="no" hreflang="no">Norsk bokmål</a></li>
547
+ <li class="interlanguage-link interwiki-pl"><a href="//pl.wikipedia.org/wiki/Idiokracja_(film)" title="Idiokracja (film) – Polish" lang="pl" hreflang="pl">Polski</a></li>
548
+ <li class="interlanguage-link interwiki-pt"><a href="//pt.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Portuguese" lang="pt" hreflang="pt">Português</a></li>
549
+ <li class="interlanguage-link interwiki-ru"><a href="//ru.wikipedia.org/wiki/%D0%98%D0%B4%D0%B8%D0%BE%D0%BA%D1%80%D0%B0%D1%82%D0%B8%D1%8F" title="Идиократия – Russian" lang="ru" hreflang="ru">Русский</a></li>
550
+ <li class="interlanguage-link interwiki-scn"><a href="//scn.wikipedia.org/wiki/Idiocrazzia_(Pill%C3%ACcula)" title="Idiocrazzia (Pillìcula) – Sicilian" lang="scn" hreflang="scn">Sicilianu</a></li>
551
+ <li class="interlanguage-link interwiki-sv"><a href="//sv.wikipedia.org/wiki/Idiocracy" title="Idiocracy – Swedish" lang="sv" hreflang="sv">Svenska</a></li>
552
+ <li class="interlanguage-link interwiki-tr"><a href="//tr.wikipedia.org/wiki/Ahmaklar" title="Ahmaklar – Turkish" lang="tr" hreflang="tr">Türkçe</a></li>
553
+ <li class="uls-p-lang-dummy"><a href="#"></a></li>
554
+ </ul>
555
+ <div class='after-portlet after-portlet-lang'><span class="wb-langlinks-edit wb-langlinks-link"><a action="edit" href="//www.wikidata.org/wiki/Q1347609#sitelinks-wikipedia" text="Edit links" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span></div> </div>
556
+ </div>
557
+ </div>
558
+ </div>
559
+ <div id="footer" role="contentinfo">
560
+ <ul id="footer-info">
561
+ <li id="footer-info-lastmod"> This page was last modified on 8 August 2014 at 21:29.<br /></li>
562
+ <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>;
563
+ 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>. Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
564
+ </ul>
565
+ <ul id="footer-places">
566
+ <li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
567
+ <li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
568
+ <li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
569
+ <li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
570
+ <li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
571
+ <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/wiki/Idiocracy" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
572
+ </ul>
573
+ <ul id="footer-icons" class="noprint">
574
+ <li id="footer-copyrightico">
575
+ <a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
576
+ </li>
577
+ <li id="footer-poweredbyico">
578
+ <a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/static-1.24wmf15/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
579
+ </li>
580
+ </ul>
581
+ <div style="clear:both"></div>
582
+ </div>
583
+ <script>/*<![CDATA[*/window.jQuery && jQuery.ready();/*]]>*/</script><script>if(window.mw){
584
+ mw.loader.state({"site":"loading","user":"ready","user.groups":"ready"});
585
+ }</script>
586
+ <script>if(window.mw){
587
+ mw.loader.load(["ext.cite","mediawiki.toc","mobile.desktop","mediawiki.action.view.postEdit","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.DRN-wizard","ext.gadget.charinsert","ext.gadget.refToolbar","ext.gadget.featured-articles-links","mmv.bootstrap.autostart","ext.eventLogging.subscriber","ext.navigationTiming","schema.UniversalLanguageSelector","ext.uls.eventlogger","ext.uls.interlanguage"],null,true);
588
+ }</script>
589
+ <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>
590
+ <script>if(window.mw){
591
+ mw.config.set({"wgBackendResponseTime":229,"wgHostname":"mw1209"});
592
+ }</script>
593
+ </body>
594
+ </html>
595
+