gitextract_fi8xynku/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── DeepLinkSecurity/ │ ├── DeepLinkSecurity.h │ └── Source/ │ ├── Base/ │ │ └── DeepLinkSecurityDefines.swift │ ├── DeepLinkSentinel.swift │ ├── Models/ │ │ ├── DeepLinkClient.swift │ │ ├── DeepLinkClientDescriptor.swift │ │ ├── Extensions/ │ │ │ ├── DeepLinkClient+Crypto.swift │ │ │ └── DeepLinkClientDescriptor+.swift │ │ └── OpenDeepLinkRequest.swift │ ├── Storage/ │ │ ├── DeepLinkAuthStore.swift │ │ ├── DeepLinkManagementStore.swift │ │ ├── KeychainDeepLinkAuthStore.swift │ │ ├── MemoryDeepLinkAuthStore.swift │ │ └── UserDefaultsDeepLinkManagementStore.swift │ └── UI/ │ └── DeepLinkAuthUI.swift ├── LICENSE ├── README.md ├── ReleaseNotes/ │ ├── VirtualBuddy 1.2 Release Nodes.md │ ├── VirtualBuddy 1.2.1 Release Notes.md │ └── VirtualBuddy 1.2.2 Release Notes.md ├── VirtualBuddy/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon-Default.appiconset/ │ │ │ └── Contents.json │ │ ├── AppIcon-Dev.appiconset/ │ │ │ └── Contents.json │ │ ├── AppIcon-zBeta.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Automation/ │ │ ├── DeepLinkHandler.swift │ │ ├── Support/ │ │ │ └── DeepLinkAuthDialog.swift │ │ └── VirtualBuddyDeepLinks.swift │ ├── Bootstrap/ │ │ ├── SoftwareUpdateController.swift │ │ ├── VirtualBuddyApp.swift │ │ ├── VirtualBuddyAppDelegate.swift │ │ └── VirtualBuddyEntryPoint.swift │ ├── CommandLine/ │ │ ├── VirtualBuddyCLI.swift │ │ └── vctool/ │ │ ├── BlurHashCommand.swift │ │ ├── CatalogCommand.swift │ │ ├── Core/ │ │ │ ├── BuildManifest+Fetch.swift │ │ │ ├── BuildManifest.swift │ │ │ ├── Helpers.swift │ │ │ ├── TreeStringConvertible.swift │ │ │ └── URL+ContentLength.swift │ │ ├── GroupCommand.swift │ │ ├── IPSWCommand.swift │ │ ├── ImageCommand.swift │ │ ├── MigrateCommand.swift │ │ ├── MobileDeviceCommand.swift │ │ ├── ResolveCommand.swift │ │ └── VCTool.swift │ ├── Config/ │ │ ├── AppTarget.xcconfig │ │ ├── Entitlements/ │ │ │ ├── VirtualBuddy.entitlements │ │ │ └── VirtualBuddy_Managed.entitlements │ │ ├── Features.xcconfig │ │ ├── InfoPlist.xcconfig │ │ ├── Main.xcconfig │ │ ├── Paths.xcconfig │ │ ├── Signing.xcconfig │ │ └── Versions.xcconfig │ ├── Info.plist │ └── Preview Content/ │ └── Preview Assets.xcassets/ │ └── Contents.json ├── VirtualBuddy.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ ├── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes/ │ ├── DeepLinkSecurity.xcscheme │ ├── VirtualBuddy (Dev Release).xcscheme │ ├── VirtualBuddy (Managed - Beta).xcscheme │ ├── VirtualBuddy (Managed).xcscheme │ ├── VirtualBuddy.xcscheme │ ├── VirtualBuddyGuest.xcscheme │ ├── VirtualCore.xcscheme │ ├── VirtualUI.xcscheme │ ├── VirtualWormhole.xcscheme │ └── vctool.xcscheme ├── VirtualBuddyGuest/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── StatusItem.imageset/ │ │ └── Contents.json │ ├── Dashboard/ │ │ ├── GuestDashboard.swift │ │ ├── GuestDefaultsImportView.swift │ │ ├── GuestSharedFoldersManager.swift │ │ ├── HostConnectionStateProvider.swift │ │ └── Support/ │ │ ├── GuestLaunchAtLoginManager.swift │ │ └── VirtualBuddyGuest-Bridging-Header.h │ ├── GuestAppDelegate.swift │ ├── GuestAppInstaller.swift │ ├── Main.storyboard │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ └── VirtualBuddyGuest.entitlements ├── VirtualBuddyGuestHelper/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── GuestHelperAppDelegate.swift │ └── VirtualBuddyGuestHelper.entitlements ├── VirtualCore/ │ ├── Source/ │ │ ├── Definitions/ │ │ │ ├── Logging.swift │ │ │ ├── PreviewSupport.swift │ │ │ └── VirtualCoreConstants.swift │ │ ├── GuestSupport/ │ │ │ ├── CreateGuestImage.sh │ │ │ └── GuestAdditionsDiskImage.swift │ │ ├── Headers/ │ │ │ └── VirtualizationPrivate.h │ │ ├── Import/ │ │ │ ├── UTM/ │ │ │ │ ├── UTMAppleConfiguration.swift │ │ │ │ └── UTMImporter.swift │ │ │ ├── VMImporter+Helpers.swift │ │ │ ├── VMImporter.swift │ │ │ └── VMImporterRegistry.swift │ │ ├── Models/ │ │ │ ├── BlurHashToken.swift │ │ │ ├── Configuration/ │ │ │ │ ├── ConfigurationModels+Summary.swift │ │ │ │ ├── ConfigurationModels+Validation.swift │ │ │ │ ├── ConfigurationModels.swift │ │ │ │ ├── DecodableDefault.swift │ │ │ │ └── VBMacDevice+Storage.swift │ │ │ ├── SavedState/ │ │ │ │ ├── VBSavedStateMetadata+Clone.swift │ │ │ │ ├── VBSavedStateMetadata.swift │ │ │ │ ├── VBSavedStatePackage+VM.swift │ │ │ │ ├── VBSavedStatePackage.swift │ │ │ │ └── VMLibraryController+SavedState.swift │ │ │ ├── VBError.swift │ │ │ ├── VBNVRAMVariable.swift │ │ │ ├── VBStorageDeviceContainer.swift │ │ │ ├── VBVirtualMachine+Metadata.swift │ │ │ ├── VBVirtualMachine+Screenshot.swift │ │ │ └── VBVirtualMachine.swift │ │ ├── ReleaseTrains/ │ │ │ ├── AppUpdateChannel.swift │ │ │ └── VBBuildType.swift │ │ ├── Resources/ │ │ │ ├── Preview/ │ │ │ │ ├── FakeRestoreImage.ipsw │ │ │ │ ├── PreviewLinux.vbvm/ │ │ │ │ │ ├── .vbdata/ │ │ │ │ │ │ ├── Config.plist │ │ │ │ │ │ ├── Metadata.plist │ │ │ │ │ │ ├── Screenshot.heic │ │ │ │ │ │ └── Thumbnail.heic │ │ │ │ │ └── Disk.img │ │ │ │ ├── PreviewLinuxBlurHash.vbvm/ │ │ │ │ │ ├── .vbdata/ │ │ │ │ │ │ ├── Config.plist │ │ │ │ │ │ └── Metadata.plist │ │ │ │ │ └── Disk.img │ │ │ │ ├── PreviewLinuxNoArtwork.vbvm/ │ │ │ │ │ ├── .vbdata/ │ │ │ │ │ │ ├── Config.plist │ │ │ │ │ │ └── Metadata.plist │ │ │ │ │ └── Disk.img │ │ │ │ ├── PreviewMac.vbvm/ │ │ │ │ │ ├── .vbdata/ │ │ │ │ │ │ ├── Config.plist │ │ │ │ │ │ ├── Metadata.plist │ │ │ │ │ │ └── Thumbnail.heic │ │ │ │ │ └── Disk.img │ │ │ │ ├── PreviewMacBlurHash.vbvm/ │ │ │ │ │ ├── .vbdata/ │ │ │ │ │ │ ├── Config.plist │ │ │ │ │ │ └── Metadata.plist │ │ │ │ │ └── Disk.img │ │ │ │ ├── PreviewMacNoArtwork.vbvm/ │ │ │ │ │ ├── .vbdata/ │ │ │ │ │ │ ├── Config.plist │ │ │ │ │ │ └── Metadata.plist │ │ │ │ │ └── Disk.img │ │ │ │ ├── PreviewSavedStates/ │ │ │ │ │ ├── Save-2024-03-27_16;06;24.vbst/ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Screenshot.heic │ │ │ │ │ │ └── Thumbnail.heic │ │ │ │ │ ├── Save-2024-03-27_16;07;04.vbst/ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Screenshot.heic │ │ │ │ │ │ └── Thumbnail.heic │ │ │ │ │ ├── Save-2024-03-27_16;08;06.vbst/ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Screenshot.heic │ │ │ │ │ │ └── Thumbnail.heic │ │ │ │ │ ├── Save-2024-03-27_16;08;28.vbst/ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Screenshot.heic │ │ │ │ │ │ └── Thumbnail.heic │ │ │ │ │ └── Save-2024-03-27_16;08;51.vbst/ │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Screenshot.heic │ │ │ │ │ └── Thumbnail.heic │ │ │ │ └── _Downloads/ │ │ │ │ ├── UniversalMac_13.3.1_22E261_Restore.ipsw │ │ │ │ ├── UniversalMac_14.0_23A344_Restore.ipsw │ │ │ │ ├── UniversalMac_14.5_23F79_Restore.ipsw │ │ │ │ ├── UniversalMac_15.3_24D60_Restore.ipsw │ │ │ │ └── UniversalMac_15.5_24F74_Restore.ipsw │ │ │ └── VirtualCore.xcassets/ │ │ │ ├── Adjectives.dataset/ │ │ │ │ ├── Adjectives.txt │ │ │ │ └── Contents.json │ │ │ ├── Animals.dataset/ │ │ │ │ ├── Animals.txt │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Restore/ │ │ │ ├── Download/ │ │ │ │ ├── DownloadBackend.swift │ │ │ │ ├── SimulatedDownloadBackend.swift │ │ │ │ └── URLSessionDownloadBackend.swift │ │ │ └── Installation/ │ │ │ ├── RestoreBackend.swift │ │ │ ├── SimulatedRestoreBackend.swift │ │ │ └── VirtualizationRestoreBackend.swift │ │ ├── Restore Images/ │ │ │ ├── Models/ │ │ │ │ ├── VBRestoreImageInfo.swift │ │ │ │ └── VBRestoreImagesResponse.swift │ │ │ └── VBAPIClient.swift │ │ ├── Settings/ │ │ │ ├── VBSettings+CatalogDownload.swift │ │ │ ├── VBSettings.swift │ │ │ └── VBSettingsContainer.swift │ │ ├── Utilities/ │ │ │ ├── Bundle+Version.swift │ │ │ ├── LogStreamer.swift │ │ │ ├── PreventTerminationAssertion.swift │ │ │ ├── ProcessInfo+ECID.swift │ │ │ ├── VBMemoryLeakDebugAssertions.swift │ │ │ ├── VolumeUtils.swift │ │ │ └── WeakReference.swift │ │ ├── VirtualCatalog/ │ │ │ ├── LegacyCatalog.swift │ │ │ ├── MobileDeviceFramework.swift │ │ │ ├── README.md │ │ │ ├── ResolvedCatalog.swift │ │ │ ├── SoftwareCatalog+DownloadMatching.swift │ │ │ ├── SoftwareCatalog.swift │ │ │ └── Utilities/ │ │ │ ├── BlurHashEncode.swift │ │ │ ├── String+AppleOSBuild.swift │ │ │ └── URL+ExtendedAttributes.swift │ │ └── Virtualization/ │ │ ├── Helpers/ │ │ │ ├── CatalogExtensions.swift │ │ │ ├── DirectoryObserver.swift │ │ │ ├── DiskImageGenerator.swift │ │ │ ├── LinuxVirtualMachineConfigurationHelper.swift │ │ │ ├── MacOSVirtualMachineConfigurationHelper.swift │ │ │ ├── RandomNameGenerator.swift │ │ │ ├── VBDebugUtil.h │ │ │ ├── VBDebugUtil.m │ │ │ ├── VZVirtualMachineConfiguration+NVRAM.swift │ │ │ └── VirtualMachineConfigurationHelper.swift │ │ ├── Screenshot/ │ │ │ ├── NSImage+DRMProtected.swift │ │ │ └── NSImage+HEIC.swift │ │ ├── VBVirtualMachine+Virtualization.swift │ │ ├── VMController.swift │ │ ├── VMInstance.swift │ │ ├── VMLibraryController.swift │ │ └── VMSavedStatesController.swift │ └── VirtualCore.h ├── VirtualUI/ │ ├── Resources/ │ │ ├── CatalogGroupPlaceholder.heic │ │ └── VirtualUI.xcassets/ │ │ ├── Contents.json │ │ ├── FirstLaunchExperience.dataset/ │ │ │ ├── Contents.json │ │ │ └── FirstLaunchExperience.caar │ │ ├── FullBleedBlurHash.dataset/ │ │ │ ├── Contents.json │ │ │ └── FullBleedBlurHash.caar │ │ ├── GuestSymbol.imageset/ │ │ │ └── Contents.json │ │ ├── StatusItemPanelChromeBorder.colorset/ │ │ │ └── Contents.json │ │ ├── ThumbnailPlaceholder.imageset/ │ │ │ └── Contents.json │ │ ├── VBGuestType/ │ │ │ ├── Contents.json │ │ │ ├── linux.imageset/ │ │ │ │ └── Contents.json │ │ │ └── mac.imageset/ │ │ │ └── Contents.json │ │ ├── VirtualBuddyMono.imageset/ │ │ │ └── Contents.json │ │ ├── VirtualBuddyMonoHappy.imageset/ │ │ │ └── Contents.json │ │ └── VirtualBuddyMonoSad.imageset/ │ │ └── Contents.json │ ├── Source/ │ │ ├── Building Blocks/ │ │ │ ├── CGFloat+OnePixel.swift │ │ │ ├── ChromeBorderModifier.swift │ │ │ ├── Configuration Controls/ │ │ │ │ ├── EphemeralTextField.swift │ │ │ │ ├── NumericPropertyControl.swift │ │ │ │ ├── NumericValueField.swift │ │ │ │ ├── PropertyControl.swift │ │ │ │ └── SharedFocusEnvironment.swift │ │ │ ├── ControlGroupChrome.swift │ │ │ └── SliderConversion.swift │ │ ├── Components/ │ │ │ ├── Array+Navigation.swift │ │ │ ├── BackportedContentUnavailableView.swift │ │ │ ├── BlurHash/ │ │ │ │ └── BlurHashDecoding.swift │ │ │ ├── CALayer+Asset.swift │ │ │ ├── DecentFormView.swift │ │ │ ├── EqualWidthHStack.swift │ │ │ ├── HostingWindowController/ │ │ │ │ ├── FB18383725Window.swift │ │ │ │ ├── HostingWindowController.swift │ │ │ │ ├── OpenCocoaWindowAction.swift │ │ │ │ ├── VBRestorableWindow+Resizing.swift │ │ │ │ ├── VBRestorableWindow.swift │ │ │ │ └── WindowEnvironment.swift │ │ │ ├── KeyboardNavigationModifier.swift │ │ │ ├── LogConsole.swift │ │ │ ├── MaterialView.swift │ │ │ ├── NSAlert+Confirmation.swift │ │ │ ├── OnAppearOnce.swift │ │ │ ├── OpenSavePanelUtils.swift │ │ │ ├── RemoteImage/ │ │ │ │ └── RemoteImage.swift │ │ │ ├── SelfSizingGroupedForm.swift │ │ │ ├── SwiftUI Status Item/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── Cocoa/ │ │ │ │ │ │ ├── StatusBarContentPanel.swift │ │ │ │ │ │ ├── StatusBarHighlightView.swift │ │ │ │ │ │ ├── StatusItemMenuBarExtraView.swift │ │ │ │ │ │ ├── StatusItemPanelContentController.swift │ │ │ │ │ │ └── VUIAppKitViewControllerHost.swift │ │ │ │ │ ├── ObjC/ │ │ │ │ │ │ ├── NSApplication+MenuBar.h │ │ │ │ │ │ ├── NSApplication+MenuBar.m │ │ │ │ │ │ ├── NSStatusBarPrivate.h │ │ │ │ │ │ ├── NSStatusItem+.h │ │ │ │ │ │ └── NSStatusItem+.m │ │ │ │ │ ├── ScreenChangeModifier.swift │ │ │ │ │ ├── StatusBarPanelChrome.swift │ │ │ │ │ ├── StatusItemButton.swift │ │ │ │ │ └── StatusItemProviderProtocol.swift │ │ │ │ └── StatusItemManager.swift │ │ │ └── VMArtworkView.swift │ │ ├── Definitions/ │ │ │ ├── PreviewSupport-VirtualUI.swift │ │ │ └── VirtualUIConstants.swift │ │ ├── Installer/ │ │ │ ├── Components/ │ │ │ │ ├── AuthenticatingWebView.swift │ │ │ │ ├── InstallationConsole.swift │ │ │ │ ├── InstallationWizardTitle.swift │ │ │ │ ├── RestoreImageURLInputView.swift │ │ │ │ ├── VirtualBuddyInstallerInputView.swift │ │ │ │ └── VirtualMachineNameInputView.swift │ │ │ ├── Steps/ │ │ │ │ ├── GuestTypePicker.swift │ │ │ │ ├── InstallConfigurationStepView.swift │ │ │ │ ├── InstallMethod.swift │ │ │ │ ├── InstallMethodPicker.swift │ │ │ │ ├── InstallProgressStepView.swift │ │ │ │ ├── Restore Image Selection/ │ │ │ │ │ ├── Components/ │ │ │ │ │ │ ├── BlurHashFullBleedBackground.swift │ │ │ │ │ │ ├── CatalogGroupPicker.swift │ │ │ │ │ │ ├── CatalogGroupView.swift │ │ │ │ │ │ ├── InstallProgressDisplayView.swift │ │ │ │ │ │ ├── RestoreImageBrowser.swift │ │ │ │ │ │ ├── SoftwareCatalog+Placeholder.swift │ │ │ │ │ │ ├── VirtualBuddyMonoIcon.swift │ │ │ │ │ │ ├── VirtualBuddyMonoProgressView.swift │ │ │ │ │ │ └── VirtualDisplayView.swift │ │ │ │ │ ├── RestoreImageSelectionController.swift │ │ │ │ │ └── RestoreImageSelectionStep.swift │ │ │ │ └── RestoreImageDownloadView.swift │ │ │ ├── VMInstallData.swift │ │ │ ├── VMInstallationViewModel.swift │ │ │ └── VMInstallationWizard.swift │ │ ├── Library/ │ │ │ ├── Components/ │ │ │ │ ├── FirstLaunchExperienceView.swift │ │ │ │ └── LibraryItemView.swift │ │ │ └── LibraryView.swift │ │ ├── Session/ │ │ │ ├── Components/ │ │ │ │ ├── ContinuousProgressIndicator.swift │ │ │ │ ├── MaskProgressView.swift │ │ │ │ ├── NumberDisplayMode.swift │ │ │ │ ├── SavedStatePicker.swift │ │ │ │ ├── SwiftUIVMView.swift │ │ │ │ ├── VMProgressOverlay.swift │ │ │ │ └── VirtualMachineControls.swift │ │ │ ├── Configuration/ │ │ │ │ └── VMSessionConfigurationView.swift │ │ │ ├── VirtualMachineSessionUI.swift │ │ │ ├── VirtualMachineSessionUIManager.swift │ │ │ └── VirtualMachineSessionView.swift │ │ ├── Settings/ │ │ │ ├── AutomationSettingsView.swift │ │ │ ├── Components/ │ │ │ │ ├── BackwardsCompatibility.swift │ │ │ │ ├── FileSystemPathFormControl.swift │ │ │ │ ├── OpenVirtualBuddySettingsAction.swift │ │ │ │ ├── SettingsFooter.swift │ │ │ │ └── VerticalLabeledContentStyle.swift │ │ │ ├── GeneralSettingsView.swift │ │ │ ├── SettingsScreen.swift │ │ │ └── VirtualizationSettingsView.swift │ │ └── VM Configuration/ │ │ ├── Components/ │ │ │ ├── ConfigurationSection.swift │ │ │ └── GroupedList.swift │ │ ├── Sections/ │ │ │ ├── DisplayConfigurationView.swift │ │ │ ├── GuestAppConfigurationView.swift │ │ │ ├── HardwareConfigurationView.swift │ │ │ ├── KeyboardDeviceConfigurationView.swift │ │ │ ├── NetworkConfigurationView.swift │ │ │ ├── PointingDeviceConfigurationView.swift │ │ │ ├── Sharing/ │ │ │ │ ├── SharedFolderListItem.swift │ │ │ │ ├── SharedFoldersManagementView.swift │ │ │ │ └── SharingConfigurationView.swift │ │ │ ├── SoundConfigurationView.swift │ │ │ └── Storage/ │ │ │ ├── ManagedDiskImageEditor.swift │ │ │ ├── StorageConfigurationView.swift │ │ │ └── StorageDeviceDetailView.swift │ │ ├── VMConfigurationSheet.swift │ │ ├── VMConfigurationView.swift │ │ └── VMConfigurationViewModel.swift │ └── VirtualUI.h ├── VirtualWormhole/ │ ├── Source/ │ │ ├── Definitions/ │ │ │ └── VirtualWormholeConstants.swift │ │ ├── Services/ │ │ │ ├── Base/ │ │ │ │ ├── WormholeServiceClient.swift │ │ │ │ └── WormholeServiceProtocol.swift │ │ │ ├── DarwinNotifications/ │ │ │ │ ├── SystemNotification.swift │ │ │ │ └── WHDarwinNotificationsService.swift │ │ │ ├── DefaultsImport/ │ │ │ │ ├── Implementation/ │ │ │ │ │ ├── DefaultsDomain+ExportImport.swift │ │ │ │ │ ├── DefaultsDomainDescriptor.swift │ │ │ │ │ └── DefaultsImportController.swift │ │ │ │ ├── Resources/ │ │ │ │ │ └── DefaultsDomains.plist │ │ │ │ ├── WHDefaultsImportClient.swift │ │ │ │ └── WHDefaultsImportService.swift │ │ │ ├── DesktopPicture/ │ │ │ │ ├── CGImage+FullyTransparent.swift │ │ │ │ ├── NSImage+DesktopPicture.h │ │ │ │ ├── NSImage+DesktopPicture.m │ │ │ │ └── WHDesktopPictureService.swift │ │ │ └── WHSharedClipboardService.swift │ │ ├── WireProtocol/ │ │ │ ├── WHPayload.swift │ │ │ ├── WHPing.swift │ │ │ └── WormholePacket.swift │ │ └── WormholeManager.swift │ └── VirtualWormhole.h ├── VirtualWormholeTests/ │ └── WormholePacketTests.swift └── data/ ├── images/ │ ├── debian-dark-thumbnail.heic │ ├── debian-dark.heic │ ├── debian-thumbnail.heic │ ├── debian.heic │ ├── fedora-dark-thumbnail.heic │ ├── fedora-dark.heic │ ├── fedora-thumbnail.heic │ ├── fedora.heic │ ├── jammyjellyfish-dark-thumbnail.heic │ ├── jammyjellyfish-dark.heic │ ├── jammyjellyfish-thumbnail.heic │ ├── jammyjellyfish.heic │ ├── kali-dark-thumbnail.heic │ ├── kali-dark.heic │ ├── kali-thumbnail.heic │ ├── kali.heic │ ├── monterey-dark-thumbnail.heic │ ├── monterey-dark.heic │ ├── monterey-thumbnail.heic │ ├── monterey.heic │ ├── sequoia-dark-thumbnail.heic │ ├── sequoia-dark.heic │ ├── sequoia-thumbnail.heic │ ├── sequoia.heic │ ├── sonoma-dark-thumbnail.heic │ ├── sonoma-dark.heic │ ├── sonoma-thumbnail.heic │ ├── sonoma.heic │ ├── tahoe-dark-thumbnail.heic │ ├── tahoe-dark.heic │ ├── tahoe-thumbnail.heic │ ├── tahoe.heic │ ├── ventura-dark-thumbnail.heic │ ├── ventura-dark.heic │ ├── ventura-thumbnail.heic │ └── ventura.heic ├── ipsws_v1.json ├── ipsws_v2.json ├── linux_v1.json └── linux_v2.json