├── .gitignore ├── LICENSE ├── README.md ├── TorrentHardLinkHelper.Library ├── BEncoding │ ├── BEncodedDictionary.cs │ ├── BEncodedList.cs │ ├── BEncodedNumber.cs │ ├── BEncodedString.cs │ ├── BEncodingException.cs │ ├── IBEncodedValue.cs │ └── RawReader.cs ├── Common │ ├── Check.cs │ ├── EncryptionTypes.cs │ ├── Toolbox.cs │ └── UriHelper.cs ├── HardLink │ └── HardLinkHelper.cs ├── Locate │ ├── FileLinkPiece.cs │ ├── FileSystemFileInfo.cs │ ├── FileSystemFileSearcher.cs │ ├── HashFileLinkPieces.cs │ ├── LinkState.cs │ ├── LocateResult.cs │ ├── LocateState.cs │ ├── TorrentFileLink.cs │ └── TorrentFileLocater.cs ├── Messages │ ├── IMessage.cs │ ├── Message.cs │ └── MessageException.cs ├── Properties │ └── AssemblyInfo.cs ├── TorrentHardLinkHelper.Library.csproj └── Torrents │ ├── BitField.cs │ ├── Enums.cs │ ├── HashAlgoFactory.cs │ ├── Hashes.cs │ ├── InfoHash.cs │ ├── RawTrackerTier.cs │ ├── RawTrackerTiers.cs │ ├── Torrent.cs │ ├── TorrentException.cs │ └── TorrentFile.cs ├── TorrentHardLinkHelper.Test ├── HardLinkTest.cs ├── LocateTest.cs ├── Properties │ └── AssemblyInfo.cs ├── TestTorrents │ ├── [U2].13680.torrent │ └── [U2].14332.torrent ├── TorrentHardLinkHelper.Test.csproj └── TorrentTest.cs ├── TorrentHardLinkHelper.sln ├── TorrentHardLinkHelper ├── App.xaml ├── App.xaml.cs ├── Models │ ├── EntityModel.cs │ ├── FileModel.cs │ └── FolderModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TorrentHardLinkHelper.csproj ├── TorrentHardLinkHelper.ico ├── TorrentHardLinkHelper_TemporaryKey.pfx ├── ViewModels │ ├── HardLinkToolViewModel.cs │ ├── MainViewModel.cs │ └── ViewModelLocator.cs ├── Views │ ├── HardLinkTool.xaml │ ├── HardLinkTool.xaml.cs │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── app.config ├── ico2.ico └── packages.config ├── netz-bin ├── defcomp.dll ├── license.txt ├── net20comp.dll ├── netz.exe ├── readme.txt ├── subsys.dll └── zip.dll └── package.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/README.md -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/BEncodedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/BEncodedDictionary.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/BEncodedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/BEncodedList.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/BEncodedNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/BEncodedNumber.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/BEncodedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/BEncodedString.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/BEncodingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/BEncodingException.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/IBEncodedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/IBEncodedValue.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/BEncoding/RawReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/BEncoding/RawReader.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Common/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Common/Check.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Common/EncryptionTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Common/EncryptionTypes.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Common/Toolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Common/Toolbox.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Common/UriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Common/UriHelper.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/HardLink/HardLinkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/HardLink/HardLinkHelper.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/FileLinkPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/FileLinkPiece.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/FileSystemFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/FileSystemFileInfo.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/FileSystemFileSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/FileSystemFileSearcher.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/HashFileLinkPieces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/HashFileLinkPieces.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/LinkState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/LinkState.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/LocateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/LocateResult.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/LocateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/LocateState.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/TorrentFileLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/TorrentFileLink.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Locate/TorrentFileLocater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Locate/TorrentFileLocater.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Messages/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Messages/IMessage.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Messages/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Messages/Message.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Messages/MessageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Messages/MessageException.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/TorrentHardLinkHelper.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/TorrentHardLinkHelper.Library.csproj -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/BitField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/BitField.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/Enums.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/HashAlgoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/HashAlgoFactory.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/Hashes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/Hashes.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/InfoHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/InfoHash.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/RawTrackerTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/RawTrackerTier.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/RawTrackerTiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/RawTrackerTiers.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/Torrent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/Torrent.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/TorrentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/TorrentException.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Library/Torrents/TorrentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Library/Torrents/TorrentFile.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/HardLinkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/HardLinkTest.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/LocateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/LocateTest.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/TestTorrents/[U2].13680.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/TestTorrents/[U2].13680.torrent -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/TestTorrents/[U2].14332.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/TestTorrents/[U2].14332.torrent -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/TorrentHardLinkHelper.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/TorrentHardLinkHelper.Test.csproj -------------------------------------------------------------------------------- /TorrentHardLinkHelper.Test/TorrentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.Test/TorrentTest.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper.sln -------------------------------------------------------------------------------- /TorrentHardLinkHelper/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/App.xaml -------------------------------------------------------------------------------- /TorrentHardLinkHelper/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/App.xaml.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Models/EntityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Models/EntityModel.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Models/FileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Models/FileModel.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Models/FolderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Models/FolderModel.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Properties/Resources.resx -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Properties/Settings.settings -------------------------------------------------------------------------------- /TorrentHardLinkHelper/TorrentHardLinkHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/TorrentHardLinkHelper.csproj -------------------------------------------------------------------------------- /TorrentHardLinkHelper/TorrentHardLinkHelper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/TorrentHardLinkHelper.ico -------------------------------------------------------------------------------- /TorrentHardLinkHelper/TorrentHardLinkHelper_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/TorrentHardLinkHelper_TemporaryKey.pfx -------------------------------------------------------------------------------- /TorrentHardLinkHelper/ViewModels/HardLinkToolViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/ViewModels/HardLinkToolViewModel.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/ViewModels/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/ViewModels/ViewModelLocator.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Views/HardLinkTool.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Views/HardLinkTool.xaml -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Views/HardLinkTool.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Views/HardLinkTool.xaml.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Views/MainWindow.xaml -------------------------------------------------------------------------------- /TorrentHardLinkHelper/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TorrentHardLinkHelper/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/app.config -------------------------------------------------------------------------------- /TorrentHardLinkHelper/ico2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/ico2.ico -------------------------------------------------------------------------------- /TorrentHardLinkHelper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/TorrentHardLinkHelper/packages.config -------------------------------------------------------------------------------- /netz-bin/defcomp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/netz-bin/defcomp.dll -------------------------------------------------------------------------------- /netz-bin/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/netz-bin/license.txt -------------------------------------------------------------------------------- /netz-bin/net20comp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/netz-bin/net20comp.dll -------------------------------------------------------------------------------- /netz-bin/netz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/netz-bin/netz.exe -------------------------------------------------------------------------------- /netz-bin/readme.txt: -------------------------------------------------------------------------------- 1 | http://madebits.com/netz/ 2 | 3 | -------------------------------------------------------------------------------- /netz-bin/subsys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/netz-bin/subsys.dll -------------------------------------------------------------------------------- /netz-bin/zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/netz-bin/zip.dll -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrywong/torrenthardlinkhelper/HEAD/package.bat --------------------------------------------------------------------------------