gitextract_3njdqp94/ ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CP2077SaveEditor/ │ ├── AppearancePreset.cs │ ├── CP2077SaveEditor.csproj │ ├── CP2077SaveEditor.csproj.DotSettings │ ├── Global.cs │ ├── ModSupport/ │ │ ├── CustomMapMarkers/ │ │ │ ├── CustomMappinData.cs │ │ │ └── CustomMarkerSystem.cs │ │ ├── CyberarmCycle/ │ │ │ └── SLastUsedCyberarm.cs │ │ ├── CyberwareMeshExt/ │ │ │ ├── CyberwareMeshSystem.cs │ │ │ └── MeshToggle.cs │ │ ├── Edgerunning/ │ │ │ └── EdgerunningSystem.cs │ │ ├── EnhancedCraft/ │ │ │ ├── CustomCraftNameDataPS.cs │ │ │ ├── DamageTypeStatsPS.cs │ │ │ ├── EnhancedCraftHelper.cs │ │ │ └── EnhancedCraftSystem.cs │ │ ├── EquipmentEx/ │ │ │ ├── OutfitPart.cs │ │ │ ├── OutfitSet.cs │ │ │ ├── OutfitState.cs │ │ │ ├── OutfitSystem.cs │ │ │ ├── ViewManager.cs │ │ │ ├── ViewState.cs │ │ │ └── WardrobeItemSource.cs │ │ ├── ExtraWardrobeSlots/ │ │ │ ├── ClothingSetExtra.cs │ │ │ ├── WardrobeSystemExtra.cs │ │ │ └── gameWardrobeClothingSetIndexExtra.cs │ │ ├── MarkToSell/ │ │ │ └── MarkToSellSystem.cs │ │ ├── ModManager.cs │ │ ├── QuickhackLoadouts/ │ │ │ ├── QuickhackLoadout.cs │ │ │ └── QuickhackLoadoutSystem.cs │ │ ├── RandomRadio/ │ │ │ ├── RRPlayListMode.cs │ │ │ ├── SongStorage.cs │ │ │ ├── SongWrapper.cs │ │ │ └── Songs.cs │ │ ├── VirtualAtelier/ │ │ │ └── VirtualAtelierStoresManager.cs │ │ └── VirtualCarDealer/ │ │ └── PurchasableVehicleSystem.cs │ ├── Program.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources/ │ │ ├── AppearanceValues.json │ │ ├── Facts.json │ │ ├── FastTravel.json │ │ ├── FemaleDefault.preset │ │ ├── ItemClasses.json │ │ ├── MaleDefault.preset │ │ ├── ModifierGroups.json │ │ ├── Mods.json │ │ └── Vehicles.json │ ├── Utils/ │ │ ├── AppearanceHelper.cs │ │ ├── AppearanceHelper2.cs │ │ ├── Controls.cs │ │ ├── Extensions.cs │ │ ├── IGameControl.cs │ │ ├── LegacyPresetHelper.cs │ │ ├── PresetDto.cs │ │ ├── ResourceHelper.cs │ │ ├── SaveFileHelper.cs │ │ └── TypeExtensions.cs │ └── Views/ │ ├── AddFact.Designer.cs │ ├── AddFact.cs │ ├── AddFact.resx │ ├── AddItem.Designer.cs │ ├── AddItem.cs │ ├── AddItem.resx │ ├── AddStat.Designer.cs │ ├── AddStat.cs │ ├── AddStat.resx │ ├── AdvancedAppearanceDialog.Designer.cs │ ├── AdvancedAppearanceDialog.cs │ ├── AdvancedAppearanceDialog.resx │ ├── Controls/ │ │ ├── AppearanceControl.Designer.cs │ │ ├── AppearanceControl.cs │ │ ├── AppearanceControl.resx │ │ ├── ExtrasControl.Designer.cs │ │ ├── ExtrasControl.cs │ │ ├── ExtrasControl.resx │ │ ├── InventoryControl.Designer.cs │ │ ├── InventoryControl.cs │ │ ├── InventoryControl.resx │ │ ├── PlayerStatsControl.Designer.cs │ │ ├── PlayerStatsControl.cs │ │ ├── PlayerStatsControl.resx │ │ ├── QuestFactsControl.Designer.cs │ │ ├── QuestFactsControl.cs │ │ ├── QuestFactsControl.resx │ │ ├── ScrollMenuControl.Designer.cs │ │ ├── ScrollMenuControl.cs │ │ ├── ScrollMenuControl.resx │ │ ├── StatsControl.Designer.cs │ │ ├── StatsControl.cs │ │ ├── StatsControl.resx │ │ ├── VehiclesControl.Designer.cs │ │ ├── VehiclesControl.cs │ │ └── VehiclesControl.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── ItemDetails.Designer.cs │ ├── ItemDetails.cs │ ├── ItemDetails.resx │ ├── ModNodeDetails.Designer.cs │ ├── ModNodeDetails.cs │ ├── ModNodeDetails.resx │ ├── StatDetails.Designer.cs │ ├── StatDetails.cs │ ├── StatDetails.resx │ ├── StatsForm.Designer.cs │ ├── StatsForm.cs │ ├── StatsForm.resx │ ├── WrongDefaultDialog.Designer.cs │ ├── WrongDefaultDialog.cs │ └── WrongDefaultDialog.resx ├── CP2077SaveEditor.code-workspace ├── CP2077SaveEditor.sln ├── LICENSE ├── README.md ├── ResourceGenerator/ │ ├── Program.cs │ └── ResourceGenerator.csproj ├── config.json ├── licenses/ │ ├── CyberCAT.Core.LICENSE.txt │ ├── K4os.Compression.LZ4.LICENSE.txt │ └── LICENSE.txt └── previews/ └── info.txt