├── .gitignore ├── App.config ├── DecryptionKeyListParser.cs ├── EPUB2 ├── BookGenerator.cs ├── Constants.cs ├── IEpubDocument.cs ├── NcxDocument.cs ├── OcfDocument.cs └── OpfDocument.cs ├── Helper.cs ├── HtmlGenerator.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Scribd ├── Book.cs ├── BookConverter.cs ├── ChapterContentDeserializer.cs ├── Decryptor.cs ├── MetadataDeserializer.cs ├── StylesDeserializer.cs ├── TableOfContentsDeserializer.cs └── TagsDeserializer.cs ├── ScribdMpubToEpubConverter.csproj ├── ScribdMpubToEpubConverter.sln ├── ZipStorer.cs ├── image.png ├── packages.config └── scribd.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/App.config -------------------------------------------------------------------------------- /DecryptionKeyListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/DecryptionKeyListParser.cs -------------------------------------------------------------------------------- /EPUB2/BookGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/EPUB2/BookGenerator.cs -------------------------------------------------------------------------------- /EPUB2/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/EPUB2/Constants.cs -------------------------------------------------------------------------------- /EPUB2/IEpubDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/EPUB2/IEpubDocument.cs -------------------------------------------------------------------------------- /EPUB2/NcxDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/EPUB2/NcxDocument.cs -------------------------------------------------------------------------------- /EPUB2/OcfDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/EPUB2/OcfDocument.cs -------------------------------------------------------------------------------- /EPUB2/OpfDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/EPUB2/OpfDocument.cs -------------------------------------------------------------------------------- /Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Helper.cs -------------------------------------------------------------------------------- /HtmlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/HtmlGenerator.cs -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/README.md -------------------------------------------------------------------------------- /Scribd/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/Book.cs -------------------------------------------------------------------------------- /Scribd/BookConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/BookConverter.cs -------------------------------------------------------------------------------- /Scribd/ChapterContentDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/ChapterContentDeserializer.cs -------------------------------------------------------------------------------- /Scribd/Decryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/Decryptor.cs -------------------------------------------------------------------------------- /Scribd/MetadataDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/MetadataDeserializer.cs -------------------------------------------------------------------------------- /Scribd/StylesDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/StylesDeserializer.cs -------------------------------------------------------------------------------- /Scribd/TableOfContentsDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/TableOfContentsDeserializer.cs -------------------------------------------------------------------------------- /Scribd/TagsDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/Scribd/TagsDeserializer.cs -------------------------------------------------------------------------------- /ScribdMpubToEpubConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/ScribdMpubToEpubConverter.csproj -------------------------------------------------------------------------------- /ScribdMpubToEpubConverter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/ScribdMpubToEpubConverter.sln -------------------------------------------------------------------------------- /ZipStorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/ZipStorer.cs -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/image.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/packages.config -------------------------------------------------------------------------------- /scribd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BELGRADE-OUTLAW/SCRIMTEC/HEAD/scribd.ico --------------------------------------------------------------------------------