gitextract_7tyas5ig/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── Configuration/ │ └── Loader.xcconfig ├── LICENSE ├── Loader/ │ ├── AppDelegate.swift │ ├── Extensions/ │ │ ├── String+prefix.swift │ │ ├── UIAlertController+Alerts.swift │ │ ├── UIApplication/ │ │ │ └── UIApplication+open.swift │ │ ├── UIDevice/ │ │ │ ├── UIDevice+Info.swift │ │ │ └── UIDevice+Jailbreak.swift │ │ └── UITableView+image.swift │ ├── Resources/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon - tvOS.brandassets/ │ │ │ │ ├── App Icon - App Store.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Image Wide.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Loading.imageset/ │ │ │ │ └── Contents.json │ │ │ └── unknown.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── Localizable.xcstrings │ ├── SceneDelegate.swift │ ├── Supporting Files/ │ │ ├── Headers/ │ │ │ ├── LSApplicationWorkspace.h │ │ │ ├── Macros.h │ │ │ ├── MobileGestalt.h │ │ │ └── posixspawn.h │ │ ├── IOKit.tbd │ │ ├── Loader-Bridging-Header.h │ │ └── loader.entitlements │ ├── Utilities/ │ │ ├── Bootstrap/ │ │ │ ├── LRBootstrapper+download.swift │ │ │ ├── LRBootstrapper+status.swift │ │ │ └── LRBootstrapper.swift │ │ ├── Config/ │ │ │ └── Models/ │ │ │ └── LRConfig.swift │ │ ├── Environment/ │ │ │ ├── LREnvironment+prefixes.swift │ │ │ ├── LREnvironment+reset.swift │ │ │ ├── LREnvironment+spawn.swift │ │ │ └── LREnvironment.swift │ │ ├── Nvram/ │ │ │ ├── nvram.c │ │ │ └── nvram.h │ │ └── XPC/ │ │ ├── JailbreakD.swift │ │ ├── jailbreakd.c │ │ └── jailbreakd.h │ └── Views/ │ ├── Bootstrap/ │ │ ├── LRStagedViewController+UpdateItem.swift │ │ └── LRStagedViewController.swift │ ├── LRTabbarController.swift │ ├── Selection/ │ │ ├── LRBootstrapViewController+transition.swift │ │ └── LRBootstrapViewController.swift │ └── Settings/ │ ├── About/ │ │ ├── Flags/ │ │ │ └── LRSettingsFlagsViewController.swift │ │ └── LRSettingsAboutViewController.swift │ ├── Credits/ │ │ └── LRSettingsCreditsViewController.swift │ └── LRSettingsViewController.swift ├── Loader.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── Loader.xcscheme ├── Loader.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── Makefile ├── NimbleKit/ │ ├── .gitignore │ ├── Package.swift │ └── Sources/ │ ├── NimbleAnimations/ │ │ └── SlideWithPresentationAnimator.swift │ ├── NimbleExtensions/ │ │ ├── Bundle/ │ │ │ └── Bundle+keys.swift │ │ ├── NSThread/ │ │ │ └── Thread+mainBlock.swift │ │ ├── String/ │ │ │ └── String+localized.swift │ │ ├── UIApplication/ │ │ │ ├── UIApplication+suspend.swift │ │ │ └── UIApplication+topController.swift │ │ ├── UICollectionViewDiffableDataSource/ │ │ │ └── UICollectionViewDiffableDataSource+refresh.swift │ │ ├── UIScreen/ │ │ │ └── UIScreen+displayCornerRadius.swift │ │ └── UITableView/ │ │ └── UITableView+transition.swift │ ├── NimbleJSON/ │ │ └── FetchService.swift │ └── NimbleViewControllers/ │ ├── LRBaseStructuredTableViewController.swift │ ├── LRBaseTableViewController.swift │ └── StagedViewController/ │ ├── LRBaseStagedViewController.swift │ ├── LRStageGroupCell.swift │ ├── LRStageGroupItemView.swift │ ├── LRStagedLoadingIndicator.swift │ ├── Models/ │ │ └── StepGroup.swift │ └── Timer/ │ └── TimerManager.swift └── README.md