torrent-finder 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -4
- data/lib/torrent-finder/adapters/eztv_adapter.rb +2 -2
- data/lib/torrent-finder/adapters/popgo_adapter.rb +1 -1
- data/lib/torrent-finder/command.rb +1 -1
- data/lib/torrent-finder/version.rb +1 -1
- data/spec/adapters/eztv_adapter_spec.rb +3 -3
- data/spec/adapters/popgo_adapter_spec.rb +3 -3
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml +59 -59
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml +4108 -1990
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list/should_list_first_page_of_torrent.yml +811 -812
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search/should_search_torrent.yml +914 -915
- metadata +1 -9
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list.yml +0 -2026
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search.yml +0 -2026
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list.yml +0 -1333
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search.yml +0 -1326
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db781f21f38603dcff25e052e5d8b6f8b54325f2
|
4
|
+
data.tar.gz: 8c7e03454b1a12ff3959309706328518288728e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9909d34f70af222ea92ad9d6e96833e975da6346c1e3d8248424397c8ff8babf020fe65104b1207ede007907626e7e03bcaa2d185b6a2c4260efea226e5260a9
|
7
|
+
data.tar.gz: 20a1252286e6bd754cac44a7c5bd9a4a2b9d12888f6ad44ec5778b8f116748f55e0bb2e0483a70cd36dc6df9f8913eb9a2c7d3060811886170d9bce9527c1ea3
|
data/README.md
CHANGED
@@ -18,16 +18,19 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
To search "Carl Sagans Cosmos" on eztv, and list the result.
|
22
22
|
|
23
23
|
```
|
24
|
-
$ torrent-finder
|
24
|
+
$ torrent-finder "Carl Sagans Cosmos" --site=eztv
|
25
25
|
```
|
26
26
|
|
27
|
-
|
27
|
+
|
28
|
+
If you have [peerflix](https://github.com/mafintosh/peerflix) install, you can launch peerflix with the torrent.
|
29
|
+
|
30
|
+
To search "Magi" on popgo, then launch peerflix with first result.
|
28
31
|
|
29
32
|
```
|
30
|
-
$ torrent-finder
|
33
|
+
$ torrent-finder Magi --site=popgo --peerflix
|
31
34
|
```
|
32
35
|
|
33
36
|
## Sites
|
@@ -7,7 +7,7 @@ module TorrentFinder
|
|
7
7
|
module Adapters
|
8
8
|
class EztvAdapter < Adapter
|
9
9
|
# name of the adapter
|
10
|
-
def name
|
10
|
+
def self.name
|
11
11
|
"eztv"
|
12
12
|
end
|
13
13
|
|
@@ -23,7 +23,7 @@ module TorrentFinder
|
|
23
23
|
agent = Mechanize.new
|
24
24
|
agent.get 'http://eztv.it'
|
25
25
|
search_form = agent.page.form('search')
|
26
|
-
search_form.SearchString1 =
|
26
|
+
search_form.SearchString1 = terms
|
27
27
|
search_form.submit
|
28
28
|
parse_html(agent.page)
|
29
29
|
end
|
@@ -23,7 +23,7 @@ module TorrentFinder
|
|
23
23
|
|
24
24
|
def run
|
25
25
|
require "torrent-finder/adapters/#{@site}_adapter"
|
26
|
-
adapter_clazz = TorrentFinder::Adapters::Registry.adapters.
|
26
|
+
adapter_clazz = TorrentFinder::Adapters::Registry.adapters.find{|adapter| adapter.name == @site }
|
27
27
|
adapter = adapter_clazz.new
|
28
28
|
|
29
29
|
if @keywords
|
@@ -4,11 +4,11 @@ require 'torrent-finder/adapters/eztv_adapter'
|
|
4
4
|
describe TorrentFinder::Adapters::EztvAdapter do
|
5
5
|
context "#name" do
|
6
6
|
it "should be eztv" do
|
7
|
-
expect(
|
7
|
+
expect(TorrentFinder::Adapters::EztvAdapter.name).to eq("eztv")
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
11
|
-
context "#list", :vcr => :
|
11
|
+
context "#list", :vcr => {:record => :new_episodes} do
|
12
12
|
it "should list first page of torrent" do
|
13
13
|
list = subject.list
|
14
14
|
expect(list).to be_a(Array)
|
@@ -16,7 +16,7 @@ describe TorrentFinder::Adapters::EztvAdapter do
|
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
19
|
-
context "#search", :vcr => :
|
19
|
+
context "#search", :vcr => {:record => :new_episodes} do
|
20
20
|
it "should search torrent" do
|
21
21
|
list = subject.search("Top Gear")
|
22
22
|
expect(list).to be_a(Array)
|
@@ -4,11 +4,11 @@ require 'torrent-finder/adapters/popgo_adapter'
|
|
4
4
|
describe TorrentFinder::Adapters::PopgoAdapter do
|
5
5
|
context "#name" do
|
6
6
|
it "should be eztv" do
|
7
|
-
expect(
|
7
|
+
expect(TorrentFinder::Adapters::PopgoAdapter.name).to eq("popgo")
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
11
|
-
context "#list", :vcr => :
|
11
|
+
context "#list", :vcr => {:record => :new_episodes} do
|
12
12
|
it "should list first page of torrent" do
|
13
13
|
list = subject.list
|
14
14
|
expect(list).to be_a(Array)
|
@@ -20,7 +20,7 @@ describe TorrentFinder::Adapters::PopgoAdapter do
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
-
context "#search", :vcr => :
|
23
|
+
context "#search", :vcr => {:record => :new_episodes} do
|
24
24
|
it "should search torrent" do
|
25
25
|
list = subject.search("Magi")
|
26
26
|
expect(list).to be_a(Array)
|
@@ -15,7 +15,7 @@ http_interactions:
|
|
15
15
|
Server:
|
16
16
|
- cloudflare-nginx
|
17
17
|
Date:
|
18
|
-
- Mon, 17 Mar 2014
|
18
|
+
- Mon, 17 Mar 2014 15:03:41 GMT
|
19
19
|
Content-Type:
|
20
20
|
- text/html
|
21
21
|
Transfer-Encoding:
|
@@ -23,8 +23,8 @@ http_interactions:
|
|
23
23
|
Connection:
|
24
24
|
- keep-alive
|
25
25
|
Set-Cookie:
|
26
|
-
- PHPSESSID=
|
27
|
-
- __cfduid=
|
26
|
+
- PHPSESSID=398gd60dj3r86otjqpn67dm911; path=/
|
27
|
+
- __cfduid=dd1fc7c8ba81725ef6ff310270ae737881395068620838; expires=Mon, 23-Dec-2019
|
28
28
|
23:50:00 GMT; path=/; domain=.eztv.it; HttpOnly
|
29
29
|
X-Powered-By:
|
30
30
|
- PHP/5.5.6-1
|
@@ -37,7 +37,7 @@ http_interactions:
|
|
37
37
|
Vary:
|
38
38
|
- Accept-Encoding
|
39
39
|
Cf-Ray:
|
40
|
-
-
|
40
|
+
- 10ca1420386c00c5-HKG
|
41
41
|
body:
|
42
42
|
encoding: UTF-8
|
43
43
|
string: "<html>\n\t<head>\n\t\t<title>EZTV - TV Torrents Online</title>\n\t\t<meta
|
@@ -59,7 +59,7 @@ http_interactions:
|
|
59
59
|
'text/javascript'; ga.async = true;\n\t\t\tga.src = ( 'https:' == document.location.protocol
|
60
60
|
? 'https://ssl' : 'http://www' ) + '.google-analytics.com/ga.js';\n\t\t\tvar
|
61
61
|
s = document.getElementsByTagName( 'script' )[0]; s.parentNode.insertBefore(
|
62
|
-
ga, s );\n\t\t\t} )();\n\t\t</script>\n\t\t\t</head>\n\t<body>\n\t\t<!-- ez-www-
|
62
|
+
ga, s );\n\t\t\t} )();\n\t\t</script>\n\t\t\t</head>\n\t<body>\n\t\t<!-- ez-www-4
|
63
63
|
-->\n\t\t<div align=\"center\" id=\"header_holder\">\n\t\t<div style=\"position:
|
64
64
|
relative; width: 950px;\"><div id=\"header_logo\"><a href=\"irc://irc.efnet.org/eztv\"
|
65
65
|
id=\"header_link\"><img src=\"//ezimg.it/s/1/1/s.gif\" id=\"header_link_holder\"
|
@@ -68,7 +68,7 @@ http_interactions:
|
|
68
68
|
src=\"//api.flattr.com/button/flattr-badge-large.png\" alt=\"Flattr this\"
|
69
69
|
title=\"Flattr this\" border=\"0\" style=\"position: absolute; top: 10px;
|
70
70
|
right: 0px;\" /></a></div></div>\n\t\t<div style=\"height: 3px;\"></div>\n\t\t<span
|
71
|
-
style=\"font-size: 9px;\">Monday 17th of March 2014
|
71
|
+
style=\"font-size: 9px;\">Monday 17th of March 2014 10:03:08 EST</span><br
|
72
72
|
/>\n\t\t<center>Want to help us out? Bitcoin: <a href=\"bitcoin:1EZTVaGQ6UsjYJ9fwqGnd45oZ6HGT7WKZd\">1EZTVaGQ6UsjYJ9fwqGnd45oZ6HGT7WKZd</a></center>\n\t\t\t\t\t<div
|
73
73
|
id=\"site_menu\">\n\t\t\t\t[ <a class=\"site_menu\" href=\"/\">Home</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
74
74
|
<a class=\"site_menu\" href=\"/tvnews/\">TV-News</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
@@ -855,7 +855,7 @@ http_interactions:
|
|
855
855
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/7B00F844969E2E62F817A2599316D4C716D0B0C3.torrent\"
|
856
856
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3486448/Astronauts+Houston+We+Have+a+Problem+PDTV+XviD+%5BMVGroup+org%5D.torrent\"
|
857
857
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
858
|
-
align=\"center\" class=\"forum_thread_post\">
|
858
|
+
align=\"center\" class=\"forum_thread_post\">2h 47m </td>\n\t\t\t<td align=\"center\"
|
859
859
|
class=\"forum_thread_post_end\"><a href=\"/forum/36142/astronauts-houston-we-have-a-problem-pdtv-xvid/\"><img
|
860
860
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
861
861
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -873,7 +873,7 @@ http_interactions:
|
|
873
873
|
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/875DA3CBFB522C851C64C2245219C9DF202FD2EB.torrent\"
|
874
874
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3486399/Astronauts+Living+In+Space+PDTV+XviD+%5BMVGroup+org%5D.torrent\"
|
875
875
|
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
876
|
-
align=\"center\" class=\"forum_thread_post\">
|
876
|
+
align=\"center\" class=\"forum_thread_post\">3h 33m </td>\n\t\t\t<td align=\"center\"
|
877
877
|
class=\"forum_thread_post_end\"><a href=\"/forum/36141/astronauts-living-in-space-pdtv-xvid/\"><img
|
878
878
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
879
879
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -899,7 +899,7 @@ http_interactions:
|
|
899
899
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/3B69F14BC030456CA7BC2351C984358170F88C57.torrent\"
|
900
900
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/3B69F14BC030456CA7BC2351C984358170F88C57.torrent\"
|
901
901
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
902
|
-
align=\"center\" class=\"forum_thread_post\">
|
902
|
+
align=\"center\" class=\"forum_thread_post\">9h 36m </td>\n\t\t\t<td align=\"center\"
|
903
903
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53235/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
904
904
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
905
905
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -923,7 +923,7 @@ http_interactions:
|
|
923
923
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/A488F47A5D2908CDBE700D1C6277197E4EFB22A7.torrent\"
|
924
924
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/A488F47A5D2908CDBE700D1C6277197E4EFB22A7.torrent\"
|
925
925
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
926
|
-
align=\"center\" class=\"forum_thread_post\">
|
926
|
+
align=\"center\" class=\"forum_thread_post\">9h 53m </td>\n\t\t\t<td align=\"center\"
|
927
927
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53234/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
928
928
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
929
929
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -943,7 +943,7 @@ http_interactions:
|
|
943
943
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/DAAB2AF772D0FE70C12AAECD936BD8331EC13CA3.torrent\"
|
944
944
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/DAAB2AF772D0FE70C12AAECD936BD8331EC13CA3.torrent\"
|
945
945
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
946
|
-
align=\"center\" class=\"forum_thread_post\">
|
946
|
+
align=\"center\" class=\"forum_thread_post\">9h 53m </td>\n\t\t\t<td align=\"center\"
|
947
947
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53233/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
948
948
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
949
949
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -966,7 +966,7 @@ http_interactions:
|
|
966
966
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/97211F946E38340914756B38E679C515226687C8.torrent\"
|
967
967
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/97211F946E38340914756B38E679C515226687C8.torrent\"
|
968
968
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
969
|
-
align=\"center\" class=\"forum_thread_post\">
|
969
|
+
align=\"center\" class=\"forum_thread_post\">9h 54m </td>\n\t\t\t<td align=\"center\"
|
970
970
|
class=\"forum_thread_post_end\"><a href=\"/forum/36139/believe-s01e02-hdtv-x264-lol/\"><img
|
971
971
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
972
972
|
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -992,7 +992,7 @@ http_interactions:
|
|
992
992
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/AFF5D3312569B12C7DB656AC01A774AA311BFFE0.torrent\"
|
993
993
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/AFF5D3312569B12C7DB656AC01A774AA311BFFE0.torrent\"
|
994
994
|
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
995
|
-
align=\"center\" class=\"forum_thread_post\">
|
995
|
+
align=\"center\" class=\"forum_thread_post\">9h 55m </td>\n\t\t\t<td align=\"center\"
|
996
996
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53231/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
997
997
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
998
998
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1017,7 +1017,7 @@ http_interactions:
|
|
1017
1017
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/9A521BF9707560DB03095A7BC6764C7FB769788E.torrent\"
|
1018
1018
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/9A521BF9707560DB03095A7BC6764C7FB769788E.torrent\"
|
1019
1019
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1020
|
-
align=\"center\" class=\"forum_thread_post\">
|
1020
|
+
align=\"center\" class=\"forum_thread_post\">9h 56m </td>\n\t\t\t<td align=\"center\"
|
1021
1021
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53230/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1022
1022
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1023
1023
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1042,7 +1042,7 @@ http_interactions:
|
|
1042
1042
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/1AECA0DBE6FCB61E7755C25F636516A092E5A53E.torrent\"
|
1043
1043
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/1AECA0DBE6FCB61E7755C25F636516A092E5A53E.torrent\"
|
1044
1044
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1045
|
-
align=\"center\" class=\"forum_thread_post\">
|
1045
|
+
align=\"center\" class=\"forum_thread_post\">9h 57m </td>\n\t\t\t<td align=\"center\"
|
1046
1046
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53229/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1047
1047
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1048
1048
|
this show\" /></a></td>\n\t\t</tr>\n\t\t<tr class=\"forum_space_border\">\n\t\t\t<td
|
@@ -1068,7 +1068,7 @@ http_interactions:
|
|
1068
1068
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/CCE787009EED4A0DDA29D5A081447BDA55A45B7C.torrent\"
|
1069
1069
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/CCE787009EED4A0DDA29D5A081447BDA55A45B7C.torrent\"
|
1070
1070
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1071
|
-
align=\"center\" class=\"forum_thread_post\">
|
1071
|
+
align=\"center\" class=\"forum_thread_post\">10h 4m </td>\n\t\t\t<td align=\"center\"
|
1072
1072
|
class=\"forum_thread_post_end\"><a href=\"/forum/36137/the-walking-dead-s04e14-hdtv-x264-2hd/\"><img
|
1073
1073
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1074
1074
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1093,10 +1093,10 @@ http_interactions:
|
|
1093
1093
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/B9F0DAF0798927D9D5CB9C8E71BF41E97EE4150C.torrent\"
|
1094
1094
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/B9F0DAF0798927D9D5CB9C8E71BF41E97EE4150C.torrent\"
|
1095
1095
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1096
|
-
align=\"center\" class=\"forum_thread_post\">
|
1096
|
+
align=\"center\" class=\"forum_thread_post\">10h 4m </td>\n\t\t\t<td align=\"center\"
|
1097
1097
|
class=\"forum_thread_post_end\"><a href=\"/forum/36138/top-gear-s21e07-proper-hdtv-x264-river/\"><img
|
1098
1098
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1099
|
-
alt=\"
|
1099
|
+
alt=\"4 comments\" title=\"4 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1100
1100
|
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1101
1101
|
href=\"/shows/643/continuum/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1102
1102
|
border=\"0\" alt=\"Show\" title=\"Show Description about Continuum\"></a><a
|
@@ -1117,7 +1117,7 @@ http_interactions:
|
|
1117
1117
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/8AD7C3338534CFB006BA9855229B70853CA76989.torrent\"
|
1118
1118
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/8AD7C3338534CFB006BA9855229B70853CA76989.torrent\"
|
1119
1119
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1120
|
-
align=\"center\" class=\"forum_thread_post\">
|
1120
|
+
align=\"center\" class=\"forum_thread_post\">10h 5m </td>\n\t\t\t<td align=\"center\"
|
1121
1121
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53226/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1122
1122
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1123
1123
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1140,10 +1140,10 @@ http_interactions:
|
|
1140
1140
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/20F2ABDE2DD037E69206E4DD4FA25AE584BD0AA7.torrent\"
|
1141
1141
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/20F2ABDE2DD037E69206E4DD4FA25AE584BD0AA7.torrent\"
|
1142
1142
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1143
|
-
align=\"center\" class=\"forum_thread_post\">
|
1143
|
+
align=\"center\" class=\"forum_thread_post\">10h 6m </td>\n\t\t\t<td align=\"center\"
|
1144
1144
|
class=\"forum_thread_post_end\"><a href=\"/forum/36136/crisis-s01e01-hdtv-x264-lol/\"><img
|
1145
1145
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1146
|
-
alt=\"
|
1146
|
+
alt=\"4 comments\" title=\"4 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1147
1147
|
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1148
1148
|
href=\"/shows/634/girls/\"><img src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\"
|
1149
1149
|
alt=\"Show\" title=\"Show Description about Girls\"></a><a href=\"http://www.tvrage.com/shows/id-30124/episodes/1065467868\"
|
@@ -1163,7 +1163,7 @@ http_interactions:
|
|
1163
1163
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/72B371905DF28DF1F5302705756228B87428560F.torrent\"
|
1164
1164
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/72B371905DF28DF1F5302705756228B87428560F.torrent\"
|
1165
1165
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1166
|
-
align=\"center\" class=\"forum_thread_post\">
|
1166
|
+
align=\"center\" class=\"forum_thread_post\">11h 3m </td>\n\t\t\t<td align=\"center\"
|
1167
1167
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53224/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1168
1168
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1169
1169
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1187,7 +1187,7 @@ http_interactions:
|
|
1187
1187
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/D9F33784FA8AB42F23DE4B81D38B2291A5C7977C.torrent\"
|
1188
1188
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/D9F33784FA8AB42F23DE4B81D38B2291A5C7977C.torrent\"
|
1189
1189
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1190
|
-
align=\"center\" class=\"forum_thread_post\">
|
1190
|
+
align=\"center\" class=\"forum_thread_post\">11h 9m </td>\n\t\t\t<td align=\"center\"
|
1191
1191
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53223/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1192
1192
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1193
1193
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1210,7 +1210,7 @@ http_interactions:
|
|
1210
1210
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/3A3125176CDBC703FDABB69FDC4A3C266887A059.torrent\"
|
1211
1211
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/3A3125176CDBC703FDABB69FDC4A3C266887A059.torrent\"
|
1212
1212
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1213
|
-
align=\"center\" class=\"forum_thread_post\">
|
1213
|
+
align=\"center\" class=\"forum_thread_post\">12h 53m </td>\n\t\t\t<td align=\"center\"
|
1214
1214
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53222/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1215
1215
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1216
1216
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1234,7 +1234,7 @@ http_interactions:
|
|
1234
1234
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/D17AF251932AFD5FAF1578609DE8F49F50C441A8.torrent\"
|
1235
1235
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/D17AF251932AFD5FAF1578609DE8F49F50C441A8.torrent\"
|
1236
1236
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1237
|
-
align=\"center\" class=\"forum_thread_post\">
|
1237
|
+
align=\"center\" class=\"forum_thread_post\">12h 53m </td>\n\t\t\t<td align=\"center\"
|
1238
1238
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53221/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1239
1239
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1240
1240
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1258,7 +1258,7 @@ http_interactions:
|
|
1258
1258
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/2A31DE5E890CBE47B887F54A305E0D8B3091E12D.torrent\"
|
1259
1259
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/2A31DE5E890CBE47B887F54A305E0D8B3091E12D.torrent\"
|
1260
1260
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1261
|
-
align=\"center\" class=\"forum_thread_post\">
|
1261
|
+
align=\"center\" class=\"forum_thread_post\">12h 54m </td>\n\t\t\t<td align=\"center\"
|
1262
1262
|
class=\"forum_thread_post_end\"><a href=\"/forum/36133/the-simpsons-s25e14-hdtv-x264-lol/\"><img
|
1263
1263
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1264
1264
|
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1281,7 +1281,7 @@ http_interactions:
|
|
1281
1281
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://torrage.com/torrent/AC9A7D8B145EACB31708EAFA8B0F090CE24767A1.torrent\"
|
1282
1282
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"//zoink.it/torrent/AC9A7D8B145EACB31708EAFA8B0F090CE24767A1.torrent\"
|
1283
1283
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1284
|
-
align=\"center\" class=\"forum_thread_post\">
|
1284
|
+
align=\"center\" class=\"forum_thread_post\">12h 55m </td>\n\t\t\t<td align=\"center\"
|
1285
1285
|
class=\"forum_thread_post_end\"><a href=\"/forum/36135/american-dad-s09e12-hdtv-x264-excellence/\"><img
|
1286
1286
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1287
1287
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1306,7 +1306,7 @@ http_interactions:
|
|
1306
1306
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/45B34B4560BA991C42FF50C485C22CFFBBC24D69.torrent\"
|
1307
1307
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/45B34B4560BA991C42FF50C485C22CFFBBC24D69.torrent\"
|
1308
1308
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1309
|
-
align=\"center\" class=\"forum_thread_post\">
|
1309
|
+
align=\"center\" class=\"forum_thread_post\">13h 20m </td>\n\t\t\t<td align=\"center\"
|
1310
1310
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53218/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1311
1311
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1312
1312
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1330,7 +1330,7 @@ http_interactions:
|
|
1330
1330
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/819B12BDD6A513594B3C7ED42F2C49AD0FD5B90D.torrent\"
|
1331
1331
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/819B12BDD6A513594B3C7ED42F2C49AD0FD5B90D.torrent\"
|
1332
1332
|
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1333
|
-
align=\"center\" class=\"forum_thread_post\">
|
1333
|
+
align=\"center\" class=\"forum_thread_post\">13h 29m </td>\n\t\t\t<td align=\"center\"
|
1334
1334
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53217/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1335
1335
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1336
1336
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1354,7 +1354,7 @@ http_interactions:
|
|
1354
1354
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/8FBBCA496FE69105E51A58F7D5CA9AFF4096DB67.torrent\"
|
1355
1355
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/8FBBCA496FE69105E51A58F7D5CA9AFF4096DB67.torrent\"
|
1356
1356
|
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1357
|
-
align=\"center\" class=\"forum_thread_post\">
|
1357
|
+
align=\"center\" class=\"forum_thread_post\">13h 32m </td>\n\t\t\t<td align=\"center\"
|
1358
1358
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53216/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1359
1359
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1360
1360
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1378,7 +1378,7 @@ http_interactions:
|
|
1378
1378
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/01368420AA339DFB5ADE2C611B23D1CA62569C02.torrent\"
|
1379
1379
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/01368420AA339DFB5ADE2C611B23D1CA62569C02.torrent\"
|
1380
1380
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1381
|
-
align=\"center\" class=\"forum_thread_post\">
|
1381
|
+
align=\"center\" class=\"forum_thread_post\">13h 33m </td>\n\t\t\t<td align=\"center\"
|
1382
1382
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53215/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1383
1383
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1384
1384
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1396,7 +1396,7 @@ http_interactions:
|
|
1396
1396
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/5B49B1A74B4E0C9B7BA013447D406541AE0AE1CD.torrent\"
|
1397
1397
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485571/Live+from+Space+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1398
1398
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1399
|
-
align=\"center\" class=\"forum_thread_post\">
|
1399
|
+
align=\"center\" class=\"forum_thread_post\">16h 43m </td>\n\t\t\t<td align=\"center\"
|
1400
1400
|
class=\"forum_thread_post_end\"><a href=\"/forum/36130/live-from-space-x264-hdtv/\"><img
|
1401
1401
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1402
1402
|
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1421,7 +1421,7 @@ http_interactions:
|
|
1421
1421
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/935072C908F3812078BCD95C022577FF3AE322A8.torrent\"
|
1422
1422
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/935072C908F3812078BCD95C022577FF3AE322A8.torrent\"
|
1423
1423
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1424
|
-
align=\"center\" class=\"forum_thread_post\">
|
1424
|
+
align=\"center\" class=\"forum_thread_post\">17h 23m </td>\n\t\t\t<td align=\"center\"
|
1425
1425
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53213/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1426
1426
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1427
1427
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1444,7 +1444,7 @@ http_interactions:
|
|
1444
1444
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/F31E99A7AB94BCD5F94FCDDB49F47EE2E67B7581.torrent\"
|
1445
1445
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/F31E99A7AB94BCD5F94FCDDB49F47EE2E67B7581.torrent\"
|
1446
1446
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1447
|
-
align=\"center\" class=\"forum_thread_post\">
|
1447
|
+
align=\"center\" class=\"forum_thread_post\">17h 36m </td>\n\t\t\t<td align=\"center\"
|
1448
1448
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53212/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1449
1449
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1450
1450
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1467,7 +1467,7 @@ http_interactions:
|
|
1467
1467
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/6CC43265AD8F8C53F7A020DEAE7601CE6EF8AF37.torrent\"
|
1468
1468
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/6CC43265AD8F8C53F7A020DEAE7601CE6EF8AF37.torrent\"
|
1469
1469
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1470
|
-
align=\"center\" class=\"forum_thread_post\">
|
1470
|
+
align=\"center\" class=\"forum_thread_post\">17h 41m </td>\n\t\t\t<td align=\"center\"
|
1471
1471
|
class=\"forum_thread_post_end\"><a href=\"/forum/36131/top-gear-21x07-hdtv-x264-fov/\"><img
|
1472
1472
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1473
1473
|
alt=\"7 comments\" title=\"7 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1493,7 +1493,7 @@ http_interactions:
|
|
1493
1493
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/A6E7E3CD4011A30B7C2338FEC078523AD066CBA4.torrent\"
|
1494
1494
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/A6E7E3CD4011A30B7C2338FEC078523AD066CBA4.torrent\"
|
1495
1495
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1496
|
-
align=\"center\" class=\"forum_thread_post\">
|
1496
|
+
align=\"center\" class=\"forum_thread_post\">17h 45m </td>\n\t\t\t<td align=\"center\"
|
1497
1497
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53210/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1498
1498
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1499
1499
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1517,7 +1517,7 @@ http_interactions:
|
|
1517
1517
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/DC41759DD87187E75F73291745F8EDA4EE94FDF9.torrent\"
|
1518
1518
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/DC41759DD87187E75F73291745F8EDA4EE94FDF9.torrent\"
|
1519
1519
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1520
|
-
align=\"center\" class=\"forum_thread_post\">
|
1520
|
+
align=\"center\" class=\"forum_thread_post\">17h 46m </td>\n\t\t\t<td align=\"center\"
|
1521
1521
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53209/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1522
1522
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1523
1523
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1534,7 +1534,7 @@ http_interactions:
|
|
1534
1534
|
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/DD8660AEE5C46A9A7282A3841466C987060FD69A.torrent\"
|
1535
1535
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/DD8660AEE5C46A9A7282A3841466C987060FD69A.torrent\"
|
1536
1536
|
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
1537
|
-
align=\"center\" class=\"forum_thread_post\">
|
1537
|
+
align=\"center\" class=\"forum_thread_post\">18h 18m </td>\n\t\t\t<td align=\"center\"
|
1538
1538
|
class=\"forum_thread_post_end\"><a href=\"/forum/36129/aircraft-films-f4f-wildcat-xvid/\"><img
|
1539
1539
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1540
1540
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1557,7 +1557,7 @@ http_interactions:
|
|
1557
1557
|
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/F59CB9A9790E5BBDE5631A483021D9DC223890F1.torrent\"
|
1558
1558
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485354/The+Culture+Show+2014+Viking+Art+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1559
1559
|
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
1560
|
-
align=\"center\" class=\"forum_thread_post\">
|
1560
|
+
align=\"center\" class=\"forum_thread_post\">19h 4m </td>\n\t\t\t<td align=\"center\"
|
1561
1561
|
class=\"forum_thread_post_end\"><a href=\"/forum/36127/the-culture-show-2014-viking-art-x264-hdtv/\"><img
|
1562
1562
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1563
1563
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1576,7 +1576,7 @@ http_interactions:
|
|
1576
1576
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/D78739DEE68BD6E244CF13B13585B34D64E77772.torrent\"
|
1577
1577
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485210/Photographing+Africa+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1578
1578
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1579
|
-
align=\"center\" class=\"forum_thread_post\">
|
1579
|
+
align=\"center\" class=\"forum_thread_post\">20h 41m </td>\n\t\t\t<td align=\"center\"
|
1580
1580
|
class=\"forum_thread_post_end\"><a href=\"/forum/36126/photographing-africa-x264-hdtv/\"><img
|
1581
1581
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1582
1582
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1595,7 +1595,7 @@ http_interactions:
|
|
1595
1595
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/90558D375789705C4989C457B2D28171EB363C54.torrent\"
|
1596
1596
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485143/Discovering+Dire+Straits+PDTV+x264+%5BMVGroup+org%5D.torrent\"
|
1597
1597
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1598
|
-
align=\"center\" class=\"forum_thread_post\">
|
1598
|
+
align=\"center\" class=\"forum_thread_post\">21h 30m </td>\n\t\t\t<td align=\"center\"
|
1599
1599
|
class=\"forum_thread_post_end\"><a href=\"/forum/36125/discovering-dire-straits-pdtv-x264/\"><img
|
1600
1600
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1601
1601
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1618,7 +1618,7 @@ http_interactions:
|
|
1618
1618
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187910&type=torrent\"
|
1619
1619
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/339AC8C06F6BFCB2E8BA3D17123E53E071C1F471.torrent\"
|
1620
1620
|
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1621
|
-
align=\"center\" class=\"forum_thread_post\">
|
1621
|
+
align=\"center\" class=\"forum_thread_post\">21h 34m </td>\n\t\t\t<td align=\"center\"
|
1622
1622
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53205/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1623
1623
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1624
1624
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1638,7 +1638,7 @@ http_interactions:
|
|
1638
1638
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/716CE96367A0F6C27E2E0AD3753862418DC19A66.torrent\"
|
1639
1639
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485114/Storyville+2013+Blackfish+The+Whale+that+Killed+PDTV+x264+%5BMVGroup+org%5D.torrent\"
|
1640
1640
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1641
|
-
align=\"center\" class=\"forum_thread_post\">
|
1641
|
+
align=\"center\" class=\"forum_thread_post\">22h 19m </td>\n\t\t\t<td align=\"center\"
|
1642
1642
|
class=\"forum_thread_post_end\"><a href=\"/forum/36124/storyville-2013-blackfish-the-whale-that-killed-pdtv-x264/\"><img
|
1643
1643
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1644
1644
|
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1661,7 +1661,7 @@ http_interactions:
|
|
1661
1661
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/F17BE0F551D4E71F172C35EFD61C47ECC9710C09.torrent\"
|
1662
1662
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/F17BE0F551D4E71F172C35EFD61C47ECC9710C09.torrent\"
|
1663
1663
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1664
|
-
align=\"center\" class=\"forum_thread_post\">
|
1664
|
+
align=\"center\" class=\"forum_thread_post\">22h 50m </td>\n\t\t\t<td align=\"center\"
|
1665
1665
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53202/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1666
1666
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1667
1667
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1680,7 +1680,7 @@ http_interactions:
|
|
1680
1680
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/85BBA2A7F873D09BA2A90874111C08627D066DBF.torrent\"
|
1681
1681
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3484746/Astronauts+Houston+We+Have+a+Problem+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1682
1682
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1683
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1683
|
+
align=\"center\" class=\"forum_thread_post\">1d 2h </td>\n\t\t\t<td align=\"center\"
|
1684
1684
|
class=\"forum_thread_post_end\"><a href=\"/forum/36123/astronauts-houston-we-have-a-problem-x264-hdtv/\"><img
|
1685
1685
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1686
1686
|
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1699,7 +1699,7 @@ http_interactions:
|
|
1699
1699
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/E8A3616BAC3B3F775A58525B50E2E961E8B465E8.torrent\"
|
1700
1700
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3484610/Astronauts+Living+In+Space+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1701
1701
|
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1702
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1702
|
+
align=\"center\" class=\"forum_thread_post\">1d 3h </td>\n\t\t\t<td align=\"center\"
|
1703
1703
|
class=\"forum_thread_post_end\"><a href=\"/forum/36122/astronauts-living-in-space-x264-hdtv/\"><img
|
1704
1704
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1705
1705
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1723,7 +1723,7 @@ http_interactions:
|
|
1723
1723
|
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/D74798B0ECA80176BB9BAD112B6187272AB4D4A5.torrent\"
|
1724
1724
|
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484500/Cosmos+A+Personal+Voyage+07of13+The+Backbone+of+Night+DVDRip+x264+%5BMVGroup+org%5D.torrent\"
|
1725
1725
|
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
1726
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1726
|
+
align=\"center\" class=\"forum_thread_post\">1d 5h </td>\n\t\t\t<td align=\"center\"
|
1727
1727
|
class=\"forum_thread_post_end\"><a href=\"/forum/36121/cosmos-a-personal-voyage-07of13-the-backbone-of-night-dvdrip-x264/\"><img
|
1728
1728
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1729
1729
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t\t<tr
|
@@ -1751,7 +1751,7 @@ http_interactions:
|
|
1751
1751
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/5A21C8D1222932C631F81C2A8A88D0BA6C165E10.torrent\"
|
1752
1752
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/5A21C8D1222932C631F81C2A8A88D0BA6C165E10.torrent\"
|
1753
1753
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1754
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1754
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1755
1755
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53198/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1756
1756
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1757
1757
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1776,7 +1776,7 @@ http_interactions:
|
|
1776
1776
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/57FDEC3D764DBB98099CABA997678ACAA2E94437.torrent\"
|
1777
1777
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/57FDEC3D764DBB98099CABA997678ACAA2E94437.torrent\"
|
1778
1778
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1779
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1779
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1780
1780
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53197/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1781
1781
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1782
1782
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1801,7 +1801,7 @@ http_interactions:
|
|
1801
1801
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/FDF465D0070ADF73B642552DAC222DA25A7332CF.torrent\"
|
1802
1802
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/FDF465D0070ADF73B642552DAC222DA25A7332CF.torrent\"
|
1803
1803
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1804
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1804
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1805
1805
|
class=\"forum_thread_post_end\"><a href=\"/forum/36120/2-broke-girls-s03e18-hdtv-x264-repack-lol/\"><img
|
1806
1806
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1807
1807
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1826,7 +1826,7 @@ http_interactions:
|
|
1826
1826
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/01E6B06E56AE669A12045BA5036AA6763D9DE64D.torrent\"
|
1827
1827
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/01E6B06E56AE669A12045BA5036AA6763D9DE64D.torrent\"
|
1828
1828
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1829
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1829
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1830
1830
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53195/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1831
1831
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1832
1832
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1850,7 +1850,7 @@ http_interactions:
|
|
1850
1850
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/DD0DDEE8DC4A99BCBBE5A352A6D40B778D03EF82.torrent\"
|
1851
1851
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/DD0DDEE8DC4A99BCBBE5A352A6D40B778D03EF82.torrent\"
|
1852
1852
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1853
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1853
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1854
1854
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53194/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1855
1855
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1856
1856
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1875,7 +1875,7 @@ http_interactions:
|
|
1875
1875
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/1E5277CD0B60D3E393A4ADC01A40C3D0832A1A8E.torrent\"
|
1876
1876
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/1E5277CD0B60D3E393A4ADC01A40C3D0832A1A8E.torrent\"
|
1877
1877
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1878
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1878
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1879
1879
|
class=\"forum_thread_post_end\"><a href=\"/forum/36134/hawaii-five-0-2010-s04e17-hdtv-x264-lol/\"><img
|
1880
1880
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1881
1881
|
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1900,7 +1900,7 @@ http_interactions:
|
|
1900
1900
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/42C39880FCB2963738A596729E41D7AFF2F1BE91.torrent\"
|
1901
1901
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/42C39880FCB2963738A596729E41D7AFF2F1BE91.torrent\"
|
1902
1902
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1903
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1903
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1904
1904
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53192/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1905
1905
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1906
1906
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1924,7 +1924,7 @@ http_interactions:
|
|
1924
1924
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/394A15924B7DE8A23825C332FE066CD77FCEE50D.torrent\"
|
1925
1925
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/394A15924B7DE8A23825C332FE066CD77FCEE50D.torrent\"
|
1926
1926
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1927
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1927
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1928
1928
|
class=\"forum_thread_post_end\"><a href=\"/forum/36128/enlisted-s01e08-hdtv-x264-excellence/\"><img
|
1929
1929
|
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1930
1930
|
alt=\"4 comments\" title=\"4 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
@@ -1949,7 +1949,7 @@ http_interactions:
|
|
1949
1949
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/7320529C1DA7328019CCC4DC30151EA27D848B05.torrent\"
|
1950
1950
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/7320529C1DA7328019CCC4DC30151EA27D848B05.torrent\"
|
1951
1951
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1952
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1952
|
+
align=\"center\" class=\"forum_thread_post\">1d 13h </td>\n\t\t\t<td align=\"center\"
|
1953
1953
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53190/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1954
1954
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1955
1955
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1973,7 +1973,7 @@ http_interactions:
|
|
1973
1973
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/6A375F0F5433596966C16F0AF4EC6A0E19FF0302.torrent\"
|
1974
1974
|
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/6A375F0F5433596966C16F0AF4EC6A0E19FF0302.torrent\"
|
1975
1975
|
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1976
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1976
|
+
align=\"center\" class=\"forum_thread_post\">1d 13h </td>\n\t\t\t<td align=\"center\"
|
1977
1977
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53189/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1978
1978
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1979
1979
|
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
@@ -1996,7 +1996,7 @@ http_interactions:
|
|
1996
1996
|
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/B674BD4F37B60EB712F630782229205B29AC04C7.torrent\"
|
1997
1997
|
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/B674BD4F37B60EB712F630782229205B29AC04C7.torrent\"
|
1998
1998
|
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1999
|
-
align=\"center\" class=\"forum_thread_post\">1d
|
1999
|
+
align=\"center\" class=\"forum_thread_post\">1d 15h </td>\n\t\t\t<td align=\"center\"
|
2000
2000
|
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53188/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
2001
2001
|
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
2002
2002
|
this show\" /></a></td>\n\t\t</tr>\n\t</table>\n\t<table width=\"950\" border=\"0\"
|
@@ -2022,5 +2022,5 @@ http_interactions:
|
|
2022
2022
|
src=\"//ezimg.it/s/1/2/ezrssit.png\" width=\"80\" height=\"15\" border=\"0\"
|
2023
2023
|
/></a>\n\t\t</center>\n\t</div>\n\t\t</body>\n</html>"
|
2024
2024
|
http_version:
|
2025
|
-
recorded_at: Mon, 17 Mar 2014
|
2025
|
+
recorded_at: Mon, 17 Mar 2014 15:03:41 GMT
|
2026
2026
|
recorded_with: VCR 2.8.0
|