torrentify 0.3 → 0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +6 -0
- data/Rakefile +1 -1
- data/lib/manager/imdb_manager.rb +30 -0
- data/lib/manager/mechanize_manager.rb +30 -3
- data/lib/manager/sites/extratorrent_parser.rb +64 -0
- data/lib/manager/sites/isohunt_parser.rb +61 -0
- data/lib/manager/sites/kickass_parser.rb +9 -7
- data/lib/manager/sites/piratebay_parser.rb +66 -0
- data/lib/model/torrent_model.rb +25 -5
- data/lib/torrentify.rb +11 -1
- data/test/manager/imdb_manager_test.rb +25 -0
- data/test/manager/sites/extratorrent_parser_test.rb +26 -0
- data/test/manager/sites/isohunt_parser_test.rb +26 -0
- data/test/manager/sites/kickass_parser_test.rb +14 -20
- data/test/manager/sites/piratebay_parser_test.rb +26 -0
- data/test/manager/sites/test_data/extratorrent_mock_response.html +281 -0
- data/test/manager/sites/test_data/isohunt_mock_response.html +456 -0
- data/test/manager/sites/test_data/kickass_mock_response.html +841 -0
- data/test/manager/sites/test_data/piratebay_mock_response.html +302 -0
- data/test/manager/test_data/imdb_mock_response.html +1636 -0
- data/test/model/torrent_model_test.rb +39 -0
- data/test/test_helper.rb +2 -0
- data/torrentify.gemspec +5 -4
- metadata +44 -10
- data/test/manager/mechanize_manager_test.rb +0 -55
- data/test/torrentify_test.rb +0 -11
@@ -0,0 +1,26 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
require_relative '../../test_helper'
|
3
|
+
|
4
|
+
require_relative '../../../lib/manager/sites/isohunt_parser'
|
5
|
+
require_relative '../../../lib/manager/mechanize_manager'
|
6
|
+
|
7
|
+
# Tests for kickass
|
8
|
+
class TestIsohuntClass < Test::Unit::TestCase
|
9
|
+
def test_main_divs
|
10
|
+
search_term = 'a pigeon sat on a branch reflecting on existence'
|
11
|
+
|
12
|
+
mock_request
|
13
|
+
|
14
|
+
result = MechanizeManager.new.search_isohunt(search_term)
|
15
|
+
|
16
|
+
assert_not_nil result
|
17
|
+
assert_false result.empty?
|
18
|
+
end
|
19
|
+
|
20
|
+
def mock_request
|
21
|
+
file_path = 'test_data/isohunt_mock_response.html'
|
22
|
+
mock_data = File.read(File.join(__dir__, file_path))
|
23
|
+
WebMock.stub_request(:get, 'https://isohunt.to/torrents/?ihq=a%20pigeon%20sat%20on%20a%20branch%20reflecting%20on%20existence')
|
24
|
+
.to_return(:status => 200, :body => mock_data, :headers => {})
|
25
|
+
end
|
26
|
+
end
|
@@ -1,32 +1,26 @@
|
|
1
1
|
#!/usr/bin/ruby
|
2
2
|
require_relative '../../test_helper'
|
3
3
|
|
4
|
-
require_relative '../../../lib/sites/kickass_parser'
|
5
|
-
require_relative '../../../lib/mechanize_manager'
|
4
|
+
require_relative '../../../lib/manager/sites/kickass_parser'
|
5
|
+
require_relative '../../../lib/manager/mechanize_manager'
|
6
6
|
|
7
7
|
# Tests for kickass
|
8
8
|
class TestKickassClass < Test::Unit::TestCase
|
9
9
|
def test_main_divs
|
10
10
|
search_term = 'a pigeon sat on a branch reflecting on existence'
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
puts out.string
|
11
|
+
|
12
|
+
mock_request
|
13
|
+
|
14
|
+
result = MechanizeManager.new.search_kickass(search_term)
|
15
|
+
|
16
|
+
assert_not_nil result
|
17
|
+
assert_false result.empty?
|
19
18
|
end
|
20
|
-
end
|
21
19
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
yield
|
28
|
-
return out
|
29
|
-
ensure
|
30
|
-
$stdout = STDOUT
|
20
|
+
def mock_request
|
21
|
+
file_path = 'test_data/kickass_mock_response.html'
|
22
|
+
mock_data = File.read(File.join(__dir__, file_path))
|
23
|
+
WebMock.stub_request(:get, 'https://kat.cr/usearch/a%20pigeon%20sat%20on%20a%20branch%20reflecting%20on%20existence')
|
24
|
+
.to_return(:status => 200, :body => mock_data, :headers => {})
|
31
25
|
end
|
32
26
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
require_relative '../../test_helper'
|
3
|
+
|
4
|
+
require_relative '../../../lib/manager/sites/piratebay_parser'
|
5
|
+
require_relative '../../../lib/manager/mechanize_manager'
|
6
|
+
|
7
|
+
# Tests for kickass
|
8
|
+
class TestPirateBayClass < Test::Unit::TestCase
|
9
|
+
def test_main_divs
|
10
|
+
search_term = 'a pigeon sat on a branch reflecting on existence'
|
11
|
+
|
12
|
+
mock_request
|
13
|
+
|
14
|
+
result = MechanizeManager.new.search_piratebay(search_term)
|
15
|
+
|
16
|
+
assert_not_nil result
|
17
|
+
assert_false result.empty?
|
18
|
+
end
|
19
|
+
|
20
|
+
def mock_request
|
21
|
+
file_path = 'test_data/piratebay_mock_response.html'
|
22
|
+
mock_data = File.read(File.join(__dir__, file_path))
|
23
|
+
WebMock.stub_request(:get, 'https://thepiratebay.mn/search/a%20pigeon%20sat%20on%20a%20branch%20reflecting%20on%20existence')
|
24
|
+
.to_return(:status => 200, :body => mock_data, :headers => {})
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,281 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
|
5
|
+
<head>
|
6
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
7
|
+
<meta name="keywords" content="a pigeon sat on a branch reflecting on existence torrent, a pigeon sat on a branch reflecting on existence download, a pigeon sat on a branch reflecting on existence torrent download, pigeon torrent, pigeon download, pigeon torrent download, branch torrent, branch download, branch torrent download, reflecting torrent, reflecting download, reflecting torrent download, existence torrent, existence download, existence torrent download, bittorrent, torrent, torrents, movies, music, games, software, download, upload, porn torrents, music torrents, movies torrents, games torrents, software torrents, iPod torrents, anime torrents, torrent search, bittorrent search, upload torrents, download torrents" />
|
8
|
+
<meta name="description" content="Search for a pigeon sat on a branch reflecting on existence torrents. Page 1. ExtraTorrent.cc" />
|
9
|
+
<meta name="robots" content="all" />
|
10
|
+
<link rel="shortcut icon" type="image/ico" href="/images/favicon.ico" />
|
11
|
+
<link type="application/opensearchdescription+xml" title="ExtraTorrent.cc Search" href="http://extratorrent.cc/opensearch.xml" rel="search" />
|
12
|
+
<meta name="verify-v1" content="9BMORdF/gLH0rZ4tcXFDfY4DrhzwzN3+oQsgI03Hgys=" />
|
13
|
+
<link rel="alternate" type="application/rss+xml" title="ExtraTorrent RSS feed: Today Torrents" href="/rss.xml?type=today" />
|
14
|
+
<link rel="alternate" type="application/rss+xml" title="ExtraTorrent RSS feed: Search for 'a pigeon sat on a branch reflecting on existence' Torrents" href="/rss.xml?type=search&search=a+pigeon+sat+on+a+branch+reflecting+on+existence" /> <title>Search for 'a pigeon sat on a branch reflecting on existence' torrents - Page 1 - ExtraTorrent.cc The World's Largest BitTorrent System</title>
|
15
|
+
|
16
|
+
<script type="text/javascript">
|
17
|
+
window.functions = new Array();
|
18
|
+
</script>
|
19
|
+
|
20
|
+
<script src="/scripts/script.js" type="text/javascript"></script>
|
21
|
+
|
22
|
+
<style type="text/css" media="all">
|
23
|
+
@import "/style/frontend.css?3";
|
24
|
+
</style>
|
25
|
+
</head>
|
26
|
+
|
27
|
+
<body>
|
28
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
29
|
+
<tr>
|
30
|
+
<td>
|
31
|
+
<form action="/search/" method="get"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="293"><a href="/" title="ExtraTorrent.cc - The Largest Bittorent System"><img src="http://static.extratorrent.cc/images/logo.gif" border="0" alt="ExtraTorrent.cc - The Largest Bittorent System" /></a></td><td width="250" class="h_search"><input type="text" class="stext" name="search" style="width:250px;" value="a pigeon sat on a branch reflecting on existence" /><input type="hidden" name="new" value="1" /> <a href="/advanced_search/" title="Advanced Torrents Search">Advanced Search</a></td><td class="h_search_btn"><input type="image" src="http://static.extratorrent.cc/images/btn_search.png" alt="Search for Torrents" /></td><td class="h_top_r"><a href="/login/" class="menu" title="Login into ExtraTorrent.cc">Login</a> | <a href="/register/" class="menu" title="Register now">Register</a></td></tr></table></form>
|
32
|
+
</td>
|
33
|
+
</tr>
|
34
|
+
<tr>
|
35
|
+
<td class="main_menu">
|
36
|
+
<table width="100%" cellspacing="0" cellpadding="0"><tr><td width="6"><div class="menul"></div></td><td width="100%" class="td_menu"><table width="100%" cellspacing="0" cellpadding="0"><tr><td><a href="/category/" class="menu" title="Browse Torrents" onmouseover="javascript: document.getElementById('tbl').className='tablemenu show';" onmouseout="javascript: document.getElementById('tbl').className='tablemenu hide';">Browse Torrents</a><br /><div id="divmenu"><table width="185" cellspacing="1" id="tbl" class="tablemenu hide" onmouseover="javascript: document.getElementById('tbl').className='tablemenu show';" onmouseout="javascript: document.getElementById('tbl').className='tablemenu hide';"><tr><td class="submenu2"><a href="/" title="Popular Torrents">Popular Torrents</a></td></tr><tr><td class="submenu2"><a href="/today/" title="Today Torrents">Today Torrents</a></td></tr><tr><td class="submenu2"><a href="/yesterday/" title="Yesterday Torrents">Yesterday Torrents</a></td></tr><tr><td><div class="mi4"><a href="/category/4/Movies+Torrents.html" title="Browse Movies Torrents">Movies Torrents</a></div></td></tr><tr><td><div class="mi8"><a href="/category/8/TV+Torrents.html" title="Browse TV Torrents">TV Torrents</a></div></td></tr><tr><td><div class="mi5"><a href="/category/5/Music+Torrents.html" title="Browse Music Torrents">Music Torrents</a></div></td></tr><tr><td><div class="mi533"><a href="/category/533/Adult+-+Porn+Torrents.html" title="Browse Adult / Porn Torrents">Adult / Porn Torrents</a></div></td></tr><tr><td><div class="mi7"><a href="/category/7/Software+Torrents.html" title="Browse Software Torrents">Software Torrents</a></div></td></tr><tr><td><div class="mi3"><a href="/category/3/Games+Torrents.html" title="Browse Games Torrents">Games Torrents</a></div></td></tr><tr><td><div class="mi1"><a href="/category/1/Anime+Torrents.html" title="Browse Anime Torrents">Anime Torrents</a></div></td></tr><tr><td><div class="mi2"><a href="/category/2/Books+Torrents.html" title="Browse Books Torrents">Books Torrents</a></div></td></tr><tr><td><div class="mi6"><a href="/category/6/Pictures+Torrents.html" title="Browse Pictures Torrents">Pictures Torrents</a></div></td></tr><tr><td><div class="mi416"><a href="/category/416/Mobile+Torrents.html" title="Browse Mobile Torrents">Mobile Torrents</a></div></td></tr><tr><td><div class="mi9"><a href="/category/9/Other+Torrents.html" title="Browse Other Torrents">Other Torrents</a></div></td></tr></table></div></td><td class="ms">|</td><td><a href="/search_cloud/" class="menu" title="Search Cloud">Search Cloud</a></td><td class="ms">|</td><td class="menu_item"><a href="/stat/" class="menu" title="Site statistic" onmouseover="javascript: document.getElementById('div_stats').className='tablemenu show';" onmouseout="javascript: document.getElementById('div_stats').className='tablemenu hide';">Site Stats</a><br /><div id="divstats"><table cellspacing="1" id="div_stats" class="tablemenu hide" onmouseover="javascript: document.getElementById('div_stats').className='tablemenu show';" onmouseout="javascript: document.getElementById('div_stats').className='tablemenu hide';"><tr><td><a href="/stat/" title="statistic"><b>Site statistic</b></a></td></tr><tr><td><a href="/online/" title="Members online"><b>Members online</b></a></td></tr><tr><td><a href="/top_users/" title="Top members"><b>Top members</b></a></td></tr></table></div></td><td class="ms">|</td><td class="menu_item"><a href="/forum/" class="menu" title="Community" onmouseover="javascript: document.getElementById('div_community').className='tablemenu show';" onmouseout="javascript: document.getElementById('div_community').className='tablemenu hide';">Community</a><br /><div id="divcommunity"><table cellspacing="1" id="div_community" class="tablemenu hide" onmouseover="javascript: document.getElementById('div_community').className='tablemenu show';" onmouseout="javascript: document.getElementById('div_community').className='tablemenu hide';"><tr><td><a href="/forum/" title="forum"><b>Site Forum</b></a></td></tr><tr><td><a href="/articles/" title="articles"><b>Site Articles</b></a></td></tr><tr><td><a href="/et_chat/" title="chat"><b>ET Chat</b></a></td></tr></table></div></td><td class="ms">|</td><td><a href="/faq/" class="menu" title="ExtraTorrent.cc FAQ">FAQ</a></td><td width="100%"> </td></tr></table></td><td width="6"><div class="menur"></div></td></tr></table>
|
37
|
+
</td>
|
38
|
+
</tr>
|
39
|
+
<tr>
|
40
|
+
<td style="padding-top:10px;">
|
41
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
42
|
+
<tr>
|
43
|
+
<td style="vertical-align:top;">
|
44
|
+
<div class="blog_left"></div><div class="blog_top"><div class="right"><a href="/articles/" title="Browse All Articles">view all ></a></div>Latest Articles</div><div class="blog_right"></div><div class="blog_content"><ul class="ten_articles"><li><div>24</div><a href="/article/4536/lufthansa+will+offer+inflight+wi+fi.html" title="Lufthansa Will Offer Inflight Wi-Fi">Lufthansa Will Offer Inflight Wi-Fi</a></li><li><div>24</div><a href="/article/4535/bt+promised+faster+speeds+in+uk.html" title="BT Promised Faster Speeds in UK">BT Promised Faster Speeds in UK</a></li><li><div>24</div><a href="/article/4534/facebook+accused+of+spying+on+belgian+users.html" title="Facebook Accused of Spying on Belgian Users">Facebook Accused of Spying on Belgian Users</a></li><li><div>23</div><a href="/article/4416/how+to+avoid+copyright+infringement+notices+from+isp+try+vpn.html" title="How to Avoid Receiving Copyright Infringement Letters from ISP?">How to Avoid Receiving Copyright Infringement Letters from ISP?</a></li><li><div>22</div><a href="/article/4533/french+watchdog+rejected+google%E2%80%99s+appeal+over+right+to+be+forgotten.html" title="French Watchdog Rejected Google’s Appeal over Right-to-Be-Forgotten">French Watchdog Rejected Google’s Appeal over Right-to-Be-Forgotten</a></li><li><div>22</div><a href="/article/4532/apple+removed+300+malicious+apps+from+appstore.html" title="Apple Removed 300+ Malicious Apps from AppStore">Apple Removed 300+ Malicious Apps from AppStore</a></li><li><div>22</div><a href="/article/4531/megaupload+founder+finally+in+court+for+us+extradition+hearing.html" title="MegaUpload Founder Finally in Court for US Extradition Hearing">MegaUpload Founder Finally in Court for US Extradition Hearing</a></li><li><div>22</div><a href="/article/4530/emmy+awards+2015+full+list+of+winners.html" title="Emmy Awards 2015: Full list of winners">Emmy Awards 2015: Full list of winners</a></li><li><div>21</div><a href="/article/4379/extratorrent+could+be+blocked+in+australia+under+new+website+blocking+law+passed+in+australian+senate.html" title="ExtraTorrent Can Be Blocked in Australia">ExtraTorrent Can Be Blocked in Australia</a></li><li><div>21</div><a href="/article/4529/us+and+china+still+discuss+cybersecurity+deal.html" title="US and China Still Discuss Cybersecurity Deal">US and China Still Discuss Cybersecurity Deal</a></li></ul><div style="text-align: center; padding-top: 5px;">more p2p news on <a href="http://torrentfreak.com" target="_blank">torrentfreak</a></div></div> <table cellspacing="0" cellpadding="0" width="239" border="0"><tr><td><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="6"><div class="menul"></div></td><td width="100%" class="td_menu">Recommend us with Google</td><td width="6"><div class="menur"></div></td></tr></table></td></tr><tr><td style="padding: 0px 5px 5px 2px;"><div class="borderdark" style="padding: 5px; text-align: center;"><g:plusone href="http://extratorrent.cc"></g:plusone></div></td></tr></table><br /> <div class="blog_left"></div><div class="blog_top"><div class="right"><a href="/hot_torrents/" title="View all">view all ></a></div>Most searched</div><div class="blog_right"></div><div class="top_torr"><div class="top_cat"><div class="top_icon"><img src="http://static.extratorrent.cc/images/hot_small.gif" alt="Hot torrents" /></div><div class="top_title"><b>First Cams</b></div><div class="top_more"><a href="/hot_torrents/1/First+Cams.html" title="View all First Cams Hot torrents">view all ></a></div></div><div class="clear"></div><div class="top_pic"><a href="/torrent/4428539/Maze.Runner-The.Scorch.Trials.2015.HD-TS.XVID.AC3.HQ.Hive-CM8.html" title="View Torrent Info: Maze.Runner-The.Scorch.Trials.2015.HD-TS.XVID.AC3.HQ.Hive-CM8"><img src="http://static.extratorrent.cc/images/torrents/4428539.jpg" width="100" height="140" alt="View Torrent Info: Maze.Runner-The.Scorch.Trials.2015.HD-TS.XVID.AC3.HQ.Hive-CM8" /></a></div><div class="top_pic"><a href="/torrent/4423817/Everest.2015.HD-TS.XVID.AC3.HQ.Hive-CM8.html" title="View Torrent Info: Everest.2015.HD-TS.XVID.AC3.HQ.Hive-CM8"><img src="http://static.extratorrent.cc/images/torrents/4423817.jpg" width="100" height="140" alt="View Torrent Info: Everest.2015.HD-TS.XVID.AC3.HQ.Hive-CM8" /></a></div><div class="top_pic"><a href="/torrent/4410559/The+Man+from+U.N.C.L.E+%7B2015%7D+NEW-VID+CAM+XVID+MP3-MRG.html" title="View Torrent Info: The Man from U.N.C.L.E {2015} NEW-VID CAM XVID MP3-MRG"><img src="http://static.extratorrent.cc/images/torrents/4410559.jpg" width="100" height="140" alt="View Torrent Info: The Man from U.N.C.L.E {2015} NEW-VID CAM XVID MP3-MRG" /></a></div><div class="top_pic"><a href="/torrent/4412727/The.Transporter.Refueled.2015.TS.XVID.AC3-EVE.html" title="View Torrent Info: The.Transporter.Refueled.2015.TS.XVID.AC3-EVE"><img src="http://static.extratorrent.cc/images/torrents/4412727.jpg" width="100" height="140" alt="View Torrent Info: The.Transporter.Refueled.2015.TS.XVID.AC3-EVE" /></a></div><div style="clear:left"></div><div class="top_cat"><div class="top_icon"><img src="http://static.extratorrent.cc/images/hot_small.gif" alt="Hot torrents" /></div><div class="top_title"><b>XVID DIVX</b></div><div class="top_more"><a href="/hot_torrents/2/XVID+DIVX.html" title="View all XVID DIVX Hot torrents">view all ></a></div></div><div class="clear"></div><div class="top_pic"><a href="/torrent/4433071/Paper.Towns.2015.HDRip.XViD-ETRG.html" title="View Torrent Info: Paper.Towns.2015.HDRip.XViD-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4433071.jpg" width="100" height="140" alt="View Torrent Info: Paper.Towns.2015.HDRip.XViD-ETRG" /></a></div><div class="top_pic"><a href="/torrent/4432475/San.Andreas.2015.BRRip.XViD-ETRG.html" title="View Torrent Info: San.Andreas.2015.BRRip.XViD-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4432475.jpg" width="100" height="140" alt="View Torrent Info: San.Andreas.2015.BRRip.XViD-ETRG" /></a></div><div class="top_pic"><a href="/torrent/4432218/Terminator.Genisys.2015.BRRip.XViD-ETRG.html" title="View Torrent Info: Terminator.Genisys.2015.BRRip.XViD-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4432218.jpg" width="100" height="140" alt="View Torrent Info: Terminator.Genisys.2015.BRRip.XViD-ETRG" /></a></div><div class="top_pic"><a href="/torrent/4432416/The.Visit.2015.V2.HC.HDRip.XviD.AC3-EVO.html" title="View Torrent Info: The.Visit.2015.V2.HC.HDRip.XviD.AC3-EVO"><img src="http://static.extratorrent.cc/images/torrents/4432416.jpg" width="100" height="140" alt="View Torrent Info: The.Visit.2015.V2.HC.HDRip.XviD.AC3-EVO" /></a></div><div style="clear:left"></div><div class="top_cat"><div class="top_icon"><img src="http://static.extratorrent.cc/images/hot_small.gif" alt="Hot torrents" /></div><div class="top_title"><b>H264 X264</b></div><div class="top_more"><a href="/hot_torrents/4/H264+X264.html" title="View all H264 X264 Hot torrents">view all ></a></div></div><div class="clear"></div><div class="top_pic"><a href="/torrent/4432939/X-Men.Days.of.Future.Past.2014.The.Rogue.Cut.BluRay.720p.DTS-ES.x264-ETRG.html" title="View Torrent Info: X-Men.Days.of.Future.Past.2014.The.Rogue.Cut.BluRay.720p.DTS-ES.x264-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4432939.jpg" width="100" height="140" alt="View Torrent Info: X-Men.Days.of.Future.Past.2014.The.Rogue.Cut.BluRay.720p.DTS-ES.x264-ETRG" /></a></div><div class="top_pic"><a href="/torrent/4431522/Insidious.Chapter.3.2015.1080p.BluRay.x264.AC3-ETRG.html" title="View Torrent Info: Insidious.Chapter.3.2015.1080p.BluRay.x264.AC3-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4431522.jpg" width="100" height="140" alt="View Torrent Info: Insidious.Chapter.3.2015.1080p.BluRay.x264.AC3-ETRG" /></a></div><div class="top_pic"><a href="/torrent/4429779/Poltergeist.2015.Extended.BluRay.720p.DTS.x264-ETRG.html" title="View Torrent Info: Poltergeist.2015.Extended.BluRay.720p.DTS.x264-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4429779.jpg" width="100" height="140" alt="View Torrent Info: Poltergeist.2015.Extended.BluRay.720p.DTS.x264-ETRG" /></a></div><div class="top_pic"><a href="/torrent/4430064/10000.BC.2008.1080p.Bluray.AC3.x264-ETRG.html" title="View Torrent Info: 10000.BC.2008.1080p.Bluray.AC3.x264-ETRG"><img src="http://static.extratorrent.cc/images/torrents/4430064.jpg" width="100" height="140" alt="View Torrent Info: 10000.BC.2008.1080p.Bluray.AC3.x264-ETRG" /></a></div><div style="clear:left"></div><div class="top_cat"><div class="top_icon"><img src="http://static.extratorrent.cc/images/hot_small.gif" alt="Hot torrents" /></div><div class="top_title"><b>Television</b></div><div class="top_more"><a href="/hot_torrents/5/Television.html" title="View all Television Hot torrents">view all ></a></div></div><div class="clear"></div><div class="top_pic"><a href="/torrent/4431820/Heroes+Reborn+S01E01E02+HDTV+x264-LOL%5Bettv%5D.html" title="View Torrent Info: Heroes Reborn S01E01E02 HDTV x264-LOL[ettv]"><img src="http://static.extratorrent.cc/images/torrents/4431820.jpg" width="100" height="140" alt="View Torrent Info: Heroes Reborn S01E01E02 HDTV x264-LOL[ettv]" /></a></div><div class="top_pic"><a href="/torrent/4432762/The+Affair+S02E01+HDTV+x264-BATV%5Bettv%5D.html" title="View Torrent Info: The Affair S02E01 HDTV x264-BATV[ettv]"><img src="http://static.extratorrent.cc/images/torrents/4432762.jpg" width="100" height="140" alt="View Torrent Info: The Affair S02E01 HDTV x264-BATV[ettv]" /></a></div><div class="top_pic"><a href="/torrent/4431911/The+Player+2015+S01E01+HDTV+x264-LOL%5Bettv%5D.html" title="View Torrent Info: The Player 2015 S01E01 HDTV x264-LOL[ettv]"><img src="http://static.extratorrent.cc/images/torrents/4431911.jpg" width="100" height="140" alt="View Torrent Info: The Player 2015 S01E01 HDTV x264-LOL[ettv]" /></a></div><div class="top_pic"><a href="/torrent/4431906/How+to+Get+Away+with+Murder+S02E01+HDTV+x264-LOL%5Bettv%5D.html" title="View Torrent Info: How to Get Away with Murder S02E01 HDTV x264-LOL[ettv]"><img src="http://static.extratorrent.cc/images/torrents/4431906.jpg" width="100" height="140" alt="View Torrent Info: How to Get Away with Murder S02E01 HDTV x264-LOL[ettv]" /></a></div><div style="clear:left"></div><div class="top_cat"><div class="top_icon"><img src="http://static.extratorrent.cc/images/hot_small.gif" alt="Hot torrents" /></div><div class="top_title"><b>Foreign</b></div><div class="top_more"><a href="/hot_torrents/6/Foreign.html" title="View all Foreign Hot torrents">view all ></a></div></div><div class="clear"></div><div class="top_pic"><a href="/torrent/4432884/The+Giver+%282014%29+%7C+m-HD+%7C+720p+%7C+Hindi+%7C+Eng+%7C+BHATTI87.html" title="View Torrent Info: The Giver (2014) | m-HD | 720p | Hindi | Eng | BHATTI87"><img src="http://static.extratorrent.cc/images/torrents/4432884.jpg" width="100" height="140" alt="View Torrent Info: The Giver (2014) | m-HD | 720p | Hindi | Eng | BHATTI87" /></a></div><div class="top_pic"><a href="/torrent/4431981/%5B+18%5D+Insatiable+Alicia+and+the+Marquis+%281983%29+TVRip+720p+x264+%5BSpanish+AC-3%5D--prisak%7E%7E%7BHKRG%7D.html" title="View Torrent Info: [ 18] Insatiable Alicia and the Marquis (1983) TVRip 720p x264 [Spanish AC-3]--prisak~~{HKRG}"><img src="http://static.extratorrent.cc/images/torrents/4431981.jpg" width="100" height="140" alt="View Torrent Info: [ 18] Insatiable Alicia and the Marquis (1983) TVRip 720p x264 [Spanish AC-3]--prisak~~{HKRG}" /></a></div><div class="top_pic"><a href="/torrent/4431208/Kalki.Jug-720p-HEVC-4k.WebHD.Rip-x265.AAC-2.19GB-DDR.html" title="View Torrent Info: Kalki.Jug-720p-HEVC-4k.WebHD.Rip-x265.AAC-2.19GB-DDR"><img src="http://static.extratorrent.cc/images/torrents/4431208.jpg" width="100" height="140" alt="View Torrent Info: Kalki.Jug-720p-HEVC-4k.WebHD.Rip-x265.AAC-2.19GB-DDR" /></a></div><div class="top_pic"><a href="/torrent/4427472/Seventh+Son+%282014%29+1080p+mHD+Blu-ray+x264+English-Hindi+ACC+5.1++ESub+%5BDDR%5D.html" title="View Torrent Info: Seventh Son (2014) 1080p mHD Blu-ray x264 English-Hindi ACC 5.1 ESub [DDR]"><img src="http://static.extratorrent.cc/images/torrents/4427472.jpg" width="100" height="140" alt="View Torrent Info: Seventh Son (2014) 1080p mHD Blu-ray x264 English-Hindi ACC 5.1 ESub [DDR]" /></a></div><div style="clear:left"></div></div> <div style="margin-bottom: 10px;">
|
45
|
+
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fextratorrent&width=235&colorscheme=light&show_faces=true&stream=false&header=true&height=370" scrolling="no" frameborder="0" style="margin-left: 0; border:none; overflow:hidden; width:235px; height:370px;" allowTransparency="true"></iframe>
|
46
|
+
</div> <div class="blog_left"></div><div class="blog_top"><div id="chat_timer" class="right">30s</div>Chat</div><div class="blog_right"></div><div class="blog_content" id="chat_body"><div id="chat"></div></div><div class="blog_content">To add new messages please <a href="/login/" title="Login into ExtraTorrent.cc">Login</a> or <a href="/register/" title="Register now">Register</a> for FREE</div><script type="text/javascript">var interval = sec = 30;simpleUpdate();</script>
|
47
|
+
|
48
|
+
<div class="ads2" style="width:240px; overflow-x:hidden;">
|
49
|
+
<script type="text/javascript">
|
50
|
+
//<![CDATA[
|
51
|
+
epmads_key = "b92a9278ba6c115ed3d83cd3f04c579d";
|
52
|
+
epmads_channel = "";
|
53
|
+
epmads_code_format = "ads-sync.js";
|
54
|
+
epmads_ads_host = "//ecpmrocks.com";
|
55
|
+
epmads_click = "";
|
56
|
+
epmads_custom_params = {};
|
57
|
+
|
58
|
+
document.write("<script type='text\/javascript' src='"+(location.protocol == 'https:' ? 'https:' : 'http:') + "//ecpmrocks.com\/js/show_ads_epmads.js'><\/script>");
|
59
|
+
//]]>
|
60
|
+
</script>
|
61
|
+
</div>
|
62
|
+
<br />
|
63
|
+
<div class="ads2"><a target="_blank" href="http://torrentz.com" title="torrentz.com">torrentz.com</a></div>
|
64
|
+
<div class="ads2"><a target="_blank" href="http://seedpeer.com">SeedPeer</a></div>
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
</td>
|
69
|
+
<td width="100%" style="vertical-align:top; padding: 3px 5px 0px 10px;">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<div align="center"><a href="http://affiliate.trust.zone/ref.php?RefID=B-xrBSL-MDAxNDI5MjgwNTc1" title="Hide your activity" target="_blank"><img src="http://affiliate.trust.zone/images/b/trustzone_download_anonymously.gif" border="0" /></a></div>
|
74
|
+
|
75
|
+
|
76
|
+
<br />
|
77
|
+
|
78
|
+
|
79
|
+
<table width="100%" cellspacing="0" cellpadding="5" style="border: 1px #000 dashed;">
|
80
|
+
<tr><td><span style="padding: 0px 10px;">
|
81
|
+
<a href="/" title="ExtraTorrent.cc - The Biggest Bittorent System">ExtraTorrent.cc</a> > <b>Search for Torrents</b>
|
82
|
+
</span></td></tr></table>
|
83
|
+
<br /><br />
|
84
|
+
|
85
|
+
<h1>Search for Torrents</h1>
|
86
|
+
|
87
|
+
<br />
|
88
|
+
|
89
|
+
<div class="borderdark" style="padding: 15px; text-align: center;">
|
90
|
+
<form action="/search/" method="get">
|
91
|
+
<input type="hidden" name="new" value="1" />
|
92
|
+
<table border="0" cellspacing="1" cellpadding="3" align="center">
|
93
|
+
<tr>
|
94
|
+
<td style="text-align: right;">Search</td>
|
95
|
+
<td style="text-align: left;"><input type="text" name="search" class="stext" value="a pigeon sat on a branch reflecting on existence" style="width: 250px;" /></td>
|
96
|
+
</tr>
|
97
|
+
<tr>
|
98
|
+
<td style="text-align: right;">Category</td>
|
99
|
+
<td style="text-align: left;">
|
100
|
+
<select name="s_cat">
|
101
|
+
<option value="0">--- Any Category ---</option>
|
102
|
+
<option value="4" >Movies</option>
|
103
|
+
<option value="8" >TV</option>
|
104
|
+
<option value="5" >Music</option>
|
105
|
+
<option value="533" >Adult / Porn</option>
|
106
|
+
<option value="7" >Software</option>
|
107
|
+
<option value="3" >Games</option>
|
108
|
+
<option value="1" >Anime</option>
|
109
|
+
<option value="2" >Books</option>
|
110
|
+
<option value="6" >Pictures</option>
|
111
|
+
<option value="416" >Mobile</option>
|
112
|
+
<option value="9" >Other</option>
|
113
|
+
</select>
|
114
|
+
</td>
|
115
|
+
</tr>
|
116
|
+
<tr>
|
117
|
+
<td colspan="2"><input type="submit" value=" Search " /></td>
|
118
|
+
</tr>
|
119
|
+
</table>
|
120
|
+
</form>
|
121
|
+
</div>
|
122
|
+
|
123
|
+
|
124
|
+
<div style="padding:20px 0;">
|
125
|
+
<table width="100%" border="0">
|
126
|
+
<tr>
|
127
|
+
<td class="tabledata1" style="font-size: 16px; padding: 30px;">
|
128
|
+
<div style="font-size:20px; padding-bottom: 10px;"><strong>Safety Recommendation:</strong> Download Torrents Anonymously!</div>
|
129
|
+
<hr />
|
130
|
+
<div style="padding: 10px 0;">
|
131
|
+
Torrenting does not guarantee ANONYMITY! Your IP Address and online activity <a href="http://extratorrent.cc/article/4416/how+to+avoid+copyright+infringement+notices+from+isp+try+vpn.html" target="_blank" style="text-decoration:underline;">can be tracked by your ISP and Government Agencies!</a>
|
132
|
+
</div>
|
133
|
+
<div style="padding: 0 0 10px 0;">
|
134
|
+
<strong>ExtraTorrent</strong> strongly recommends using <a href="//affiliate.trust.zone/ref.php?RefID=B-3sGh6-MDAxNDM4NjAyOTg2" style="text-decoration:underline;" target="_blank" title="Try Trust.Zone VPN for FREE">Trust.Zone VPN</a> to anonymize your torrenting. Protect yourself with VPN - <a href="/article/4276/protect+yourself+with+vpn+while+torrenting+save+extratorrent.html" target="_blank" title="Save Extratorrent" style="text-decoration:underline;">Save ExtraTorrent</a>!
|
135
|
+
</div>
|
136
|
+
<hr />
|
137
|
+
<div style="padding:20px 0 0 0;">
|
138
|
+
<a href="//affiliate.trust.zone/ref.php?RefID=B-OSW8Y-MDAxNDM4NjA3MTY3" target="_blank" title="Try Trust.Zone VPN for FREE"><img src="http://static.extratorrent.cc/images/other/try_it2.gif" alt="Try Trust.Zone VPN for FREE" border="0" /></a>
|
139
|
+
</div>
|
140
|
+
</td>
|
141
|
+
</tr>
|
142
|
+
</table>
|
143
|
+
</div>
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
<h2>Search for torrents results:
|
149
|
+
<a href="/rss.xml?type=search&search=a+pigeon+sat+on+a+branch+reflecting+on+existence" title="RSS: Search 'a pigeon sat on a branch reflecting on existence' Torrents">
|
150
|
+
<img src="http://static.extratorrent.cc/images/rss.gif" height="14" width="32" border="0" alt="RSS: Search 'a pigeon sat on a branch reflecting on existence' Torrents" />
|
151
|
+
</a>
|
152
|
+
</h2>
|
153
|
+
total <b>2</b> torrents found
|
154
|
+
(watch for "a pigeon sat on a branch reflecting on existence" new coming torrents <a href="#" onclick="javascript: alert('Please login before use this feature!'); return false;" ><img src="http://static.extratorrent.cc/images/watch.gif" border="0" style="vertical-align: middle;" alt="watch for a pigeon sat on a branch reflecting on existence new coming torrents" title="watch for a pigeon sat on a branch reflecting on existence new coming torrents" /></a>)<br /><br />
|
155
|
+
|
156
|
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
157
|
+
<tr>
|
158
|
+
<td style="padding: 5px;">
|
159
|
+
|
160
|
+
</td>
|
161
|
+
<td align="right">
|
162
|
+
Torrents per page:
|
163
|
+
<select name="torr_cat" onchange="Change(this);" >
|
164
|
+
<option value="10" >10</option>
|
165
|
+
<option value="25" >25</option>
|
166
|
+
<option value="50" selected="selected">50</option>
|
167
|
+
<option value="100" >100</option>
|
168
|
+
</select>
|
169
|
+
</td>
|
170
|
+
</tr>
|
171
|
+
</table>
|
172
|
+
|
173
|
+
<script type="text/javascript">
|
174
|
+
function Change(el)
|
175
|
+
{
|
176
|
+
alert('You have no rights for this action!');
|
177
|
+
}
|
178
|
+
</script>
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
<br /><table class="tl"><thead><tr><th width="100%" colspan="3"><table><tr><td> </td><td width="60"> </td><td width="18"><a href="#" onclick="javascript: alert('Only for VIP members!'); return false;" title="Sort torrents by comments"><img src="http://static.extratorrent.cc/images/icon_comments.gif" alt="Sort" /></a></td></tr></table></th><th>Size <a href="#" onclick="javascript: alert('Only for VIP members!'); return false;" title="Sort torrents by size"><img src="http://static.extratorrent.cc/images/sort.gif" alt="Sort" /></a></th><th>S <a href="#" onclick="javascript: alert('Only for VIP members!'); return false;" title="Sort torrents by seeds"><img src="http://static.extratorrent.cc/images/sort.gif" alt="Sort" /></a></th><th>L <a href="#" onclick="javascript: alert('Only for VIP members!'); return false;" title="Sort torrents by leechers"><img src="http://static.extratorrent.cc/images/sort.gif" alt="Sort" /></a></th><th>Health</th></tr></thead><tr class="tlr"><td><a href="/torrent_download/4298193/A.Pigeon.Sat.on.a.Branch.Reflecting.on.Existence.2014.LiMiTED.BDRiP.X264-TASTE.torrent" title="Download A.Pigeon.Sat.on.a.Branch.Reflecting.on.Existence.2014.LiMiTED.BDRiP.X264-TASTE torrent"><img src="http://static.extratorrent.cc/images/icon_download3.gif" alt="Download" /></a></td><td><a href="/category/33/" title="Browse Comedy"><img src="http://static.extratorrent.cc/images/cat/4s.gif" alt="Browse" /></a></td><td class="tli"><a href="/torrent/4298193/A.Pigeon.Sat.on.a.Branch.Reflecting.on.Existence.2014.LiMiTED.BDRiP.X264-TASTE.html" title="view A.Pigeon.Sat.on.a.Branch.Reflecting.on.Existence.2014.LiMiTED.BDRiP.X264-TASTE torrent"><span class="highlight">A</span>.<span class="highlight">Pigeon</span>.<span class="highlight">Sat</span>.<span class="highlight">on</span>.<span class="highlight">a</span>.<span class="highlight">Branch</span>.<span class="highlight">Reflecting</span>.<span class="highlight">on</span>.<span class="highlight">Existence</span>.2014.LiMiTED.BDRiP.X264-T<span class="highlight">A</span>STE</a><span class="c_tor"> in <a href="/category/33/Comedy+Torrents.html" title="Browse Comedy">Comedy</a></span></td><td>404.85 MB</td><td class="sy">54</td><td class="ly">42</td><td><div class="r10"></div></td></tr><tr class="tlz"><td><a href="/torrent_download/4265416/A+Pigeon+Sat+on+a+Branch+Reflecting+on+Existence+%282014%29+720p+BRRip+900MB+-+MkvCage.torrent" title="Download A Pigeon Sat on a Branch Reflecting on Existence (2014) 720p BRRip 900MB - MkvCage torrent"><img src="http://static.extratorrent.cc/images/icon_download3.gif" alt="Download" /></a></td><td><a href="/category/33/" title="Browse Comedy"><img src="http://static.extratorrent.cc/images/cat/4s.gif" alt="Browse" /></a></td><td class="tli"><a href="/torrent/4265416/A+Pigeon+Sat+on+a+Branch+Reflecting+on+Existence+%282014%29+720p+BRRip+900MB+-+MkvCage.html" title="view A Pigeon Sat on a Branch Reflecting on Existence (2014) 720p BRRip 900MB - MkvCage torrent"><span class="highlight">A</span> <span class="highlight">Pigeon</span> <span class="highlight">Sat</span> <span class="highlight">on</span> <span class="highlight">a</span> <span class="highlight">Branch</span> <span class="highlight">Reflecting</span> <span class="highlight">on</span> <span class="highlight">Existence</span> (2014) 720p BRRip 900MB - MkvC<span class="highlight">a</span>ge</a><span class="c_tor"> in <a href="/category/33/Comedy+Torrents.html" title="Browse Comedy">Comedy</a></span></td><td>901.76 MB</td><td class="sy">377</td><td class="ly">67</td><td><div class="r10"></div></td></tr></table><br />
|
185
|
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
186
|
+
<tr>
|
187
|
+
<td style="padding: 5px;">
|
188
|
+
|
189
|
+
</td>
|
190
|
+
<td align="right">
|
191
|
+
Torrents per page:
|
192
|
+
<select name="torr_cat" onchange="Change(this);" >
|
193
|
+
<option value="10" >10</option>
|
194
|
+
<option value="25" >25</option>
|
195
|
+
<option value="50" selected="selected">50</option>
|
196
|
+
<option value="100" >100</option>
|
197
|
+
</select>
|
198
|
+
</td>
|
199
|
+
</tr>
|
200
|
+
</table>
|
201
|
+
|
202
|
+
|
203
|
+
<br />
|
204
|
+
<br /><h2>Recent Searches</h2><div class="borderdark" style="padding: 10px;"><a href="/search/?search=gotye" style="font-size: 14px;" title="gotye torrents download">gotye</a> <a href="/search/?search=Spy%202015" style="font-size: 16px;" title="Spy 2015 torrents download">Spy 2015</a> <a href="/search/?search=genisys" style="font-size: 10px;" title="genisys torrents download">genisys</a> <a href="/search/?search=lil%20herb" style="font-size: 9px;" title="lil herb torrents download">lil herb</a> <a href="/search/?search=movie" style="font-size: 8px;" title="movie torrents download">movie</a> <a href="/search/?search=empire%202015%20s01" style="font-size: 13px;" title="empire 2015 s01 torrents download">empire 2015 s01</a> <a href="/search/?search=orchestra%20piazza%20vittorio" style="font-size: 10px;" title="orchestra piazza vittorio torrents download">orchestra piazza vittorio</a> <a href="/search/?search=Justin" style="font-size: 9px;" title="Justin torrents download">Justin</a> <a href="/search/?search=civil%203d" style="font-size: 10px;" title="civil 3d torrents download">civil 3d</a> <a href="/search/?search=regina%20rizzi" style="font-size: 10px;" title="regina rizzi torrents download">regina rizzi</a> <a href="/search/?search=THE%20SEVENTH%20SON" style="font-size: 11px;" title="THE SEVENTH SON torrents download">THE SEVENTH SON</a> <a href="/search/?search=The%20Evil%20Gene%20%282015%29" style="font-size: 9px;" title="The Evil Gene (2015) torrents download">The Evil Gene (2015)</a> <a href="/search/?search=Terminator%20Genisys" style="font-size: 9px;" title="Terminator Genisys torrents download">Terminator Genisys</a> <a href="/search/?search=sex" style="font-size: 11px;" title="sex torrents download">sex</a> <a href="/search/?search=software" style="font-size: 15px;" title="software torrents download">software</a> <a href="/search/?search=nightcore" style="font-size: 8px;" title="nightcore torrents download">nightcore</a> <a href="/search/?search=3d" style="font-size: 14px;" title="3d torrents download">3d</a> <a href="/search/?search=gandhi" style="font-size: 8px;" title="gandhi torrents download">gandhi</a> <a href="/search/?search=Darwin%20%282015%29" style="font-size: 9px;" title="Darwin (2015) torrents download">Darwin (2015)</a> <a href="/search/?search=fresh%20of%20the%20boat" style="font-size: 11px;" title="fresh of the boat torrents download">fresh of the boat</a> <a href="/search/?search=office%202016" style="font-size: 12px;" title="office 2016 torrents download">office 2016</a> <a href="/search/?search=terminator%20genisys%20dual" style="font-size: 13px;" title="terminator genisys dual torrents download">terminator genisys dual</a> <a href="/search/?search=lil%20wayne%20leather%20so%20soft%20dirty%20version" style="font-size: 8px;" title="lil wayne leather so soft dirty version torrents download">lil wayne leather so soft dirty version</a> <a href="/search/?search=2015%20full%20movies" style="font-size: 15px;" title="2015 full movies torrents download">2015 full movies</a> <a href="/search/?search=Continuum%20S03E14%20HDTV" style="font-size: 14px;" title="Continuum S03E14 HDTV torrents download">Continuum S03E14 HDTV</a> <a href="/search/?search=music" style="font-size: 10px;" title="music torrents download">music</a> <a href="/search/?search=brandi%20love" style="font-size: 16px;" title="brandi love torrents download">brandi love</a> <a href="/search/?search=transporter" style="font-size: 14px;" title="transporter torrents download">transporter</a> <a href="/search/?search=YIFY" style="font-size: 15px;" title="YIFY torrents download">YIFY</a> <a href="/search/?search=mia%20khalifa" style="font-size: 10px;" title="mia khalifa torrents download">mia khalifa</a> <a href="/search/?search=adult" style="font-size: 9px;" title="adult torrents download">adult</a> <a href="/search/?search=anime" style="font-size: 13px;" title="anime torrents download">anime</a> <a href="/search/?search=DDR" style="font-size: 10px;" title="DDR torrents download">DDR</a> <a href="/search/?search=claudia%20para%20que%20vivis" style="font-size: 12px;" title="claudia para que vivis torrents download">claudia para que vivis</a> <a href="/search/?search=Six%20Days%20of%20War%20Robert%20Whitfield" style="font-size: 15px;" title="Six Days of War Robert Whitfield torrents download">Six Days of War Robert Whitfield</a> <a href="/search/?search=Deceptive%20Hearts%20%282015%29" style="font-size: 10px;" title="Deceptive Hearts (2015) torrents download">Deceptive Hearts (2015)</a> <a href="/search/?search=glee%20complete%20season%205" style="font-size: 9px;" title="glee complete season 5 torrents download">glee complete season 5</a> <a href="/search/?search=monument%20valley" style="font-size: 8px;" title="monument valley torrents download">monument valley</a> <a href="/search/?search=ETRG" style="font-size: 11px;" title="ETRG torrents download">ETRG</a> <a href="/search/?search=2015" style="font-size: 11px;" title="2015 torrents download">2015</a> <a href="/search/?search=tranformers%20ega%20of%20extinction" style="font-size: 10px;" title="tranformers ega of extinction torrents download">tranformers ega of extinction</a> <a href="/search/?search=taylor%20swift%20shake%20it%20off%20remix" style="font-size: 15px;" title="taylor swift shake it off remix torrents download">taylor swift shake it off remix</a> <a href="/search/?search=Amapola%20%282014%29" style="font-size: 13px;" title="Amapola (2014) torrents download">Amapola (2014)</a> <a href="/search/?search=terminator" style="font-size: 12px;" title="terminator torrents download">terminator</a> <a href="/search/?search=shutter%20island%20720p" style="font-size: 9px;" title="shutter island 720p torrents download">shutter island 720p</a> <a href="/search/?search=aaron%20pritchett" style="font-size: 11px;" title="aaron pritchett torrents download">aaron pritchett</a> <a href="/search/?search=ETTV" style="font-size: 12px;" title="ETTV torrents download">ETTV</a> <a href="/search/?search=porn" style="font-size: 16px;" title="porn torrents download">porn</a> <a href="/search/?search=friends%20season%209" style="font-size: 12px;" title="friends season 9 torrents download">friends season 9</a> <a href="/search/?search=dvd" style="font-size: 14px;" title="dvd torrents download">dvd</a> <a href="/search/?search=aleska%20diamond" style="font-size: 10px;" title="aleska diamond torrents download">aleska diamond</a> <a href="/search/?search=playboy%202015" style="font-size: 8px;" title="playboy 2015 torrents download">playboy 2015</a> <a href="/search/?search=sunny%20leone" style="font-size: 11px;" title="sunny leone torrents download">sunny leone</a> <a href="/search/?search=walking%20dead%2048" style="font-size: 10px;" title="walking dead 48 torrents download">walking dead 48</a> <a href="/search/?search=putain" style="font-size: 15px;" title="putain torrents download">putain</a> <a href="/search/?search=the%20visit%202015" style="font-size: 9px;" title="the visit 2015 torrents download">the visit 2015</a> <a href="/search/?search=In%20Limbo%20%282015%29" style="font-size: 12px;" title="In Limbo (2015) torrents download">In Limbo (2015)</a> <a href="/search/?search=idot%20boys" style="font-size: 14px;" title="idot boys torrents download">idot boys</a> <a href="/search/?search=Insidious.Chapter%202" style="font-size: 15px;" title="Insidious.Chapter 2 torrents download">Insidious.Chapter 2</a> <a href="/search/?search=Ministry%20Of%20Sound%3A%20Mash%20Up%20Mix%202015" style="font-size: 11px;" title="Ministry Of Sound: Mash Up Mix 2015 torrents download">Ministry Of Sound: Mash Up Mix 2015</a> <a href="/search/?search=Run%20C.D.%20Reiss" style="font-size: 8px;" title="Run C.D. Reiss torrents download">Run C.D. Reiss</a> <a href="/search/?search=Phantom" style="font-size: 8px;" title="Phantom torrents download">Phantom</a> </div><br />
|
205
|
+
|
206
|
+
<br />
|
207
|
+
|
208
|
+
|
209
|
+
<div align="center">
|
210
|
+
<!-- MComposite Start -->
|
211
|
+
<div id="MarketGidComposite536"><center><a href="http://mgid.com" target="_blank">Loading...</a>
|
212
|
+
</center></div>
|
213
|
+
<script type="text/javascript">
|
214
|
+
var MGCD = new Date();
|
215
|
+
document.write('<scr'
|
216
|
+
+'ipt type="text/javascript"'
|
217
|
+
+' src="http://jsc.dt07.net/e/x/extratorrent.com.536.js?t='
|
218
|
+
+MGCD.getYear()
|
219
|
+
+MGCD.getMonth()
|
220
|
+
+MGCD.getDay()
|
221
|
+
+MGCD.getHours()
|
222
|
+
+'" charset="utf-8"></scr'+'ipt>');
|
223
|
+
</script>
|
224
|
+
<!-- MComposite End -->
|
225
|
+
</div>
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
<script type='text/javascript' src='http://pl105715.puhtml.com/0f/8b/73/0f8b73d477b554394e23077935e1fff4.js'></script>
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
|
238
|
+
<br />
|
239
|
+
|
240
|
+
|
241
|
+
</td>
|
242
|
+
</tr>
|
243
|
+
</table>
|
244
|
+
</td>
|
245
|
+
</tr>
|
246
|
+
<tr>
|
247
|
+
<td class="copyrights">
|
248
|
+
<hr />
|
249
|
+
<a href="/" title="ExtraTorrent.cc Home Page">Home</a> -
|
250
|
+
<a href="/category/" title="Browse ExtraTorrent.cc Torrents">Browse Torrents</a> -
|
251
|
+
<a href="/upload/" title="Upload Torrent">Upload Torrent</a> -
|
252
|
+
<a href="/stat/" title="ExtraTorrent.cc stat">Stat</a> -
|
253
|
+
<a href="/forum/" title="ExtraTorrent.cc Forum">Forum</a> -
|
254
|
+
<a href="/faq/" title="ExtraTorrent.cc FAQ">FAQ</a> -
|
255
|
+
<a href="/s/" title="ExtraTorrent.cc sitemap">Torrent sitemap</a> -
|
256
|
+
<a href="/login/" title="Login into ExtraTorrent.cc">Login</a><br />
|
257
|
+
ExtraTorrent.cc is in compliance with <a href="/copyrights/" title="Copyrights of ExtraTorrent.cc">copyrights</a><br />
|
258
|
+
<b><span class="error">BitCoin:</span> 1XeH1kKXWYbzZcFHokGiZ4d3MWW5WyXzU</b><br />
|
259
|
+
Can't load <a href="http://extratorrent.cc">ExtraTorrent</a>? Try our official mirrors: <a href="http://etmirror.com">etmirror.com</a> - <a href="http://etproxy.com">etproxy.com</a> - <a href="extratorrentonline.com">extratorrentonline.com</a> - <a href="extratorrentlive.com">extratorrentlive.com</a><br />
|
260
|
+
2006-2015 ExtraTorrent.cc
|
261
|
+
</td>
|
262
|
+
</tr>
|
263
|
+
</table>
|
264
|
+
|
265
|
+
|
266
|
+
<script type="text/javascript">
|
267
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
268
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
269
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
270
|
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
271
|
+
|
272
|
+
ga('create', 'UA-3841675-6', 'extratorrent.cc');
|
273
|
+
ga('send', 'pageview');
|
274
|
+
</script>
|
275
|
+
|
276
|
+
|
277
|
+
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
|
278
|
+
|
279
|
+
</body>
|
280
|
+
|
281
|
+
</html>
|
@@ -0,0 +1,456 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
<!DOCTYPE html>
|
4
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
5
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
6
|
+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
7
|
+
<!--[if IE 9]> <html class="no-js lt-ie10"> <![endif]-->
|
8
|
+
<!--[if gt IE 8]><!--><html class="no-js"> <!--<![endif]-->
|
9
|
+
<head>
|
10
|
+
<meta charset="utf-8">
|
11
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge"><script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"VwcFUlZWGwUJXFdVAwE="};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=s(e),f=c.length,u=i(a,o,r),d=0;f>d;d++)c[d].apply(u,n);return u}function a(t,e){f[t]=s(t).concat(e)}function s(t){return f[t]||[]}function c(){return n(e)}var f={};return{on:a,emit:e,create:c,listeners:s,_events:f}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],3:[function(t){function e(t){try{i.console&&console.log(t)}catch(e){}}var n,r=t("ee"),o=t(1),i={};try{n=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(i.console=!0,-1!==n.indexOf("dev")&&(i.dev=!0),-1!==n.indexOf("nr_dev")&&(i.nrDev=!0))}catch(a){}i.nrDev&&r.on("internal-error",function(t){e(t.stack)}),i.dev&&r.on("fn-err",function(t,n,r){e(r.stack)}),i.dev&&(e("NR AGENT IN DEVELOPMENT MODE"),e("flags: "+o(i,function(t){return t}).join(", ")))},{1:24,ee:"QJf3ax"}],4:[function(t){function e(t,e,n,i,s){try{c?c-=1:r("err",[s||new UncaughtException(t,e,n)])}catch(f){try{r("ierr",[f,(new Date).getTime(),!0])}catch(u){}}return"function"==typeof a?a.apply(this,o(arguments)):!1}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function n(t){r("err",[t,(new Date).getTime()])}var r=t("handle"),o=t(6),i=t("ee"),a=window.onerror,s=!1,c=0;t("loader").features.err=!0,t(5),window.onerror=e;try{throw new Error}catch(f){"stack"in f&&(t(1),t(2),"addEventListener"in window&&t(3),window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)&&t(4),s=!0)}i.on("fn-start",function(){s&&(c+=1)}),i.on("fn-err",function(t,e,r){s&&(this.thrown=!0,n(r))}),i.on("fn-end",function(){s&&!this.thrown&&c>0&&(c-=1)}),i.on("internal-error",function(t){r("ierr",[t,(new Date).getTime(),!0])})},{1:11,2:10,3:8,4:12,5:3,6:25,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],5:[function(t){if(window.addEventListener){var e=t("handle"),n=t("ee");t(1),window.addEventListener("click",function(){e("inc",["ck"])},!1),window.addEventListener("hashchange",function(){e("inc",["hc"])},!1),n.on("pushState-start",function(){e("inc",["ps"])})}},{1:9,ee:"QJf3ax",handle:"D5DuLP"}],6:[function(t){t("loader").features.ins=!0},{loader:"G9z0Bl"}],7:[function(t){function e(){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var n=t("ee"),r=t("handle"),o=t(1),i=t(2);t("loader").features.stn=!0,t(3),n.on("fn-start",function(t){var e=t[0];e instanceof Event&&(this.bstStart=Date.now())}),n.on("fn-end",function(t,e){var n=t[0];n instanceof Event&&r("bst",[n,e,this.bstStart,Date.now()])}),o.on("fn-start",function(t,e,n){this.bstStart=Date.now(),this.bstType=n}),o.on("fn-end",function(t,e){r("bstTimer",[e,this.bstStart,Date.now(),this.bstType])}),i.on("fn-start",function(){this.bstStart=Date.now()}),i.on("fn-end",function(t,e){r("bstTimer",[e,this.bstStart,Date.now(),"requestAnimationFrame"])}),n.on("pushState-start",function(){this.time=Date.now(),this.startPath=location.pathname+location.hash}),n.on("pushState-end",function(){r("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),"addEventListener"in window.performance&&(window.performance.addEventListener("webkitresourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.webkitClearResourceTimings()},!1),window.performance.addEventListener("resourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.clearResourceTimings()},!1)),document.addEventListener("scroll",e,!1),document.addEventListener("keypress",e,!1),document.addEventListener("click",e,!1)}},{1:11,2:10,3:9,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],8:[function(t,e){function n(t){i.inPlace(t,["addEventListener","removeEventListener"],"-",r)}function r(t){return t[1]}var o=t("ee").create(),i=t(1)(o),a=t("gos");if(e.exports=o,n(window),"getPrototypeOf"in Object){for(var s=document;s&&!s.hasOwnProperty("addEventListener");)s=Object.getPrototypeOf(s);s&&n(s);for(var c=XMLHttpRequest.prototype;c&&!c.hasOwnProperty("addEventListener");)c=Object.getPrototypeOf(c);c&&n(c)}else XMLHttpRequest.prototype.hasOwnProperty("addEventListener")&&n(XMLHttpRequest.prototype);o.on("addEventListener-start",function(t){if(t[1]){var e=t[1];"function"==typeof e?this.wrapped=t[1]=a(e,"nr@wrapped",function(){return i(e,"fn-",null,e.name||"anonymous")}):"function"==typeof e.handleEvent&&i.inPlace(e,["handleEvent"],"fn-")}}),o.on("removeEventListener-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{1:26,ee:"QJf3ax",gos:"7eSDFh"}],9:[function(t,e){var n=t("ee").create(),r=t(1)(n);e.exports=n,r.inPlace(window.history,["pushState"],"-")},{1:26,ee:"QJf3ax"}],10:[function(t,e){var n=t("ee").create(),r=t(1)(n);e.exports=n,r.inPlace(window,["requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame"],"raf-"),n.on("raf-start",function(t){t[0]=r(t[0],"fn-")})},{1:26,ee:"QJf3ax"}],11:[function(t,e){function n(t,e,n){t[0]=o(t[0],"fn-",null,n)}var r=t("ee").create(),o=t(1)(r);e.exports=r,o.inPlace(window,["setTimeout","setInterval","setImmediate"],"setTimer-"),r.on("setTimer-start",n)},{1:26,ee:"QJf3ax"}],12:[function(t,e){function n(){f.inPlace(this,p,"fn-")}function r(t,e){f.inPlace(e,["onreadystatechange"],"fn-")}function o(t,e){return e}function i(t,e){for(var n in t)e[n]=t[n];return e}var a=t("ee").create(),s=t(1),c=t(2),f=c(a),u=c(s),d=window.XMLHttpRequest,p=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"];e.exports=a,window.XMLHttpRequest=function(t){var e=new d(t);try{a.emit("new-xhr",[],e),u.inPlace(e,["addEventListener","removeEventListener"],"-",o),e.addEventListener("readystatechange",n,!1)}catch(r){try{a.emit("internal-error",[r])}catch(i){}}return e},i(d,XMLHttpRequest),XMLHttpRequest.prototype=d.prototype,f.inPlace(XMLHttpRequest.prototype,["open","send"],"-xhr-",o),a.on("send-xhr-start",r),a.on("open-xhr-start",r)},{1:8,2:26,ee:"QJf3ax"}],13:[function(t){function e(t){var e=this.params,r=this.metrics;if(!this.ended){this.ended=!0;for(var i=0;c>i;i++)t.removeEventListener(s[i],this.listener,!1);if(!e.aborted){if(r.duration=(new Date).getTime()-this.startTime,4===t.readyState){e.status=t.status;var a=t.responseType,f="arraybuffer"===a||"blob"===a||"json"===a?t.response:t.responseText,u=n(f);if(u&&(r.rxSize=u),this.sameOrigin){var d=t.getResponseHeader("X-NewRelic-App-Data");d&&(e.cat=d.split(", ").pop())}}else e.status=0;r.cbTime=this.cbTime,o("xhr",[e,r,this.startTime])}}}function n(t){if("string"==typeof t&&t.length)return t.length;if("object"!=typeof t)return void 0;if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if("undefined"!=typeof FormData&&t instanceof FormData)return void 0;try{return JSON.stringify(t).length}catch(e){return void 0}}function r(t,e){var n=i(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)){t("loader").features.xhr=!0;var o=t("handle"),i=t(2),a=t("ee"),s=["load","error","abort","timeout"],c=s.length,f=t(1);t(4),t(3),a.on("new-xhr",function(){this.totalCbs=0,this.called=0,this.cbTime=0,this.end=e,this.ended=!1,this.xhrGuids={}}),a.on("open-xhr-start",function(t){this.params={method:t[0]},r(this,t[1]),this.metrics={}}),a.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),a.on("send-xhr-start",function(t,e){var r=this.metrics,o=t[0],i=this;if(r&&o){var f=n(o);f&&(r.txSize=f)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof e.onload))&&i.end(e)}catch(n){try{a.emit("internal-error",[n])}catch(r){}}};for(var u=0;c>u;u++)e.addEventListener(s[u],this.listener,!1)}),a.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),a.on("xhr-load-added",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),a.on("xhr-load-removed",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),a.on("addEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-added",[t[1],t[2]],e)}),a.on("removeEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-removed",[t[1],t[2]],e)}),a.on("fn-start",function(t,e,n){e instanceof XMLHttpRequest&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),a.on("fn-end",function(t,e){this.xhrCbStart&&a.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{1:"XL7HBI",2:14,3:12,4:8,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],14:[function(t,e){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");return!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname),r.sameOrigin=!e.hostname||e.hostname===document.domain&&e.port===n.port&&e.protocol===n.protocol,r}},{}],15:[function(t,e){function n(t){return function(){r(t,[(new Date).getTime()].concat(i(arguments)))}}var r=t("handle"),o=t(1),i=t(2);"undefined"==typeof window.newrelic&&(newrelic=window.NREUM);var a=["setPageViewName","addPageAction","setCustomAttribute","finished","addToTrace","inlineHit","noticeError"];o(a,function(t,e){window.NREUM[e]=n("api-"+e)}),e.exports=window.NREUM},{1:24,2:25,handle:"D5DuLP"}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):void(r.q&&(r.q[t]||(r.q[t]=[]),r.q[t].push(e)))}var r=t("ee").create();e.exports=n,n.ee=r,r.q={}},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=p.info=NREUM.info,e=f.getElementsByTagName("script")[0];if(t&&t.licenseKey&&t.applicationID&&e){s(d,function(e,n){e in t||(t[e]=n)});var n="https"===u.split(":")[0]||t.sslForHttp;p.proto=n?"https://":"http://",a("mark",["onload",i()]);var r=f.createElement("script");r.src=p.proto+t.agent,e.parentNode.insertBefore(r,e)}}function r(){"complete"===f.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),s=t(1),c=window,f=c.document;t(2);var u=(""+location).split("?")[0],d={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-741.min.js"},p=e.exports={offset:i(),origin:u,features:{}};f.addEventListener?(f.addEventListener("DOMContentLoaded",o,!1),c.addEventListener("load",n,!1)):(f.attachEvent("onreadystatechange",r),c.attachEvent("onload",n)),a("mark",["firstbyte",i()])},{1:24,2:15,handle:"D5DuLP"}],24:[function(t,e){function n(t,e){var n=[],o="",i=0;for(o in t)r.call(t,o)&&(n[i]=e(o,t[o]),i+=1);return n}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],25:[function(t,e){function n(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(0>o?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=n},{}],26:[function(t,e){function n(t){return!(t&&"function"==typeof t&&t.apply&&!t[i])}var r=t("ee"),o=t(1),i="nr@wrapper",a=Object.prototype.hasOwnProperty;e.exports=function(t){function e(t,e,r,a){function nrWrapper(){var n,i,s,f;try{i=this,n=o(arguments),s=r&&r(n,i)||{}}catch(d){u([d,"",[n,i,a],s])}c(e+"start",[n,i,a],s);try{return f=t.apply(i,n)}catch(p){throw c(e+"err",[n,i,p],s),p}finally{c(e+"end",[n,i,f],s)}}return n(t)?t:(e||(e=""),nrWrapper[i]=!0,f(t,nrWrapper),nrWrapper)}function s(t,r,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<r.length;c++)s=r[c],a=t[s],n(a)||(t[s]=e(a,f?s+o:o,i,s))}function c(e,n,r){try{t.emit(e,n,r)}catch(o){u([o,e,n,r])}}function f(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){u([r])}for(var o in t)a.call(t,o)&&(e[o]=t[o]);return e}function u(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=r),e.inPlace=s,e.flag=i,e}},{1:25,ee:"QJf3ax"}]},{},["G9z0Bl",4,13,7,6,5]);</script>
|
12
|
+
<title>A Pigeon Sat On A Branch Reflecting On Existence Torrents Search Results | Isohunt Torrent Search Engine</title>
|
13
|
+
<meta name="csrf-param" content="_csrf">
|
14
|
+
<meta name="csrf-token" content="TFEtTmh0bHJ5Dno/WjUVECgpHyJFRhwgGjBCAyNMQR98Y2N6BTU7KA==">
|
15
|
+
<meta property="og:title" content="isoHunt - BitTorrent & P2P torrent search engine">
|
16
|
+
<meta property="og:image" content="https://static.isohunt.to/img/logo_square.jpg">
|
17
|
+
<meta name="title" content="isoHunt - BitTorrent & P2P torrent search engine">
|
18
|
+
<meta name="msvalidate.01" content="9E2D3AAECD38E0A3C883BA21EC87FFDA" />
|
19
|
+
<meta name="viewport" content="width=device-width, initial-scale=0.75">
|
20
|
+
<meta name="Adtomatik-tag" content="MjQ1NQ=="/>
|
21
|
+
|
22
|
+
<link rel="image_src" href="https://static.isohunt.to/img/logo_square.jpg">
|
23
|
+
<link rel="shortcut icon" href="/favicon.ico">
|
24
|
+
|
25
|
+
<meta name="description" content="Bit Torrent search engine, with an awesome P2P community sharing comments and ratings in discovering new media.">
|
26
|
+
<meta name="keywords" content="torrent, torrents, bittorrent, irc, creative commons, public domain, files, search, engine, video, audio, music, software, games, books">
|
27
|
+
<link href="https://static.isohunt.to/assets/css/main.min.css?v=1441714351" rel="stylesheet">
|
28
|
+
<!--[if lt IE 9]>
|
29
|
+
<script src="https://static.isohunt.to/assets/js/less-ie9.js?v=1441714353"></script>
|
30
|
+
<![endif]-->
|
31
|
+
<!--[if lt IE 10]>
|
32
|
+
<script src="https://static.isohunt.to/assets/js/less-ie10.js?v=1441714355"></script>
|
33
|
+
<![endif]-->
|
34
|
+
<script src="https://static.isohunt.to/assets/js/main.min.js?v=1441714349"></script> </head>
|
35
|
+
<body>
|
36
|
+
|
37
|
+
<div id="message-box"></div> <div class="wrap">
|
38
|
+
<!--Header-->
|
39
|
+
<header>
|
40
|
+
|
41
|
+
|
42
|
+
<nav class="navbar navbar-tiny" role="navigation">
|
43
|
+
<div class="container-fluid">
|
44
|
+
|
45
|
+
<div class="navbar-header">
|
46
|
+
<div class="visible-xs-block logo-nav-small">
|
47
|
+
<a href="/" title="Home page">
|
48
|
+
<i title="isoHunt Logo">
|
49
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
50
|
+
viewBox="0 0 200 52" enable-background="new 0 0 200 52" xml:space="preserve">
|
51
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.163,8.49l-5.229,24.408c0,0,1.046,9.551,7.32,9.551
|
52
|
+
c6.274,0,17.776,0,17.776,0l1.046-6.368h-15.685c0,0-3.312-0.531-2.091-8.49c1.22-7.959,4.183-19.102,4.183-19.102H112.163z"/>
|
53
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M139.351,8.49l-4.183,21.225c0,0-6.448-0.708-6.274-4.245 c0.174-3.537,3.137-16.979,3.137-16.979H139.351z"/>
|
54
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.534,8.49l-4.183,20.164c0,0-2.38,7.428,5.229,7.428
|
55
|
+
c0.739,0,4.183-21.225,4.183-21.225l9.411,1.062c0,0,4.009,0.354,2.091,8.49c-1.917,8.136-3.137,14.857-3.137,14.857 s1.394,4.245,6.274,4.245c0.697,0,4.183-24.408,4.183-24.408s0.349-10.612-8.365-10.612S143.534,8.49,143.534,8.49z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M172.813,8.49l-1.046,6.367h26.142L200,8.49H172.813z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M170.721,22.286l-2.091,11.673c0,0-0.418,8.49,8.365,8.49s9.411,0,9.411,0 l2.091-6.368h-9.411c0,0-4.601-0.849-3.137-6.367c1.464-5.519,2.092-7.429,2.092-7.429H170.721z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M78.702,15.918l-6.274,31.836c0,0-0.418,4.245,5.228,4.245 c0.836,0,6.274-23.347,6.274-23.347h12.548l-1.045,7.428c0,0,6.064,0.212,7.319-4.245C104.007,27.379,109.026,0,109.026,0h-6.274 l-5.228,22.286H84.976l1.046-6.367H78.702z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.824,8.49L5.504,43.51c0,0-6.971,0.354-5.229-8.49
|
56
|
+
C2.019,26.177,5.504,8.49,5.504,8.49H12.824z"/>
|
57
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.194,14.857H15.961c0,0,1.917-6.367,7.32-6.367s21.959,0,21.959,0
|
58
|
+
L44.194,14.857z"/>
|
59
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.103,22.286c0,0-2.44,20.164-14.64,20.164s-16.731,0-16.731,0l2.092-6.368
|
60
|
+
h15.685c0,0,5.228-1.934,5.228-7.428c0-0.708-16.73,0-16.73,0s-2.091,0.884-2.091-6.368C14.916,22.109,42.103,22.286,42.103,22.286z
|
61
|
+
"/>
|
62
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.245,14.857c0,0-2.266,21.225-8.365,21.225s-9.411,0-9.411,0l-8.365,7.429
|
63
|
+
h16.73c0,0,9.585-3.36,11.503-10.612c1.917-7.251,5.228-24.408,5.228-24.408H57.788c-0.178-0.001-7.421-0.055-9.967,9.547
|
64
|
+
c-1.686,6.36-5.718,25.474-5.718,25.474l8.365-7.429l3.137-16.979c0,0,1.307-4.112,5.228-4.245
|
65
|
+
C62.755,14.725,68.245,14.857,68.245,14.857z"/>
|
66
|
+
</svg> </i>
|
67
|
+
<!--[if IE 8]><img src="https://static.isohunt.to/img/logo.gif" class="img-responsive" alt="isoHunt Logo" width="195" height="50" /><![endif]-->
|
68
|
+
</a>
|
69
|
+
</div>
|
70
|
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
|
71
|
+
<span class="sr-only">Toggle navigation</span>
|
72
|
+
<span class="icon-bar"></span>
|
73
|
+
<span class="icon-bar"></span>
|
74
|
+
<span class="icon-bar"></span>
|
75
|
+
</button>
|
76
|
+
</div>
|
77
|
+
|
78
|
+
<div class="collapse navbar-collapse" id="navbar-collapse">
|
79
|
+
|
80
|
+
<ul id="upper-nav" class="nav navbar-nav navbar-left"><li class="hidden-xs"><a title="isohunt.to" href="/"><span class=" glyphicon glyphicon-home"></span></a></li>
|
81
|
+
<li class="dropdown"><a title="Browse all torrents by category" class="dropdown-toggle text-warning" data-toggle="dropdown" href="/torrents/">Torrents<span class="caret ml-h2"></span></a>
|
82
|
+
<ul class='dropdown-menu latest' role='menu'>
|
83
|
+
<li><a href="/torrents/?iht=1&age=0" title="anime">Anime torrents</a></li>
|
84
|
+
<li><a href="/torrents/?iht=2&age=0" title="software">Software torrents</a></li>
|
85
|
+
<li><a href="/torrents/?iht=3&age=0" title="games">Games torrents</a></li>
|
86
|
+
<li><a href="/torrents/?iht=4&age=0" title="adult">Adult torrents</a></li>
|
87
|
+
<li><a href="/torrents/?iht=5&age=0" title="movies">Movies torrents</a></li>
|
88
|
+
<li><a href="/torrents/?iht=6&age=0" title="music">Music torrents</a></li>
|
89
|
+
<li><a href="/torrents/?iht=7&age=0" title="other">Other torrents</a></li>
|
90
|
+
<li><a href="/torrents/?iht=8&age=0" title="seriestv">Series & TV torrents</a></li>
|
91
|
+
<li><a href="/torrents/?iht=9&age=0" title="books">Books torrents</a></li>
|
92
|
+
</ul>
|
93
|
+
</li>
|
94
|
+
<li class="dropdown"><a title="Realtime" class="dropdown-toggle" data-toggle="dropdown" href="#">Latest<span class="caret ml-h2"></span></a>
|
95
|
+
<ul class='dropdown-menu latest' role='menu'>
|
96
|
+
<li><a title="Last 60 files indexed" href="/latest.php">Torrents</a></li>
|
97
|
+
<li><a title="Last torrents uploaded by trusted releasers" href="/releases.php">Releases</a></li>
|
98
|
+
<li><a href="/statistic/hotSearches">Searches</a></li>
|
99
|
+
<li><a href="/statistic/hot/torrents">Hot Torrents</a></li>
|
100
|
+
</ul>
|
101
|
+
</li>
|
102
|
+
<li><a href="/faq">FAQ</a></li>
|
103
|
+
<li class=" link-warning"><a href="/charts"><span class="glyphicon glyphicon-fire mr-h4"></span>Movies charts</a></li>
|
104
|
+
<li><a href="https://forum.isohunt.to">Forum</a></li>
|
105
|
+
<li><a rel="nofollow" href="/contact-us">Contacts</a></li></ul> <ul class="nav navbar-nav navbar-left">
|
106
|
+
<li class="link-info">
|
107
|
+
<a href="http://isoplex.isohunt.to/" target="_blank" rel="nofollow" id="sign_up">
|
108
|
+
<span class="glyphicon glyphicon-play-circle mr-h4"></span>Stream Movie
|
109
|
+
</a>
|
110
|
+
</li>
|
111
|
+
</ul>
|
112
|
+
<ul class="nav navbar-nav navbar-right">
|
113
|
+
<li>
|
114
|
+
<a href="/torrents/upload" rel="nofollow" id="upload">
|
115
|
+
<span class="glyphicon glyphicon-upload mr-h4"></span>Upload torrent
|
116
|
+
</a>
|
117
|
+
</li>
|
118
|
+
<li class="link-success">
|
119
|
+
<a href="/profile/register" rel="nofollow" id="sign_up">
|
120
|
+
<span class="glyphicon glyphicon-check mr-h4"></span>Sign up
|
121
|
+
</a>
|
122
|
+
</li>
|
123
|
+
<li>
|
124
|
+
<a href="/profile/login" rel="nofollow" id="login">
|
125
|
+
<span class="glyphicon glyphicon-user mr-h4"></span> Log in
|
126
|
+
</a>
|
127
|
+
</li>
|
128
|
+
</ul>
|
129
|
+
</div>
|
130
|
+
</div>
|
131
|
+
</nav>
|
132
|
+
<div class="container-fluid">
|
133
|
+
<div class="row header-center">
|
134
|
+
<form name="ihSearch" action="/torrents/" class="col-md-5 col-sm-6 col-xs-8 suggest-wrap">
|
135
|
+
<div class="input-group input-query white-inputs">
|
136
|
+
|
137
|
+
<input name="ihq" id="ihq" class="form-control" type="text" maxlength="100" placeholder="Search torrents"
|
138
|
+
accesskey="s" tabindex="1" value="a pigeon sat on a branch reflecting on existence"
|
139
|
+
x-webkit-speech="" speech="" autocomplete="off" role="textbox">
|
140
|
+
|
141
|
+
<!-- suggest -->
|
142
|
+
<div class="search-sugestion" id="ihq-suggest" style="display:none;"></div>
|
143
|
+
<!-- /suggest -->
|
144
|
+
|
145
|
+
<span class="input-group-btn">
|
146
|
+
<input type="submit" tabindex="2" id="searchBox" value="Search" class="btn btn-default">
|
147
|
+
</span>
|
148
|
+
|
149
|
+
|
150
|
+
</div>
|
151
|
+
</form>
|
152
|
+
<div class="col-md-3 col-sm-3 col-xs-4 header-adv-search">
|
153
|
+
<a href="/torrents/advancedSearch" rel="nofollow" id="adv_search">Advanced search</a>
|
154
|
+
<a href="/help/search" rel="nofollow" class="opacity-animated"><span class="glyphicon glyphicon-question-sign"></span></a>
|
155
|
+
</div>
|
156
|
+
<div class="col-md-4 col-sm-3 hidden-xs text-right logo-nav">
|
157
|
+
<a href="/" title="Home page">
|
158
|
+
<i title="isoHunt Logo">
|
159
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
160
|
+
viewBox="0 0 200 52" enable-background="new 0 0 200 52" xml:space="preserve">
|
161
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.163,8.49l-5.229,24.408c0,0,1.046,9.551,7.32,9.551
|
162
|
+
c6.274,0,17.776,0,17.776,0l1.046-6.368h-15.685c0,0-3.312-0.531-2.091-8.49c1.22-7.959,4.183-19.102,4.183-19.102H112.163z"/>
|
163
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M139.351,8.49l-4.183,21.225c0,0-6.448-0.708-6.274-4.245 c0.174-3.537,3.137-16.979,3.137-16.979H139.351z"/>
|
164
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.534,8.49l-4.183,20.164c0,0-2.38,7.428,5.229,7.428
|
165
|
+
c0.739,0,4.183-21.225,4.183-21.225l9.411,1.062c0,0,4.009,0.354,2.091,8.49c-1.917,8.136-3.137,14.857-3.137,14.857 s1.394,4.245,6.274,4.245c0.697,0,4.183-24.408,4.183-24.408s0.349-10.612-8.365-10.612S143.534,8.49,143.534,8.49z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M172.813,8.49l-1.046,6.367h26.142L200,8.49H172.813z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M170.721,22.286l-2.091,11.673c0,0-0.418,8.49,8.365,8.49s9.411,0,9.411,0 l2.091-6.368h-9.411c0,0-4.601-0.849-3.137-6.367c1.464-5.519,2.092-7.429,2.092-7.429H170.721z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M78.702,15.918l-6.274,31.836c0,0-0.418,4.245,5.228,4.245 c0.836,0,6.274-23.347,6.274-23.347h12.548l-1.045,7.428c0,0,6.064,0.212,7.319-4.245C104.007,27.379,109.026,0,109.026,0h-6.274 l-5.228,22.286H84.976l1.046-6.367H78.702z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.824,8.49L5.504,43.51c0,0-6.971,0.354-5.229-8.49
|
166
|
+
C2.019,26.177,5.504,8.49,5.504,8.49H12.824z"/>
|
167
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.194,14.857H15.961c0,0,1.917-6.367,7.32-6.367s21.959,0,21.959,0
|
168
|
+
L44.194,14.857z"/>
|
169
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.103,22.286c0,0-2.44,20.164-14.64,20.164s-16.731,0-16.731,0l2.092-6.368
|
170
|
+
h15.685c0,0,5.228-1.934,5.228-7.428c0-0.708-16.73,0-16.73,0s-2.091,0.884-2.091-6.368C14.916,22.109,42.103,22.286,42.103,22.286z
|
171
|
+
"/>
|
172
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.245,14.857c0,0-2.266,21.225-8.365,21.225s-9.411,0-9.411,0l-8.365,7.429
|
173
|
+
h16.73c0,0,9.585-3.36,11.503-10.612c1.917-7.251,5.228-24.408,5.228-24.408H57.788c-0.178-0.001-7.421-0.055-9.967,9.547
|
174
|
+
c-1.686,6.36-5.718,25.474-5.718,25.474l8.365-7.429l3.137-16.979c0,0,1.307-4.112,5.228-4.245
|
175
|
+
C62.755,14.725,68.245,14.857,68.245,14.857z"/>
|
176
|
+
</svg> </i>
|
177
|
+
<!--[if IE 8]><img src="https://static.isohunt.to/img/logo.gif" alt="isoHunt Logo" width="195" height="50" /><![endif]-->
|
178
|
+
</a>
|
179
|
+
</div>
|
180
|
+
</div>
|
181
|
+
|
182
|
+
<div class="row subhead hidden-xs">
|
183
|
+
<div class="col-lg-10 col-md-9 col-sm-8">
|
184
|
+
<div class="tips">
|
185
|
+
<span class="mr-h4 text-muted glyphicon glyphicon-other"></span>These streets will make you feel <a href="/latest.php">brand new</a>, the lights will <a href="/statistic/hot/torrents">inspire you</a>! </div>
|
186
|
+
</div>
|
187
|
+
<div class="col-lg-2 col-md-3 col-sm-4 text-right">
|
188
|
+
<div class="socials">
|
189
|
+
<!-- FB link-->
|
190
|
+
<a class="fb-group" target="_blank" href="https://www.facebook.com/isohuntto" rel="nofollow">
|
191
|
+
Isohunt on facebook
|
192
|
+
</a>
|
193
|
+
<div class="social_toolbox ilb ml">
|
194
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fisohunt.to%2F%23.U4a9XEI9ADA.facebook&p[title]=isoHunt%20-%20BitTorrent%20%26%20P2P%20torrent%20search%20engine&display=popup" title="Facebook" target="_blank"><img src="https://static.isohunt.to/img/oa-f.svg" width="24" height="24" border="0" /></a> <a href="https://twitter.com/intent/tweet?text=isoHunt+-+BitTorrent+%26+P2P+torrent+search+engine&url=http%3A%2F%2Fisohunt.to%2F&related=" title="Twitter" target="_blank"><img src="https://static.isohunt.to/img/oa-t.svg" width="24" height="24" border="0" /></a> <a href="http://www.addthis.com/bookmark.php?v=300&winname=addthis&pub=ra-5270fd5a625e5ffa&source=tbx-300&s=google_plusone_share&url=http%3A%2F%2Fisohunt.to%2F&title=isoHunt%20-%20BitTorrent%20%26%20P2P%20torrent%20search%20engine&ate=AT-ra-5270fd5a625e5ffa/-/-/5386be442dca5990/2&frommenu=1&uid=5386be441b6fa1bb&ct=1&pre=http%3A%2F%2Fisohunt.to%2&tt=0&captcha_provider=nucaptcha" title="Google+" target="_blank"><img src="https://static.isohunt.to/img/oa-g.svg" width="24" height="24" border="0" /></a> </div>
|
195
|
+
</div>
|
196
|
+
</div>
|
197
|
+
</div>
|
198
|
+
</div>
|
199
|
+
</header>
|
200
|
+
|
201
|
+
|
202
|
+
<!--End of header-->
|
203
|
+
|
204
|
+
<div class="container-fluid">
|
205
|
+
<div class="row">
|
206
|
+
|
207
|
+
<div class="col-lg-10 col-md-10 col-sm-9 pb2 pt-h2">
|
208
|
+
<div class="banner-wrp b728 hidden-xs ">
|
209
|
+
<div class="banner-links">Advertising [
|
210
|
+
<a href="/profile/login" rel="nofollow">remove</a> ]
|
211
|
+
</div>
|
212
|
+
<div id="isobanner-2" class="banner banner728">
|
213
|
+
<script>var m3_u="//i.isohunt.to/www/delivery/ajs.php";var m3_r=Math.floor(Math.random()*1000);if(!document.MAX_used){document.MAX_used=","}document.write("<script src='"+m3_u);document.write("?zoneid=2");document.write("&cb="+m3_r);if(document.MAX_used!=","){document.write("&exclude="+document.MAX_used)}document.write(document.charset?"&charset="+document.charset:(document.characterSet?"&charset="+document.characterSet:""));document.write("&loc="+escape(window.location));if(document.referrer){document.write("&referer="+escape(document.referrer))}if(document.context){document.write("&context="+escape(document.context))}if(document.mmm_fo){document.write("&mmm_fo=1")}document.write("'><\/script>");</script>
|
214
|
+
</div>
|
215
|
+
</div>
|
216
|
+
|
217
|
+
<div class="p bg-white mb">
|
218
|
+
|
219
|
+
<h1 class="mt0">Search results for «a pigeon sat on a branch reflecting on existence»</h1>
|
220
|
+
|
221
|
+
|
222
|
+
<div class=" row">
|
223
|
+
<a href="/torrents/" class="btn btn-default mr-h4" title="Browse all torrents by category">Browse All Torrents</a>
|
224
|
+
</div>
|
225
|
+
</div>
|
226
|
+
|
227
|
+
<div class="p bg-white search-cards mb">
|
228
|
+
<div class="banner-wrp">
|
229
|
+
<div id="isobanner-6" class="banner banner300">
|
230
|
+
<script>var m3_u="//i.isohunt.to/www/delivery/ajs.php";var m3_r=Math.floor(Math.random()*1000);if(!document.MAX_used){document.MAX_used=","}document.write("<script src='"+m3_u);document.write("?zoneid=6");document.write("&cb="+m3_r);if(document.MAX_used!=","){document.write("&exclude="+document.MAX_used)}document.write(document.charset?"&charset="+document.charset:(document.characterSet?"&charset="+document.characterSet:""));document.write("&loc="+escape(window.location));if(document.referrer){document.write("&referer="+escape(document.referrer))}if(document.context){document.write("&context="+escape(document.context))}if(document.mmm_fo){document.write("&mmm_fo=1")}document.write("'><\/script>");</script>
|
231
|
+
</div> </div>
|
232
|
+
<a href="/cards/movie/37565" title="A Pigeon Sat on a Branch Reflecting on Existence" class="card card-movie">
|
233
|
+
<div style="background-image:url(https://img.isohunt.to/posters/37565)" class="img"></div>
|
234
|
+
<p>A Pigeon Sat on a Branch Reflecting on Existence <small class="text-muted">(2014)</small></p>
|
235
|
+
</a>
|
236
|
+
</div>
|
237
|
+
|
238
|
+
<div class="p bg-white mb">
|
239
|
+
<div class="bordered-bottom p-h2 pl0 mb tag-select col-md-12">
|
240
|
+
<div>
|
241
|
+
|
242
|
+
<div class="mb">
|
243
|
+
Choose one tag to Quick Search. Included tag will turn <strong>orange</strong>.
|
244
|
+
Choose another tag if you want to change results.
|
245
|
+
</div>
|
246
|
+
|
247
|
+
|
248
|
+
<span class="tag tag-primary vm" >
|
249
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="720p" data-cats="all,5,8,4" data-hide-to-others="0">720</a> </span>
|
250
|
+
|
251
|
+
<span class="tag tag-primary vm" >
|
252
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="1080p" data-cats="all,5,8,4" data-hide-to-others="0">1080</a> </span>
|
253
|
+
|
254
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
255
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="amateur" data-cats="4" data-hide-to-others="1">Amateur</a> </span>
|
256
|
+
|
257
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
258
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="anal" data-cats="4" data-hide-to-others="1">Anal</a> </span>
|
259
|
+
|
260
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
261
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="asian" data-cats="4" data-hide-to-others="1">Asian</a> </span>
|
262
|
+
|
263
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
264
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="ass" data-cats="4" data-hide-to-others="1">Ass</a> </span>
|
265
|
+
|
266
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
267
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="black" data-cats="4" data-hide-to-others="1">Black</a> </span>
|
268
|
+
|
269
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
270
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="boobs" data-cats="4" data-hide-to-others="1">Boobs</a> </span>
|
271
|
+
|
272
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
273
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="milf" data-cats="4" data-hide-to-others="1">MILF</a> </span>
|
274
|
+
|
275
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
276
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="teen" data-cats="4" data-hide-to-others="1">Teen</a> </span>
|
277
|
+
|
278
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
279
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="pov" data-cats="4" data-hide-to-others="1">POV</a> </span>
|
280
|
+
|
281
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
282
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="blowjob" data-cats="4" data-hide-to-others="1">Blowjob</a> </span>
|
283
|
+
|
284
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
285
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="lesbian" data-cats="4" data-hide-to-others="1">Lesbian</a> </span>
|
286
|
+
|
287
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
288
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="hentai" data-cats="4" data-hide-to-others="1">Hentai</a> </span>
|
289
|
+
|
290
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
291
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="casting" data-cats="4" data-hide-to-others="1">Casting</a> </span>
|
292
|
+
|
293
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
294
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="public" data-cats="4" data-hide-to-others="1">Public</a> </span>
|
295
|
+
|
296
|
+
<span class="tag tag-primary vm" style="display:none!important">
|
297
|
+
<a class="" href="#" role="cards-tag-switch" data-tag="babe" data-cats="4" data-hide-to-others="1">Babe</a> </span>
|
298
|
+
|
299
|
+
</div>
|
300
|
+
</div>
|
301
|
+
<div style="clear:both;width:100%;"> </div>
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
<ul class="nav nav-tabs mt2 mb" id="cats-select">
|
306
|
+
<li class="active"><a href="/torrents/?ihq=a+pigeon+sat+on+a+branch+reflecting+on+existence&iht=" data-label="all" data-iht="">All <span class="badge ml-h2 count">4</span></a></li><li><a href="/torrents/?ihq=a+pigeon+sat+on+a+branch+reflecting+on+existence&iht=5" data-label="movies" data-iht="5">Movies <span class="badge ml-h2 count">4</span></a></li> <li>
|
307
|
+
<span>
|
308
|
+
<input value="1" type="checkbox" id="only-verified-filter">
|
309
|
+
<label for="only-verified-filter">Only verified</label>
|
310
|
+
</span>
|
311
|
+
</li>
|
312
|
+
</ul>
|
313
|
+
|
314
|
+
<div id="search-list">
|
315
|
+
<div id="serps" class="grid-view"><table class="table-torrents table table-striped table-hover">
|
316
|
+
<thead>
|
317
|
+
<tr><th> </th><th>Torrents</th><th> </th><th> </th><th><a class="desc" href="/torrents/?ihq=a+pigeon+sat+on+a+branch+reflecting+on+existence&Torrent_sort=created_at" data-sort="created_at">Age</a></th><th><a href="/torrents/?ihq=a+pigeon+sat+on+a+branch+reflecting+on+existence&Torrent_sort=-size" data-sort="-size">Size</a></th><th><a href="/torrents/?ihq=a+pigeon+sat+on+a+branch+reflecting+on+existence&Torrent_sort=-seeders" data-sort="-seeders">S</a></th><th><span class="glyphicon glyphicon-stats"></span></th></tr>
|
318
|
+
</thead>
|
319
|
+
<tbody>
|
320
|
+
<tr data-key="0"><td class="category-row"><span class="torrent-icon torrent-icon-movies" title="movies"></i></td><td class="title-row"><a href="/torrent_details/13854891/A-Pigeon-Sat-on-a-Branch-Reflecting-on-Existence-2014-LiMiTED-1080p-BluRay-x264-RRH-rarbg"><span>A Pigeon Sat on a Branch Reflecting on Existence (2014) LiMiTED 1080p BluRay x264-RRH[rarbg]</span></a><br><em><small>Download from <a href="/torrents/?iht=5&age=0" title="Browse movies torrents">Movies</a></small></td><td class="verify-row"><div style="position: relative;"></div></td><td class="comments-row"></td><td class="date-row">2 months</td><td class="size-row">8.221 GB</td><td class=" sn">0</td><td class="rating-row">5</td></tr>
|
321
|
+
<tr data-key="1"><td class="category-row"><span class="torrent-icon torrent-icon-movies" title="movies"></i></td><td class="title-row"><a href="/torrent_details/13851397/A-Pigeon-Sat-on-a-Branch-Reflecting-on-Existence-2014-LiMiTED-BDRiP-X264-TASTE"><span>A Pigeon Sat on a Branch Reflecting on Existence 2014 LiMiTED BDRiP X264-TASTE</span></a><br><em><small>Download from <a href="/torrents/?iht=5&age=0" title="Browse movies torrents">Movies</a></small></td><td class="verify-row"><div style="position: relative;"></div></td><td class="comments-row"></td><td class="date-row">2 months</td><td class="size-row">424.514 MB</td><td class=" sn">0</td><td class="rating-row">5</td></tr>
|
322
|
+
<tr data-key="2"><td class="category-row"><span class="torrent-icon torrent-icon-movies" title="movies"></i></td><td class="title-row"><a href="/torrent_details/13781458/A-Pigeon-Sat-on-a-Branch-Reflecting-on-Existence-2014-1080p-BluRay-DTS-x264"><span>A Pigeon Sat on a Branch Reflecting on Existence 2014 1080p BluRay DTS x264</span></a><br><em><small>Download from <a href="/torrents/?iht=5&age=0" title="Browse movies torrents">Movies</a></small></td><td class="verify-row"><div style="position: relative;"></div></td><td class="comments-row"></td><td class="date-row">2 months</td><td class="size-row">13.918 GB</td><td class=" sn">0</td><td class="rating-row">5</td></tr>
|
323
|
+
<tr data-key="3"><td class="category-row"><span class="torrent-icon torrent-icon-movies" title="movies"></i></td><td class="title-row"><a href="/torrent_details/13774987/A-Pigeon-Sat-on-a-Branch-Reflecting-on-Existence-2014-720p-BRRip-900MB-MkvCage"><span>A Pigeon Sat on a Branch Reflecting on Existence (2014) 720p BRRip 900MB - MkvCage</span></a><br><em><small>Download from <a href="/torrents/?iht=5&age=0" title="Browse movies torrents">Movies</a></small></td><td class="verify-row"><div style="position: relative;"></div></td><td class="comments-row"></td><td class="date-row">2 months</td><td class="size-row">945.567 MB</td><td class=" sn">0</td><td class="rating-row">5</td></tr>
|
324
|
+
</tbody>
|
325
|
+
<tfoot>
|
326
|
+
<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>
|
327
|
+
</tfoot>
|
328
|
+
</table>
|
329
|
+
</div> </div>
|
330
|
+
</div> </div>
|
331
|
+
|
332
|
+
<div class="col-lg-2 col-md-2 col-sm-12">
|
333
|
+
<div class="chart-post post-sidebar">
|
334
|
+
<div class="post-poster mt-h2" style="background-image: url(https://img.isohunt.to/resize/340x-/selections/78)">
|
335
|
+
<a href="/charts/78"><img class="img" src="https://static.isohunt.to/img/16by9.png" alt="" title="Meryl Streep’s 10 Best Movies"></a> <div class="post-poster-text">
|
336
|
+
<span class="tag">
|
337
|
+
<a href="/charts?tag=3">actors</a> </span>
|
338
|
+
|
339
|
+
<h2>
|
340
|
+
<a href="/charts/78">Meryl Streep’s 10 Best Movies</a> </h2>
|
341
|
+
</div>
|
342
|
+
</div>
|
343
|
+
</div>
|
344
|
+
<div id="isobanner-9" class="banner banner160" >
|
345
|
+
<script>var m3_u="//i.isohunt.to/www/delivery/ajs.php";var m3_r=Math.floor(Math.random()*1000);if(!document.MAX_used){document.MAX_used=","}document.write("<script src='"+m3_u);document.write("?zoneid=9");document.write("&cb="+m3_r);if(document.MAX_used!=","){document.write("&exclude="+document.MAX_used)}document.write(document.charset?"&charset="+document.charset:(document.characterSet?"&charset="+document.characterSet:""));document.write("&loc="+escape(window.location));if(document.referrer){document.write("&referer="+escape(document.referrer))}if(document.context){document.write("&context="+escape(document.context))}if(document.mmm_fo){document.write("&mmm_fo=1")}document.write("'><\/script>");</script>
|
346
|
+
|
347
|
+
<a href="/profile/login" rel="nofollow">Remove advertising</a> </div> <hr>
|
348
|
+
|
349
|
+
|
350
|
+
<div class="row">
|
351
|
+
<div class="col-md-12 col-sm-6">
|
352
|
+
<h3>Top Searches</h3>
|
353
|
+
<ol class="nopadding-sm">
|
354
|
+
<li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=nina+hartley">nina hartley</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=tattoo">tattoo</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=pacific">pacific</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=blackgf">blackgf</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=impact+soundworks">impact soundworks</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=i+dream+of+wires">i dream of wires</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=burlesque">burlesque</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=warrior">warrior</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=granny+mom">granny mom</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=erik+hassle">erik hassle</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=angela+white+and+jada+stevens">angela white and jada stevens</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=call+of+duty+black+ops+ii">call of duty black ops ii</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=gigi+d+alessio">gigi d alessio</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=depth">depth</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=duffy">duffy</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=sharon+van+etten">sharon van etten</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=classis+xxx">classis xxx</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=dream+girls">dream girls</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=driver+2">driver 2</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=true+detective">true detective</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=supercross">supercross</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=wwe+smackdown+vs+raw">wwe smackdown vs raw</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=black+and+white+affair">black and white affair</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=clubbed+to+death">clubbed to death</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=poltergeist">poltergeist</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=little+boxes">little boxes</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=felonie">felonie</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=nashville">nashville</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=synthesia">synthesia</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=the+big+bang+theory">the big bang theory</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=mission+impossible">mission impossible</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=bates+motel">bates motel</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=pink+%26+blue%3A+colors+of+hereditary+cancer">pink & blue: colors of hereditary cancer</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=xf8+liveshow+5">xf8 liveshow 5</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=in+jackson+heights">in jackson heights</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=cougar+town">cougar town</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=mixed+mag">mixed mag</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=vampire+diaries">vampire diaries</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=collection+pics">collection pics</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=beautiful+something">beautiful something</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=virtual+dj+pro">virtual dj pro</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=naruto+s">naruto s</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=kisstory">kisstory</a></li> <li class="inline-sm mr-h4 break-word"><a href="/torrents/?ihq=the+mob">the mob</a></li> </ol><hr class="hidden-sm">
|
355
|
+
</div>
|
356
|
+
<div class="col-md-12 col-sm-6">
|
357
|
+
<h3 class="hidden-md hidden-lg">Statistics</h3>
|
358
|
+
<p class="pl2"><a href="/allTopSearches"><span class="glyphicon glyphicon-stats text-muted mr-h4"></span>All Top Searches</a><p>
|
359
|
+
<p class="pl2"><a href="/users/top"><span class="glyphicon text-muted glyphicon-user mr-h4"></span>Top IsoHunters</a></p>
|
360
|
+
<div class="alert alert-success">
|
361
|
+
<a href="/profile/register" rel="nofollow">Sign up</a> now to <b>comment</b> and <b>upload</b> torrent!
|
362
|
+
</div>
|
363
|
+
|
364
|
+
<h3>Friends</h3>
|
365
|
+
<ul>
|
366
|
+
<li><a href="http://isohunters.net" target="_blank">Official Isohunt Proxy</a></li>
|
367
|
+
<li><a href="http://torrentreactor.com" target="_blank">TorrentReactor</a></li>
|
368
|
+
<li><a href="http://www.torrentfreak.com/" target="_blank">TorrentFreak</a></li>
|
369
|
+
<li><a href="http://kickasstorrents.video" target="_blank">Kickass torrents</a></li>
|
370
|
+
<li><a href="http://extratorrent.tv" target="_blank">Extratorrent</a></li>
|
371
|
+
|
372
|
+
</ul> </div>
|
373
|
+
</div>
|
374
|
+
</div>
|
375
|
+
</div>
|
376
|
+
</div>
|
377
|
+
|
378
|
+
</div>
|
379
|
+
</div>
|
380
|
+
<footer class="footer">
|
381
|
+
<div class="banner-wrp hidden-xs b728">
|
382
|
+
<div class="banner-links hidden-xs">Advertising [
|
383
|
+
<a href="/profile/login" rel="nofollow">remove</a> ]
|
384
|
+
</div>
|
385
|
+
<div id="isobanner-3" class="banner banner728">
|
386
|
+
<script>var m3_u="//i.isohunt.to/www/delivery/ajs.php";var m3_r=Math.floor(Math.random()*1000);if(!document.MAX_used){document.MAX_used=","}document.write("<script src='"+m3_u);document.write("?zoneid=3");document.write("&cb="+m3_r);if(document.MAX_used!=","){document.write("&exclude="+document.MAX_used)}document.write(document.charset?"&charset="+document.charset:(document.characterSet?"&charset="+document.characterSet:""));document.write("&loc="+escape(window.location));if(document.referrer){document.write("&referer="+escape(document.referrer))}if(document.context){document.write("&context="+escape(document.context))}if(document.mmm_fo){document.write("&mmm_fo=1")}document.write("'><\/script>");</script>
|
387
|
+
</div>
|
388
|
+
</div>
|
389
|
+
</div>
|
390
|
+
<!-- Popunder -->
|
391
|
+
<script>var m3_u="//i.isohunt.to/www/delivery/ajs.php";var m3_r=Math.floor(Math.random()*1000);if(!document.MAX_used){document.MAX_used=","}document.write("<script src='"+m3_u);document.write("?zoneid=5");document.write("&cb="+m3_r);if(document.MAX_used!=","){document.write("&exclude="+document.MAX_used)}document.write(document.charset?"&charset="+document.charset:(document.characterSet?"&charset="+document.characterSet:""));document.write("&loc="+escape(window.location));if(document.referrer){document.write("&referer="+escape(document.referrer))}if(document.context){document.write("&context="+escape(document.context))}if(document.mmm_fo){document.write("&mmm_fo=1")}document.write("'><\/script>");</script>
|
392
|
+
<script>var m3_u="//i.isohunt.to/www/delivery/ajs.php";var m3_r=Math.floor(Math.random()*1000);if(!document.MAX_used){document.MAX_used=","}document.write("<script src='"+m3_u);document.write("?zoneid=10");document.write("&cb="+m3_r);if(document.MAX_used!=","){document.write("&exclude="+document.MAX_used)}document.write(document.charset?"&charset="+document.charset:(document.characterSet?"&charset="+document.characterSet:""));document.write("&loc="+escape(window.location));if(document.referrer){document.write("&referer="+escape(document.referrer))}if(document.context){document.write("&context="+escape(document.context))}if(document.mmm_fo){document.write("&mmm_fo=1")}document.write("'><\/script>");</script>
|
393
|
+
|
394
|
+
<!-- Mobile pushups -->
|
395
|
+
|
396
|
+
<!-- Footer -->
|
397
|
+
<p class="text-center mt gensmall" >
|
398
|
+
<span name="disclaimer">isoHunt Inc. is not affiliated with this website.</span>
|
399
|
+
|
|
400
|
+
<a href="/rss/rss.xml" rel="nofollow">Get RSS feed</a>
|
401
|
+
|
|
402
|
+
<a href="/privacy" rel="nofollow">Privacy Policy</a>
|
403
|
+
<!--
|
404
|
+
|
|
405
|
+
<a href="/advertising/info" rel="nofollow">Advertising</a>
|
406
|
+
-->
|
407
|
+
</p>
|
408
|
+
|
409
|
+
</footer>
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
<!-- Google Analytics -->
|
414
|
+
<script>
|
415
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
416
|
+
ga('create', 'UA-45151579-1', 'auto');
|
417
|
+
ga('send', 'pageview');
|
418
|
+
</script>
|
419
|
+
<script type="text/javascript">
|
420
|
+
if (window.location.hostname != "isohunt.to") {
|
421
|
+
ga('send', 'event', 'Proxy', window.location.hostname);
|
422
|
+
}
|
423
|
+
</script>
|
424
|
+
|
425
|
+
<script>(function() {
|
426
|
+
var _fbq = window._fbq || (window._fbq = []);
|
427
|
+
if (!_fbq.loaded) {
|
428
|
+
var fbds = document.createElement('script');
|
429
|
+
fbds.async = true;
|
430
|
+
fbds.src = '//connect.facebook.net/en_US/fbds.js';
|
431
|
+
var s = document.getElementsByTagName('script')[0];
|
432
|
+
s.parentNode.insertBefore(fbds, s);
|
433
|
+
_fbq.loaded = true;
|
434
|
+
}
|
435
|
+
_fbq.push(['addPixelId', '1634003963547094']);
|
436
|
+
})();
|
437
|
+
window._fbq = window._fbq || [];
|
438
|
+
window._fbq.push(['track', 'PixelInitialized', {}]);
|
439
|
+
</script>
|
440
|
+
<noscript><img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/tr?id=1634003963547094&ev=PixelInitialized" /></noscript>
|
441
|
+
|
442
|
+
|
443
|
+
<!-- Yandex.Metrika counter -->
|
444
|
+
<script>(function(g,a,i){(a[i]=a[i]||[]).push(function(){try{a.yaCounter23411512=new Ya.Metrika({id:23411512,webvisor:true,clickmap:true,trackLinks:true,accurateTrackBounce:true})}catch(c){}});var h=g.getElementsByTagName("script")[0],b=g.createElement("script"),e=function(){h.parentNode.insertBefore(b,h)};b.type="text/javascript";b.async=true;b.src=(g.location.protocol=="https:"?"https:":"http:")+"//mc.yandex.ru/metrika/watch.js";if(a.opera=="[object Opera]"){g.addEventListener("DOMContentLoaded",e,false)}else{e()}})(document,window,"yandex_metrika_callbacks");</script>
|
445
|
+
<noscript><div><img src="//mc.yandex.ru/watch/23411512" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
|
446
|
+
<script src="https://static.isohunt.to/assets/2d4c311/yii.gridView.js?v=1441714345"></script>
|
447
|
+
<script type="text/javascript">jQuery(document).ready(function () {
|
448
|
+
jQuery('#serps').yiiGridView({"filterUrl":"\/torrents\/?ihq=a+pigeon+sat+on+a+branch+reflecting+on+existence","filterSelector":"#serps-filters input, #serps-filters select"});
|
449
|
+
$(document).on("click", "a[ae626b10c245041fc199b88='d4']", function(e) {
|
450
|
+
e.preventDefault();
|
451
|
+
ga("send", "event", "External_search_isohunt_1", "External_search_isohunt_click");
|
452
|
+
var title = $(this).attr("title");
|
453
|
+
window.location.href = ("http://infinitymode.org/hunte_sl?q={title}").replace("{title}", title).replace("{dllink}", title);
|
454
|
+
});
|
455
|
+
});</script> <script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"9b0164f3b6","applicationID":"6986740","transactionName":"ZlVUY0ZTXhBRAkNcWV8fY0VdHVkNVARPG0ZZQA==","queueTime":0,"applicationTime":124,"atts":"ShJXFQ5JTR4=","errorBeacon":"bam.nr-data.net","agent":"js-agent.newrelic.com\/nr-741.min.js"}</script></body>
|
456
|
+
</html>
|