wiki-based
This commit is contained in:
commit
e9bb4232f1
53 changed files with 483 additions and 0 deletions
1
README.md
Normal file
1
README.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
### See https://plailect.github.io/Guide/
|
3
index.html
Normal file
3
index.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<head>
|
||||||
|
<META http-equiv="refresh" content="0;URL=https://github.com/Plailect/Guide/wiki">
|
||||||
|
</head>
|
66
rss.py
Normal file
66
rss.py
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Python Script for generating a rss.xml for the A9LH Guide Plailect wrote. Requires bencodepy from pypy."""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import hashlib
|
||||||
|
import urllib.parse
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
import bencodepy
|
||||||
|
|
||||||
|
dir = os.path.join(os.getcwd(), "torrents")
|
||||||
|
rss = os.path.join(os.getcwd(), "rss.xml")
|
||||||
|
gio = "https://plailect.github.io/Guide/torrents"
|
||||||
|
|
||||||
|
with open(rss, "w") as xml:
|
||||||
|
xml.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
|
||||||
|
xml.write("<rss version=\"2.0\">\n")
|
||||||
|
xml.write("\t<channel>\n")
|
||||||
|
xml.write("\t\t<title>Plailect Guide Feed</title>\n")
|
||||||
|
xml.write("\t\t<lastBuildDate>{0}</lastBuildDate>\n".format(datetime.datetime.utcnow().strftime("%a, %d %b %Y %X +0000")))
|
||||||
|
xml.write("\t\t<link>https://github.com/Plailect/Guide/</link>\n")
|
||||||
|
|
||||||
|
for filename in os.listdir(dir):
|
||||||
|
if filename.endswith(".torrent"):
|
||||||
|
filepath = os.path.join(dir, filename)
|
||||||
|
|
||||||
|
with open(filepath, "rb") as a:
|
||||||
|
raw = a.read()
|
||||||
|
tor = bencodepy.decode(raw)
|
||||||
|
magnet = ""
|
||||||
|
if b"info" in tor:
|
||||||
|
infohash = hashlib.sha1(bencodepy.encode(tor[b"info"])).hexdigest().upper()
|
||||||
|
magp = {"xt": "urn:btih:{0}".format(infohash), "dn": tor[b"info"][b"name"], "xl": tor[b"info"][b"length"]}
|
||||||
|
magstr = urllib.parse.urlencode(magp)
|
||||||
|
magnet = "magnet:?{0}".format(magstr)
|
||||||
|
for anncl in tor[b"announce-list"]:
|
||||||
|
if isinstance(anncl, list):
|
||||||
|
for annc in anncl:
|
||||||
|
magnet = "{0}{1}".format(magnet, "&tr={0}".format(annc.decode("utf-8")))
|
||||||
|
else:
|
||||||
|
magnet = "{0}{1}".format(magnet, "&tr={0}".format(anncl.decode("utf-8")))
|
||||||
|
length = tor[b"info"][b"length"]
|
||||||
|
name = tor[b"info"][b"name"].decode("utf-8")
|
||||||
|
ts = tor[b"creation date"]
|
||||||
|
else:
|
||||||
|
infohash = "{0}/{1}".format(gio, filename)
|
||||||
|
|
||||||
|
uri = "{0}/{1}".format(gio, filename)
|
||||||
|
magnet = urllib.parse.quote(magnet)
|
||||||
|
pubdate = datetime.datetime.utcfromtimestamp(int(ts))
|
||||||
|
xml.write("\t\t<item>\n")
|
||||||
|
xml.write("\t\t\t<title>{0}</title>\n".format(name))
|
||||||
|
xml.write("\t\t\t<description>{0}</description>\n".format(name))
|
||||||
|
xml.write("\t\t\t<guid>{0}</guid>\n".format(infohash))
|
||||||
|
xml.write("\t\t\t<link>{0}</link>\n".format(uri))
|
||||||
|
xml.write("\t\t\t<pubDate>{0}</pubDate>\n".format(pubdate.strftime("%a, %d %b %Y %X +0000")))
|
||||||
|
#xml.write("\t\t\t<media:content url=\"{0}\" fileSize=\"{1}\"/>\n".format(uri, length))
|
||||||
|
#xml.write("\t\t\t<media:hash algo=\"sha1\"><{0}/media:hash>\n".format(infohash))
|
||||||
|
#xml.write("\t\t\t<torrent:contentLength>{0}</torrent:contentLength>\n".format(length))
|
||||||
|
#xml.write("\t\t\t<torrent:infoHash>{0}</torrent:infoHash>\n".format(infohash))
|
||||||
|
#xml.write("\t\t\t<torrent:magnetURI><![CDATA[{0}]]></torrent:magnetURI>\n".format(magnet))
|
||||||
|
#xml.write("\t\t\t<torrent:fileName>{0}</torrent:fileName><torrent:fileName>\n".format(name))
|
||||||
|
xml.write("\t\t\t<enclosure url=\"{0}\" length=\"{1}\" type=\"application/x-bittorent\" />\n".format(uri, length))
|
||||||
|
xml.write("\t\t</item>\n")
|
||||||
|
xml.write("\t</channel>\n")
|
||||||
|
xml.write("</rss>")
|
400
rss.xml
Normal file
400
rss.xml
Normal file
|
@ -0,0 +1,400 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<rss version="2.0">
|
||||||
|
<channel>
|
||||||
|
<title>Plailect Guide Feed</title>
|
||||||
|
<lastBuildDate>Sat, 29 Oct 2016 03:10:14 +0000</lastBuildDate>
|
||||||
|
<link>https://github.com/Plailect/Guide/</link>
|
||||||
|
<item>
|
||||||
|
<title>1.0.0_qr.png</title>
|
||||||
|
<description>1.0.0_qr.png</description>
|
||||||
|
<guid>9EEABFD544483545A3B29BF8ED4DBE1544F6F6D4</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/1.0.0_qr.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:00:06 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/1.0.0_qr.torrent" length="6134" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>1.1.0_qr.png</title>
|
||||||
|
<description>1.1.0_qr.png</description>
|
||||||
|
<guid>7D2707AE938991140E94502A4C9880579E7FAA7C</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/1.1.0_qr.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:00:09 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/1.1.0_qr.torrent" length="5812" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>11.0.0_to_10.4.0_n3ds.zip</title>
|
||||||
|
<description>11.0.0_to_10.4.0_n3ds.zip</description>
|
||||||
|
<guid>2D13A5EA1570F911BD5C6423E0C30E51D548837A</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/11.0.0_to_10.4.0_n3ds.torrent</link>
|
||||||
|
<pubDate>Tue, 13 Sep 2016 15:18:54 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/11.0.0_to_10.4.0_n3ds.torrent" length="1679467" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>11.0.0_to_10.4.0_o3ds.zip</title>
|
||||||
|
<description>11.0.0_to_10.4.0_o3ds.zip</description>
|
||||||
|
<guid>72393BBD99BC285DB84A9CABF39D9B3200058D6A</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/11.0.0_to_10.4.0_o3ds.torrent</link>
|
||||||
|
<pubDate>Tue, 13 Sep 2016 15:18:58 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/11.0.0_to_10.4.0_o3ds.torrent" length="1243864" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>11.1.0_to_10.4.0_n3ds.zip</title>
|
||||||
|
<description>11.1.0_to_10.4.0_n3ds.zip</description>
|
||||||
|
<guid>D7D60C27C18F53BD8508A194656A465F6448BEDF</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/11.1.0_to_10.4.0_n3ds.torrent</link>
|
||||||
|
<pubDate>Tue, 13 Sep 2016 15:19:01 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/11.1.0_to_10.4.0_n3ds.torrent" length="1680327" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>11.1.0_to_10.4.0_o3ds.zip</title>
|
||||||
|
<description>11.1.0_to_10.4.0_o3ds.zip</description>
|
||||||
|
<guid>0CAF9A948A2D8BF23606D641F6628E2BAEB983BB</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/11.1.0_to_10.4.0_o3ds.torrent</link>
|
||||||
|
<pubDate>Tue, 13 Sep 2016 15:19:04 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/11.1.0_to_10.4.0_o3ds.torrent" length="1244532" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>11.2.0_to_10.4.0_n3ds.zip</title>
|
||||||
|
<description>11.2.0_to_10.4.0_n3ds.zip</description>
|
||||||
|
<guid>881388A552A1CE9A963D391BF1A023642270991C</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/11.2.0_to_10.4.0_n3ds.torrent</link>
|
||||||
|
<pubDate>Wed, 26 Oct 2016 00:56:40 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/11.2.0_to_10.4.0_n3ds.torrent" length="1680842" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>11.2.0_to_10.4.0_o3ds.zip</title>
|
||||||
|
<description>11.2.0_to_10.4.0_o3ds.zip</description>
|
||||||
|
<guid>A479E4EE55EFBC18C181D426CD77A34815388151</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/11.2.0_to_10.4.0_o3ds.torrent</link>
|
||||||
|
<pubDate>Wed, 26 Oct 2016 00:56:34 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/11.2.0_to_10.4.0_o3ds.torrent" length="1244806" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0-4E_ctrtransfer_o3ds.zip</title>
|
||||||
|
<description>2.1.0-4E_ctrtransfer_o3ds.zip</description>
|
||||||
|
<guid>89ACC9C1B488B8B38251DE0DDF07975D6BD354A1</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0-4E_ctrtransfer_o3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 16:58:38 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0-4E_ctrtransfer_o3ds.torrent" length="769861147" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0-4J_ctrtransfer_o3ds.zip</title>
|
||||||
|
<description>2.1.0-4J_ctrtransfer_o3ds.zip</description>
|
||||||
|
<guid>3DBB9C9C85A33C6242F424DCBAEBCACDD8A5912B</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0-4J_ctrtransfer_o3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:01:35 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0-4J_ctrtransfer_o3ds.torrent" length="766749988" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0-4U_ctrtransfer_o3ds.zip</title>
|
||||||
|
<description>2.1.0-4U_ctrtransfer_o3ds.zip</description>
|
||||||
|
<guid>1609CE9EE7B0ED9B6DEA0B3E7CCA4FC52DAD6FF4</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0-4U_ctrtransfer_o3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:02:37 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0-4U_ctrtransfer_o3ds.torrent" length="741319805" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0E(Full).zip</title>
|
||||||
|
<description>2.1.0E(Full).zip</description>
|
||||||
|
<guid>AC8349B75D3AF54BA92D561662D80A96CAC4AA7F</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0E(Full).torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:28:35 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0E(Full).torrent" length="150999703" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0J(Full).zip</title>
|
||||||
|
<description>2.1.0J(Full).zip</description>
|
||||||
|
<guid>3EAA80EA853FF800BC865FCD0EE2FF262A0A05F3</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0J(Full).torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:28:45 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0J(Full).torrent" length="113186048" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0U(Full).zip</title>
|
||||||
|
<description>2.1.0U(Full).zip</description>
|
||||||
|
<guid>B76B9FAF3684CDAEE014F9E6941228E906D688EB</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0U(Full).torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:28:50 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0U(Full).torrent" length="124608587" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.1.0_qr.png</title>
|
||||||
|
<description>2.1.0_qr.png</description>
|
||||||
|
<guid>8D96457DC182160A5F7F5E9B2FB51705F7C8985F</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.1.0_qr.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:00:12 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.1.0_qr.torrent" length="6138" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>2.2.0_qr.png</title>
|
||||||
|
<description>2.2.0_qr.png</description>
|
||||||
|
<guid>183B327D0FC74DE8545115E20CB90BDE121E5FDF</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/2.2.0_qr.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:00:15 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/2.2.0_qr.torrent" length="26938" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>3ds-private-update-server.zip</title>
|
||||||
|
<description>3ds-private-update-server.zip</description>
|
||||||
|
<guid>8623E580752F22940D96630EF723CE30A707B22E</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/3ds-private-update-server.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:31:33 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/3ds-private-update-server.torrent" length="16831" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.0.0-20K(Full).zip</title>
|
||||||
|
<description>9.0.0-20K(Full).zip</description>
|
||||||
|
<guid>2695D01CDFECB74A59E25B98F76AB9285A2DAE11</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.0.0-20K(Full).torrent</link>
|
||||||
|
<pubDate>Sat, 27 Aug 2016 20:16:29 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.0.0-20K(Full).torrent" length="123861830" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.0.0-20T(Full).zip</title>
|
||||||
|
<description>9.0.0-20T(Full).zip</description>
|
||||||
|
<guid>F2F3BF7250F7AE558AB9EBD3C425A8F85021F80F</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.0.0-20T(Full).torrent</link>
|
||||||
|
<pubDate>Sat, 27 Aug 2016 20:16:44 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.0.0-20T(Full).torrent" length="128171715" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20E(Full).zip</title>
|
||||||
|
<description>9.2.0-20E(Full).zip</description>
|
||||||
|
<guid>844006EB64474C115BD5B847F6C59D333BE3397A</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20E(Full).torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:28:56 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20E(Full).torrent" length="196860903" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20E(Full)_n3DS.zip</title>
|
||||||
|
<description>9.2.0-20E(Full)_n3DS.zip</description>
|
||||||
|
<guid>4E22CF8BC71C99A70BB846C7CF416D4CAAFBE58E</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20E(Full)_n3DS.torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:29:04 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20E(Full)_n3DS.torrent" length="148685306" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20E_ctrtransfer_n3ds.zip</title>
|
||||||
|
<description>9.2.0-20E_ctrtransfer_n3ds.zip</description>
|
||||||
|
<guid>FED7BFEEC0E52B42A77467CFB6FFD3E9DD2D5A70</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20E_ctrtransfer_n3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:03:24 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20E_ctrtransfer_n3ds.torrent" length="1078614314" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20E_ctrtransfer_o3ds.zip</title>
|
||||||
|
<description>9.2.0-20E_ctrtransfer_o3ds.zip</description>
|
||||||
|
<guid>8D6142313971B08F92257E7FB1C1D5689E34ED78</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20E_ctrtransfer_o3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:04:23 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20E_ctrtransfer_o3ds.torrent" length="757852955" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20J(Full).zip</title>
|
||||||
|
<description>9.2.0-20J(Full).zip</description>
|
||||||
|
<guid>BB27A53A524276B6527D3B139395B2AFC7AFFE1A</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20J(Full).torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:29:20 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20J(Full).torrent" length="161440346" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20J(Full)_n3DS.zip</title>
|
||||||
|
<description>9.2.0-20J(Full)_n3DS.zip</description>
|
||||||
|
<guid>C8630ED31B53637B9023BD4DC1CE38362BB8ECD9</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20J(Full)_n3DS.torrent</link>
|
||||||
|
<pubDate>Mon, 25 Jul 2016 20:29:29 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20J(Full)_n3DS.torrent" length="121606805" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20J_ctrtransfer_n3ds.zip</title>
|
||||||
|
<description>9.2.0-20J_ctrtransfer_n3ds.zip</description>
|
||||||
|
<guid>B22D67FD02B3B0E30AC991E451DB0F2D32E7BECA</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20J_ctrtransfer_n3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:04:42 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20J_ctrtransfer_n3ds.torrent" length="1053583464" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20J_ctrtransfer_o3ds.zip</title>
|
||||||
|
<description>9.2.0-20J_ctrtransfer_o3ds.zip</description>
|
||||||
|
<guid>24AD2B85E67013EF1F91178DCA7AD2E40663B9B2</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20J_ctrtransfer_o3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:05:16 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20J_ctrtransfer_o3ds.torrent" length="774577032" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20U(Full).zip</title>
|
||||||
|
<description>9.2.0-20U(Full).zip</description>
|
||||||
|
<guid>940D6479A3972A99DAEB85C499F0D6E4E24A2C8B</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20U(Full).torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 00:14:22 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20U(Full).torrent" length="177532065" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20U(Full)_n3DS.zip</title>
|
||||||
|
<description>9.2.0-20U(Full)_n3DS.zip</description>
|
||||||
|
<guid>1E670B71B7F26F2765BBE55D0F6CB8C0459D2E8C</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20U(Full)_n3DS.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 00:14:27 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20U(Full)_n3DS.torrent" length="132327215" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20U_ctrtransfer_n3ds.zip</title>
|
||||||
|
<description>9.2.0-20U_ctrtransfer_n3ds.zip</description>
|
||||||
|
<guid>985D47442DC470D1B9F908256BED041C63885F60</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20U_ctrtransfer_n3ds.torrent</link>
|
||||||
|
<pubDate>Wed, 24 Aug 2016 19:52:00 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20U_ctrtransfer_n3ds.torrent" length="1075525240" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>9.2.0-20U_ctrtransfer_o3ds.zip</title>
|
||||||
|
<description>9.2.0-20U_ctrtransfer_o3ds.zip</description>
|
||||||
|
<guid>1DC79A2A0BABB45497961888F369423A93135E2B</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/9.2.0-20U_ctrtransfer_o3ds.torrent</link>
|
||||||
|
<pubDate>Sat, 20 Aug 2016 17:06:17 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/9.2.0-20U_ctrtransfer_o3ds.torrent" length="772676297" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>aeskeydb.bin</title>
|
||||||
|
<description>aeskeydb.bin</description>
|
||||||
|
<guid>18B3A17F78E2376E05FEAA150749D9FD689B25DC</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/aeskeydb.torrent</link>
|
||||||
|
<pubDate>Sun, 18 Sep 2016 23:04:27 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/aeskeydb.torrent" length="256" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>ctr-common-1.zip</title>
|
||||||
|
<description>ctr-common-1.zip</description>
|
||||||
|
<guid>AF6D3F8B0A9C13D63B9405DC375CC68AF614394D</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/ctr-common-1.torrent</link>
|
||||||
|
<pubDate>Sat, 01 Oct 2016 21:09:55 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/ctr-common-1.torrent" length="2644" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>data_input_v3.zip</title>
|
||||||
|
<description>data_input_v3.zip</description>
|
||||||
|
<guid>A1195C9F7AB650FA7C7BF020B51FC19EA8D9440C</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/data_input_v3.torrent</link>
|
||||||
|
<pubDate>Thu, 29 Sep 2016 20:47:03 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/data_input_v3.torrent" length="2515468" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>DS Download Play - v1024.cia</title>
|
||||||
|
<description>DS Download Play - v1024.cia</description>
|
||||||
|
<guid>B581D3C5D98F5E621FDDFC1CE5704BB45BF05A8C</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/DS Download Play - v1024.torrent</link>
|
||||||
|
<pubDate>Sat, 03 Sep 2016 17:26:31 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/DS Download Play - v1024.torrent" length="447680" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>DS Internet - v2048.cia</title>
|
||||||
|
<description>DS Internet - v2048.cia</description>
|
||||||
|
<guid>2B9DF8496922F2546DFB0B01220068CE53C19D3D</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/DS Internet - v2048.torrent</link>
|
||||||
|
<pubDate>Sat, 03 Sep 2016 17:26:35 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/DS Internet - v2048.torrent" length="1320192" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>exidia_save.zip</title>
|
||||||
|
<description>exidia_save.zip</description>
|
||||||
|
<guid>5AB3518F63994D275C6F7352C396C618541BB4D0</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/exidia_save.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 03:37:27 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/exidia_save.torrent" length="34342" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>fbi-2.4.2-injectable.zip</title>
|
||||||
|
<description>fbi-2.4.2-injectable.zip</description>
|
||||||
|
<guid>F978B4CF5EDA72823240B9C649F3FD2940A9F525</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/fbi-2.4.2-injectable.torrent</link>
|
||||||
|
<pubDate>Fri, 30 Sep 2016 21:21:15 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/fbi-2.4.2-injectable.torrent" length="5567581" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>fieldrunners_eur_save.zip</title>
|
||||||
|
<description>fieldrunners_eur_save.zip</description>
|
||||||
|
<guid>A342E4A43CA6C5A4EC03F5891FD5B954BF4AB34E</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/fieldrunners_eur_save.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 03:37:30 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/fieldrunners_eur_save.torrent" length="31288" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>fieldrunners_usa_save.zip</title>
|
||||||
|
<description>fieldrunners_usa_save.zip</description>
|
||||||
|
<guid>34D12DBDE622AFF3C43736F4668162C3BB2D05A9</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/fieldrunners_usa_save.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 03:37:33 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/fieldrunners_usa_save.torrent" length="31288" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>grtpwn_eur_save.zip</title>
|
||||||
|
<description>grtpwn_eur_save.zip</description>
|
||||||
|
<guid>AA5BF12862437BA369A54F15FAE27CBB6BCD0EB0</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/grtpwn_eur_save.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 15:04:08 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/grtpwn_eur_save.torrent" length="69402" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>n3ds_firmware.zip</title>
|
||||||
|
<description>n3ds_firmware.zip</description>
|
||||||
|
<guid>7AAD3CAD0E89F4288940641168D040B49B50FA40</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/n3ds_firmware.torrent</link>
|
||||||
|
<pubDate>Sat, 27 Aug 2016 21:30:20 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/n3ds_firmware.torrent" length="833840" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>New_3DS TWL_FIRM - v9936.cia</title>
|
||||||
|
<description>New_3DS TWL_FIRM - v9936.cia</description>
|
||||||
|
<guid>EAB8558C97B18B1F329A2BFCC3C899B84C082A27</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/New_3DS TWL_FIRM - v9936.torrent</link>
|
||||||
|
<pubDate>Sat, 03 Sep 2016 17:26:39 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/New_3DS TWL_FIRM - v9936.torrent" length="1746176" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Nintendo DS Cart Whitelist - v11264.cia</title>
|
||||||
|
<description>Nintendo DS Cart Whitelist - v11264.cia</description>
|
||||||
|
<guid>7B90D506AD032A581A00035616EAA17A68C48EFF</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/Nintendo DS Cart Whitelist - v11264.torrent</link>
|
||||||
|
<pubDate>Wed, 31 Aug 2016 19:12:44 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/Nintendo DS Cart Whitelist - v11264.torrent" length="391424" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>NTR Debugger.zip</title>
|
||||||
|
<description>NTR Debugger.zip</description>
|
||||||
|
<guid>66274CEE542BEF7745792714673BF2BE4D606496</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/NTR Debugger.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:31:19 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/NTR Debugger.torrent" length="20042111" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>o3ds_firmware.zip</title>
|
||||||
|
<description>o3ds_firmware.zip</description>
|
||||||
|
<guid>0323FFE6F1DF5986517BAEF2211A3E98634E34EC</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/o3ds_firmware.torrent</link>
|
||||||
|
<pubDate>Sat, 27 Aug 2016 21:30:23 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/o3ds_firmware.torrent" length="617690" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Old_3DS TWL_FIRM - v8817.cia</title>
|
||||||
|
<description>Old_3DS TWL_FIRM - v8817.cia</description>
|
||||||
|
<guid>17511EADB6E6F3FF22D04F90644E37BD2D96CA43</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/Old_3DS TWL_FIRM - v8817.torrent</link>
|
||||||
|
<pubDate>Sat, 03 Sep 2016 17:26:42 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/Old_3DS TWL_FIRM - v8817.torrent" length="1725696" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>TWL Version Data - v0.cia</title>
|
||||||
|
<description>TWL Version Data - v0.cia</description>
|
||||||
|
<guid>4A106681407FEDE5DE95CC8BDA635432481F6B5D</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/TWL Version Data - v0.torrent</link>
|
||||||
|
<pubDate>Sat, 03 Sep 2016 17:26:44 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/TWL Version Data - v0.torrent" length="21584" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>update.php</title>
|
||||||
|
<description>update.php</description>
|
||||||
|
<guid>CD7E59EA9744115913B561DBDE15F8D68E713507</guid>
|
||||||
|
<link>https://plailect.github.io/Guide/torrents/update.torrent</link>
|
||||||
|
<pubDate>Tue, 26 Jul 2016 04:54:21 +0000</pubDate>
|
||||||
|
<enclosure url="https://plailect.github.io/Guide/torrents/update.torrent" length="5171" type="application/x-bittorent" />
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
1
torrents/1.0.0_qr.torrent
Normal file
1
torrents/1.0.0_qr.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469505606e8:encoding5:UTF-84:infod6:lengthi6134e4:name12:1.0.0_qr.png12:piece lengthi32768e6:pieces20:éš0µ@wªj¸Ày™<"F"#çK<C3A7>7:privatei0eee
|
1
torrents/1.1.0_qr.torrent
Normal file
1
torrents/1.1.0_qr.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469505609e8:encoding5:UTF-84:infod6:lengthi5812e4:name12:1.1.0_qr.png12:piece lengthi32768e6:pieces20:Ôäü#ÒÚo‰¡%Ÿnµ02àþ7:privatei0eee
|
BIN
torrents/11.0.0_to_10.4.0_n3ds.torrent
Normal file
BIN
torrents/11.0.0_to_10.4.0_n3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/11.0.0_to_10.4.0_o3ds.torrent
Normal file
BIN
torrents/11.0.0_to_10.4.0_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/11.1.0_to_10.4.0_n3ds.torrent
Normal file
BIN
torrents/11.1.0_to_10.4.0_n3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/11.1.0_to_10.4.0_o3ds.torrent
Normal file
BIN
torrents/11.1.0_to_10.4.0_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/11.2.0_to_10.4.0_n3ds.torrent
Normal file
BIN
torrents/11.2.0_to_10.4.0_n3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/11.2.0_to_10.4.0_o3ds.torrent
Normal file
BIN
torrents/11.2.0_to_10.4.0_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/2.1.0-4E_ctrtransfer_o3ds.torrent
Normal file
BIN
torrents/2.1.0-4E_ctrtransfer_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/2.1.0-4J_ctrtransfer_o3ds.torrent
Normal file
BIN
torrents/2.1.0-4J_ctrtransfer_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/2.1.0-4U_ctrtransfer_o3ds.torrent
Normal file
BIN
torrents/2.1.0-4U_ctrtransfer_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/2.1.0E(Full).torrent
Normal file
BIN
torrents/2.1.0E(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/2.1.0J(Full).torrent
Normal file
BIN
torrents/2.1.0J(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/2.1.0U(Full).torrent
Normal file
BIN
torrents/2.1.0U(Full).torrent
Normal file
Binary file not shown.
1
torrents/2.1.0_qr.torrent
Normal file
1
torrents/2.1.0_qr.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469505612e8:encoding5:UTF-84:infod6:lengthi6138e4:name12:2.1.0_qr.png12:piece lengthi32768e6:pieces20:ÕÛƽ]ÀÜËöç&‰g¼BBä!}7:privatei0eee
|
1
torrents/2.2.0_qr.torrent
Normal file
1
torrents/2.2.0_qr.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469505615e8:encoding5:UTF-84:infod6:lengthi26938e4:name12:2.2.0_qr.png12:piece lengthi32768e6:pieces20:j¼µ1£ÏºÂˆÀIvDcŒƒžÁ±7:privatei0eee
|
1
torrents/3ds-private-update-server.torrent
Normal file
1
torrents/3ds-private-update-server.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469507493e8:encoding5:UTF-84:infod6:lengthi16831e4:name29:3ds-private-update-server.zip12:piece lengthi32768e6:pieces20:K¤\‡Hð‚sßÔ¯¢¦u^Ãü7:privatei0eee
|
BIN
torrents/9.0.0-20K(Full).torrent
Normal file
BIN
torrents/9.0.0-20K(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/9.0.0-20T(Full).torrent
Normal file
BIN
torrents/9.0.0-20T(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20E(Full).torrent
Normal file
BIN
torrents/9.2.0-20E(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20E(Full)_n3DS.torrent
Normal file
BIN
torrents/9.2.0-20E(Full)_n3DS.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20E_ctrtransfer_n3ds.torrent
Normal file
BIN
torrents/9.2.0-20E_ctrtransfer_n3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20E_ctrtransfer_o3ds.torrent
Normal file
BIN
torrents/9.2.0-20E_ctrtransfer_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20J(Full).torrent
Normal file
BIN
torrents/9.2.0-20J(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20J(Full)_n3DS.torrent
Normal file
BIN
torrents/9.2.0-20J(Full)_n3DS.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20J_ctrtransfer_n3ds.torrent
Normal file
BIN
torrents/9.2.0-20J_ctrtransfer_n3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20J_ctrtransfer_o3ds.torrent
Normal file
BIN
torrents/9.2.0-20J_ctrtransfer_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20U(Full).torrent
Normal file
BIN
torrents/9.2.0-20U(Full).torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20U(Full)_n3DS.torrent
Normal file
BIN
torrents/9.2.0-20U(Full)_n3DS.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20U_ctrtransfer_n3ds.torrent
Normal file
BIN
torrents/9.2.0-20U_ctrtransfer_n3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/9.2.0-20U_ctrtransfer_o3ds.torrent
Normal file
BIN
torrents/9.2.0-20U_ctrtransfer_o3ds.torrent
Normal file
Binary file not shown.
BIN
torrents/DS Download Play - v1024.torrent
Normal file
BIN
torrents/DS Download Play - v1024.torrent
Normal file
Binary file not shown.
BIN
torrents/DS Internet - v2048.torrent
Normal file
BIN
torrents/DS Internet - v2048.torrent
Normal file
Binary file not shown.
BIN
torrents/NTR Debugger.torrent
Normal file
BIN
torrents/NTR Debugger.torrent
Normal file
Binary file not shown.
BIN
torrents/New_3DS TWL_FIRM - v9936.torrent
Normal file
BIN
torrents/New_3DS TWL_FIRM - v9936.torrent
Normal file
Binary file not shown.
BIN
torrents/Nintendo DS Cart Whitelist - v11264.torrent
Normal file
BIN
torrents/Nintendo DS Cart Whitelist - v11264.torrent
Normal file
Binary file not shown.
BIN
torrents/Old_3DS TWL_FIRM - v8817.torrent
Normal file
BIN
torrents/Old_3DS TWL_FIRM - v8817.torrent
Normal file
Binary file not shown.
BIN
torrents/TWL Version Data - v0.torrent
Normal file
BIN
torrents/TWL Version Data - v0.torrent
Normal file
Binary file not shown.
BIN
torrents/aeskeydb.torrent
Normal file
BIN
torrents/aeskeydb.torrent
Normal file
Binary file not shown.
BIN
torrents/ctr-common-1.torrent
Normal file
BIN
torrents/ctr-common-1.torrent
Normal file
Binary file not shown.
BIN
torrents/data_input_v3.torrent
Normal file
BIN
torrents/data_input_v3.torrent
Normal file
Binary file not shown.
1
torrents/exidia_save.torrent
Normal file
1
torrents/exidia_save.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469504247e8:encoding5:UTF-84:infod6:lengthi34342e4:name15:exidia_save.zip12:piece lengthi32768e6:pieces40:\ÈÍä¼"¨z¨Ê„<C38A>»¨³üÕ¡'^©¾ó¢ŒriòøݨxÁá:Ÿ7:privatei0eee
|
BIN
torrents/fbi-2.4.2-injectable.torrent
Normal file
BIN
torrents/fbi-2.4.2-injectable.torrent
Normal file
Binary file not shown.
1
torrents/fieldrunners_eur_save.torrent
Normal file
1
torrents/fieldrunners_eur_save.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469504250e8:encoding5:UTF-84:infod6:lengthi31288e4:name25:fieldrunners_eur_save.zip12:piece lengthi32768e6:pieces20:o<>›’ÓmGzWt‚q¯ìÚu_Í7:privatei0eee
|
1
torrents/fieldrunners_usa_save.torrent
Normal file
1
torrents/fieldrunners_usa_save.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469504253e8:encoding5:UTF-84:infod6:lengthi31288e4:name25:fieldrunners_usa_save.zip12:piece lengthi32768e6:pieces20:óÔãq¸ÃaU<ïõ\èj~AN:e7:privatei0eee
|
1
torrents/grtpwn_eur_save.torrent
Normal file
1
torrents/grtpwn_eur_save.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469545448e8:encoding5:UTF-84:infod6:lengthi69402e4:name19:grtpwn_eur_save.zip12:piece lengthi32768e6:pieces60:Ð0âw¿«²â‰¯UÂÉäæÓ0-ïÕ‰“Àª‘<Ì(¸j6aØLQ65<36>Ð%KÔgAU§¦>˜:ø5”7:privatei0eee
|
BIN
torrents/n3ds_firmware.torrent
Normal file
BIN
torrents/n3ds_firmware.torrent
Normal file
Binary file not shown.
3
torrents/o3ds_firmware.torrent
Normal file
3
torrents/o3ds_firmware.torrent
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce33:http://explodie.org:6969/announce32:udp://explodie.org:6969/announce31:udp://9.rarbg.com:2710/announce35:udp://p4p.arenabg.com:1337/announce36:http://p4p.arenabg.com:1337/announce42:udp://tracker.aletorrenty.pl:2710/announce43:http://tracker.aletorrenty.pl:2710/announce44:http://tracker1.wasabii.com.tw:6969/announce40:http://tracker.baravik.org:6970/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce40:udp://tracker.yoshi210.com:6969/announce40:udp://tracker.tiny-vps.com:6969/announce42:udp://tracker.filetracker.pl:8089/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1472333423e8:encoding5:UTF-84:infod6:lengthi617690e4:name17:o3ds_firmware.zip12:piece lengthi32768e6:pieces380:Òf·ë~‚f‘¹ŠrŽ§„µ*!üƒ?fòà³;{õIˆJÿa¨¬†”g]íUºYeöM‡eã <20>Í'â¦ßP5ÿ}øßy©
|
||||||
|
²—.æ^&%0þâ1Œ<31>~ˆ&€õ`ò=ßÐÊïcÈp–D,Xvׇì”M$DÃ6üzë°e‚A`2¸Æñ
…ÁÖç)t;À¤ì†åõùH3ì½S`¸ýŒÖüŠEr<45>îÜ5y=x›xÕ«s{ðµ<C3B0>¤Ù:"Øéí[5 –¸_´BY=Ñ ‘¤<E28098>§÷ÒÂ$ Ÿú˜çIX^°ØULï-:fý€o½ÕZ} ãs õ?6}î:‹Ø±`[˅„Da<44><61>Ú®Ê2XÈÜÑš¥‘ì<E28098>$¦†<C2A6>Ì1gÐØrN¦JÐE|#ûAp¯<ë÷ÝÚ£¹ ©~â¼!6µ!,i•¨pƒ‡(½a_Ë•ÄêAÆO¨æ~'Ç!ü¤ÿ
|
||||||
|
»B:T®²FekìêY…s7:privatei0eee
|
1
torrents/update.torrent
Normal file
1
torrents/update.torrent
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d8:announce43:udp://tracker.coppersurfer.tk:6969/announce13:announce-listll43:udp://tracker.coppersurfer.tk:6969/announce42:udp://tracker.opentrackr.org:1337/announce43:http://tracker.opentrackr.org:1337/announce30:udp://zer0day.ch:1337/announce49:udp://tracker.leechers-paradise.org:6969/announce31:udp://9.rarbg.com:2710/announce32:udp://explodie.org:6969/announce33:http://explodie.org:6969/announce36:http://p4p.arenabg.com:1337/announce35:udp://p4p.arenabg.com:1337/announce43:http://tracker.aletorrenty.pl:2710/announce42:udp://tracker.aletorrenty.pl:2710/announce40:http://tracker.baravik.org:6970/announce44:http://tracker1.wasabii.com.tw:6969/announce44:udp://tracker.piratepublic.com:1337/announce32:http://tracker.tfile.me/announce38:udp://torrent.gresille.org:80/announce36:http://torrent.gresille.org/announce39:udp://tracker.kicks-ass.net:80/announce48:udp://tracker.internetwarriors.net:1337/announceee10:created by25:Transmission/2.84 (14386)13:creation datei1469508861e8:encoding5:UTF-84:infod6:lengthi5171e4:name10:update.php12:piece lengthi32768e6:pieces20:ªosC~éM<C3A9>‰<EFBFBD>D4ß{<7B>;b7:privatei0eee
|
Loading…
Reference in a new issue