├── .gitignore ├── .gitmodules ├── Crystal Dynamics.sln ├── LICENSE.txt ├── bin_dx3 └── projects │ ├── Deus Ex 3 (PS3).xml │ ├── Deus Ex 3 (PS3) │ └── files │ │ ├── bigfile.filelist │ │ └── cache.filelist │ ├── Deus Ex 3 (Xenon).xml │ ├── Deus Ex 3 (Xenon) │ └── files │ │ ├── bigfile.filelist │ │ ├── cache.filelist │ │ └── other locales.filelist │ ├── Deus Ex 3 - Director's Cut.xml │ ├── Deus Ex 3 - Director's Cut │ └── files │ │ └── bigfile.filelist │ ├── Deus Ex 3 - The Missing Link.xml │ ├── Deus Ex 3 - The Missing Link │ └── files │ │ ├── bigfile.filelist │ │ ├── bigfile_english.filelist │ │ └── other languages │ │ ├── bigfile_french.filelist │ │ ├── bigfile_german.filelist │ │ ├── bigfile_italian.filelist │ │ ├── bigfile_polish.filelist │ │ ├── bigfile_russian.filelist │ │ └── bigfile_spanish.filelist │ ├── Deus Ex 3.xml │ ├── Deus Ex 3 │ └── files │ │ ├── bigfile.filelist │ │ ├── bigfile_english.filelist │ │ ├── other languages │ │ ├── bigfile_french.filelist │ │ ├── bigfile_german.filelist │ │ ├── bigfile_italian.filelist │ │ ├── bigfile_polish.filelist │ │ ├── bigfile_russian.filelist │ │ └── bigfile_spanish.filelist │ │ ├── patch0.filelist │ │ ├── patch1.filelist │ │ └── patch2.filelist │ ├── Shared.xml │ └── current.txt ├── bin_tr7a8d └── projects │ ├── Lara Croft and the Guardian of Light (Xenon).xml │ ├── Lara Croft and the Guardian of Light (Xenon) │ └── files │ │ └── bigfile.filelist │ ├── Lara Croft and the Guardian of Light Demo.xml │ ├── Lara Croft and the Guardian of Light Demo │ └── files │ │ ├── bigfile.filelist │ │ └── patch.filelist │ ├── Lara Croft and the Guardian of Light.xml │ ├── Lara Croft and the Guardian of Light │ └── files │ │ ├── bigfile.filelist │ │ ├── pack1.filelist │ │ ├── pack2.filelist │ │ ├── pack3.filelist │ │ ├── pack4.filelist │ │ ├── pack5.filelist │ │ └── patch.filelist │ ├── Shared.xml │ ├── Tomb Raider 7 (PS3).xml │ ├── Tomb Raider 7 (PS3) │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider 7 (PSP).xml │ ├── Tomb Raider 7 (PSP) │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider 7.xml │ ├── Tomb Raider 7 │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider 8 (PS2).xml │ ├── Tomb Raider 8 (PS2) │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider 8 (PS3).xml │ ├── Tomb Raider 8 (PS3) │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider 8 (Xenon).xml │ ├── Tomb Raider 8 (Xenon) │ └── files │ │ ├── layer1.filelist │ │ └── layer2.filelist │ ├── Tomb Raider 8.xml │ ├── Tomb Raider 8 │ └── files │ │ ├── bigfile.filelist │ │ ├── other bases │ │ ├── pc-pch.filelist │ │ └── pc-russ.filelist │ │ └── patch.filelist │ ├── Tomb Raider Anniversary (PS3).xml │ ├── Tomb Raider Anniversary (PS3) │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider Anniversary (PSP).xml │ ├── Tomb Raider Anniversary (PSP) │ └── files │ │ └── bigfile.filelist │ ├── Tomb Raider Anniversary.xml │ ├── Tomb Raider Anniversary │ └── files │ │ └── bigfile.filelist │ └── current.txt ├── bin_tr9 └── projects │ ├── Shared.xml │ ├── Tomb Raider 9 (PS3).xml │ ├── Tomb Raider 9 (PS3) │ └── files │ │ ├── bigfile.filelist │ │ ├── bigfile_english.filelist │ │ ├── dlc │ │ └── pack8.filelist │ │ ├── patch.filelist │ │ ├── patch2.filelist │ │ ├── patch2_english.filelist │ │ ├── patch_english.filelist │ │ ├── status.txt │ │ ├── title.filelist │ │ └── title_english.filelist │ ├── Tomb Raider 9.xml │ ├── Tomb Raider 9 │ └── files │ │ ├── bigfile.filelist │ │ ├── bigfile_english.filelist │ │ ├── dlc │ │ └── pack8.filelist │ │ ├── patch.filelist │ │ ├── patch2.filelist │ │ ├── patch2_english.filelist │ │ ├── patch_english.filelist │ │ ├── status.txt │ │ ├── title.filelist │ │ └── title_english.filelist │ └── current.txt ├── other ├── Be.Windows.Forms.HexBox.dll └── DFEngine │ └── no_ads │ ├── DFEngine.sln │ ├── DFEngine.vcxproj │ ├── exports.def │ └── source │ └── dll.cpp ├── projects ├── Gibbed.CrystalDynamics.FileFormats │ ├── ArchiveLocale.cs │ ├── BigArchiveFileV1.cs │ ├── BigArchiveFileV2.cs │ ├── CompressedDrmFile.cs │ ├── FileExtensions.cs │ ├── Gibbed.CrystalDynamics.FileFormats.csproj │ ├── LICENSE.txt │ ├── StringHelpers.cs │ └── TigerArchiveFile.cs ├── Gibbed.DeusEx3.DRMDecompress │ ├── Gibbed.DeusEx3.DRMDecompress.csproj │ ├── LICENSE.txt │ └── Program.cs ├── Gibbed.DeusEx3.DRMEdit │ ├── Explorer.Designer.cs │ ├── Explorer.cs │ ├── Explorer.resx │ ├── FileViewer.Designer.cs │ ├── FileViewer.cs │ ├── FileViewer.resx │ ├── Gibbed.DeusEx3.DRMEdit.csproj │ ├── ISectionViewer.cs │ ├── LICENSE.txt │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RawViewer.Designer.cs │ ├── RawViewer.cs │ ├── RawViewer.resx │ ├── SectionTypeImages.Designer.cs │ ├── SectionTypeImages.resx │ ├── SectionTypeImages │ │ ├── RenderResource.png │ │ ├── Script.png │ │ ├── Wave.png │ │ └── __DRM.png │ ├── TextureViewer.Designer.cs │ ├── TextureViewer.cs │ └── TextureViewer.resx ├── Gibbed.DeusEx3.DRMUnpack │ ├── Gibbed.DeusEx3.DRMUnpack.csproj │ ├── LICENSE.txt │ └── Program.cs ├── Gibbed.DeusEx3.Demux │ ├── Gibbed.DeusEx3.Demux.csproj │ ├── LICENSE.txt │ ├── Program.cs │ └── SoundStreamHeader.cs ├── Gibbed.DeusEx3.FileFormats │ ├── DRM │ │ ├── Resolver.cs │ │ ├── ScriptSection.cs │ │ ├── Section.cs │ │ ├── SectionHeader.cs │ │ └── SectionType.cs │ ├── DRMFile.cs │ ├── Gibbed.DeusEx3.FileFormats.csproj │ ├── LICENSE.txt │ ├── PCD9 │ │ ├── Format.cs │ │ └── Mipmap.cs │ └── PCD9File.cs ├── Gibbed.DeusEx3.Pack │ ├── Gibbed.DeusEx3.Pack.csproj │ ├── LICENSE.txt │ ├── MyEntry.cs │ └── Program.cs ├── Gibbed.DeusEx3.RebuildFileLists │ ├── Breakdown.cs │ ├── Gibbed.DeusEx3.RebuildFileLists.csproj │ ├── LICENSE.txt │ └── Program.cs ├── Gibbed.DeusEx3.Unpack │ ├── Gibbed.DeusEx3.Unpack.csproj │ ├── LICENSE.txt │ ├── Language.cs │ └── Program.cs ├── Gibbed.TombRaider7.RebuildFileLists │ ├── Breakdown.cs │ ├── Gibbed.TombRaider7.RebuildFileLists.csproj │ ├── LICENSE.txt │ └── Program.cs ├── Gibbed.TombRaider7.Unpack │ ├── CompressionType.cs │ ├── Gibbed.TombRaider7.Unpack.csproj │ ├── LICENSE.txt │ └── Program.cs ├── Gibbed.TombRaider9.RebuildFileLists │ ├── Breakdown.cs │ ├── Gibbed.TombRaider9.RebuildFileLists.csproj │ ├── LICENSE.txt │ └── Program.cs └── Gibbed.TombRaider9.Unpack │ ├── Gibbed.TombRaider9.Unpack.csproj │ ├── LICENSE.txt │ └── Program.cs └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/.gitmodules -------------------------------------------------------------------------------- /Crystal Dynamics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/Crystal Dynamics.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (PS3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (PS3).xml -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (PS3)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (PS3)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (PS3)/files/cache.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (PS3)/files/cache.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (Xenon).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (Xenon).xml -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (Xenon)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (Xenon)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (Xenon)/files/cache.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (Xenon)/files/cache.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 (Xenon)/files/other locales.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 (Xenon)/files/other locales.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - Director's Cut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - Director's Cut.xml -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - Director's Cut/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - Director's Cut/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link.xml -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/bigfile_english.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/bigfile_english.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_french.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_french.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_german.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_german.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_italian.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_italian.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_polish.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_polish.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_russian.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_russian.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_spanish.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3 - The Missing Link/files/other languages/bigfile_spanish.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3.xml -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/bigfile_english.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/bigfile_english.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_french.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_french.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_german.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_german.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_italian.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_italian.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_polish.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_polish.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_russian.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_russian.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_spanish.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/other languages/bigfile_spanish.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/patch0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/patch0.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/patch1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/patch1.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Deus Ex 3/files/patch2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Deus Ex 3/files/patch2.filelist -------------------------------------------------------------------------------- /bin_dx3/projects/Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_dx3/projects/Shared.xml -------------------------------------------------------------------------------- /bin_dx3/projects/current.txt: -------------------------------------------------------------------------------- 1 | Deus Ex 3 - Director's Cut -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light (Xenon).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light (Xenon).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light (Xenon)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light (Xenon)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light Demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light Demo.xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light Demo/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light Demo/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light Demo/files/patch.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light Demo/files/patch.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light.xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack1.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack2.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack3.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack3.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack4.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack4.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack5.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/pack5.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/patch.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Lara Croft and the Guardian of Light/files/patch.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Shared.xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 7 (PS3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 7 (PS3).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 7 (PS3)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 7 (PS3)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 7 (PSP).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 7 (PSP).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 7 (PSP)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 7 (PSP)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 7.xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 7/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 7/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (PS2).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (PS2).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (PS2)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (PS2)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (PS3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (PS3).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (PS3)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (PS3)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (Xenon).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (Xenon).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (Xenon)/files/layer1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (Xenon)/files/layer1.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8 (Xenon)/files/layer2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8 (Xenon)/files/layer2.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8.xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8/files/other bases/pc-pch.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8/files/other bases/pc-pch.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8/files/other bases/pc-russ.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8/files/other bases/pc-russ.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider 8/files/patch.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider 8/files/patch.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider Anniversary (PS3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider Anniversary (PS3).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider Anniversary (PS3)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider Anniversary (PS3)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider Anniversary (PSP).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider Anniversary (PSP).xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider Anniversary (PSP)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider Anniversary (PSP)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider Anniversary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider Anniversary.xml -------------------------------------------------------------------------------- /bin_tr7a8d/projects/Tomb Raider Anniversary/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr7a8d/projects/Tomb Raider Anniversary/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr7a8d/projects/current.txt: -------------------------------------------------------------------------------- 1 | Tomb Raider 8 -------------------------------------------------------------------------------- /bin_tr9/projects/Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Shared.xml -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3).xml -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/bigfile_english.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/bigfile_english.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/dlc/pack8.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/dlc/pack8.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/patch.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/patch.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/patch2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/patch2.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/patch2_english.filelist: -------------------------------------------------------------------------------- 1 | ; 0/0 (0%) 2 | -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/patch_english.filelist: -------------------------------------------------------------------------------- 1 | ; 1/1 (100%) 2 | ps3-w\cinstream\whitmansdemise.mul 3 | -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/status.txt: -------------------------------------------------------------------------------- 1 | 20312/22967 (88%) 2 | -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/title.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/title.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9 (PS3)/files/title_english.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9 (PS3)/files/title_english.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9.xml -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/bigfile.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/bigfile.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/bigfile_english.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/bigfile_english.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/dlc/pack8.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/dlc/pack8.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/patch.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/patch.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/patch2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/patch2.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/patch2_english.filelist: -------------------------------------------------------------------------------- 1 | ; 0/0 (0%) 2 | -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/patch_english.filelist: -------------------------------------------------------------------------------- 1 | ; 1/1 (100%) 2 | pc-w\cinstream\whitmansdemise.mul 3 | -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/status.txt: -------------------------------------------------------------------------------- 1 | 20312/22967 (88%) 2 | -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/title.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/title.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/Tomb Raider 9/files/title_english.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/bin_tr9/projects/Tomb Raider 9/files/title_english.filelist -------------------------------------------------------------------------------- /bin_tr9/projects/current.txt: -------------------------------------------------------------------------------- 1 | Tomb Raider 9 -------------------------------------------------------------------------------- /other/Be.Windows.Forms.HexBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/other/Be.Windows.Forms.HexBox.dll -------------------------------------------------------------------------------- /other/DFEngine/no_ads/DFEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/other/DFEngine/no_ads/DFEngine.sln -------------------------------------------------------------------------------- /other/DFEngine/no_ads/DFEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/other/DFEngine/no_ads/DFEngine.vcxproj -------------------------------------------------------------------------------- /other/DFEngine/no_ads/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/other/DFEngine/no_ads/exports.def -------------------------------------------------------------------------------- /other/DFEngine/no_ads/source/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/other/DFEngine/no_ads/source/dll.cpp -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/ArchiveLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/ArchiveLocale.cs -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/BigArchiveFileV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/BigArchiveFileV1.cs -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/BigArchiveFileV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/BigArchiveFileV2.cs -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/CompressedDrmFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/CompressedDrmFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/FileExtensions.cs -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/Gibbed.CrystalDynamics.FileFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/Gibbed.CrystalDynamics.FileFormats.csproj -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/StringHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/StringHelpers.cs -------------------------------------------------------------------------------- /projects/Gibbed.CrystalDynamics.FileFormats/TigerArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.CrystalDynamics.FileFormats/TigerArchiveFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMDecompress/Gibbed.DeusEx3.DRMDecompress.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMDecompress/Gibbed.DeusEx3.DRMDecompress.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMDecompress/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMDecompress/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMDecompress/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMDecompress/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Explorer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Explorer.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Explorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Explorer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Explorer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Explorer.resx -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/FileViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/FileViewer.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/FileViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/FileViewer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/FileViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/FileViewer.resx -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Gibbed.DeusEx3.DRMEdit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Gibbed.DeusEx3.DRMEdit.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/ISectionViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/ISectionViewer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Properties/Resources.resx -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/Properties/Settings.settings -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/RawViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/RawViewer.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/RawViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/RawViewer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/RawViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/RawViewer.resx -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages.resx -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/RenderResource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/RenderResource.png -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/Script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/Script.png -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/Wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/Wave.png -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/__DRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/SectionTypeImages/__DRM.png -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/TextureViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/TextureViewer.Designer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/TextureViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/TextureViewer.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMEdit/TextureViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMEdit/TextureViewer.resx -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMUnpack/Gibbed.DeusEx3.DRMUnpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMUnpack/Gibbed.DeusEx3.DRMUnpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMUnpack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMUnpack/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.DRMUnpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.DRMUnpack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Demux/Gibbed.DeusEx3.Demux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Demux/Gibbed.DeusEx3.Demux.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Demux/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Demux/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Demux/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Demux/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Demux/SoundStreamHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Demux/SoundStreamHeader.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/DRM/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/DRM/Resolver.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/DRM/ScriptSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/DRM/ScriptSection.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/DRM/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/DRM/Section.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/DRM/SectionHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/DRM/SectionHeader.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/DRM/SectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/DRM/SectionType.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/DRMFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/DRMFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/Gibbed.DeusEx3.FileFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/Gibbed.DeusEx3.FileFormats.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/PCD9/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/PCD9/Format.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/PCD9/Mipmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/PCD9/Mipmap.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.FileFormats/PCD9File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.FileFormats/PCD9File.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Pack/Gibbed.DeusEx3.Pack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Pack/Gibbed.DeusEx3.Pack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Pack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Pack/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Pack/MyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Pack/MyEntry.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Pack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Pack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.RebuildFileLists/Breakdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.RebuildFileLists/Breakdown.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.RebuildFileLists/Gibbed.DeusEx3.RebuildFileLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.RebuildFileLists/Gibbed.DeusEx3.RebuildFileLists.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.RebuildFileLists/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.RebuildFileLists/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.RebuildFileLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.RebuildFileLists/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Unpack/Gibbed.DeusEx3.Unpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Unpack/Gibbed.DeusEx3.Unpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Unpack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Unpack/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Unpack/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Unpack/Language.cs -------------------------------------------------------------------------------- /projects/Gibbed.DeusEx3.Unpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.DeusEx3.Unpack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.RebuildFileLists/Breakdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.RebuildFileLists/Breakdown.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.RebuildFileLists/Gibbed.TombRaider7.RebuildFileLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.RebuildFileLists/Gibbed.TombRaider7.RebuildFileLists.csproj -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.RebuildFileLists/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.RebuildFileLists/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.RebuildFileLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.RebuildFileLists/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.Unpack/CompressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.Unpack/CompressionType.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.Unpack/Gibbed.TombRaider7.Unpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.Unpack/Gibbed.TombRaider7.Unpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.Unpack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.Unpack/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider7.Unpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider7.Unpack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.RebuildFileLists/Breakdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.RebuildFileLists/Breakdown.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.RebuildFileLists/Gibbed.TombRaider9.RebuildFileLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.RebuildFileLists/Gibbed.TombRaider9.RebuildFileLists.csproj -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.RebuildFileLists/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.RebuildFileLists/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.RebuildFileLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.RebuildFileLists/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.Unpack/Gibbed.TombRaider9.Unpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.Unpack/Gibbed.TombRaider9.Unpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.Unpack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.Unpack/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.TombRaider9.Unpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/projects/Gibbed.TombRaider9.Unpack/Program.cs -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.CrystalDynamics/HEAD/readme.txt --------------------------------------------------------------------------------