[
  {
    "path": ".gitattributes",
    "content": "# Auto detect text files and perform LF normalization\n* text=auto\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2023 roothide\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# update jailbreak apps/tweaks for roothide\n \n 1. install roothide/theos\n\n    ```bash -c \"$(curl -fsSL https://raw.githubusercontent.com/roothide/theos/master/bin/install-theos)\"```\n    \n    and it's always automatically synchronized and maintains 100% compatibility with the original theos.\n\n 2. Build package for roothide\n\n\n    for those simple tweaks that don't use the file api to access jailbreak files, just\n\n    ```make package``` with ```THEOS_PACKAGE_SCHEME=roothide```\n\n\n 3. Using `roothide` APIs if you need to use the file apis to access jailbreak files in source code\n    ```\n    #include <roothide.h>\n    \n    //then using roothide api to access jailbreak files\n    \n    const char* c_path = jbroot(\"/path/to/jb/file\");\n    \n    NSString* objc_path = jbroot(@\"/path/to/jb/file\");\n    \n    std::string cpp_path = jbroot(std::string(\"/path/to/jb/file\"));\n    ```\n    ***the `jbroot` API can be used in C/C++/Objective-C/Swift and its fully compatible with building rootful/rootless package***\n\n 4. Add these `entitlements` to your executable/app to make them work correctly with roothide:\n    ```\n    <key>platform-application</key>\n    <true/>\n    <key>com.apple.private.security.no-sandbox</key>\n    <true/>\n    <key>com.apple.private.security.storage.AppBundles</key>\n    <true/>\n    <key>com.apple.private.security.storage.AppDataContainers</key>\n    <true/>\n    ```\n\n\n5. If you want to build your project with Xcode instead of theos,  \n   here is the roothide sdk: [devkit.zip](https://github.com/roothide/libroothide/releases/latest)\n\n\n7. For more details about roothide, please refer to\n   \n- [the difference between roothide and legacy rootless](roothide.md).\n\n- [entitlements and data sharing via files](entitlements.md).\n  \n- [roothide's sdk api and tools](interface.md).\n\n\n# support\n\n- roothideDev: https://twitter.com/roothideDev\n\n- roothide/theos-dev: https://discord.gg/qaCFxr33CV\n\n  \n# more info\n\n- roothide discord server: https://discord.gg/ZvY2Yjw8GA\n\n- theos dev discord server: https://discord.gg/z4RTnrcbKW\n\n"
  },
  {
    "path": "entitlements.md",
    "content": "# base entitlements\n\nall binaries of jailbreak are sandboxed(containerized) by default, \nand usually you don't want this, so you need to add the following entitlements:\n\n```\n<key>platform-application</key>\n<true/>\n<key>com.apple.private.security.no-sandbox</key>\n<true/>\n<key>com.apple.private.security.storage.AppBundles</key>\n<true/>\n<key>com.apple.private.security.storage.AppDataContainers</key>\n<true/>\n```\n\n# data sharing via file in tweak\n\nexcept for /var/ in jbroot, your tweak may not be able to modify(write) files in other jailbreak directories(even through libSandy). \ngenerally your tweak don't need do this, we recommend that you stored all data of jailbreak app/binary/tweak in /var/ in jbroot.\nin some case if you really need to do this, you can write a daemon to handle it.\n\n***also, macho files(executable/framework/dylib) in jbroot:/var/ or jbroot:/tmp/ can not be loaded due to the security mechanism of iOS, you should put them in other directories in jbroot.***\n\n\n# reserved directory in jbroot\n\nthe /System directory in jbroot is reserved, it is mainly used to [mirror some important files from the original rootfs](filemirror.md), \nand we recommend that you should not store any jailbreak files in it.\n\n\n"
  },
  {
    "path": "filemirror.md",
    "content": "# File/Directory Mirror\n\nthere are some specific file/directory paths in jbroot, which we set as symlinks to the original rootfs, \nbecause there is no reason to create a separate copy in jbroot, and this simplifies maintenance of jailbreak app/daemon/tweak,\nespecially for bootstrap, since it uses jbroot as the default root through [libvroot](vroot.md), this method can replace the patching of the source code of each package.\n(of cause under certain circumstances we can also replace it with a copy of the jailbroken version to meet our needs).\n\n| path in jbroot |\n| :-----|\n| jbroot |\n| /dev |\n| /private/preboot |\n| /var/containers |\n| /var/mobile/Containers |\n| /usr/share/misc/trace.codes |\n| /usr/share/zoneinfo |\n| /etc/hosts.equiv |\n| /etc/hosts |\n| /var/run/utmpx |\n| /var/db/timezone |\n| /System/Library/CoreServices/SystemVersion.plist |\n\n"
  },
  {
    "path": "interface.md",
    "content": "Before reading this, you may also want to know [the difference between rootide and rootless](roothide.md).\n\n# roothide Header\n```\n#include <roothide.h>\n```\nit has been included in theos, you can use it directly in c/c++/objc/swift-bridging-header. \nwhen you compile for rootful/rootless, all APIs in it will become empty stub functions for compatibility.\n\n(if you use xcode, you can configure theos header and library paths in xcode, or you can download [roothide's devkit package](https://github.com/roothide/libroothide/releases/)).\n\n# roothide API\n\n  ## 1. jbroot\n\n***this api is used to convert jbroot-based paths to rootfs-based paths for use by the system API.***\n\n  ```\n  /* for C language (auto cache) */\nconst char* jbroot(const char* path);\n\n/ * for Objective-C */\nNSString* jbroot(NSString* path);\n\n/* for C++ language */\nstd::string jbroot(std::string path);\n  ```\n\n***examples***\n\nC language:\n<pre>\n#include &lt;unistd.h&gt;\n#include &lt;roothide.h&gt;\n\nFILE* fp = fopen(<b>jbroot</b>(\"/var/jbconfig.test\"), \"w+\");\nfwrite(data, size, 1, fp);\nfclose(fp);\n</pre>\n\nObjective-C language:\n<pre>\n#include &lt;Foundation/Foundation.h&gt;\n#include &lt;roothide.h&gt;\n\nNSString* filepath = <b>jbroot</b>(\"/var/jbconfig.plist\");\nNSMutableDictionary* dict = [NSMutableDictionary dictionaryWithContentsOfFile:file];\ndict[@\"testkey\"] = @\"testvalue\";\n[dict writeToFile:filepath atomically:YES];\n</pre>\n\nC++ language:\n<pre>\n#include &lt;string&gt;\n#include &lt;fstream&gt;\n#include &lt;roothide.h&gt;\n\nstd::fstream  testfile(<b>jbroot</b>(\"/var/test.config\"), std::ios::out);\ntestfile.write(data, size);\ntestfile.close();\n</pre>\n\nexec command of bootstrap:\n<pre>\n#include &lt;unistd.h&gt;\n#include &lt;spawn.h&gt;\n#include &lt;roothide.h&gt;\n\npid_t pid;\nchar* args[] = {\"/usr/bin/killall\", \"-9\" \"SpringBoard\", NULL};\nint ret = posix_spawn(&pid, <b>jbroot</b>(args[0]), NULL, NULL, args, NULL);\n</pre>\n\n  ## 2. rootfs\n  \n***this api is used to convert rootfs-based paths to jbroot-based paths, then store the converted path to config files for use with jbroot next time,\nor use the converted path as an argument to call a command line tool in bootstrap.***\n\n  ```\n/* for C language (auto cache) */\nconst char* rootfs(const char* path);\n\n/ * for Objective-C */\nNSString* rootfs(NSString* path);\n\n/* for C++ language */\nstd::string rootfs(std::string path);\n```\n\n***examples***\n\nstore paths to config file:\n<pre>\n#include &lt;unistd.h&gt;\n#include &lt;Foundation/Foundation.h>\n#include &lt;roothide.h&gt;\n\nNSString* filepath = <b>jbroot</b>(\"/var/jbconfig.plist\");\nNSMutableDictionary* dict = [[NSMutableDictionary alloc] init];\ndict[@\"path\"] = <b>rootfs</b>(filepath);\n[dict writeToFile:filepath atomically:YES];\n\n/* ..... */\n\n// load the converted path from disk to use it with jbroot next time\n\nNSMutableDictionary* dict = [NSMutableDictionary dictionaryWithContentsOfFile:file];\nNSLog(@\"saved path = %@ (path based on jbroot)\", dict[\"path\"]);\n\nFILE* fp = fopen(<b>jbroot</b>(dict[\"path\"].fileSystemRepresentation), \"w+\");\nfwrite(data, size, 1, fp);\nfclose(fp);\n</pre>\n\ncall a command line tool of bootstrap:\n<pre>\n#include &lt;unistd.h&gt;\n#include &lt;spawn.h&gt;\n#include &lt;roothide.h&gt;\n\nint execBootstrapBinary(char* binary, char** args)\n{\n    pid_t pid=0;\n    int ret = posix_spawn(&pid, <b>jbroot</b>(args[0]), NULL, NULL, args, NULL);\n    if(ret!=0) return ret;\n    int status = -INT_MAX;\n    waitpid(pid, &status, 0);\n    return WEXITSTATUS(status);\n}\n\n//convert jbroot based path to rootfs based path\nchar* filepath = <b>jbroot</b>(\"/var/jbconfig.plist\");\nFILE* fp = fopen(filepath, \"w+\");\nfwrite(data, size, 1, fp);\nfclose(fp);\n\n// convert rootfs based path to jbroot based path and exec rm -f\nchar* args = {\"/usr/bin/rm\", \"-f\", <b>rootfs</b>(filepath), NULL};\nexecBootstrapBinary(args);\n</pre>\n\n  ## 3. jbrand\n\n  ***this API is used to get the random value of the current jailbreak state in system-wide.***\n  ```\nunsigned long long jbrand();\n```\nthis value will not change until next time we jailbreak, for example we can use it to add to our xpc service name as a suffix, or for other cases.\n\n\n# Mnemonic\n|  API   | Input  | Output |\n|  ----  | ----  | ----  |\n|  jbroot  | a **jbroot**-based path  | a rootfs-based path  |\n|  rootfs  | a **rootfs**-based path  | a jbroot-based path  |\n\n\n\n# Command Line Tool\n\n  jbroot/rootfs/jbrand also provided as command line tools for getting/converting paths in shell/scripts in some specific cases.\n\n"
  },
  {
    "path": "roothide.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <key>platform-application</key>\n    <true/>\n    <key>com.apple.private.security.no-sandbox</key>\n    <true/>\n    <key>com.apple.private.security.storage.AppBundles</key>\n    <true/>\n    <key>com.apple.private.security.storage.AppDataContainers</key>\n    <true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "roothide.md",
    "content": "# The difference between roothide and rootless\n\n1. ***/var/jb***\n\n   roothide is also root-less, but it no longer installs the jailbreak to the fixed path of /var/jb,\n   \n   it (re)installs the jailbreak to a directory(named jbroot) with a random name each time we jailbreak.\n\n2. ***About link and load path***\n\n   compared with rootless using /var/jb to link all dependent libraries, roothide uses the dyld variable \"@loader_path\" to link dependent libraries.\n\n   all dependent libraries should set install_name to @loader_path/.jbroot/absolute_path_to_lib, for example:\n\n   ```@loader_path/.jbroot/usr/lib/libsubstrate.dylib```\n\n   ```@loader_path/.jbroot/Library/Frameworks/Cephei.framework/Cephei```\n\n   in this way we can directly use the more accurate absolute path of the library to link.\n\n   each directory containing a mach-o file will automatically generate a .jbroot symbolic link that pointing to the jailbreak root directory,\n   it's usually generated by dpkg when installing packages, or generated by the jailbreak itself when loading a binary/library,\n   and roothide will automatically remove the related .jbroot symbolic link to keep system clean when dpkg removes a package.\n\n4. ***Access jailbreak files in code of jailbreak app/daemon/tweak***\n\n   roothide provides a [uniquely named API](interface.md) to get the root directory path of the current jailbreak, this API can be used anywhere in c/c++/objc/swift, and theos will automatically make it an empty stub via a macro when you compiling for rootful/rootless.\n\n5. ***Interact with bootstrap***\n\n   most of the libraries and command line tools automatically installed during jailbreak are bootstrap from procursus,\n   and procursus also provides a large number of useful packages, such as rm/cp/mv/chmod/chown/ldid/ssh/uicache...\n\n   unlike rootless uses the original root file system (rootfs) of iOS as the default root,\n   roothide's bootstrap uses jbroot as the default root, and roothide creates a symbolic link named \"rootfs\" in jbroot to provide bootstrap access to the iOS original root file system. (see [vroot](vroot.md)).\n\n   this means that all command line tools in bootstrap will only accept jbroot-based paths, and will only output jbroot-based paths. (and you should also use this path rule in jailbreak plist/config/shell-script files).\n\n   show case:\n\n   ```\n   # operate files in jbroot\n   cp /var/config.plist /etc/config.plist\n   ```\n\n   ```\n   # copy file from rootfs to jbroot\n   cp /rootfs/var/config.plist /etc/config.plist\n   ```\n\n   ```\n   # copy file from jbroot to rootfs \n   cp /etc/config.plist /rootfs/var/config.plist\n   ```\n   \n   ```\n   # operate files in rootfs \n   cp /rootfs/etc/config.plist /rootfs/var/config.plist\n   ```\n\n   roothide also provides command line tools called jbroot and rootfs to get/convert paths in shell/scripts in some specific cases.\n\n\n## Final\n\nroothide is designed to be kept as simple as possible to provide sustainability and maintainability.\n\n   \n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationListControllerBase.h",
    "content": "#import <Preferences/PSListController.h>\n#import <Preferences/PSSpecifier.h>\n#import \"ATLApplicationSection.h\"\n\n@class LSApplicationProxy;\n\n@interface PSListController()\n- (BOOL)containsSpecifier:(PSSpecifier*)specifier;\n@end\n\n@protocol LSApplicationWorkspaceObserverProtocol <NSObject>\n@optional\n-(void)applicationsDidInstall:(id)arg1;\n-(void)applicationsDidUninstall:(id)arg1;\n@end\n\n@interface ATLApplicationListControllerBase : PSListController <UISearchResultsUpdating, LSApplicationWorkspaceObserverProtocol>\n{\n\tdispatch_queue_t _iconLoadQueue;\n\tNSMutableArray* _allSpecifiers;\n\tNSMutableDictionary* _specifiersByLetter;\n\tNSArray<ATLApplicationSection*>* _applicationSections;\n\tUISearchController* _searchController;\n\tNSString* _searchKey;\n\tBOOL _isPopulated;\n\tBOOL _isReloadingSpecifiers;\n\tNSBundle* _altListBundle;\n\tUIImage* _placeholderAppIcon;\n}\n\n@property (nonatomic) BOOL useSearchBar;\n@property (nonatomic) BOOL hideSearchBarWhileScrolling;\n@property (nonatomic) BOOL includeIdentifiersInSearch;\n@property (nonatomic) BOOL showIdentifiersAsSubtitle;\n@property (nonatomic) BOOL alphabeticIndexingEnabled;\n@property (nonatomic) BOOL hideAlphabeticSectionHeaders;\n@property (nonatomic) NSBundle* localizationBundle;\n\n- (instancetype)initWithSections:(NSArray<ATLApplicationSection*>*)applicationSections;\n\n- (void)_setUpSearchBar;\n- (void)_loadSectionsFromSpecifier;\n- (void)_populateSections;\n\n- (void)loadPreferences;\n- (void)prepareForPopulatingSections;\n- (NSString*)localizedStringForString:(NSString*)string;\n- (void)reloadApplications;\n\n- (BOOL)shouldHideApplicationSpecifiers;\n- (BOOL)shouldHideApplicationSpecifier:(PSSpecifier*)specifier;\n\n- (BOOL)shouldShowSubtitles;\n- (NSString*)subtitleForApplicationWithIdentifier:(NSString*)applicationID;\n- (NSString*)_subtitleForSpecifier:(PSSpecifier*)specifier;\n\n- (PSCellType)cellTypeForApplicationCells;\n- (Class)customCellClassForCellType:(PSCellType)cellType;\n- (Class)detailControllerClassForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy;\n- (SEL)getterForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy;\n- (SEL)setterForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy;\n\n- (PSSpecifier*)createSpecifierForApplicationProxy:(LSApplicationProxy*)applicationProxy;\n- (NSArray*)createSpecifiersForApplicationSection:(ATLApplicationSection*)section;\n- (PSSpecifier*)createGroupSpecifierForApplicationSection:(ATLApplicationSection*)section;\n\n- (NSMutableArray*)specifiersGroupedByLetters;\n- (void)populateSpecifiersByLetter;\n\n- (PSSpecifier*)specifierForApplicationWithIdentifier:(NSString*)applicationID;\n- (NSIndexPath*)indexPathForApplicationWithIdentifier:(NSString*)applicationID;\n\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationListMultiSelectionController.h",
    "content": "#import \"ATLApplicationListControllerBase.h\"\n\n@interface ATLApplicationListMultiSelectionController : ATLApplicationListControllerBase\n{\n\tNSMutableSet* _selectedApplications;\n\tBOOL _defaultApplicationSwitchValue;\n}\n\n- (void)setApplicationEnabled:(NSNumber*)enabledNum specifier:(PSSpecifier*)specifier;\n- (id)readApplicationEnabled:(PSSpecifier*)specifier;\n\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationListSelectionController.h",
    "content": "#import \"ATLApplicationListControllerBase.h\"\n\n@interface ATLApplicationListSelectionController : ATLApplicationListControllerBase\n{\n\tNSString* _selectedApplicationID;\n}\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationListSubcontroller.h",
    "content": "#import <Preferences/PSListController.h>\n\n@interface ATLApplicationListSubcontroller : PSListController\n@property (nonatomic) NSString* applicationID;\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationListSubcontrollerController.h",
    "content": "#import \"ATLApplicationListControllerBase.h\"\n\n@interface ATLApplicationListSubcontrollerController : ATLApplicationListControllerBase\n@property (nonatomic) Class subcontrollerClass;\n\n- (NSString*)previewStringForApplicationWithIdentifier:(NSString*)applicationID;\n\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationSection.h",
    "content": "#import <Foundation/Foundation.h>\n\ntypedef NS_ENUM(NSInteger, ApplicationSectionType) {\n\tSECTION_TYPE_ALL,\n    SECTION_TYPE_SYSTEM,\n\tSECTION_TYPE_USER,\n\tSECTION_TYPE_HIDDEN,\n\tSECTION_TYPE_VISIBLE,\n\tSECTION_TYPE_CUSTOM\n};\n\n#define kApplicationSectionTypeAll @\"All\"\n#define kApplicationSectionTypeSystem @\"System\"\n#define kApplicationSectionTypeUser @\"User\"\n#define kApplicationSectionTypeHidden @\"Hidden\"\n#define kApplicationSectionTypeVisible @\"Visible\"\n#define kApplicationSectionTypeCustom @\"Custom\"\n\n@interface ATLApplicationSection : NSObject\n@property (nonatomic) ApplicationSectionType sectionType;\n@property (nonatomic) NSPredicate* customPredicate;\n@property (nonatomic) NSString* sectionName;\n\n@property (nonatomic) NSArray* applicationsInSection;\n\n+ (ApplicationSectionType)sectionTypeFromString:(NSString*)typeString;\n+ (NSString*)stringFromSectionType:(ApplicationSectionType)sectionType;\n\n+ (__kindof ATLApplicationSection*)applicationSectionWithDictionary:(NSDictionary*)sectionDictionary;\n- (instancetype)_initWithDictionary:(NSDictionary*)sectionDictionary;\n- (instancetype)initNonCustomSectionWithType:(ApplicationSectionType)sectionType;\n- (instancetype)initCustomSectionWithPredicate:(NSPredicate*)predicate sectionName:(NSString*)sectionName;\n- (NSArray<NSSortDescriptor*>*)sortDescriptorsForApplications;\n- (void)populateFromAllApplications:(NSArray*)allApplications;\n\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationSelectionCell.h",
    "content": "#import <Preferences/PSTableCell.h>\n\n@interface ATLApplicationSelectionCell : PSTableCell\n\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationSubtitleCell.h",
    "content": "#import <Preferences/PSTableCell.h>\n#import <Preferences/PSSpecifier.h>\n\n@interface ATLApplicationSubtitleCell : PSTableCell\n{\n\tUILabel* _customValueLabel;\n}\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/ATLApplicationSubtitleSwitchCell.h",
    "content": "#import <Preferences/PSSwitchTableCell.h>\n#import <Preferences/PSSpecifier.h>\n\n@interface ATLApplicationSubtitleSwitchCell : PSSwitchTableCell\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Headers/LSApplicationProxy+AltList.h",
    "content": "#import <MobileCoreServices/LSApplicationProxy.h>\n#import <MobileCoreServices/LSApplicationWorkspace.h>\n\n@interface LSApplicationProxy (AltList)\n- (BOOL)atl_isSystemApplication;\n- (BOOL)atl_isUserApplication;\n- (BOOL)atl_isHidden;\n- (NSString*)atl_fastDisplayName;\n- (NSString*)atl_nameToDisplay;\n@property (nonatomic,readonly) NSString* atl_bundleIdentifier;\n@end\n\n@interface LSApplicationWorkspace (AltList)\n- (NSArray*)atl_allInstalledApplications;\n@end"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>English</string>\n\t<key>CFBundleExecutable</key>\n\t<string>AltList</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>com.opa334.altlist</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundlePackageType</key>\n\t<string>FMWK</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>NSPrincipalClass</key>\n\t<string>ATLApplicationListControllerBase</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/ar.lproj/Localizable.strings",
    "content": "\"Applications\" = \"التطبيقات\";\n\"System Applications\" = \"تطبيقات النظام\";\n\"User Applications\" = \"تطبيقات المستخدم\";\n\"Hidden Applications\" = \"التطبيقات المخفية\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/de.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Applikationen\";\n\"System Applications\" = \"Systemapplikationen\";\n\"User Applications\" = \"Benutzerapplikationen\";\n\"Hidden Applications\" = \"Versteckte Applikationen\";"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/en.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Applications\";\n\"System Applications\" = \"System Applications\";\n\"User Applications\" = \"User Applications\";\n\"Hidden Applications\" = \"Hidden Applications\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/fr.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Applications\";\n\"System Applications\" = \"Applications Système\";\n\"User Applications\" = \"Applications Utilisateur\";\n\"Hidden Applications\" = \"Applications masquées\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/it.lproj/Localizable.strings",
    "content": "\"Applications\" = \"App\";\n\"System Applications\" = \"App di Sistema\";\n\"User Applications\" = \"App Personali\";\n\"Hidden Applications\" = \"App Nascoste\";"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/ja.lproj/Localizable.strings",
    "content": "\"Applications\" = \"アプリケーション\";\n\"System Applications\" = \"システムアプリケーション\";\n\"User Applications\" = \"ユーザーアプリケーション\";\n\"Hidden Applications\" = \"非表示のアプリケーション\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/ko.lproj/Localizable.strings",
    "content": "\"Applications\" = \"앱\";\n\"System Applications\" = \"시스템 앱\";\n\"User Applications\" = \"사용자 앱\";\n\"Hidden Applications\" = \"숨겨진 앱\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/nl.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Applicaties\";\n\"System Applications\" = \"Systeem Applicaties\";\n\"User Applications\" = \"Gebruiker Applicaties\";\n\"Hidden Applications\" = \"Verborgen Applicaties\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/pl.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Aplikacje\";\n\"System Applications\" = \"Aplikacje Systemowe\";\n\"User Applications\" = \"Aplikacje Użytkownika\";\n\"Hidden Applications\" = \"Ukryte Aplikacje\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/pt.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Aplicativos\";\n\"System Applications\" = \"Aplicativos do Sistema\";\n\"User Applications\" = \"Aplicativos do Usuário\";\n\"Hidden Applications\" = \"Aplicativos Ocultos\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/ru.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Приложения\";\n\"System Applications\" = \"Системные приложения\";\n\"User Applications\" = \"Пользовательские приложения\";\n\"Hidden Applications\" = \"Скрытые приложения\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/sk.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Aplikácie\";\n\"System Applications\" = \"Systémové aplikácie\";\n\"User Applications\" = \"Používateľské aplikácie\";\n\"Hidden Applications\" = \"Skryté aplikácie\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/tr.lproj/Localizable.strings",
    "content": "\"Applications\" = \"Uygulamalar\";\n\"System Applications\" = \"Sistem Uygulamaları\";\n\"User Applications\" = \"Kullanıcı Uygulamaları\";\n\"Hidden Applications\" = \"Gizlenmiş Uygulamalar\";"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/zh-Hant.lproj/Localizable.strings",
    "content": "\"Applications\" = \"應用程式\";\n\"System Applications\" = \"系統應用\";\n\"User Applications\" = \"用戶應用\";\n\"Hidden Applications\" = \"隱藏應用\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/AltList.framework/zh.lproj/Localizable.strings",
    "content": "\"Applications\" = \"应用程序\";\n\"System Applications\" = \"系统应用\";\n\"User Applications\" = \"用户应用\";\n\"Hidden Applications\" = \"隐藏的应用\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Headers/Cephei-Swift.h",
    "content": "// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n#ifndef CEPHEI_SWIFT_H\n#define CEPHEI_SWIFT_H\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wgcc-compat\"\n\n#if !defined(__has_include)\n# define __has_include(x) 0\n#endif\n#if !defined(__has_attribute)\n# define __has_attribute(x) 0\n#endif\n#if !defined(__has_feature)\n# define __has_feature(x) 0\n#endif\n#if !defined(__has_warning)\n# define __has_warning(x) 0\n#endif\n\n#if __has_include(<swift/objc-prologue.h>)\n# include <swift/objc-prologue.h>\n#endif\n\n#pragma clang diagnostic ignored \"-Wduplicate-method-match\"\n#pragma clang diagnostic ignored \"-Wauto-import\"\n#if defined(__OBJC__)\n#include <Foundation/Foundation.h>\n#endif\n#if defined(__cplusplus)\n#include <cstdint>\n#include <cstddef>\n#include <cstdbool>\n#else\n#include <stdint.h>\n#include <stddef.h>\n#include <stdbool.h>\n#endif\n\n#if !defined(SWIFT_TYPEDEFS)\n# define SWIFT_TYPEDEFS 1\n# if __has_include(<uchar.h>)\n#  include <uchar.h>\n# elif !defined(__cplusplus)\ntypedef uint_least16_t char16_t;\ntypedef uint_least32_t char32_t;\n# endif\ntypedef float swift_float2  __attribute__((__ext_vector_type__(2)));\ntypedef float swift_float3  __attribute__((__ext_vector_type__(3)));\ntypedef float swift_float4  __attribute__((__ext_vector_type__(4)));\ntypedef double swift_double2  __attribute__((__ext_vector_type__(2)));\ntypedef double swift_double3  __attribute__((__ext_vector_type__(3)));\ntypedef double swift_double4  __attribute__((__ext_vector_type__(4)));\ntypedef int swift_int2  __attribute__((__ext_vector_type__(2)));\ntypedef int swift_int3  __attribute__((__ext_vector_type__(3)));\ntypedef int swift_int4  __attribute__((__ext_vector_type__(4)));\ntypedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));\ntypedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));\ntypedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));\n#endif\n\n#if !defined(SWIFT_PASTE)\n# define SWIFT_PASTE_HELPER(x, y) x##y\n# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)\n#endif\n#if !defined(SWIFT_METATYPE)\n# define SWIFT_METATYPE(X) Class\n#endif\n#if !defined(SWIFT_CLASS_PROPERTY)\n# if __has_feature(objc_class_property)\n#  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__\n# else\n#  define SWIFT_CLASS_PROPERTY(...)\n# endif\n#endif\n\n#if __has_attribute(objc_runtime_name)\n# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))\n#else\n# define SWIFT_RUNTIME_NAME(X)\n#endif\n#if __has_attribute(swift_name)\n# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))\n#else\n# define SWIFT_COMPILE_NAME(X)\n#endif\n#if __has_attribute(objc_method_family)\n# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))\n#else\n# define SWIFT_METHOD_FAMILY(X)\n#endif\n#if __has_attribute(noescape)\n# define SWIFT_NOESCAPE __attribute__((noescape))\n#else\n# define SWIFT_NOESCAPE\n#endif\n#if __has_attribute(ns_consumed)\n# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))\n#else\n# define SWIFT_RELEASES_ARGUMENT\n#endif\n#if __has_attribute(warn_unused_result)\n# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))\n#else\n# define SWIFT_WARN_UNUSED_RESULT\n#endif\n#if __has_attribute(noreturn)\n# define SWIFT_NORETURN __attribute__((noreturn))\n#else\n# define SWIFT_NORETURN\n#endif\n#if !defined(SWIFT_CLASS_EXTRA)\n# define SWIFT_CLASS_EXTRA\n#endif\n#if !defined(SWIFT_PROTOCOL_EXTRA)\n# define SWIFT_PROTOCOL_EXTRA\n#endif\n#if !defined(SWIFT_ENUM_EXTRA)\n# define SWIFT_ENUM_EXTRA\n#endif\n#if !defined(SWIFT_CLASS)\n# if __has_attribute(objc_subclassing_restricted)\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# else\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# endif\n#endif\n#if !defined(SWIFT_RESILIENT_CLASS)\n# if __has_attribute(objc_class_stub)\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# else\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# endif\n#endif\n\n#if !defined(SWIFT_PROTOCOL)\n# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n#endif\n\n#if !defined(SWIFT_EXTENSION)\n# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)\n#endif\n\n#if !defined(OBJC_DESIGNATED_INITIALIZER)\n# if __has_attribute(objc_designated_initializer)\n#  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))\n# else\n#  define OBJC_DESIGNATED_INITIALIZER\n# endif\n#endif\n#if !defined(SWIFT_ENUM_ATTR)\n# if defined(__has_attribute) && __has_attribute(enum_extensibility)\n#  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))\n# else\n#  define SWIFT_ENUM_ATTR(_extensibility)\n# endif\n#endif\n#if !defined(SWIFT_ENUM)\n# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# if __has_feature(generalized_swift_name)\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# else\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)\n# endif\n#endif\n#if !defined(SWIFT_UNAVAILABLE)\n# define SWIFT_UNAVAILABLE __attribute__((unavailable))\n#endif\n#if !defined(SWIFT_UNAVAILABLE_MSG)\n# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))\n#endif\n#if !defined(SWIFT_AVAILABILITY)\n# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))\n#endif\n#if !defined(SWIFT_WEAK_IMPORT)\n# define SWIFT_WEAK_IMPORT __attribute__((weak_import))\n#endif\n#if !defined(SWIFT_DEPRECATED)\n# define SWIFT_DEPRECATED __attribute__((deprecated))\n#endif\n#if !defined(SWIFT_DEPRECATED_MSG)\n# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))\n#endif\n#if __has_feature(attribute_diagnose_if_objc)\n# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, \"warning\")))\n#else\n# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)\n#endif\n#if defined(__OBJC__)\n#if !defined(IBSegueAction)\n# define IBSegueAction\n#endif\n#endif\n#if !defined(SWIFT_EXTERN)\n# if defined(__cplusplus)\n#  define SWIFT_EXTERN extern \"C\"\n# else\n#  define SWIFT_EXTERN extern\n# endif\n#endif\n#if !defined(SWIFT_CALL)\n# define SWIFT_CALL __attribute__((swiftcall))\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT noexcept\n#endif\n#else\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT \n#endif\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_CXX_INT_DEFINED)\n#define SWIFT_CXX_INT_DEFINED\nnamespace swift {\nusing Int = ptrdiff_t;\nusing UInt = size_t;\n}\n#endif\n#endif\n#if defined(__OBJC__)\n#if __has_feature(modules)\n#if __has_warning(\"-Watimport-in-framework-header\")\n#pragma clang diagnostic ignored \"-Watimport-in-framework-header\"\n#endif\n@import Foundation;\n@import ObjectiveC;\n#endif\n\n#endif\n#pragma clang diagnostic ignored \"-Wproperty-attribute-mismatch\"\n#pragma clang diagnostic ignored \"-Wduplicate-method-arg\"\n#if __has_warning(\"-Wpragma-clang-attribute\")\n# pragma clang diagnostic ignored \"-Wpragma-clang-attribute\"\n#endif\n#pragma clang diagnostic ignored \"-Wunknown-pragmas\"\n#pragma clang diagnostic ignored \"-Wnullability\"\n#pragma clang diagnostic ignored \"-Wdollar-in-identifier-extension\"\n\n#if __has_attribute(external_source_symbol)\n# pragma push_macro(\"any\")\n# undef any\n# pragma clang attribute push(__attribute__((external_source_symbol(language=\"Swift\", defined_in=\"Cephei\",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))\n# pragma pop_macro(\"any\")\n#endif\n\n#if defined(__OBJC__)\n@class NSString;\n\nSWIFT_CLASS_NAMED(\"Command\")\n@interface HBCommand : NSObject\n+ (NSString * _Nonnull)executeSync:(NSString * _Nonnull)command arguments:(NSArray<NSString *> * _Nullable)arguments status:(int32_t * _Nullable)status;\n- (nonnull instancetype)init SWIFT_UNAVAILABLE;\n+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG(\"-init is unavailable\");\n@end\n\n#endif\n#if defined(__cplusplus)\n#endif\n#if __has_attribute(external_source_symbol)\n# pragma clang attribute pop\n#endif\n#pragma clang diagnostic pop\n#endif\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Headers/Cephei.h",
    "content": "#import \"HBOutputForShellCommand.h\"\n#import \"HBPreferences.h\"\n#import \"HBRespringController.h\"\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Headers/HBOutputForShellCommand.h",
    "content": "#import <Foundation/Foundation.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n/// Executes a shell command and returns its output.\n///\n/// @param command The shell command to run.\n/// @param returnCode A pointer to an integer that will contain the return code of the command.\n/// @return The output of the provided command.\nFOUNDATION_EXPORT NSString * _Nullable HBOutputForShellCommandWithReturnCode(NSString *command, int *returnCode);\n\n/// Executes a shell command and returns its output.\n///\n/// @param command The shell command to run.\n/// @return The output of the provided command, or nil if the command returned with a code other\n/// than 0.\nFOUNDATION_EXPORT NSString * _Nullable HBOutputForShellCommand(NSString *command);\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Headers/HBPreferences.h",
    "content": "#import <Foundation/Foundation.h>\n#import <CoreGraphics/CoreGraphics.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\ntypedef void (^HBPreferencesChangeCallback)(void);\n\ntypedef void (^HBPreferencesValueChangeCallback)(NSString *key, id<NSCopying> _Nullable value);\n\n/// The HBPreferences class in Cephei provides an interface for managing user-defined\n/// preferences of a tweak, and the default values used when the user has not yet changed a value.\n///\n/// `HBPreferences` is very similar to `NSUserDefaults`, however it is specifically tailored to iOS\n/// tweak development, since tweaks may be loaded into a sandboxed process (most obviously, App\n/// Store apps, but also system apps like Safari), or one that runs as the `root` user (for\n/// instance, iFile, although these apps are slowly changing their model so they now run as mobile).\n/// In both of these cases, using `NSUserDefaults` will result in reading from preferences inside\n/// the sandbox, or inside `root`’s home directory; both of which are not what is expected.\n///\n/// Advantages `HBPreferences` has over `NSUserDefaults` are:\n///\n/// - Directly reading the property list from the `mobile` user’s home directory, to support\n/// sandboxed apps and apps running as `root`.\n/// - Intuitive method of setting a default preference value.\n/// - Updating of the app/tweak’s variables when preferences are changed.\n/// - Keyed subscripting is allowed, which enables simple array syntax.\n/// - Values in the preferences plist are called preferences, not defaults, to avoid ambiguity -\n/// `NSUserDefaults` uses “defaults” to refer to both preferences themselves and the fallback values\n/// if a key doesn’t exist.\n///\n/// Ensure you read the discussion for `-registerObject:default:forKey:` before using the automatic\n/// updating mechanism. Specifically, a Darwin notification is required for this feature to work.\n///\n/// As of Cephei 1.17, HBPreferences supports Key-Value Observation. As such, you may subscribe to\n/// changes made to preferences through observer callbacks. The `-registerPreferenceChangeBlock:`\n/// and `-registerPreferenceChangeBlockForKey:block:` methods are provided to subscribe to\n/// preference changes via a callback block since Cephei 1.3, and you can additionally observe\n/// `HBPreferencesDidChangeNotification`.\n///\n/// ### Example usage\n/// In Objective-C/Logos:\n///\n/// ```logos\n/// HBPreferences *preferences;\n/// BOOL doThing;\n///\n/// %ctor {\n/// \tpreferences = [[HBPreferences alloc] initWithIdentifier:@\"ws.hbang.common.demo\"];\n/// \t[preferences registerDefaults:@{\n/// \t\t@\"Enabled\": @YES,\n/// \t\t@\"AnotherSetting\": @1.f\n/// \t}];\n///\n/// \t[preferences registerBool:&doThing default:NO forKey:@\"DoThing\"];\n///\n/// \tNSLog(@\"Am I enabled? %i\", [preferences boolForKey:@\"Enabled\"]);\n/// \tNSLog(@\"Can I do thing? %i\", doThing);\n/// }\n/// ```\n///\n/// In Swift:\n///\n/// ```swift\n/// class Preferences {\n///\n/// \tprivate let preferences = HBPreferences(identifier: \"ws.hbang.common.demo\")\n///\n/// \t// Example using registration method\n/// \tprivate(set) var canDoThing: ObjCBool = false\n///\n/// \t// Example using custom getter and setter\n/// \tvar anotherSetting: Int {\n/// \t\tget { preferences[\"AnotherSetting\"] as? Int ?? -1 }\n/// \t\tset { preferences[\"AnotherSetting\"] = newValue }\n/// \t}\n///\n/// \tinit() {\n/// \t\tpreferences.register(defaults: [\n/// \t\t\t\"Enabled\": true,\n/// \t\t\t\"AnotherSetting\": 1\n/// \t\t])\n///\n/// \t\tpreferences.register(&canDoThing, default: false, forKey: \"DoThing\")\n///\n/// \t\tprint(\"Am I enabled? \\(preferences[\"Enabled\"] as? Bool ?? false)\")\n/// \t\tprint(\"Can I do thing? \\(canDoThing)\")\n/// \t}\n///\n/// }\n/// ```\n///\n/// ### References\n/// * [NSUserDefaults in Practice](http://dscoder.com/defaults.html)\n///\n/// ### Security\n/// As of Cephei 1.12, HBPreferences restricts most Apple preferences (identifiers starting with\n/// `com.apple.…`) from being read/written from a sandboxed process. This protects against a\n/// malicious app using HBPreferences as a way to gather sensitive information or change system\n/// preferences without the user’s knowledge. For instance, an App Store app could\n/// [phish for the user’s Apple ID login](https://krausefx.com/blog/ios-privacy-stealpassword-easily-get-the-users-apple-id-password-just-by-asking),\n/// creating a very real-looking login prompt by pre-filling their email address in the username box,\n/// or gain access to the numbers/email addresses of people the user has recently contacted.\n///\n/// There is currently no way to avoid this restriction while still using HBPreferences. If you need\n/// access to Apple preferences, design your code to not need to do this from within the sandbox.\n/// This could be done [using IPC](http://iphonedevwiki.net/index.php/IPC) from an unsandboxed\n/// process such as SpringBoard. Avoid sending sensitive information via IPC to sandboxed apps, as\n/// they can still get access to data you send through various ways.\n\nNS_SWIFT_NAME(Preferences)\n@interface HBPreferences : NSObject\n\n/// @name Initializing an HBPreferences Object\n\n/// Creates an instance of the class for the specified identifier.\n///\n/// @param identifier The identifier to be used. This is usually the same as the package identifier\n/// of the tweak.\n/// @return An autoreleased instance of HBPreferences for the specified identifier.\n+ (instancetype)preferencesForIdentifier:(NSString *)identifier NS_SWIFT_UNAVAILABLE(\"\");\n\n/// Initializes an instance of the class for the specified identifier.\n///\n/// @param identifier The identifier to be used. This is usually the same as the package identifier\n/// of the tweak.\n/// @return An autoreleased instance of HBPreferences for the specified identifier.\n- (instancetype)initWithIdentifier:(NSString *)identifier NS_DESIGNATED_INITIALIZER;\n\n/// The preferences identifier provided at initialisation.\n@property (nonatomic, retain, readonly) NSString *identifier;\n\n/// @name Registering Default Preference Values\n\n/// The default preferences to be used when no value has been set by the user.\n///\n/// You may modify the values of this dictionary directly.\n@property (nonatomic, copy, readonly) NSMutableDictionary <NSString *, id> *defaults;\n\n/// Adds the contents of the specified dictionary to the defaults property.\n///\n/// Merges the provided dictionary with the mutable dictionary found on the defaults property.\n///\n/// @param defaultValues The dictionary of keys and values you want to register.\n/// @see `defaults`\n- (void)registerDefaults:(NSDictionary <NSString *, id> *)defaultValues NS_SWIFT_NAME(register(defaults:));\n\n/// @name Getting Preference Values\n\n/// Returns a dictionary that contains all preferences that are set.\n///\n/// This does not include default values.\n///\n/// @return A dictionary containing all keys and values.\n- (NSDictionary <NSString *, id> *)dictionaryRepresentation;\n\n/// Returns the object associated with the specified key.\n///\n/// If the preference is not yet set, returns the default. If no default is set, returns `nil`.\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The object associated with the specified key.\n- (id)objectForKey:(NSString *)key;\n\n/// Returns the integer value associated with the specified key.\n///\n/// If the preference is not yet set, returns the default. If no default is set, returns `nil`.\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The integer value associated with the specified key.\n/// @see `-objectForKey:`\n- (NSInteger)integerForKey:(NSString *)key;\n\n/// Returns the unsigned integer value associated with the specified key.\n///\n/// If the preference is not yet set, returns the default. If no default is set, returns `nil`.\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The unsigned integer value associated with the specified key.\n/// @see `-objectForKey:`\n- (NSUInteger)unsignedIntegerForKey:(NSString *)key;\n\n/// Returns the floating-point value associated with the specified key.\n///\n/// If the preference is not yet set, returns the default. If no default is set, returns `nil`.\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The floating-point value associated with the specified key.\n/// @see `-objectForKey:`\n- (CGFloat)floatForKey:(NSString *)key;\n\n/// Returns the double value associated with the specified key.\n///\n/// If the preference is not yet set, returns the default. If no default is set, returns `nil`.\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The double value associated with the specified key.\n/// @see `-objectForKey:`\n- (double)doubleForKey:(NSString *)key;\n\n/// Returns the Boolean value associated with the specified key.\n///\n/// If the preference is not yet set, returns the default. If no default is set, returns `nil`.\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The Boolean value associated with the specified key.\n/// @see `-objectForKey:`\n- (BOOL)boolForKey:(NSString *)key;\n\n/// Returns the value associated with a given key.\n///\n/// This method behaves the same as `-objectForKey:`, and enables the preferences object to be used\n/// with a subscript (square brackets). For example:\n///\n/// ```swift\n/// let fooBar = preferences[\"FooBar\"] as? String\n/// preferences[\"Awesome\"] = true\n/// ```\n///\n/// ```objc\n/// NSString *fooBar = preferences[@\"FooBar\"];\n/// preferences[@\"Awesome\"] = @YES;\n/// ```\n///\n/// @param key The key for which to return the corresponding value.\n/// @return The value associated with the specified key.\n/// @see `-objectForKey:`\n- (id)objectForKeyedSubscript:(id)key;\n\n/// Returns the object associated with the specified key, or if no user preference is set, the\n/// provided default.\n///\n/// @param key The key for which to return the corresponding value.\n/// @param defaultValue The default value to use when no user preference is set.\n/// @return The object associated with the specified key, or the default value.\n- (id)objectForKey:(NSString *)key default:(nullable id)defaultValue;\n\n/// Returns the integer value associated with the specified key, or if no user preference is set,\n/// the provided default.\n///\n/// @param key The key for which to return the corresponding value.\n/// @param defaultValue The default value to use when no user preference is set.\n/// @return The integer value associated with the specified key, or the default value.\n/// @see `-objectForKey:default:`\n- (NSInteger)integerForKey:(NSString *)key default:(NSInteger)defaultValue;\n\n/// Returns the unsigned integer value associated with the specified key, or if no user preference\n/// is set, the provided default.\n///\n/// @param key The key for which to return the corresponding value.\n/// @param defaultValue The default value to use when no user preference is set.\n/// @return The unsigned integer value associated with the specified key, or the default value.\n/// @see `-objectForKey:default:`\n- (NSUInteger)unsignedIntegerForKey:(NSString *)key default:(NSUInteger)defaultValue;\n\n/// Returns the floating-point value associated with the specified key, or if no user preference is\n/// set, the provided default.\n///\n/// @param key The key for which to return the corresponding value.\n/// @param defaultValue The default value to use when no user preference is set.\n/// @return The floating-point value associated with the specified key, or the default value.\n/// @see `-objectForKey:default:`\n- (CGFloat)floatForKey:(NSString *)key default:(CGFloat)defaultValue;\n\n/// Returns the double value associated with the specified key, or if no user preference is set,\n/// the provided default.\n///\n/// @param key The key for which to return the corresponding value.\n/// @param defaultValue The default value to use when no user preference is set.\n/// @return The double value associated with the specified key, or the default value.\n/// @see `-objectForKey:default:`\n- (double)doubleForKey:(NSString *)key default:(double)defaultValue;\n\n/// Returns the Boolean value associated with the specified key, or if no user preference is set,\n/// the provided default.\n///\n/// @param key The key for which to return the corresponding value.\n/// @param defaultValue The default value to use when no user preference is set.\n/// @return The Boolean value associated with the specified key, or the default value.\n/// @see `-objectForKey:default:`\n- (BOOL)boolForKey:(NSString *)key default:(BOOL)defaultValue;\n\n/// @name Setting Preference Values\n\n/// Sets the value of the specified key.\n///\n/// You should only call these methods if you are certain that the process is running as the\n/// `mobile` user.\n///\n/// @param value The object to store in the preferences.\n/// @param key The key with which to associate with the value.\n- (void)setObject:(nullable id)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:));\n\n/// Sets the value of the specified key to the specified integer value.\n///\n/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method\n/// for more details.\n///\n/// @param value The integer value to store in the preferences.\n/// @param key The key with which to associate with the value.\n/// @see `-setObject:forKey:`\n- (void)setInteger:(NSInteger)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:));\n\n/// Sets the value of the specified key to the specified unsigned integer value.\n///\n/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method\n/// for more details.\n///\n/// @param value The unsigned integer value to store in the preferences.\n/// @param key The key with which to associate with the value.\n/// @see `-setObject:forKey:`\n- (void)setUnsignedInteger:(NSUInteger)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:));\n\n/// Sets the value of the specified key to the specified floating-point value.\n///\n/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method\n/// for more details.\n///\n/// @param value The floating-point value to store in the preferences.\n/// @param key The key with which to associate with the value.\n/// @see `-setObject:forKey:`\n- (void)setFloat:(CGFloat)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:));\n\n/// Sets the value of the specified key to the specified double value.\n///\n/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method\n/// for more details.\n///\n/// @param value The double value to store in the preferences.\n/// @param key The key with which to associate with the value.\n/// @see `-setObject:forKey:`\n- (void)setDouble:(double)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:));\n\n/// Sets the value of the specified key to the specified Boolean value.\n///\n/// This is a convenience method that calls `-setObject:forKey:`. See the discussion of that method\n/// for more details.\n///\n/// @param value The Boolean value to store in the preferences.\n/// @param key The key with which to associate with the value.\n/// @see `-setObject:forKey:`\n- (void)setBool:(BOOL)value forKey:(NSString *)key NS_SWIFT_NAME(set(_:forKey:));\n\n/// Sets the value of the specified key to the specified value.\n///\n/// This method behaves the same as `-setObject:forKey:`, and enables the preferences object to be\n/// used with a subscript (square brackets). For example:\n///\n/// ```swift\n/// let fooBar = preferences[\"FooBar\"]\n/// preferences[\"Awesome\"] = true\n/// ```\n///\n/// ```objc\n/// NSString *fooBar = preferences[@\"FooBar\"];\n/// preferences[@\"Awesome\"] = @YES;\n/// ```\n///\n/// @param object The value to store in the preferences.\n/// @param key The key with which to associate with the value.\n- (void)setObject:(nullable id)object forKeyedSubscript:(id)key;\n\n/// @name Removing Preference Values\n\n/// Removes a given key and its associated value from the dictionary.\n///\n/// @param key The key to remove.\n- (void)removeObjectForKey:(NSString *)key NS_SWIFT_NAME(removeValue(forKey:));\n\n/// Removes all stored preferences.\n///\n/// This method acts in the same way as discussed in `-removeObjectForKey:`.\n- (void)removeAllObjects NS_SWIFT_NAME(removeAll());\n\n/// @name Registering Variables\n\n/// Register an object to be automatically set to the user’s preference.\n///\n/// If the preference is not yet set, the object will be set to the provided default.\n///\n/// You must post a Darwin notification after updating preferences for this to work. In particular,\n/// it must be set to the value of identifier, followed by `/ReloadPrefs` - for instance,\n/// `ws.hbang.common.demo/ReloadPrefs`. In a Preferences specifier property list, you can use the\n/// `PostNotification` key on your specifiers to achieve this:\n///\n/// ```xml\n/// <dict>\n/// \t…\n/// \t<key>PostNotification</key>\n/// \t<string>ws.hbang.common.demo/ReloadPrefs</string>\n/// </dict>\n/// ```\n///\n/// @param object The pointer to the object.\n/// @param defaultValue The default value to be used if no user preference is set.\n/// @param key The key in the preferences property list.\n/// @see `-registerObject:default:forKey:`\n- (void)registerObject:(_Nullable id __strong * _Nonnull)object default:(nullable id)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:));\n\n/// Register an integer value to be automatically set to the user’s preference.\n///\n/// If the preference is not yet set, the object will be set to the provided default.\n///\n/// @param object The pointer to the integer.\n/// @param defaultValue The default value to be used if no user preference is set.\n/// @param key The key in the preferences property list.\n/// @see `-registerObject:default:forKey:`\n- (void)registerInteger:(NSInteger *)object default:(NSInteger)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:));\n\n/// Register an unsigned integer value to be automatically set to the user’s preference.\n///\n/// If the preference is not yet set, the object will be set to the provided default.\n///\n/// @param object The pointer to the unsigned integer.\n/// @param defaultValue The default value to be used if no user preference is set.\n/// @param key The key in the preferences property list.\n/// @see `-registerObject:default:forKey:`\n- (void)registerUnsignedInteger:(NSUInteger *)object default:(NSUInteger)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:));\n\n/// Register a floating-point value to be automatically set to the user’s preference.\n///\n/// If the preference is not yet set, the object will be set to the provided default.\n///\n/// @param object The pointer to the integer.\n/// @param defaultValue The default value to be used if no user preference is set.\n/// @param key The key in the preferences property list.\n/// @see `-registerObject:default:forKey:`\n- (void)registerFloat:(CGFloat *)object default:(CGFloat)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:));\n\n/// Register a double value to be automatically set to the user’s preference.\n///\n/// If the preference is not yet set, the object will be set to the provided default.\n///\n/// @param object The pointer to the double.\n/// @param defaultValue The default value to be used if no user preference is set.\n/// @param key The key in the preferences property list.\n/// @see `-registerObject:default:forKey:`\n- (void)registerDouble:(double *)object default:(double)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:));\n\n/// Register a Boolean value to be automatically set to the user’s preference.\n///\n/// If the preference is not yet set, the object will be set to the provided default.\n///\n/// @param object The pointer to the Boolean.\n/// @param defaultValue The default value to be used if no user preference is set.\n/// @param key The key in the preferences property list.\n/// @see `-registerObject:default:forKey:`\n- (void)registerBool:(BOOL *)object default:(BOOL)defaultValue forKey:(NSString *)key NS_SWIFT_NAME(register(_:default:forKey:));\n\n/// @name Preference Change Callbacks\n\n/// Register a block to be called when a preference change is detected.\n///\n/// Blocks are called after HBPreferences’ cache of values is updated. The block will also be called\n/// immediately after calling this method. See `registerObject:default:forKey:` for details on how\n/// to set up callbacks.\n///\n/// @param callback A block object called when the specified key’s value changes. The block object\n/// takes no parameters and returns no value.\n/// @see `-registerObject:default:forKey:`\n- (void)registerPreferenceChangeBlock:(HBPreferencesChangeCallback)callback;\n\n/// Register a block to be called when a specific preference is changed.\n///\n/// Blocks are called after HBPreferences’ cache of values is updated. The block will also be called\n/// immediately after calling this method. See `registerObject:default:forKey:` for details on how\n/// to set up callbacks.\n///\n/// @param key The key to listen for.\n/// @param callback A block object called when the specified key’s value changes. The block object’s\n/// parameters are the key and its new value.\n/// @see `-registerObject:default:forKey:`\n- (void)registerPreferenceChangeBlockForKey:(NSString *)key block:(HBPreferencesValueChangeCallback)callback;\n\n@end\n\n/// This notification is posted when a change is made to a registered preferences identifier. The\n/// notification object is the associated HBPreferences object.\nextern NSNotificationName const HBPreferencesDidChangeNotification NS_SWIFT_NAME(HBPreferences.didChangeNotification);\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Headers/HBRespringController.h",
    "content": "#import <Foundation/Foundation.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n/// The HBRespringController class in Cephei provides conveniences for restarting the system app\n/// (usually SpringBoard).\n\nNS_SWIFT_NAME(RespringController)\n@interface HBRespringController : NSObject\n\n/// Restart the system app.\n///\n/// Displays a loading spinner, then returns to the home screen (system remains unlocked).\n+ (void)respring;\n\n/// Restart the system app and immediately launch a URL.\n///\n/// Displays a loading spinner, then launches the specified URL (system remains unlocked).\n///\n/// @param returnURL The URL to launch after restarting.\n+ (void)respringAndReturnTo:(nullable NSURL *)returnURL NS_SWIFT_NAME(respring(returnURL:));\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>English</string>\n\t<key>CFBundleExecutable</key>\n\t<string>Cephei</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>ws.hbang.common</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>Cephei</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1.0</string>\n\t<key>DTPlatformName</key>\n\t<string>iphoneos</string>\n\t<key>HBPackageIdentifier</key>\n\t<string>ws.hbang.common</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Cephei.framework/Modules/module.modulemap",
    "content": "framework module Cephei {\n\tumbrella header \"Cephei.h\"\n\n\texport *\n\tmodule * { export * }\n}\n\nmodule Cephei.Swift {\n\theader \"Cephei-Swift.h\"\n\trequires objc\n}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/DemoAbout.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>items</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>condensed</key>\n\t\t\t<true/>\n\t\t\t<key>headerCellClass</key>\n\t\t\t<string>HBPackageNameHeaderCell</string>\n\t\t\t<key>icon</key>\n\t\t\t<string>icon.png</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.common</string>\n\t\t\t<key>packageNameOverride</key>\n\t\t\t<string>Cephei</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>big</key>\n\t\t\t<true/>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>height</key>\n\t\t\t<integer>64</integer>\n\t\t\t<key>label</key>\n\t\t\t<string>HASHBANG Productions</string>\n\t\t\t<key>subtitle</key>\n\t\t\t<string>VISIT_WEBSITE</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://hashbang.productions/favicon.ico</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Follow Us</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Chariz</string>\n\t\t\t<key>account</key>\n\t\t\t<string>@chariz@chariz.com</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Adam Demasi</string>\n\t\t\t<key>account</key>\n\t\t\t<string>@kirb@kirb.me</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>footerText</key>\n\t\t\t<string>DONATE_FOOTER</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>action</key>\n\t\t\t<string>hb_sendSupportEmail</string>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSLinkCell</string>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTintedTableCell</string>\n\t\t\t<key>defaults</key>\n\t\t\t<string>ws.hbang.common</string>\n\t\t\t<key>label</key>\n\t\t\t<string>EMAIL_SUPPORT</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>envelope</string>\n\t\t\t\t<key>backgroundColor</key>\n\t\t\t\t<string>#007aff</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSButtonCell</string>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>TRANSLATORS</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/translations/</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>globe</string>\n\t\t\t\t<key>backgroundColor</key>\n\t\t\t\t<string>#34c759</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSButtonCell</string>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>DONATE</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/donate/</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>heart</string>\n\t\t\t\t<key>backgroundColor</key>\n\t\t\t\t<string>#ff3b30</string>\n\t\t\t</dict>\n\t\t</dict>\n\t</array>\n\t<key>title</key>\n\t<string>ABOUT</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/DemoRoot.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>items</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>headerCellClass</key>\n\t\t\t<string>HBPackageNameHeaderCell</string>\n\t\t\t<key>icon</key>\n\t\t\t<string>icon.png</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.common</string>\n\t\t\t<key>packageNameOverride</key>\n\t\t\t<string>Cephei</string>\n\t\t\t<key>footerText</key>\n\t\t\t<string>This is a demo of Cephei features. Refer to https://hbang.github.io/libcephei/ for further details.</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSSwitchCell</string>\n\t\t\t<key>default</key>\n\t\t\t<true/>\n\t\t\t<key>defaults</key>\n\t\t\t<string>ws.hbang.common.demo</string>\n\t\t\t<key>key</key>\n\t\t\t<string>Switch</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Awesome</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>switch.2</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSLinkListCell</string>\n\t\t\t<key>default</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>defaults</key>\n\t\t\t<string>ws.hbang.common.demo</string>\n\t\t\t<key>detail</key>\n\t\t\t<string>PSListItemsController</string>\n\t\t\t<key>key</key>\n\t\t\t<string>Region</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Region</string>\n\t\t\t<key>validTitles</key>\n\t\t\t<array>\n\t\t\t\t<string>Worldwide</string>\n\t\t\t\t<string>Australia</string>\n\t\t\t\t<string>Canada</string>\n\t\t\t\t<string>China</string>\n\t\t\t\t<string>France</string>\n\t\t\t\t<string>Germany</string>\n\t\t\t\t<string>Japan</string>\n\t\t\t\t<string>New Zealand</string>\n\t\t\t\t<string>United Kingdom</string>\n\t\t\t\t<string>United States</string>\n\t\t\t</array>\n\t\t\t<key>validValues</key>\n\t\t\t<array>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<integer>2</integer>\n\t\t\t\t<integer>3</integer>\n\t\t\t\t<integer>4</integer>\n\t\t\t\t<integer>5</integer>\n\t\t\t\t<integer>6</integer>\n\t\t\t\t<integer>7</integer>\n\t\t\t\t<integer>8</integer>\n\t\t\t\t<integer>9</integer>\n\t\t\t</array>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>globe</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBStepperTableCell</string>\n\t\t\t<key>default</key>\n\t\t\t<real>5</real>\n\t\t\t<key>defaults</key>\n\t\t\t<string>ws.hbang.common.demo</string>\n\t\t\t<key>key</key>\n\t\t\t<string>Stepper</string>\n\t\t\t<key>label</key>\n\t\t\t<string>%i Things</string>\n\t\t\t<key>max</key>\n\t\t\t<real>15</real>\n\t\t\t<key>min</key>\n\t\t\t<real>1</real>\n\t\t\t<key>singularLabel</key>\n\t\t\t<string>1 Thing</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>number.circle</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Sliders</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSSliderCell</string>\n\t\t\t<key>default</key>\n\t\t\t<real>5</real>\n\t\t\t<key>defaults</key>\n\t\t\t<string>ws.hbang.common.demo</string>\n\t\t\t<key>key</key>\n\t\t\t<string>Slider</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Slider</string>\n\t\t\t<key>max</key>\n\t\t\t<real>15</real>\n\t\t\t<key>min</key>\n\t\t\t<real>1</real>\n\t\t\t<key>showValue</key>\n\t\t\t<true/>\n\t\t\t<key>leftImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>slider.horizontal.3</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSSliderCell</string>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBDiscreteSliderTableCell</string>\n\t\t\t<key>default</key>\n\t\t\t<real>5</real>\n\t\t\t<key>defaults</key>\n\t\t\t<string>ws.hbang.common.demo</string>\n\t\t\t<key>key</key>\n\t\t\t<string>Discrete</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Discrete</string>\n\t\t\t<key>max</key>\n\t\t\t<real>15</real>\n\t\t\t<key>min</key>\n\t\t\t<real>1</real>\n\t\t\t<key>leftImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>sun.min</string>\n\t\t\t</dict>\n\t\t\t<key>rightImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>sun.max</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBImageTableCell</string>\n\t\t\t<key>footerText</key>\n\t\t\t<string>Note: The test image is only installed with debug builds of Cephei.</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>headerCellClass</key>\n\t\t\t<string>HBImageTableCell</string>\n\t\t\t<key>icon</key>\n\t\t\t<string>banner.jpg</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBImageTableCell</string>\n\t\t\t<key>height</key>\n\t\t\t<integer>200</integer>\n\t\t\t<key>icon</key>\n\t\t\t<string>banner.jpg</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBTintedTableCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>action</key>\n\t\t\t<string>doStuffTapped:</string>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSButtonCell</string>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBSpinnerTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Perform Magic Tricks</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>wand.and.stars</string>\n\t\t\t\t<key>weight</key>\n\t\t\t\t<string>semibold</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSButtonCell</string>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTintedTableCell</string>\n\t\t\t<key>action</key>\n\t\t\t<string>hb_respringAndReturn:</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Respring</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>restart.circle</string>\n\t\t\t\t<key>weight</key>\n\t\t\t\t<string>bold</string>\n\t\t\t</dict>\n\t\t\t<key>tintColor</key>\n\t\t\t<string>#ff3b30</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HASHBANG Productions</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Avatar from URL</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://repo.chariz.com/CydiaIcon@3x.png</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Avatar from URL, circular</string>\n\t\t\t<key>subtitle</key>\n\t\t\t<string>They seem like a pretty cool bunch</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://repo.chariz.com/CydiaIcon@3x.png</string>\n\t\t\t<key>iconCircular</key>\n\t\t\t<true/>\n\t\t\t<key>big</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Avatar from URL, big</string>\n\t\t\t<key>subtitle</key>\n\t\t\t<string>They seem like a pretty cool bunch</string>\n\t\t\t<key>url</key>\n\t\t\t<string>https://hashbang.productions/</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://repo.chariz.com/CydiaIcon@3x.png</string>\n\t\t\t<key>big</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBLinkTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Doesn’t Exist</string>\n\t\t\t<key>url</key>\n\t\t\t<string>http://localhost/</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>http://localhost/</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Redirect username</string>\n\t\t\t<key>account</key>\n\t\t\t<string>@kirb@kirb.me</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Moved username</string>\n\t\t\t<key>account</key>\n\t\t\t<string>@kirb@mastodon.social</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>big</key>\n\t\t\t<true/>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>height</key>\n\t\t\t<integer>56</integer>\n\t\t\t<key>label</key>\n\t\t\t<string>Big cell</string>\n\t\t\t<key>account</key>\n\t\t\t<string>@theos@procursus.social</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>No avatar</string>\n\t\t\t<key>showAvatar</key>\n\t\t\t<false/>\n\t\t\t<key>account</key>\n\t\t\t<string>chariz@chariz.com</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Avatar from URL</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://chariz.com/img/favicon.png</string>\n\t\t\t<key>iconCircular</key>\n\t\t\t<false/>\n\t\t\t<key>account</key>\n\t\t\t<string>@chariz@chariz.com</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBMastodonTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Monogram initials</string>\n\t\t\t<key>initials</key>\n\t\t\t<string>ZB</string>\n\t\t\t<key>account</key>\n\t\t\t<string>@zebra@procursus.social</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBPackageTableCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBPackageTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Cephei</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.common</string>\n\t\t\t<key>iconCornerRadius</key>\n\t\t\t<integer>12</integer>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBPackageTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Cephei</string>\n\t\t\t<key>subtitle</key>\n\t\t\t<string>Cephei is awesome!</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.common</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://repo.chariz.com/CydiaIcon@3x.png</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBPackageTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>NewTerm</string>\n\t\t\t<key>subtitle</key>\n\t\t\t<string>NewTerm is also awesome!</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.newterm3</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBPackageTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Quanta</string>\n\t\t\t<key>subtitle</key>\n\t\t\t<string>Quanta is hyper awesome!</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.quanta</string>\n\t\t\t<key>packageRepository</key>\n\t\t\t<string>https://repo.chariz.com/</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBPackageTableCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Doesn’t Exist</string>\n\t\t\t<key>packageIdentifier</key>\n\t\t\t<string>ws.hbang.common.doesntexist</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBTwitterCell</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTwitterCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Mismatched username</string>\n\t\t\t<key>user</key>\n\t\t\t<string>NotActuallyHashbang</string>\n\t\t\t<key>userID</key>\n\t\t\t<string>945654024</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>big</key>\n\t\t\t<true/>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTwitterCell</string>\n\t\t\t<key>height</key>\n\t\t\t<integer>56</integer>\n\t\t\t<key>label</key>\n\t\t\t<string>Big cell</string>\n\t\t\t<key>user</key>\n\t\t\t<string>hashbang</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTwitterCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>No avatar</string>\n\t\t\t<key>showAvatar</key>\n\t\t\t<false/>\n\t\t\t<key>user</key>\n\t\t\t<string>hashbang</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTwitterCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Avatar from URL</string>\n\t\t\t<key>iconURL</key>\n\t\t\t<string>https://chariz.com/img/favicon.png</string>\n\t\t\t<key>iconCircular</key>\n\t\t\t<false/>\n\t\t\t<key>user</key>\n\t\t\t<string>hashbang</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cellClass</key>\n\t\t\t<string>HBTwitterCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>Monogram initials</string>\n\t\t\t<key>initials</key>\n\t\t\t<string>HB</string>\n\t\t\t<key>user</key>\n\t\t\t<string>hashbang</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSGroupCell</string>\n\t\t\t<key>label</key>\n\t\t\t<string>HBAboutListController</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>cell</key>\n\t\t\t<string>PSLinkCell</string>\n\t\t\t<key>detail</key>\n\t\t\t<string>HBDemoAboutListController</string>\n\t\t\t<key>isController</key>\n\t\t\t<true/>\n\t\t\t<key>label</key>\n\t\t\t<string>ABOUT</string>\n\t\t\t<key>iconImageSystem</key>\n\t\t\t<dict>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>info.circle</string>\n\t\t\t</dict>\n\t\t</dict>\n\t</array>\n\t<key>title</key>\n\t<string>Cephei Demo</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/CepheiPrefs-Swift.h",
    "content": "// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n#ifndef CEPHEIPREFS_SWIFT_H\n#define CEPHEIPREFS_SWIFT_H\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wgcc-compat\"\n\n#if !defined(__has_include)\n# define __has_include(x) 0\n#endif\n#if !defined(__has_attribute)\n# define __has_attribute(x) 0\n#endif\n#if !defined(__has_feature)\n# define __has_feature(x) 0\n#endif\n#if !defined(__has_warning)\n# define __has_warning(x) 0\n#endif\n\n#if __has_include(<swift/objc-prologue.h>)\n# include <swift/objc-prologue.h>\n#endif\n\n#pragma clang diagnostic ignored \"-Wduplicate-method-match\"\n#pragma clang diagnostic ignored \"-Wauto-import\"\n#if defined(__OBJC__)\n#include <Foundation/Foundation.h>\n#endif\n#if defined(__cplusplus)\n#include <cstdint>\n#include <cstddef>\n#include <cstdbool>\n#else\n#include <stdint.h>\n#include <stddef.h>\n#include <stdbool.h>\n#endif\n\n#if !defined(SWIFT_TYPEDEFS)\n# define SWIFT_TYPEDEFS 1\n# if __has_include(<uchar.h>)\n#  include <uchar.h>\n# elif !defined(__cplusplus)\ntypedef uint_least16_t char16_t;\ntypedef uint_least32_t char32_t;\n# endif\ntypedef float swift_float2  __attribute__((__ext_vector_type__(2)));\ntypedef float swift_float3  __attribute__((__ext_vector_type__(3)));\ntypedef float swift_float4  __attribute__((__ext_vector_type__(4)));\ntypedef double swift_double2  __attribute__((__ext_vector_type__(2)));\ntypedef double swift_double3  __attribute__((__ext_vector_type__(3)));\ntypedef double swift_double4  __attribute__((__ext_vector_type__(4)));\ntypedef int swift_int2  __attribute__((__ext_vector_type__(2)));\ntypedef int swift_int3  __attribute__((__ext_vector_type__(3)));\ntypedef int swift_int4  __attribute__((__ext_vector_type__(4)));\ntypedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));\ntypedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));\ntypedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));\n#endif\n\n#if !defined(SWIFT_PASTE)\n# define SWIFT_PASTE_HELPER(x, y) x##y\n# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)\n#endif\n#if !defined(SWIFT_METATYPE)\n# define SWIFT_METATYPE(X) Class\n#endif\n#if !defined(SWIFT_CLASS_PROPERTY)\n# if __has_feature(objc_class_property)\n#  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__\n# else\n#  define SWIFT_CLASS_PROPERTY(...)\n# endif\n#endif\n\n#if __has_attribute(objc_runtime_name)\n# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))\n#else\n# define SWIFT_RUNTIME_NAME(X)\n#endif\n#if __has_attribute(swift_name)\n# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))\n#else\n# define SWIFT_COMPILE_NAME(X)\n#endif\n#if __has_attribute(objc_method_family)\n# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))\n#else\n# define SWIFT_METHOD_FAMILY(X)\n#endif\n#if __has_attribute(noescape)\n# define SWIFT_NOESCAPE __attribute__((noescape))\n#else\n# define SWIFT_NOESCAPE\n#endif\n#if __has_attribute(ns_consumed)\n# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))\n#else\n# define SWIFT_RELEASES_ARGUMENT\n#endif\n#if __has_attribute(warn_unused_result)\n# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))\n#else\n# define SWIFT_WARN_UNUSED_RESULT\n#endif\n#if __has_attribute(noreturn)\n# define SWIFT_NORETURN __attribute__((noreturn))\n#else\n# define SWIFT_NORETURN\n#endif\n#if !defined(SWIFT_CLASS_EXTRA)\n# define SWIFT_CLASS_EXTRA\n#endif\n#if !defined(SWIFT_PROTOCOL_EXTRA)\n# define SWIFT_PROTOCOL_EXTRA\n#endif\n#if !defined(SWIFT_ENUM_EXTRA)\n# define SWIFT_ENUM_EXTRA\n#endif\n#if !defined(SWIFT_CLASS)\n# if __has_attribute(objc_subclassing_restricted)\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# else\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# endif\n#endif\n#if !defined(SWIFT_RESILIENT_CLASS)\n# if __has_attribute(objc_class_stub)\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# else\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# endif\n#endif\n\n#if !defined(SWIFT_PROTOCOL)\n# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n#endif\n\n#if !defined(SWIFT_EXTENSION)\n# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)\n#endif\n\n#if !defined(OBJC_DESIGNATED_INITIALIZER)\n# if __has_attribute(objc_designated_initializer)\n#  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))\n# else\n#  define OBJC_DESIGNATED_INITIALIZER\n# endif\n#endif\n#if !defined(SWIFT_ENUM_ATTR)\n# if defined(__has_attribute) && __has_attribute(enum_extensibility)\n#  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))\n# else\n#  define SWIFT_ENUM_ATTR(_extensibility)\n# endif\n#endif\n#if !defined(SWIFT_ENUM)\n# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# if __has_feature(generalized_swift_name)\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# else\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)\n# endif\n#endif\n#if !defined(SWIFT_UNAVAILABLE)\n# define SWIFT_UNAVAILABLE __attribute__((unavailable))\n#endif\n#if !defined(SWIFT_UNAVAILABLE_MSG)\n# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))\n#endif\n#if !defined(SWIFT_AVAILABILITY)\n# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))\n#endif\n#if !defined(SWIFT_WEAK_IMPORT)\n# define SWIFT_WEAK_IMPORT __attribute__((weak_import))\n#endif\n#if !defined(SWIFT_DEPRECATED)\n# define SWIFT_DEPRECATED __attribute__((deprecated))\n#endif\n#if !defined(SWIFT_DEPRECATED_MSG)\n# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))\n#endif\n#if __has_feature(attribute_diagnose_if_objc)\n# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, \"warning\")))\n#else\n# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)\n#endif\n#if defined(__OBJC__)\n#if !defined(IBSegueAction)\n# define IBSegueAction\n#endif\n#endif\n#if !defined(SWIFT_EXTERN)\n# if defined(__cplusplus)\n#  define SWIFT_EXTERN extern \"C\"\n# else\n#  define SWIFT_EXTERN extern\n# endif\n#endif\n#if !defined(SWIFT_CALL)\n# define SWIFT_CALL __attribute__((swiftcall))\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT noexcept\n#endif\n#else\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT \n#endif\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_CXX_INT_DEFINED)\n#define SWIFT_CXX_INT_DEFINED\nnamespace swift {\nusing Int = ptrdiff_t;\nusing UInt = size_t;\n}\n#endif\n#endif\n#if defined(__OBJC__)\n#if __has_feature(modules)\n#if __has_warning(\"-Watimport-in-framework-header\")\n#pragma clang diagnostic ignored \"-Watimport-in-framework-header\"\n#endif\n@import CoreFoundation;\n@import Foundation;\n@import MessageUI;\n@import ObjectiveC;\n@import UIKit;\n#endif\n\n#endif\n#pragma clang diagnostic ignored \"-Wproperty-attribute-mismatch\"\n#pragma clang diagnostic ignored \"-Wduplicate-method-arg\"\n#if __has_warning(\"-Wpragma-clang-attribute\")\n# pragma clang diagnostic ignored \"-Wpragma-clang-attribute\"\n#endif\n#pragma clang diagnostic ignored \"-Wunknown-pragmas\"\n#pragma clang diagnostic ignored \"-Wnullability\"\n#pragma clang diagnostic ignored \"-Wdollar-in-identifier-extension\"\n\n#if __has_attribute(external_source_symbol)\n# pragma push_macro(\"any\")\n# undef any\n# pragma clang attribute push(__attribute__((external_source_symbol(language=\"Swift\", defined_in=\"CepheiPrefs\",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))\n# pragma pop_macro(\"any\")\n#endif\n\n#if defined(__OBJC__)\n@class NSString;\n@class PSSpecifier;\n\n@interface HBAboutListController (SWIFT_EXTENSION(CepheiPrefs))\n@property (nonatomic, readonly, copy) NSString * _Nullable hb_specifierPlist;\nSWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nullable hb_supportEmailAddress;)\n+ (NSString * _Nullable)hb_supportEmailAddress SWIFT_WARN_UNUSED_RESULT;\n@property (nonatomic, readonly, copy) NSString * _Nullable hb_supportEmailAddress;\n- (void)hb_sendSupportEmail;\n- (void)hb_sendSupportEmail:(PSSpecifier * _Nullable)sender;\n@end\n\n@class UIColor;\nenum HBAppearanceSettingsLargeTitleStyle : NSUInteger;\n\nSWIFT_CLASS_NAMED(\"AppearanceSettings\")\n@interface HBAppearanceSettings : NSObject\n@property (nonatomic, strong) UIColor * _Nullable tintColor;\n@property (nonatomic) UIUserInterfaceStyle userInterfaceStyle;\n@property (nonatomic, strong) UIColor * _Nullable navigationBarTintColor;\n@property (nonatomic, strong) UIColor * _Nullable navigationBarTitleColor;\n@property (nonatomic, strong) UIColor * _Nullable navigationBarBackgroundColor;\n@property (nonatomic) UIStatusBarStyle statusBarStyle;\n@property (nonatomic) BOOL showsNavigationBarShadow;\n@property (nonatomic) enum HBAppearanceSettingsLargeTitleStyle largeTitleStyle;\n@property (nonatomic, strong) UIColor * _Nullable tableViewBackgroundColor;\n@property (nonatomic, strong) UIColor * _Nullable tableViewCellTextColor;\n@property (nonatomic, strong) UIColor * _Nullable tableViewCellBackgroundColor;\n@property (nonatomic, strong) UIColor * _Nullable tableViewCellSeparatorColor;\n@property (nonatomic, strong) UIColor * _Nullable tableViewCellSelectionColor;\n- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;\n@end\n\ntypedef SWIFT_ENUM_NAMED(NSUInteger, HBAppearanceSettingsLargeTitleStyle, \"LargeTitleStyle\", open) {\n  HBAppearanceSettingsLargeTitleStyleRootOnly = 0,\n  HBAppearanceSettingsLargeTitleStyleAlways = 1,\n  HBAppearanceSettingsLargeTitleStyleNever = 2,\n};\n\n\n@interface HBAppearanceSettings (SWIFT_EXTENSION(CepheiPrefs)) <NSCopying>\n- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;\n@end\n\n@class NSData;\n@class NSCoder;\n@class NSBundle;\n\nSWIFT_CLASS_NAMED(\"ContactViewController\")\n@interface HBContactViewController : HBListController\n@property (nonatomic, copy) NSString * _Nullable to;\n@property (nonatomic, copy) NSString * _Nullable subject;\n@property (nonatomic, copy) NSString * _Nullable messageBody;\n@property (nonatomic, copy) NSData * _Nullable preferencesPlist;\n@property (nonatomic, copy) NSString * _Nullable preferencesIdentifier;\n- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;\n- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;\n- (void)viewDidLoad;\n- (void)viewWillAppear:(BOOL)animated;\n- (null_unspecified instancetype)initForContentSize:(CGSize)contentSize SWIFT_UNAVAILABLE;\n- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE;\n@end\n\n@class MFMailComposeViewController;\n\n@interface HBContactViewController (SWIFT_EXTENSION(CepheiPrefs)) <MFMailComposeViewControllerDelegate>\n- (void)mailComposeController:(MFMailComposeViewController * _Nonnull)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError * _Nullable)error;\n@end\n\n\n@interface HBListController (SWIFT_EXTENSION(CepheiPrefs))\n- (void)hb_respring:(PSSpecifier * _Nullable)specifier;\n- (void)hb_respringAndReturn:(PSSpecifier * _Nullable)specifier;\n- (void)hb_openURL:(PSSpecifier * _Nullable)specifier;\n- (void)hb_openPackage:(PSSpecifier * _Nullable)specifier;\n- (void)hb_openMastodon:(PSSpecifier * _Nullable)specifier;\n@end\n\n@class NSMutableArray;\n@class PSListController;\n\n@interface HBListController (SWIFT_EXTENSION(CepheiPrefs))\n@property (nonatomic, strong) NSMutableArray * _Nullable specifiers;\n- (NSMutableArray * _Nullable)loadSpecifiersFromPlistName:(NSString * _Nonnull)name target:(PSListController * _Nullable)target SWIFT_WARN_UNUSED_RESULT;\n- (NSMutableArray * _Nullable)loadSpecifiersFromPlistName:(NSString * _Nonnull)name target:(PSListController * _Nullable)target bundle:(NSBundle * _Nullable)bundle SWIFT_WARN_UNUSED_RESULT;\n@end\n\n@protocol HBMastodonAPIClientDelegate;\n\nSWIFT_CLASS_NAMED(\"MastodonAPIClient\")\n@interface HBMastodonAPIClient : NSObject\nSWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) HBMastodonAPIClient * _Nonnull sharedInstance;)\n+ (HBMastodonAPIClient * _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT;\n- (nonnull instancetype)init SWIFT_UNAVAILABLE;\n+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG(\"-init is unavailable\");\n- (void)queueLookupForAccount:(NSString * _Nonnull)account;\n- (void)addDelegate:(id <HBMastodonAPIClientDelegate> _Nonnull)delegate forAccount:(NSString * _Nonnull)account;\n- (void)removeDelegate:(id <HBMastodonAPIClientDelegate> _Nonnull)delegate forAccount:(NSString * _Nullable)account;\n@end\n\n@class NSURL;\n@class UIImage;\n\nSWIFT_PROTOCOL_NAMED(\"MastodonAPIClientDelegate\")\n@protocol HBMastodonAPIClientDelegate <NSObject>\n- (void)mastodonAPIClientDidLoadWithAccount:(NSString * _Nonnull)account actualAccount:(NSString * _Nonnull)actualAccount url:(NSURL * _Nullable)url profileImage:(UIImage * _Nullable)profileImage;\n@end\n\n\n\n\n\nSWIFT_CLASS_NAMED(\"PackageUtils\")\n@interface HBPackageUtils : NSObject\n+ (NSString * _Nonnull)shellEscape:(NSArray<NSString *> * _Nonnull)input SWIFT_WARN_UNUSED_RESULT;\n+ (NSDictionary<NSString *, NSString *> * _Nullable)getFields:(NSArray<NSString *> * _Nonnull)fields forPackage:(NSString * _Nonnull)package SWIFT_WARN_UNUSED_RESULT;\n+ (NSString * _Nullable)getField:(NSString * _Nonnull)field forPackage:(NSString * _Nonnull)package SWIFT_WARN_UNUSED_RESULT;\n+ (NSString * _Nullable)resolvePackageForFile:(NSString * _Nonnull)file SWIFT_WARN_UNUSED_RESULT;\n- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;\n@end\n\n\n@interface HBRootListController (SWIFT_EXTENSION(CepheiPrefs))\n- (void)loadView;\n@end\n\n\nSWIFT_CLASS_NAMED(\"SpinnerTableCell\")\n@interface HBSpinnerTableCell : HBTintedTableCell\n- (nonnull instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString * _Nullable)reuseIdentifier specifier:(PSSpecifier * _Nullable)specifier SWIFT_UNAVAILABLE;\n- (nonnull instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString * _Nullable)reuseIdentifier SWIFT_UNAVAILABLE;\n- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;\n@property (nonatomic) BOOL cellEnabled;\n@end\n\n\nSWIFT_CLASS_NAMED(\"SymbolRenderer\")\n@interface HBSymbolRenderer : NSObject\n+ (UIImage * _Nonnull)makeIconWithBackgroundColor:(UIColor * _Nonnull)backgroundColor isBig:(BOOL)isBig glyph:(UIImage * _Nullable)glyph SWIFT_WARN_UNUSED_RESULT;\n- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;\n@end\n\n#endif\n#if defined(__cplusplus)\n#endif\n#if __has_attribute(external_source_symbol)\n# pragma clang attribute pop\n#endif\n#pragma clang diagnostic pop\n#endif\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/CepheiPrefs.h",
    "content": "#import \"HBAboutListController.h\"\n#import \"HBListController.h\"\n#import \"HBLinkTableCell.h\"\n#import \"HBMastodonTableCell.h\"\n#import \"HBPackageNameHeaderCell.h\"\n#import \"HBPackageTableCell.h\"\n#import \"HBRootListController.h\"\n#import \"HBStepperTableCell.h\"\n#import \"HBSupportController.h\"\n#import \"HBTintedTableCell.h\"\n#import \"HBTwitterCell.h\"\n#import \"PSListController+HBTintAdditions.h\"\n\n// #ifndef _CEPHEIPREFS_OBJC_MODULE\n// #import \"CepheiPrefs-Swift.h\"\n// #endif\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBAboutListController.h",
    "content": "@import UIKit;\n#import \"HBListController.h\"\n\n/// The HBAboutListController class in CepheiPrefs provides a list controller with functions\n/// that would typically be used on an \"about\" page. It includes two class methods you can override\n/// to provide a developer website and donation URL, and a class method to provide an email address\n/// so the user can send the developer an email right from the tweak's settings.\n///\n/// There is a sample of an HBAboutListController implemented in the Cephei demo preferences. See\n/// the Cephei readme for details.\n///\n/// ### Example Usage\n/// ```xml\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSLinkCell</string>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Visit Website</string>\n/// \t<key>url</key>\n/// \t<string>https://hashbang.productions/</string>\n/// </dict>\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSGroupCell</string>\n/// \t<key>label</key>\n/// \t<string>Experiencing issues?</string>\n/// </dict>\n/// <dict>\n/// \t<key>action</key>\n/// \t<string>hb_sendSupportEmail</string>\n/// \t<key>cell</key>\n/// \t<string>PSLinkCell</string>\n/// \t<key>label</key>\n/// \t<string>Email Support</string>\n/// </dict>\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSGroupCell</string>\n/// \t<key>footerText</key>\n/// \t<string>If you like this tweak, please consider a donation.</string>\n/// </dict>\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSLinkCell</string>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Donate</string>\n/// \t<key>url</key>\n/// \t<string>https://hashbang.productions/donate/</string>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(AboutListController)\n@interface HBAboutListController : HBListController\n\n// Methods/properties can be found in CepheiPrefs-Swift.h\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBLinkTableCell.h",
    "content": "#import \"HBTintedTableCell.h\"\n\n/// The HBLinkTableCell class in CepheiPrefs displays a button that, when tapped, opens the\n/// specified URL. A typical icon can be used, or the initials key can be set to one or two\n/// characters to show as the icon.\n///\n/// This cell can either be used without setting any cell type, or by setting it to `PSButtonCell`\n/// to get a tinted button.\n///\n/// ### Specifier Parameters\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>url</td> <td>Required. The URL to open.</td>\n/// </tr>\n/// <tr>\n/// <td>subtitle</td> <td>Optional. A subtitle to display below the label. The default is an empty\n/// string, hiding the subtitle.</td>\n/// </tr>\n/// <tr>\n/// <td>initials</td> <td>Optional. One or two characters to show as the icon.</td>\n/// </tr>\n/// <tr>\n/// <td>iconURL</td> <td>Optional. The URL to an image to display. The default is no value,\n/// hiding the image.</td>\n/// </tr>\n/// <tr>\n/// <td>iconCircular</td> <td>Optional. Whether the icon should be displayed as a circle. The\n/// default is NO when an iconURL is set, otherwise this property is unused.</td>\n/// </tr>\n/// <tr>\n/// <td>iconCornerRadius</td> <td>Optional. A custom corner radius to use for the icon. Ignored\n/// if iconCircular is set to true. If set to -1, the operating system’s default icon corner radius\n/// is used. The default is -1.</td>\n/// </tr>\n/// </table>\n///\n/// ### Example Usage\n/// ```xml\n/// <!-- With icon: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>icon</key>\n/// \t<string>example.png</string>\n/// \t<key>label</key>\n/// \t<string>Example</string>\n/// \t<key>url</key>\n/// \t<string>http://example.com/</string>\n/// </dict>\n///\n/// <!-- With initials: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>initials</key>\n/// \t<string>XX</string>\n/// \t<key>label</key>\n/// \t<string>Example</string>\n/// \t<key>url</key>\n/// \t<string>http://example.com/</string>\n/// </dict>\n///\n/// <!-- With a subtitle: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Example</string>\n/// \t<key>subtitle</key>\n/// \t<string>Visit our amazing website</string>\n/// \t<key>url</key>\n/// \t<string>http://example.com/</string>\n/// </dict>\n///\n/// <!-- With a subtitle, in big mode: -->\n/// <dict>\n/// \t<key>big</key>\n/// \t<true/>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>height</key>\n/// \t<integer>64</integer>\n/// \t<key>label</key>\n/// \t<string>Example</string>\n/// \t<key>subtitle</key>\n/// \t<string>Visit our amazing website</string>\n/// \t<key>url</key>\n/// \t<string>http://example.com/</string>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(LinkTableCell)\n@interface HBLinkTableCell : HBTintedTableCell\n\n/// Whether the cell is 64 pixels or more in height.\n///\n/// This is not set automatically; the specifier for the cell must set the `big` property to true\n/// (see examples above).\n@property (nonatomic, readonly) BOOL isBig;\n\n/// The view containing the icon image view.\n@property (nonatomic, retain, readonly) UIView *iconView;\n\n/// The icon image view.\n@property (nonatomic, retain, readonly) UIImageView *iconImageView;\n\n/// The image to display as the icon, if enabled.\n@property (nonatomic, retain) UIImage *iconImage;\n\n/// A URL to load into iconImage to display as the icon, if enabled.\n@property (nonatomic, retain) NSURL *iconURL;\n\n/// Whether the image displays as a circle.\n///\n/// The default is YES if an iconURL is set in the specifier, otherwise NO.\n@property (nonatomic, readonly) BOOL isIconCircular;\n\n/// Load and display the icon.\n///\n/// You don’t need to call this unless subclassing.\n- (void)loadIconIfNeeded;\n\n/// Handle failure to load the icon.\n///\n/// You don’t need to call this unless subclassing. The default implementation replaces the image\n/// with the operating system’s generic “no icon” placeholder if `iconCornerRadius` is set to -1,\n/// and `isIconCircular` is set to NO.\n- (void)iconLoadDidFailWithResponse:(NSURLResponse *)response error:(NSError *)error;\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBListController.h",
    "content": "@import UIKit;\n#import <Preferences/PSListController.h>\n\n/// The HBListController class in CepheiPrefs provides a list controller with various\n/// conveniences such as a unique tint color for the list controllers within a preference bundle,\n/// and bug fixes for common issues within the Settings app and Preferences framework. In\n/// particular, a bug with the list controller’s content disappearing after closing the Settings\n/// app and opening it again is worked around, as well as an issue on iOS 7 where in some cases a\n/// cell may stay highlighted after being tapped.\n///\n/// It includes two class methods you can override to return the name of a Preferences specifier\n/// property list, and various methods to control appearance of the interface.\n///\n/// If you use `HBLinkTableCell` or subclasses such as `HBTwitterCell` and `HBPackageTableCell`, it\n/// is recommended to subclass from HBListController on the view controller classes containing these\n/// cells to use CepheiPrefs’s built-in callback actions. If you do not subclass from\n/// HBListController, you will need to implement action methods yourself.\n///\n/// ### Specifier Parameters\n/// HBListController extends specifiers with the following parameters:\n///\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>pl_filter</td> <td>Optional. Supports additional filters that decide whether a specifier\n/// should be displayed, as specified below.</td>\n/// </tr>\n/// <tr>\n/// <td>iconImageSystem</td> <td>Optional. Supports displaying a system image as the cell icon, as\n/// specified below.</td>\n/// </tr>\n/// <tr>\n/// <td>leftImageSystem</td> <td>Optional. Supports displaying a system image as the icon to the\n/// left of a PSSliderCell’s slider control, as specified below.</td>\n/// </tr>\n/// <tr>\n/// <td>rightImageSystem</td> <td>Optional. Supports displaying a system image as the icon to the\n/// right of a PSSliderCell’s slider control, as specified below.</td>\n/// </tr>\n/// </table>\n///\n/// #### PreferenceLoader Filter Parameters\n/// The `pl_filter` key is inherited from PreferenceLoader’s libprefs, and can be used to specify\n/// [CoreFoundation version](https://iphonedev.wiki/index.php/CoreFoundation.framework) criteria\n/// for a specifier. Specifiers that do not meet the `pl_filter` criteria will be discarded.\n///\n/// The version number of CoreFoundation is often used as a stable method of checking the operating\n/// system version in use. It has the benefit of increasing in predictable amounts (to the next\n/// hundred or more) for each major revision of Apple’s OS platforms, and it is typically roughly\n/// the same between all Apple OS platforms at any point in time.\n///\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>CoreFoundationVersion</td> <td>Optional. An array of one or two CoreFoundation version\n/// numbers in decimal (&lt;real&gt;). If one number is present, this is a minimum bound. The\n/// current device’s CoreFoundation version must be greater than or equal to this number. If two\n/// numbers are present, the first number is the lower bound, and the second number is one more than\n/// the upper bound. The current device’s CoreFoundation version must be greater than or equal to\n/// the first number, and less than (but not equal to) the second number.</td>\n/// </tr>\n/// </table>\n///\n/// ##### Example Usage\n/// ```xml\n/// <!-- Will only display on iOS 12.0 (CF 1556.0) or newer: -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSSwitchCell</string>\n/// \t<key>label</key>\n/// \t<string>My iOS 12+ Only Feature</string>\n/// \t<key>pl_filter</key>\n/// \t<dict>\n/// \t\t<key>CoreFoundationVersion</key>\n/// \t\t<array>\n/// \t\t\t<real>1556.00</real>\n/// \t\t</array>\n/// \t</dict>\n/// </dict>\n///\n/// <!-- Will only display between iOS 7.0 (CF 847.20) and 12.0 (CF 1556.00): -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSSwitchCell</string>\n/// \t<key>label</key>\n/// \t<string>My iOS 7-11 Only Feature</string>\n/// \t<key>pl_filter</key>\n/// \t<dict>\n/// \t\t<key>CoreFoundationVersion</key>\n/// \t\t<array>\n/// \t\t\t<real>847.20</real>\n/// \t\t\t<real>1556.00</real>\n/// \t\t</array>\n/// \t</dict>\n/// </dict>\n///\n/// <!-- Will only display on versions earlier than iOS 12.0 (CF 1556.00): -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSSwitchCell</string>\n/// \t<key>label</key>\n/// \t<string>My iOS &lt;12 Only Feature</string>\n/// \t<key>pl_filter</key>\n/// \t<dict>\n/// \t\t<key>CoreFoundationVersion</key>\n/// \t\t<array>\n/// \t\t\t<real>0.0</real>\n/// \t\t\t<real>1556.00</real>\n/// \t\t</array>\n/// \t</dict>\n/// </dict>\n/// ```\n///\n/// #### System Icon Parameters\n/// On iOS 13.0 and newer, you can specify a system icon\n/// ([SF Symbols](https://developer.apple.com/sf-symbols/) glyph) to be displayed in a cell. Use the\n/// SF Symbols app to find symbol names.\n///\n/// When running on iOS versions earlier than 13.0, icons will not be rendered. This also applies\n/// when a symbol name is specified that was added in a later iOS version than is currently in use.\n/// In this case, you can supply a PNG icon through the usual means as a fallback.\n///\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>name</td> <td>Required. The symbol name to use.</td>\n/// </tr>\n/// <tr>\n/// <td>weight</td> <td>Optional. The weight to render the symbol at. The supported values are:\n/// ultraLight, thin, light, regular, medium, semibold, bold, heavy, black. The default is\n/// regular.</td>\n/// </tr>\n/// <tr>\n/// <td>scale</td> <td>Optional. The scale to render the symbol at. The supported values are: small,\n/// medium, large. The default is medium.</td>\n/// </tr>\n/// <tr>\n/// <td>pointSize</td> <td>Optional. The equivalent font size to render the symbol at. The default\n/// is 20.0.</td>\n/// </tr>\n/// <tr>\n/// <td>tintColor</td> <td>Optional. The color to render the icon in. The default is no value, which\n/// means the tint color will be inherited from the -[HBAppearanceSettings tintColor]; if neither\n/// value is set, the default iOS blue tint color is used. When backgroundColor is set, no value\n/// means white (#ffffff) will be used.</td>\n/// </tr>\n/// <tr>\n/// <td>backgroundColor</td> <td>Optional. The background color to use for the symbol. When\n/// specified, the symbol will be rendered inside an icon shape of the specified background color.\n/// The symbol will be scaled down by 20% to appropriately fit the icon shape. The default is no\n/// value, which means no icon shape will be rendered.</td>\n/// </tr>\n/// </table>\n///\n/// ##### Example Usage\n///\n/// ```xml\n/// <!-- A switch with a two switches symbol as its icon -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSSwitchCell</string>\n/// \t<key>label</key>\n/// \t<string>Awesome</string>\n/// \t<key>iconImageSystem</key>\n/// \t<dict>\n/// \t\t<key>name</key>\n/// \t\t<string>switch.2</string>\n/// \t</dict>\n/// </dict>\n///\n/// <!-- A link cell with an information symbol as its icon -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSLinkCell</string>\n/// \t<key>detail</key>\n/// \t<string>HBDemoAboutListController</string>\n/// \t<key>isController</key>\n/// \t<true/>\n/// \t<key>label</key>\n/// \t<string>ABOUT</string>\n/// \t<key>iconImageSystem</key>\n/// \t<dict>\n/// \t\t<key>name</key>\n/// \t\t<string>info.circle</string>\n/// \t</dict>\n/// </dict>\n///\n/// <!-- A slider cell with brightness sun symbols on the left and right -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSSliderCell</string>\n/// \t<key>min</key>\n/// \t<real>1</real>\n/// \t<key>max</key>\n/// \t<real>15</real>\n/// \t<key>leftImageSystem</key>\n/// \t<dict>\n/// \t\t<key>name</key>\n/// \t\t<string>sun.min</string>\n/// \t</dict>\n/// \t<key>rightImageSystem</key>\n/// \t<dict>\n/// \t\t<key>name</key>\n/// \t\t<string>sun.max</string>\n/// \t</dict>\n/// </dict>\n///\n/// <!-- A link cell with white heart symbol in a red icon shape -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSButtonCell</string>\n/// \t<key>cellClass</key>\n/// \t<string>HBLinkTableCell</string>\n/// \t<key>label</key>\n/// \t<string>DONATE</string>\n/// \t<key>url</key>\n/// \t<string>https://hashbang.productions/</string>\n/// \t<key>iconImageSystem</key>\n/// \t<dict>\n/// \t\t<key>name</key>\n/// \t\t<string>heart</string>\n/// \t\t<key>backgroundColor</key>\n/// \t\t<string>#ff3b30</string>\n/// \t</dict>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(ListController)\n@interface HBListController : PSListController\n\n// Methods/properties can be found in CepheiPrefs-Swift.h\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBMastodonTableCell.h",
    "content": "#import \"HBLinkTableCell.h\"\n\n/// The HBMastodonTableCell class in CepheiPrefs displays a button containing a person’s name, along\n/// with their Mastodon username and avatar. When tapped, a Mastodon client installed on the user’s\n/// device or the Mastodon website is opened to the person’s profile.\n///\n/// ### Specifier Parameters\n/// In addition to the parameters accepted by `HBLinkTableCell`, `HBTwitterCell` accepts the\n/// following:\n///\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>account</td> <td>Required. The Mastodon account of the person, in the format\n/// `@user@example.com`. For example, `@gargon@mastodon.social`.</td>\n/// </tr>\n/// <tr>\n/// <td>showAvatar</td> <td>Optional. Whether to show the avatar of the user. The default is\n/// true.</td>\n/// </tr>\n/// <tr>\n/// <td>iconURL</td> <td>Optional. The URL to an image to display. The default is no value, meaning\n/// meaning to retrieve the avatar for the Mastodon username specified in the user property.</td>\n/// </tr>\n/// <tr>\n/// <td>iconCircular</td> <td>Optional. Whether the icon should be displayed as a circle. The\n/// default from `HBLinkTableCell` is NO, however, `HBTwitterCell` overrides this to YES.</td>\n/// </tr>\n/// </table>\n///\n/// ### Example Usage\n/// ```xml\n/// <!-- Standard size: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBMastodonTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Chariz</string>\n/// \t<key>account</key>\n/// \t<string>@chariz@chariz.com</string>\n/// </dict>\n///\n/// <!-- Big size: -->\n/// <dict>\n/// \t<key>big</key>\n/// \t<true/>\n/// \t<key>cellClass</key>\n/// \t<string>HBMastodonTableCell</string>\n/// \t<key>height</key>\n/// \t<integer>56</integer>\n/// \t<key>label</key>\n/// \t<string>Chariz</string>\n/// \t<key>account</key>\n/// \t<string>@chariz@chariz.com</string>\n/// </dict>\n///\n/// <!-- Without an avatar: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBMastodonTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Chariz</string>\n/// \t<key>showAvatar</key>\n/// \t<false/>\n/// \t<key>account</key>\n/// \t<string>@chariz@chariz.com</string>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(MastodonTableCell)\n@interface HBMastodonTableCell : HBLinkTableCell\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBPackageNameHeaderCell.h",
    "content": "#import <Preferences/PSTableCell.h>\n#import <Preferences/PSHeaderFooterView.h>\n\n/// The HBPackageNameHeaderCell class in CepheiPrefs displays a header containing the package’s\n/// icon, name, version number, and author. It can be displayed in a subtle condensed design, or, by\n/// default, a tall header that might be displayed at the top of a preference bundle’s root list\n/// controller, for instance.\n///\n/// ### Specifier Parameters\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>condensed</td> <td>Optional. When true, displays an icon, the package name and version in\n/// one line, and on another displays the author name. When false, displays a large package name,\n/// and on two lines in small font the package version and author. The default is false.</td>\n/// </tr>\n/// <tr>\n/// <td>icon</td> <td>Required in condensed mode. Not used otherwise. The file name of the icon to\n/// use within the current preference bundle.</td>\n/// </tr>\n/// <tr>\n/// <td>packageIdentifier</td> <td>Required. The package identifier to retrieve the required\n/// information from.</td>\n/// </tr>\n/// <tr>\n/// <td>packageNameOverride</td> <td>Optional. A custom name to use instead of the package’s\n/// name.</td>\n/// </tr>\n/// <tr>\n/// <td>showAuthor</td> <td>Optional. Whether to show the Author field of the package. The default\n/// is true.</td>\n/// </tr>\n/// <tr>\n/// <td>showVersion</td> <td>Optional. Whether to show the Version field of the package. The default\n/// is true.</td>\n/// </tr>\n/// <tr>\n/// <td>titleColor</td> <td>Optional. The color to apply to the name of the package. The default is\n/// #111111.</td>\n/// </tr>\n/// <tr>\n/// <td>subtitleColor</td> <td>Optional. The color to apply to the subtitles. The default is\n/// #444444.</td>\n/// </tr>\n/// <tr>\n/// <td>backgroundGradientColors</td> <td>Optional. An array of color stops to use as a background\n/// gradient. At least one is required. The default is no background gradient.</td>\n/// </tr>\n/// </table>\n///\n/// ### Example Usage\n/// ```xml\n/// <!-- Standard size: -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSGroupCell</string>\n/// \t<key>headerCellClass</key>\n/// \t<string>HBPackageNameHeaderCell</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// </dict>\n///\n/// <!-- Condensed size: -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSGroupCell</string>\n/// \t<key>condensed</key>\n/// \t<true/>\n/// \t<key>headerCellClass</key>\n/// \t<string>HBPackageNameHeaderCell</string>\n/// \t<key>icon</key>\n/// \t<string>icon.png</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// </dict>\n///\n/// <!-- Standard size with custom colors: -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSGroupCell</string>\n/// \t<key>headerCellClass</key>\n/// \t<string>HBPackageNameHeaderCell</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// \t<key>titleColor</key>\n/// \t<string>#CC0000</string>\n/// \t<key>subtitleColor</key>\n/// \t<array>\n/// \t\t<integer>55</integer>\n/// \t\t<integer>147</integer>\n/// \t\t<integer>230</integer>\n/// \t</array>\n/// </dict>\n///\n/// <!-- Standard size with gradient background: -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSGroupCell</string>\n/// \t<key>headerCellClass</key>\n/// \t<string>HBPackageNameHeaderCell</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// \t<key>backgroundGradientColors</key>\n/// \t<array>\n/// \t\t<string>#5AD427</string>\n/// \t\t<string>#FFDB4C</string>\n/// \t\t<string>#EF4DB6</string>\n/// \t\t<string>#898C90</string>\n/// \t</array>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(PackageNameHeaderCell)\n@interface HBPackageNameHeaderCell : PSTableCell <PSHeaderFooterView>\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBPackageTableCell.h",
    "content": "#import \"HBLinkTableCell.h\"\n\n/// The HBPackageTableCell class in CepheiPrefs provides a cell containing any package's icon,\n/// name, and description. Tapping it opens the package in Cydia.\n///\n/// ### Specifier Parameters\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>packageIdentifier</td> <td>Required. The package identifier to retrieve the required\n/// information from.</td>\n/// </tr>\n/// <tr>\n/// <td>packageRepository</td> <td>Optional. The URL to the repository the package is available on,\n/// if not one of the default repos.</td>\n/// </tr>\n/// <tr>\n/// <td>label</td> <td>Required. The name of the package.</td>\n/// </tr>\n/// <tr>\n/// <td>subtitle</td> <td>Optional. Can be used for a description of the package.</td>\n/// </tr>\n/// </table>\n///\n/// ### Example Usage\n/// ```xml\n/// <!-- Typical: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBPackageTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Cephei</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// </dict>\n///\n/// <!-- With subtitle: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBPackageTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Cephei</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// \t<key>subtitle</key>\n/// \t<string>Support library for tweaks</string>\n/// </dict>\n///\n/// <!-- From a repository: -->\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBPackageTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Cephei</string>\n/// \t<key>packageIdentifier</key>\n/// \t<string>ws.hbang.common</string>\n/// \t<key>packageRepository</key>\n/// \t<string>https://repo.chariz.io</string>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(PackageTableCell)\n@interface HBPackageTableCell : HBLinkTableCell\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBRootListController.h",
    "content": "@import UIKit;\n#import \"HBListController.h\"\n\n/// The HBRootListController class in CepheiPrefs provides a list controller class that should\n/// be used as the root of the package's settings. It includes two class methods you can override to\n/// provide a default message and a URL that the user can share via a sharing button displayed to\n/// the right of the navigation bar.\n///\n/// It is recommended that you use this class even if its current features aren’t appealing in case\n/// of future improvements or code that relies on the presence of an HBRootListController.\n\nNS_SWIFT_NAME(RootListController)\n@interface HBRootListController : HBListController\n\n// Methods/properties can be found in CepheiPrefs-Swift.h\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBStepperTableCell.h",
    "content": "#import <Preferences/PSControlTableCell.h>\n\n/// The HBStepperTableCell class in CepheiPrefs allows setting a value using a stepper control\n/// (\"minus\" and \"plus\" buttons).\n///\n/// ### Specifier Parameters\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>label</td> <td>Required. The label displayed when the value is plural. Use <code>%i</code>\n/// to denote where the number should be displayed.</td>\n/// </tr>\n/// <tr>\n/// <td>max</td> <td>Required. The highest possible numeric value for the stepper.</td>\n/// </tr>\n/// <tr>\n/// <td>min</td> <td>Required. The lowest possible numeric value for the stepper.</td>\n/// </tr>\n/// <tr>\n/// <td>singularLabel</td> <td>Required. The label displayed when the value is singular.</td>\n/// </tr>\n/// </table>\n///\n/// ### Example Usage\n/// ```xml\n/// <dict>\n/// \t<key>cellClass</key>\n/// \t<string>HBStepperTableCell</string>\n/// \t<key>default</key>\n/// \t<real>5</real>\n/// \t<key>defaults</key>\n/// \t<string>ws.hbang.common.demo</string>\n/// \t<key>key</key>\n/// \t<string>Stepper</string>\n/// \t<key>label</key>\n/// \t<string>%i Things</string>\n/// \t<key>max</key>\n/// \t<real>15</real>\n/// \t<key>min</key>\n/// \t<real>1</real>\n/// \t<key>singularLabel</key>\n/// \t<string>1 Thing</string>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(StepperTableCell)\n@interface HBStepperTableCell : PSControlTableCell\n\n/// The stepper control.\n@property (nonatomic, retain) UIStepper *control;\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBSupportController.h",
    "content": "@import UIKit;\n\nNS_ASSUME_NONNULL_BEGIN\n\n/// The HBSupportController class in CepheiPrefs provides a factory that configures an email\n/// composer for package support.\n///\n/// The resulting view controller should be presented modally; it should not be pushed on a\n/// navigation controller stack.\n\nNS_SWIFT_NAME(SupportController)\n@interface HBSupportController : NSObject\n\n/// Initialises a Mail composer by using information provided by a bundle and preferences identifier.\n///\n/// Either a bundle or preferences identifier is required. If both are nil, an exception will be\n/// thrown. The email address is derived from the `Author` field of the package’s control file.\n/// `HBSupportController` implicitly adds the user’s package listing (output of `dpkg -l`) and the\n/// preferences plist as attachments.\n///\n/// @param bundle A bundle included with the package.\n/// @param preferencesIdentifier A preferences identifier that is used by the package.\n/// @return A pre-configured email composer.\n/// @see `+supportViewControllerForBundle:preferencesIdentifier:sendToEmail:`\n+ (UIViewController *)supportViewControllerForBundle:(nullable NSBundle *)bundle preferencesIdentifier:(nullable NSString *)preferencesIdentifier;\n\n/// Initialises a Mail composer by using information provided by a bundle, preferences identifier,\n/// and optional email address.\n///\n/// Either a bundle or preferences identifier is required. If both are nil, an exception will be\n/// thrown. If sendToEmail is nil, the email address is derived from the `Author` field of the\n/// package’s control file. `HBSupportController` implicitly adds the user’s package listing (output\n/// of `dpkg -l`) and the preferences plist as attachments.\n///\n/// @param bundle A bundle included with the package.\n/// @param preferencesIdentifier A preferences identifier that is used by the package.\n/// @param sendToEmail The email address to prefill in the To field. Pass nil to use the email\n/// address from the package.\n/// @return A pre-configured email composer.\n+ (UIViewController *)supportViewControllerForBundle:(nullable NSBundle *)bundle preferencesIdentifier:(nullable NSString *)preferencesIdentifier sendToEmail:(nullable NSString *)sendToEmail;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBTintedTableCell.h",
    "content": "#import <Preferences/PSTableCell.h>\n\n/// The HBTintedTableCell class in CepheiPrefs ensures that a tint set with `HBAppearanceSettings`\n/// will also be applied to the title label of a of a cell intended to be used as a button.\n///\n/// ### Specifier Parameters\n/// HBListController extends specifiers with the following parameters:\n///\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>tintColor</td> <td>Optional. The color to use for the label of the cell. The default is no\n/// value, which means the tint color will be inherited from the -[HBAppearanceSettings tintColor];\n/// if neither value is set, the default iOS blue tint color is used.</td>\n/// </tr>\n/// </table>\n///\n/// ### Example Usage\n/// ```xml\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSButtonCell</string>\n/// \t<key>cellClass</key>\n/// \t<string>HBTintedTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Do Something</string>\n/// </dict>\n///\n/// <!-- Or with a custom tint color: -->\n/// <dict>\n/// \t<key>cell</key>\n/// \t<string>PSButtonCell</string>\n/// \t<key>cellClass</key>\n/// \t<string>HBTintedTableCell</string>\n/// \t<key>label</key>\n/// \t<string>Do Something</string>\n/// \t<key>tintColor</key>\n/// \t<string>#33b5e5</string>\n/// </dict>\n/// ```\n\nNS_SWIFT_NAME(TintedTableCell)\n@interface HBTintedTableCell : PSTableCell\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/HBTwitterCell.h",
    "content": "#import \"HBLinkTableCell.h\"\n\n/// The `HBTwitterCell` class in CepheiPrefs is deprecated. Due to changes to the Twitter API, it is\n/// no longer feasible for us to include this feature in Cephei. Use `HBLinkTableCell` instead.\n///\n/// ### Specifier Parameters\n/// In addition to the parameters accepted by `HBLinkTableCell`, `HBTwitterCell` accepts the\n/// following:\n///\n/// <table class=\"graybox\">\n/// <tr>\n/// <td>user</td> <td>Required. The Twitter username of the person.</td>\n/// </tr>\n/// <tr>\n/// <td>iconCircular</td> <td>Optional. Whether the icon should be displayed as a circle. The\n/// default from `HBLinkTableCell` is NO, however, `HBTwitterCell` overrides this to YES.</td>\n/// </tr>\n/// </table>\n\nNS_SWIFT_NAME(TwitterTableCell)\n@interface HBTwitterCell : HBLinkTableCell\n\n@end\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Headers/PSListController+HBTintAdditions.h",
    "content": "@import Preferences;\n\n@class HBAppearanceSettings;\n\nNS_ASSUME_NONNULL_BEGIN\n\n/// The PSListController (HBTintAdditions) class category in CepheiPrefs provides a property for\n/// setting the desired appearance settings of the view controller.\n\n@interface PSListController (HBTintAdditions)\n\n/// The appearance settings for the view controller.\n///\n/// This should only be set in an init or viewDidLoad method of the view controller. The result when\n/// this property or its properties are changed after the view has appeared is undefined.\n@property (nonatomic, copy, nullable, setter=hb_setAppearanceSettings:) HBAppearanceSettings *hb_appearanceSettings NS_SWIFT_NAME(appearanceSettings);\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>English</string>\n\t<key>CFBundleExecutable</key>\n\t<string>CepheiPrefs</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>ws.hbang.common.prefs</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>Cephei</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1.0</string>\n\t<key>DTPlatformName</key>\n\t<string>iphoneos</string>\n\t<key>HBPackageIdentifier</key>\n\t<string>ws.hbang.common</string>\n\t<key>NSPrincipalClass</key>\n\t<string>HBDemoRootListController</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/Modules/module.modulemap",
    "content": "framework module CepheiPrefs {\n\tumbrella header \"CepheiPrefs.h\"\n\n\texport *\n\tmodule * { export * }\n}\n\nmodule CepheiPrefs.Swift {\n\theader \"CepheiPrefs-Swift.h\"\n\trequires objc\n}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ar.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>حول</string>\n\t<key>CREDITS</key>\n\t<string>الشُكر والتقدير</string>\n\t<key>GENERAL</key>\n\t<string>عام</string>\n\t<key>SUPPORT</key>\n\t<string>الدعم</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>تشغيل</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>إيقاف</string>\n\t<key>ON</key>\n\t<string>تشغيل</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>زيارة موقعنا</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>لديك مشكلة؟</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>الدعم بواسطة البريد الإلكتروني</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>جرة البقشيش</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>يرجى التفكير في إظهار تقديرك لهذه الأداة عبر تبرع صغير لجرة البقشيش.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>المبرمج</string>\n\t<key>DEVELOPERS</key>\n\t<string>المبرمجون</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>رئيس المبرمجين</string>\n\t<key>DESIGNER</key>\n\t<string>المُصمم</string>\n\t<key>DESIGNERS</key>\n\t<string>المُصممون</string>\n\t<key>ICON</key>\n\t<string>الأيكونة</string>\n\t<key>ICONS</key>\n\t<string>الأيكونات</string>\n\t<key>TRANSLATORS</key>\n\t<string>المترجمون</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>أدخل قيمة</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ar.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>فتح في...</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>سيتم تثبيت هذه الحزمة من مستودع %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ar.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>رقم الإصدار %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>بواسطة %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ar.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>الدعم</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>الدعم - %@ %@</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>لم يتم إعداد أي حسابات بريد.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>استخدم إعدادات البريد لإضافة حساب جديد.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ca.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Sobre</string>\n\t<key>CREDITS</key>\n\t<string>Crèdits</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Suport</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Habilitat</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>No</string>\n\t<key>ON</key>\n\t<string>Sí</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visitar pàgina web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Tens problemes?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Suport per correu-e</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Fer una donació</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Si us plau, mostreu el vostra apreci per aquest tweak mitjançant una donació.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Desenvolupador</string>\n\t<key>DEVELOPERS</key>\n\t<string>Desenvolupadors</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Desenvolupador en cap</string>\n\t<key>DESIGNER</key>\n\t<string>Dissenyador</string>\n\t<key>DESIGNERS</key>\n\t<string>Dissenyadors</string>\n\t<key>ICON</key>\n\t<string>Icona</string>\n\t<key>ICONS</key>\n\t<string>Icones</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traductors</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Introduir valor</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ca.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ca.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versió %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Fet per %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ca.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Suport</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Suport</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/cs.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>O aplikaci</string>\n\t<key>CREDITS</key>\n\t<string>Podìkování</string>\n\t<key>GENERAL</key>\n\t<string>Obecné</string>\n\t<key>SUPPORT</key>\n\t<string>Podpora</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Povoleno</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Vypnuto</string>\n\t<key>ON</key>\n\t<string>Zapnuto</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Navštívit stránku</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Máte problémy?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>E-Mailová podpora</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Přispívání</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Poděkujte tomuto projektu přispěním do projektu.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Vývojář</string>\n\t<key>DEVELOPERS</key>\n\t<string>Vývojáři</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Hlavní vývojář</string>\n\t<key>DESIGNER</key>\n\t<string>Designér</string>\n\t<key>DESIGNERS</key>\n\t<string>Designeři</string>\n\t<key>ICON</key>\n\t<string>Ikona</string>\n\t<key>ICONS</key>\n\t<string>Ikony</string>\n\t<key>TRANSLATORS</key>\n\t<string>Překladatelé</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Přidat hodnotu</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/cs.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/cs.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Verze %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Od %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/cs.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Podpora</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Podpora</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/da.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Om</string>\n\t<key>CREDITS</key>\n\t<string>Tak til</string>\n\t<key>GENERAL</key>\n\t<string>Generelt</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Aktiveret</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Fra</string>\n\t<key>ON</key>\n\t<string>Til</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Besøg Hjemmesiden</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Har du problemer?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Donér</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Overvej venligst at vise din taknemmelighed for denne tweak med en lille donation.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Udvikler</string>\n\t<key>DEVELOPERS</key>\n\t<string>Udviklere</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Hoved Udvikler</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designere</string>\n\t<key>ICON</key>\n\t<string>Ikon</string>\n\t<key>ICONS</key>\n\t<string>Icons</string>\n\t<key>TRANSLATORS</key>\n\t<string>Oversættere</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Indtast værdi</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/da.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/da.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <!-- The subheading containing the package version. -->\n    <key>HEADER_VERSION</key>\n    <string>Version %@</string>\n\n    <!-- The subheading containing the package author. -->\n    <key>HEADER_AUTHOR</key>\n    <string>Af %@</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/da.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <!-- Title displayed in the navigation bar of the support page. -->\n    <key>SUPPORT_TITLE</key>\n    <string>Support</string>\n\n    <!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n    <key>SUPPORT_EMAIL_SUBJECT</key>\n    <string>%@ %@ – Support</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/de.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Informationen</string>\n\t<key>CREDITS</key>\n\t<string>Credits</string>\n\t<key>GENERAL</key>\n\t<string>Allgemein</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Aktiviert</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Aus</string>\n\t<key>ON</key>\n\t<string>Ein</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Website besuchen</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Bestehen Probleme?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Spenden</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Zeigen Sie Ihr Interesse an dieser Optimierung, indem Sie eine Spende machen.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Entwickler</string>\n\t<key>DEVELOPERS</key>\n\t<string>Entwickler</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Führender Entwickler</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designer</string>\n\t<key>ICON</key>\n\t<string>Symbol</string>\n\t<key>ICONS</key>\n\t<string>Symbole</string>\n\t<key>TRANSLATORS</key>\n\t<string>Übersetzer</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Wert eingeben</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/de.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Öffnen in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Dieses Paket wird von der Quelle %@ installiert..</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/de.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Von %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/de.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Support</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Es ist kein E-Mail-Konto konfiguriert.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Verwenden Sie die E-Mail-Optionen, um ein neues Konto hinzuzufügen.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/el.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Σχετικά</string>\n\t<key>CREDITS</key>\n\t<string>Έπαινοι</string>\n\t<key>GENERAL</key>\n\t<string>Γενικά</string>\n\t<key>SUPPORT</key>\n\t<string>Υποστήριξη</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Ενεργοποιημένο</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Όχι</string>\n\t<key>ON</key>\n\t<string>Ναι</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Επισκεφθείτε την ιστοσελίδα</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Παρουσιάζονται προβλήματα;</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Υποστήριξη μέσω Email</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Εισφορά</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Παρακαλώ όπως δείξετε την εκτίμησή σας για αυτό το tweak με μια εισφορά.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Δημιουργός</string>\n\t<key>DEVELOPERS</key>\n\t<string>Δημιουργοί</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Κύριος Δημιουργός</string>\n\t<key>DESIGNER</key>\n\t<string>Σχεδιαστής</string>\n\t<key>DESIGNERS</key>\n\t<string>Σχεδιαστές</string>\n\t<key>ICON</key>\n\t<string>Εικονίδιο</string>\n\t<key>ICONS</key>\n\t<string>Εικονίδια</string>\n\t<key>TRANSLATORS</key>\n\t<string>Μεταφραστές</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Εισάγετε τιμή</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/el.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/el.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Έκδοση %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Από %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/el.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Υποστήριξη</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Υποστήριξη</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>About</string>\n\t<key>CREDITS</key>\n\t<string>Credits</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Enabled</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Off</string>\n\t<key>ON</key>\n\t<string>On</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visit Website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Having Problems?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Tip Jar</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Please consider showing your appreciation for this tweak with a small donation to the tip jar.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Developer</string>\n\t<key>DEVELOPERS</key>\n\t<string>Developers</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Lead Developer</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Icon</string>\n\t<key>ICONS</key>\n\t<string>Icons</string>\n\t<key>TRANSLATORS</key>\n\t<string>Translators</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Enter Value</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>By %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Support</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>No mail accounts are set up.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Use the Mail settings to add a new account.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_AU.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>About</string>\n\t<key>CREDITS</key>\n\t<string>Credits</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Enabled</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Off</string>\n\t<key>ON</key>\n\t<string>On</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visit Website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Having Problems?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Tip Jar</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Please consider showing your appreciation for this tweak with a small donation to the tip jar.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Developer</string>\n\t<key>DEVELOPERS</key>\n\t<string>Developers</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Lead Developer</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Icon</string>\n\t<key>ICONS</key>\n\t<string>Icons</string>\n\t<key>TRANSLATORS</key>\n\t<string>Translators</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Enter Value</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_AU.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_AU.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>By %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_AU.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Support</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>No mail accounts are set up.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Use the Mail settings to add a new account.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_GB.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>About</string>\n\t<key>CREDITS</key>\n\t<string>Credits</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Enabled</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Off</string>\n\t<key>ON</key>\n\t<string>On</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visit Website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Having Problems?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Tip Jar</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Please consider showing your appreciation for this tweak with a small donation to the tip jar.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Developer</string>\n\t<key>DEVELOPERS</key>\n\t<string>Developers</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Lead Developer</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Icon</string>\n\t<key>ICONS</key>\n\t<string>Icons</string>\n\t<key>TRANSLATORS</key>\n\t<string>Translators</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Enter Value</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_GB.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_GB.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>By %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/en_GB.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Support</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>No mail accounts are set up.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Use the Mail settings to add a new account.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/entry.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>entry</key>\n\t<dict>\n\t\t<key>bundle</key>\n\t\t<string>Cephei</string>\n\t\t<key>cell</key>\n\t\t<string>PSLinkCell</string>\n\t\t<key>detail</key>\n\t\t<string>HBDemoRootListController</string>\n\t\t<key>icon</key>\n\t\t<string>icon.png</string>\n\t\t<key>isController</key>\n\t\t<true/>\n\t\t<key>label</key>\n\t\t<string>Cephei Demo</string>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Acerca</string>\n\t<key>CREDITS</key>\n\t<string>Créditos</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Soporte</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Habilitado</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>No</string>\n\t<key>ON</key>\n\t<string>Sí</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visitar sitio web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>¿Tienes problemas?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Soporte por email</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Tarro de Donaciones</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Considera mostrar tu aprecio a este tweak con una pequeña donación al tarro de donaciones.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Desarrollador</string>\n\t<key>DEVELOPERS</key>\n\t<string>Desarrolladores</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Desarrollador principal</string>\n\t<key>DESIGNER</key>\n\t<string>Diseñador</string>\n\t<key>DESIGNERS</key>\n\t<string>Diseñadores</string>\n\t<key>ICON</key>\n\t<string>Icono</string>\n\t<key>ICONS</key>\n\t<string>Iconos</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traductores</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Introducid valor</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Abrir en…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Este paquete será instalado del repositorio %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versión %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Por %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Soporte</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Soporte</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>No hay cuentas de correo configuradas.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Usa los ajustes de Mail para añadir una nueva cuenta.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es_MX.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Acerca</string>\n\t<key>CREDITS</key>\n\t<string>Créditos</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Soporte</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Habilitado</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>No</string>\n\t<key>ON</key>\n\t<string>Sí</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visitar sitio web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>¿Tienes problemas?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Soporte por email</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Tarro de Donaciones</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Considera mostrar tu aprecio a este tweak con una pequeña donación al tarro de donaciones.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Desarrollador</string>\n\t<key>DEVELOPERS</key>\n\t<string>Desarrolladores</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Desarrollador principal</string>\n\t<key>DESIGNER</key>\n\t<string>Diseñador</string>\n\t<key>DESIGNERS</key>\n\t<string>Diseñadores</string>\n\t<key>ICON</key>\n\t<string>Icono</string>\n\t<key>ICONS</key>\n\t<string>Iconos</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traductores</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Introducid valor</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es_MX.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Abrir en…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Este paquete será instalado del repositorio %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es_MX.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versión %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Por %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/es_MX.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Soporte</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Soporte</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>No hay cuentas de correo configuradas.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Usa los ajustes de Mail para añadir una nueva cuenta.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fi.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Tietoja</string>\n\t<key>CREDITS</key>\n\t<string>Kiitokset</string>\n\t<key>GENERAL</key>\n\t<string>Yleiset</string>\n\t<key>SUPPORT</key>\n\t<string>Tuki</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Päällä</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Pois</string>\n\t<key>ON</key>\n\t<string>Päällä</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Vieraile verkkosivulla</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Onko ongelmia?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Sähköpostituki</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Lahjoita</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Mikäli olet tyytyväinen tähän twiikkiin, harkitse lahjoituksen antamista.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Kehittäjä</string>\n\t<key>DEVELOPERS</key>\n\t<string>Kehittäjät</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Pääkehittäjä</string>\n\t<key>DESIGNER</key>\n\t<string>Suunnittelija</string>\n\t<key>DESIGNERS</key>\n\t<string>Suunnittelijat</string>\n\t<key>ICON</key>\n\t<string>Kuvake</string>\n\t<key>ICONS</key>\n\t<string>Kuvakkeet</string>\n\t<key>TRANSLATORS</key>\n\t<string>Kääntäjät</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Anna arvo</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fi.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fi.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versio %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>%@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fi.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Tuki</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Tuki</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>À propos</string>\n\t<key>CREDITS</key>\n\t<string>Crédits</string>\n\t<key>GENERAL</key>\n\t<string>Général</string>\n\t<key>SUPPORT</key>\n\t<string>Aide</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Activé</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Désactivé</string>\n\t<key>ON</key>\n\t<string>Activé</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visiter le site web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Des problèmes ?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Aide par email</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Faire un don</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Montrez votre intérêt pour ce tweak en faisant un don</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Développeur</string>\n\t<key>DEVELOPERS</key>\n\t<string>Développeurs</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Développeur principal</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Icône</string>\n\t<key>ICONS</key>\n\t<string>Icônes</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traducteurs</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Entrer une valeur</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Ouvrir dans…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Ce paquet sera installé depuis la source %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Par %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Aide</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Aide</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Aucun compte mail n'est paramétré</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Utilisez les options de Mail pour ajouter un nouveau compte.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr_CA.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>À propos</string>\n\t<key>CREDITS</key>\n\t<string>Crédits</string>\n\t<key>GENERAL</key>\n\t<string>Général</string>\n\t<key>SUPPORT</key>\n\t<string>Aide</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Activé</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Désactivé</string>\n\t<key>ON</key>\n\t<string>Activé</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visiter le site web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Des problèmes?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Aide par email</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Faire un don</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Montrez votre intérêt pour ce tweak en faisant un don</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Développeur</string>\n\t<key>DEVELOPERS</key>\n\t<string>Développeurs</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Développeur principal</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Icône</string>\n\t<key>ICONS</key>\n\t<string>Icônes</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traducteurs</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Entrer une valeur</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr_CA.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Ouvrir dans…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Ce paquet sera installé depuis la source %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr_CA.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Par %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/fr_CA.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Aide</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Aide</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Aucun compte mail n'est paramétré</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Utilisez les options de Mail pour ajouter un nouveau compte.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/he.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>אודות</string>\n\t<key>CREDITS</key>\n\t<string>קרדיטים</string>\n\t<key>GENERAL</key>\n\t<string>כללי</string>\n\t<key>SUPPORT</key>\n\t<string>תמיכה</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>מופעל</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>כבוי</string>\n\t<key>ON</key>\n\t<string>פעיל</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>בקר/י באתר</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>חווה בעיות?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>שלח/י דואר לתמיכה</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>כוס טיפים</string>\n\n\t<key>DONATE_FOOTER</key>\n\t<string>אנא שקול/י להראות את הערתך לטוויק זה עם תרומה קטנה לכוס הטיפים.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>מפתח</string>\n\t<key>DEVELOPERS</key>\n\t<string>מפתחים</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>מפתח מוביל</string>\n\t<key>DESIGNER</key>\n\t<string>מעצב</string>\n\t<key>DESIGNERS</key>\n\t<string>מעצבים</string>\n\t<key>ICON</key>\n\t<string>אייקון</string>\n\t<key>ICONS</key>\n\t<string>אייקונים</string>\n\t<key>TRANSLATORS</key>\n\t<string>מתרגמים</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>הכנס ערך</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/he.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>פתח ב...</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>חבילה זו תותקן מהמקור %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/he.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>גרסה %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>על ידי %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/he.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>אין חשבונות דוא\"ל שהוגדרו..</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>השתמש/י בהגדרות דוא\"ל כדי להוסיף חשבון חדש.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hi.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>के बारे में</string>\n\t<key>CREDITS</key>\n\t<string>क्रेडिट्स</string>\n\t<key>GENERAL</key>\n\t<string>सामान्य</string>\n\t<key>SUPPORT</key>\n\t<string>समर्थन</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>सक्षम किया</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>बंद</string>\n\t<key>ON</key>\n\t<string>चालू</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>बेवसाइट देखना</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>समस्याएं आ रही हैं?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>ई - मेल समर्थन</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>दान</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>एक दान के साथ इस tweak के लिए अपनी प्रशंसा दिखा पर विचार करें।</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>डेवलपर</string>\n\t<key>DEVELOPERS</key>\n\t<string>डेवलपर्स</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>प्रमुख डेवलपर</string>\n\t<key>DESIGNER</key>\n\t<string>डिजाइनर</string>\n\t<key>DESIGNERS</key>\n\t<string>डिजाइनर</string>\n\t<key>ICON</key>\n\t<string>चिह्न</string>\n\t<key>ICONS</key>\n\t<string>प्रतीक</string>\n\t<key>TRANSLATORS</key>\n\t<string>अनुवादक</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string> मूल्य दर्ज करें</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hi.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hi.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>संस्करण %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>द्वारा %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hi.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>समर्थन</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – समर्थन</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hr.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>O Nama</string>\n\t<key>CREDITS</key>\n\t<string>Zasluge</string>\n\t<key>GENERAL</key>\n\t<string>Općenito</string>\n\t<key>SUPPORT</key>\n\t<string>Podrška</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Uključeno</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Isključeno</string>\n\t<key>ON</key>\n\t<string>Uključeno</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Posjeti Web Stranicu</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Imaš Poteškoća?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Kontaktiraj Podršku</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Doniraj</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Molimo pokažite zahvalnost za ovaj tweak donirajući.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Programer</string>\n\t<key>DEVELOPERS</key>\n\t<string>Programeri</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Glavni Programer</string>\n\t<key>DESIGNER</key>\n\t<string>Dizajner</string>\n\t<key>DESIGNERS</key>\n\t<string>Dizajneri</string>\n\t<key>ICON</key>\n\t<string>Ikona</string>\n\t<key>ICONS</key>\n\t<string>Ikone</string>\n\t<key>TRANSLATORS</key>\n\t<string>Prevoditelji</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Unesi vrijednost</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hr.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hr.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Verzija %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Od %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hr.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Podrška</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Podrška</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hu.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Infó</string>\n\t<key>CREDITS</key>\n\t<string>Készítõk</string>\n\t<key>GENERAL</key>\n\t<string>Általános</string>\n\t<key>SUPPORT</key>\n\t<string>Támogatás</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Engedélyezés</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Ki</string>\n\t<key>ON</key>\n\t<string>Be</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Weboldal megtekintése</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Problémád akadt?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email támogatás</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Adakozás</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Munkánk elismeréseként kérlek fontold meg az adakozást számunkra.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Fejleszõ</string>\n\t<key>DEVELOPERS</key>\n\t<string>Fejlesztõk</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Vezetõ fejlesztõ</string>\n\t<key>DESIGNER</key>\n\t<string>Tervezõ</string>\n\t<key>DESIGNERS</key>\n\t<string>Tervezõk</string>\n\t<key>ICON</key>\n\t<string>Ikon</string>\n\t<key>ICONS</key>\n\t<string>Ikonok</string>\n\t<key>TRANSLATORS</key>\n\t<string>Fordítók</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Adj meg egy értéket</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hu.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hu.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Verzió %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Készítette %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/hu.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Támogatás</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Támogatás</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/id.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Tentang</string>\n\t<key>CREDITS</key>\n\t<string>Daftar Penghargaan</string>\n\t<key>GENERAL</key>\n\t<string>Umum</string>\n\t<key>SUPPORT</key>\n\t<string>Bantuan</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Diaktifkan</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Mati</string>\n\t<key>ON</key>\n\t<string>Nyala</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Kunjungi Situs</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Ada masalah?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Bantuan</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Kotak donasi</string>\n  \n    <!-- Footer under the donate button. -->\n  \t<key>DONATE_FOOTER</key>\n\t<string>Tunjukkan apresiasimu terhadap tweak ini dengan donasi.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Pengembang</string>\n\t<key>DEVELOPERS</key>\n\t<string>Pengembang</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Pimpinan Pengembang</string>\n\t<key>DESIGNER</key>\n\t<string>Desainer</string>\n\t<key>DESIGNERS</key>\n\t<string>Desainer</string>\n\t<key>ICON</key>\n\t<string>Ikon</string>\n\t<key>ICONS</key>\n\t<string>Ikon</string>\n\t<key>TRANSLATORS</key>\n\t<string>Penerjemah</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Masukan nilai</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/id.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Buka dengan…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Paket ini akan dipasang dari repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/id.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versi %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Oleh %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/id.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Bantuan</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Bantuan</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n    <key>NO_EMAIL_ACCOUNTS_TITLE</key>\n    <string>Tidak ada akun email yang terdaftar.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Gunakan pengaturan email untuk menambahkan akun.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/it.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Info</string>\n\t<key>CREDITS</key>\n\t<string>Crediti</string>\n\t<key>GENERAL</key>\n\t<string>Generali</string>\n\t<key>SUPPORT</key>\n\t<string>Supporto</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Abilitato</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Disattivato</string>\n\t<key>ON</key>\n\t<string>Attivata</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visita il sito</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Hai problemi?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email supporto</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Barattolo delle mance</string>\n\n\t<key>DONATE_FOOTER</key>\n\t<string>Per favore, considera di mostrare il tuo apprezzamento per questo tweak attraverso una piccola donazione al barattolo delle mance.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Sviluppatore</string>\n\t<key>DEVELOPERS</key>\n\t<string>Sviluppatori</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Sviluppatore principale</string>\n\t<key>DESIGNER</key>\n\t<string>Progettista</string>\n\t<key>DESIGNERS</key>\n\t<string>Progettisti</string>\n\t<key>ICON</key>\n\t<string>Icona</string>\n\t<key>ICONS</key>\n\t<string>Icone</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traduttori</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Inserisci un valore</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/it.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Apri in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Questo pacchetto sarà installato dalla repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/it.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versione %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Di %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/it.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Supporto</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Supporto</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Nessun account di posta elettronica configurato.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Usa le impostazioni di Mail per aggiungere un nuovo account.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ja.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>情報</string>\n\t<key>CREDITS</key>\n\t<string>クレジット</string>\n\t<key>GENERAL</key>\n\t<string>一般</string>\n\t<key>SUPPORT</key>\n\t<string>サポート</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>使用する</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>オフ</string>\n\t<key>ON</key>\n\t<string>オン</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>ウェブサイトを開く</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>問題がありますか？</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>メールサポート</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>寄付する</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>このTweakへの感謝を表現するために寄付をご検討ください。</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>開発者</string>\n\t<key>DEVELOPERS</key>\n\t<string>開発者</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>リード開発者</string>\n\t<key>DESIGNER</key>\n\t<string>デザイナー</string>\n\t<key>DESIGNERS</key>\n\t<string>デザイナー</string>\n\t<key>ICON</key>\n\t<string>アイコン</string>\n\t<key>ICONS</key>\n\t<string>アイコン</string>\n\t<key>TRANSLATORS</key>\n\t<string>翻訳者</string>\n\t\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>値を入力</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ja.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ja.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>バージョン %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>%@ によって</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ja.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>サポート</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – サポート</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ko.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>정보</string>\n\t<key>CREDITS</key>\n\t<string>제작진</string>\n\t<key>GENERAL</key>\n\t<string>일반</string>\n\t<key>SUPPORT</key>\n\t<string>문의</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>사용</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>끔</string>\n\t<key>ON</key>\n\t<string>켬</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>웹사이트 방문</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>문제가 있나요?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>이메일 지원</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>팁 저금통</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>팁 저금통에 약간의 기부로 여러분의 감사 표시를 남겨주시면 감사드리겠습니다.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>개발자</string>\n\t<key>DEVELOPERS</key>\n\t<string>개발자</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>주 개발자</string>\n\t<key>DESIGNER</key>\n\t<string>디자이너</string>\n\t<key>DESIGNERS</key>\n\t<string>디자이너</string>\n\t<key>ICON</key>\n\t<string>아이콘</string>\n\t<key>ICONS</key>\n\t<string>아이콘</string>\n\t<key>TRANSLATORS</key>\n\t<string>번역자</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>값을 입력해주세요</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ko.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>다음으로 열기…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>이 패키지는 %@ 저장소에서 설치됩니다.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ko.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>버전 %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>제작: %@</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ko.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>문의</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – 문의</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>설정된 이메일 계정이 없습니다..</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>메일 설정에서 새 계정을 추가해주세요.</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ms.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Tentang</string>\n\t<key>CREDITS</key>\n\t<string>Kredit</string>\n\t<key>GENERAL</key>\n\t<string>Umum</string>\n\t<key>SUPPORT</key>\n\t<string>Bantuan</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Membolehkan</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Mati</string>\n\t<key>ON</key>\n\t<string>Aktif</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Lawati Laman Web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Ada Masalah?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Bantuan Emel</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Balang Derma</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Sila pertimbangkan untuk memberi penghargaan untuk tweak ini dengan memberi sejumlah derma di balang derma.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Pembuat</string>\n\t<key>DEVELOPERS</key>\n\t<string>Pembuat-pembuat</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Ketua Pembuat</string>\n\t<key>DESIGNER</key>\n\t<string>Pereka</string>\n\t<key>DESIGNERS</key>\n\t<string>Pereka-pereka</string>\n\t<key>ICON</key>\n\t<string>Ikon</string>\n\t<key>ICONS</key>\n\t<string>Ikon-ikon</string>\n\t<key>TRANSLATORS</key>\n\t<string>Penterjemah</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Masukan nilai</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ms.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Buka dalam…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Pekej ini akan dipasang di dalam repositori %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ms.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versi %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Oleh %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ms.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Bantuan</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Bantuan</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Didapati tiada akaun emel dibuat.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Gunakan tetapan aplikasi Mail untuk untuk membuat akaun baru.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nb.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Om</string>\n\t<key>CREDITS</key>\n\t<string>Medvirkende</string>\n\t<key>GENERAL</key>\n\t<string>Generelt</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Aktivert</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Av</string>\n\t<key>ON</key>\n\t<string>På</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Besøk nettsiden</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Opplever du feil?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Epost support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Donere</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Vennligst vurder å vise din takknemlighet for tweaken med en donasjon.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Utvikler</string>\n\t<key>DEVELOPERS</key>\n\t<string>Utviklere</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Hoved utvikler</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designere</string>\n\t<key>ICON</key>\n\t<string>Ikon</string>\n\t<key>ICONS</key>\n\t<string>Ikoner</string>\n\t<key>TRANSLATORS</key>\n\t<string>Oversettere</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Angi verdi</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nb.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nb.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versjon %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Av %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nb.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Support</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nl.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Over</string>\n\t<key>CREDITS</key>\n\t<string>Credits</string>\n\t<key>GENERAL</key>\n\t<string>Algemeen</string>\n\t<key>SUPPORT</key>\n\t<string>Ondersteuning</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Ingeschakeld</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Uit</string>\n\t<key>ON</key>\n\t<string>Aan</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Bezoek website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Ervaar je problemen?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>E-mail Ondersteuning</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Fooi Pot</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Laat uw waardering zien door middel van kleine donatie.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Ontwikkelaar</string>\n\t<key>DEVELOPERS</key>\n\t<string>Ontwikkelaars</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Hoofd-ontwikkelaar</string>\n\t<key>DESIGNER</key>\n\t<string>Ontwerper</string>\n\t<key>DESIGNERS</key>\n\t<string>Ontwerpers</string>\n\t<key>ICON</key>\n\t<string>Icoon</string>\n\t<key>ICONS</key>\n\t<string>Iconen</string>\n\t<key>TRANSLATORS</key>\n\t<string>Vertalers</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Voer waarde in</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nl.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Dit pakket wordt vanuit de repository %@ geïnstalleerd.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nl.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versie %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Door %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/nl.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Ondersteuning</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Ondersteuning</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Er zijn geen mail accounts geconfigureerd.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Ga naar uw mailinstellingen om een mailaccount toe te voegen.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pl.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Informacje</string>\n\t<key>CREDITS</key>\n\t<string>Podziękowania</string>\n\t<key>GENERAL</key>\n\t<string>Ogólne</string>\n\t<key>SUPPORT</key>\n\t<string>Wsparcie</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Włączony</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Wyłączone</string>\n\t<key>ON</key>\n\t<string>Włączone</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Odwiedź naszą witrynę</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Masz problemy?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Wsparcie</string>\n\n\t<!-- Button leading to a donation page. -->\n  \t<key>DONATE</key>\n\t<string>Napiwkir</string>\n  \n  \t<!-- Footer under the donate button. -->\n  \t<key>DONATE_FOOTER</key>\n\t<string>Jeżeli spodobało Ci się rozszerzenie, rozważ wsparcie autorów.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Programista</string>\n\t<key>DEVELOPERS</key>\n\t<string>Programiści</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Główny programista</string>\n\t<key>DESIGNER</key>\n\t<string>Projektant</string>\n\t<key>DESIGNERS</key>\n\t<string>Projektanci</string>\n\t<key>ICON</key>\n\t<string>Ikona</string>\n\t<key>ICONS</key>\n\t<string>Ikony</string>\n\t<key>TRANSLATORS</key>\n\t<string>Tłumacze</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Wprowadź wartość</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pl.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  \t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Otwórz w…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Paczka zostanie zainstalowana z wybranego repo %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pl.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Wersja %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Przez %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pl.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Wsparcie</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Wsparcie</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Konto mailowe nie zostało dodane.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Użyj konfiguratora aplikacji Mail, aby dodać konto.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Sobre</string>\n\t<key>CREDITS</key>\n\t<string>Créditos</string>\n\t<key>GENERAL</key>\n\t<string>Geral</string>\n\t<key>SUPPORT</key>\n\t<string>Suporte</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Ativo</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Inativo</string>\n\t<key>ON</key>\n\t<string>Ativo</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visitar website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Havendo problemas?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Suporte via e-mail</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Gorjeta</string>\n\n\t<key>DONATE_FOOTER</key>\n\t<string>Considere mostrar seu apreço por esse tweak com uma pequena doação.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Desenvolvedor</string>\n\t<key>DEVELOPERS</key>\n\t<string>Desenvolvedores</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Desenvolvedor Líder</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Ícone</string>\n\t<key>ICONS</key>\n\t<string>Ícones</string>\n\t<key>TRANSLATORS</key>\n\t<string>Tradutores</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Digite valor</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Abrir em…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Esse pacote será instalado do repositor %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versão %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Por %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Suporte</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Suporte</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Nenhuma conta de e-mail configurada.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Use as configurações do email para adicionar uma nova conta.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt_PT.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Sobre</string>\n\t<key>CREDITS</key>\n\t<string>Créditos</string>\n\t<key>GENERAL</key>\n\t<string>Geral</string>\n\t<key>SUPPORT</key>\n\t<string>Suporte</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Ativo</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Desligado</string>\n\t<key>ON</key>\n\t<string>Ligado</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Visitar website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Havendo problemas?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Suporte via e-mail</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Doar</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Por favor considere demonstrar sua apreciação pelo tweak por doação.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Desenvolvedor</string>\n\t<key>DEVELOPERS</key>\n\t<string>Desenvolvedores</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Desenvolvedor Líder</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Ícone</string>\n\t<key>ICONS</key>\n\t<string>Ícones</string>\n\t<key>TRANSLATORS</key>\n\t<string>Tradutores</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Digite valor</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt_PT.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt_PT.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versão %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Por %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/pt_PT.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Suporte</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Suporte</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ro.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Despre</string>\n\t<key>CREDITS</key>\n\t<string>Credite</string>\n\t<key>GENERAL</key>\n\t<string>General</string>\n\t<key>SUPPORT</key>\n\t<string>Suport</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Activat</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Dezactivat</string>\n\t<key>ON</key>\n\t<string>Activat</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Viziteaza Website</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Probleme?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Suport</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Cutia cu gogoși</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Te rugăm să iei în calcul manifestarea aprecierii pentru acest tweak cu o mică donație pentru cutia cu gogoși.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Dezvoltator</string>\n\t<key>DEVELOPERS</key>\n\t<string>Dezvoltatori</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Dezvoltator principal</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designeri</string>\n\t<key>ICON</key>\n\t<string>Icoana</string>\n\t<key>ICONS</key>\n\t<string>Icone</string>\n\t<key>TRANSLATORS</key>\n\t<string>Traducatori</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Introdu valoarea</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ro.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Deschide în…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Acest pachet va fi instalat din repozitoriul %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ro.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versiunea %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>By %@</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ro.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Suport</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support - Romanian language interface</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Niciun cont de email este configurat.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Folosește setările aplicației Mail pentru a adăuga un cont nou.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ru.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <!-- Buttons leading to, and titles of, sub-sections. -->\n    <key>ABOUT</key>\n    <string>О программе</string>\n    <key>CREDITS</key>\n    <string>Титры</string>\n    <key>GENERAL</key>\n    <string>Основные</string>\n    <key>SUPPORT</key>\n    <string>поддержка</string>\n\n    <!-- Label for switch to enable or disable the tweak. -->\n    <key>ENABLED</key>\n    <string>Включить</string>\n\n    <!-- Label for the state of a switch.-->\n    <key>OFF</key>\n    <string>Выкл.</string>\n    <key>ON</key>\n    <string>Вкл.</string>\n\n    <!-- Button leading to a website. -->\n    <key>VISIT_WEBSITE</key>\n    <string>Посетить сайт</string>\n\n    <!-- Heading above the \"Email Support\" button. -->\n    <key>EMAIL_SUPPORT_HEADER</key>\n    <string>Что-то не так?</string>\n\n    <!-- Button leading to a contact form. -->\n    <key>EMAIL_SUPPORT</key>\n    <string>Свяжитесь с разработчиком</string>\n\n    <!-- Button leading to a donation page. -->\n    <key>DONATE</key>\n    <string>Пожертвовать</string>\n\n    <!-- Footer under the donate button. -->\n    <key>DONATE_FOOTER</key>\n    <string>Выразите свою благодарность данному твику небольшим пожертвованием.</string>\n\n    <!-- Headings above the credits. -->\n    <key>DEVELOPER</key>\n    <string>Разработчик</string>\n    <key>DEVELOPERS</key>\n    <string>Разработчики</string>\n    <key>LEAD_DEVELOPER</key>\n    <string>Главный разработчик</string>\n    <key>DESIGNER</key>\n    <string>Дизайнер</string>\n    <key>DESIGNERS</key>\n    <string>Дизайнеры</string>\n    <key>ICON</key>\n    <string>Значок</string>\n    <key>ICONS</key>\n    <string>Графика</string>\n    <key>TRANSLATORS</key>\n    <string>Переводчики</string>\n\n    <!-- Title of a prompt that allows typing in a value. -->\n    <key>ENTER_VALUE</key>\n    <string>Введите значение</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ru.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Открыть в…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Данный пакет будет установлен из репозитория %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ru.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <!-- The subheading containing the package version. -->\n    <key>HEADER_VERSION</key>\n    <string>Версия %@</string>\n\n    <!-- The subheading containing the package author. -->\n    <key>HEADER_AUTHOR</key>\n    <string>от %@</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/ru.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n    <!-- Title displayed in the navigation bar of the support page. -->\n    <key>SUPPORT_TITLE</key>\n    <string>Поддержка</string>\n\n    <!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n    <key>SUPPORT_EMAIL_SUBJECT</key>\n    <string>%@ %@ – поддержка</string>\n\n    <!-- Title of error message shown when no email accounts are set up on the device. -->\n    <key>NO_EMAIL_ACCOUNTS_TITLE</key>\n    <string>Почтовые аккаунты не настроены.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Добавьте почтовый аккаунт в настройках.</string>\n</dict>\n</plist>"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sk.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>O</string>\n\t<key>CREDITS</key>\n\t<string>Credits</string>\n\t<key>GENERAL</key>\n\t<string>Všeobecné</string>\n\t<key>SUPPORT</key>\n\t<string>Podpora</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Povolené</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Vyp.</string>\n\t<key>ON</key>\n\t<string>Zap.</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Navšíviť stránku</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Máte problémy?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email podpora</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Darovať</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Ak sa vám tento Tweak páčil, prosím darujte nám pár dolárikov.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Developer</string>\n\t<key>DEVELOPERS</key>\n\t<string>Developéri</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Hlavný Developer</string>\n\t<key>DESIGNER</key>\n\t<string>Dizajnér</string>\n\t<key>DESIGNERS</key>\n\t<string>Dizajnéri</string>\n\t<key>ICON</key>\n\t<string>Ikona</string>\n\t<key>ICONS</key>\n\t<string>Ikony</string>\n\t<key>TRANSLATORS</key>\n\t<string>Prekladatelia</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Vložte hodnotu</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sk.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sk.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Verzia %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>%@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sk.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Podpora</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Podpora</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sv.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Om</string>\n\t<key>CREDITS</key>\n\t<string>Medverkande</string>\n\t<key>GENERAL</key>\n\t<string>Allmänt</string>\n\t<key>SUPPORT</key>\n\t<string>Support</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Aktiverad</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Av</string>\n\t<key>ON</key>\n\t<string>På</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Besök webbsidan</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Om du har problem</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>E-Posta support</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Donera</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Vänligen överväg att visa din uppskattning för detta program med en donation.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Utvecklare</string>\n\t<key>DEVELOPERS</key>\n\t<string>Utvecklarna</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Huvud utvecklare</string>\n\t<key>DESIGNER</key>\n\t<string>Designer</string>\n\t<key>DESIGNERS</key>\n\t<string>Designers</string>\n\t<key>ICON</key>\n\t<string>Ikon</string>\n\t<key>ICONS</key>\n\t<string>Ikoner</string>\n\t<key>TRANSLATORS</key>\n\t<string>Översättare</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Ange Värde</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sv.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sv.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Version %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Av %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/sv.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Support</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Support</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/th.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>เกี่ยวกับ</string>\n\t<key>CREDITS</key>\n\t<string>เครดิต</string>\n\t<key>GENERAL</key>\n\t<string>ทั่วไป</string>\n\t<key>SUPPORT</key>\n\t<string>การช่วยเหลือ</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>เปิด</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>ปิดอยู่</string>\n\t<key>ON</key>\n\t<string>เปิดอยู่</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>ชมเว็บไซต์</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>พบปัญหา ?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>ส่งอีเมลขอความช่วยเหลือ</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>ให้ทิป</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>คุณสามารถแสดงความขอบคุณได้โดยการให้ทิปเล็กๆ น้อยๆ</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>นักพัฒนา</string>\n\t<key>DEVELOPERS</key>\n\t<string>ทีมนักพัฒนา</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>หัวหน้านักพัฒนา</string>\n\t<key>DESIGNER</key>\n\t<string>นักออกแบบ</string>\n\t<key>DESIGNERS</key>\n\t<string>ทีมนักออกแบบ</string>\n\t<key>ICON</key>\n\t<string>ผู้ไอคอน</string>\n\t<key>ICONS</key>\n\t<string>ทีมผู้สร้างไอคอน</string>\n\t<key>TRANSLATORS</key>\n\t<string>ทีมผู้แปล</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>ใส่ค่า</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/th.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>เปิดใน…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>โปรแกรมนี้จะถูกติดตั้งจากซอส %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/th.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>เวอร์ชัน %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>โดย %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/th.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>การช่วยเหลือ</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – การช่วยเหลือ</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>ไม่มีบัญชีอีเมลที่ใช้ได้</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>ไปตั้งค่าในแอพ Mail เพื่อเพิ่มบัญชีอีเมล</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/tr.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Hakkında</string>\n\t<key>CREDITS</key>\n\t<string>Katkıda Bulunanlar</string>\n\t<key>GENERAL</key>\n\t<string>Genel</string>\n\t<key>SUPPORT</key>\n\t<string>Destek</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Etkin</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Kapalı</string>\n\t<key>ON</key>\n\t<string>Açık</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Websiteyi ziyaret et</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Sorun Var Mı?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Email Destek</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Bağış</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Lütfen bu tweak için desteğinizi ufak bir bağış ile gösterin.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Geliştirici</string>\n\t<key>DEVELOPERS</key>\n\t<string>Geliştiriciler</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Baş Geliştirici</string>\n\t<key>DESIGNER</key>\n\t<string>Tasarımcı</string>\n\t<key>DESIGNERS</key>\n\t<string>Tasarımcılar</string>\n\t<key>ICON</key>\n\t<string>Simge</string>\n\t<key>ICONS</key>\n\t<string>Simgeler</string>\n\t<key>TRANSLATORS</key>\n\t<string>Çevirmenler</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Bir Değer Girin</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/tr.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Şununla aç…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>Bu paket %@ reposundan indirilecektir.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/tr.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Versiyon %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>%@ tarafından</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/tr.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Destek</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Destek</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>Ayarlanmış mail adresi yok.</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>Mail ayarlarını kullanarak bir mail adresi ekleyin.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/uk.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Про нас</string>\n\t<key>CREDITS</key>\n\t<string>Подяка</string>\n\t<key>GENERAL</key>\n\t<string>Загальні</string>\n\t<key>SUPPORT</key>\n\t<string>Служба підтримки</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Увімкнено</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Вимк.</string>\n\t<key>ON</key>\n\t<string>Увімк.</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Відвідати сайт</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Потрібна допомога?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Служба підтримки</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Підтримати проект</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Будь ласка, зробіть пожертву, якщо ви хочете подякувати нам за це розширення.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Розробник</string>\n\t<key>DEVELOPERS</key>\n\t<string>Розробники</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Провідний розробник</string>\n\t<key>DESIGNER</key>\n\t<string>Дизайнер</string>\n\t<key>DESIGNERS</key>\n\t<string>Дизайнери</string>\n\t<key>ICON</key>\n\t<string>Піктограма</string>\n\t<key>ICONS</key>\n\t<string>Піктограми</string>\n\t<key>TRANSLATORS</key>\n\t<string>Перекладачі</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/uk.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/uk.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Версія %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>%@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/uk.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Служба підтримки</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Служба підтримки</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/vi.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>Về cái tweak này</string>\n\t<key>CREDITS</key>\n\t<string>Khen Ngợi</string>\n\t<key>GENERAL</key>\n\t<string>Cài đặt chung</string>\n\t<key>SUPPORT</key>\n\t<string>Hỗ Trợ</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>Cho Phép</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>Tắt</string>\n\t<key>ON</key>\n\t<string>Bật</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>Truy Cập Trang Web</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>Có Vấn Đề?</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>Hỗ Trợ Bằng Email</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>Quyên Góp</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>Nếu các bạn thích và muốn ủng hộ tweak này, các bạn có thể quyên góp ủng hộ các nhà phát triển để nhiều tweak hơn nữa trong tương lai.</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>Người Phát Triển</string>\n\t<key>DEVELOPERS</key>\n\t<string>Những Người Phát Triển</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>Người Phát Triển Chính</string>\n\t<key>DESIGNER</key>\n\t<string>Người Thiết Kế</string>\n\t<key>DESIGNERS</key>\n\t<string>Những Người Thiết Kế</string>\n\t<key>ICON</key>\n\t<string>Biểu Tượng</string>\n\t<key>ICONS</key>\n\t<string>Những Biểu Tượng</string>\n\t<key>TRANSLATORS</key>\n\t<string>Người Dịch</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>Nhập giá trị</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/vi.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/vi.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>Phiên Bản %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>Bởi %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/vi.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>Hỗ Trợ</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – Hỗ Trợ</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_CN.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>关于</string>\n\t<key>CREDITS</key>\n\t<string>参予人员</string>\n\t<key>GENERAL</key>\n\t<string>通用</string>\n\t<key>SUPPORT</key>\n\t<string>支援</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>激活</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>关闭</string>\n\t<key>ON</key>\n\t<string>打开</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>访问网站</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>遇到问题了？</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>电邮支援</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>捐赠</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>请考虑用捐赠来表达您对此插件的感谢。</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>开发者</string>\n\t<key>DEVELOPERS</key>\n\t<string>开发者</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>主要开发者</string>\n\t<key>DESIGNER</key>\n\t<string>设计者</string>\n\t<key>DESIGNERS</key>\n\t<string>设计者</string>\n\t<key>ICON</key>\n\t<string>图标</string>\n\t<key>ICONS</key>\n\t<string>图标</string>\n\t<key>TRANSLATORS</key>\n\t<string>翻译人员</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_CN.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_CN.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>版本 %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>由 %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_CN.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>支援</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – 支援</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_HK.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>關於</string>\n\t<key>CREDITS</key>\n\t<string>參與人員</string>\n\t<key>GENERAL</key>\n\t<string>一般</string>\n\t<key>SUPPORT</key>\n\t<string>支援</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>啟用</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>關閉</string>\n\t<key>ON</key>\n\t<string>開啟</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>訪問網站</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>遇到問題了？</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>電郵支援</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>捐贈</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>請考慮用捐贈來表達您對此插件的感謝。</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>開發者</string>\n\t<key>DEVELOPERS</key>\n\t<string>開發者</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>主要開發者</string>\n\t<key>DESIGNER</key>\n\t<string>設計者</string>\n\t<key>DESIGNERS</key>\n\t<string>設計者</string>\n\t<key>ICON</key>\n\t<string>圖標</string>\n\t<key>ICONS</key>\n\t<string>圖標</string>\n\t<key>TRANSLATORS</key>\n\t<string>翻譯人員</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_HK.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>Open in…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>This package will be installed from the repository %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_HK.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>版本 %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>由 %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_HK.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>支援</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – 支援</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_TW.lproj/Common.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Buttons leading to, and titles of, sub-sections. -->\n\t<key>ABOUT</key>\n\t<string>關於</string>\n\t<key>CREDITS</key>\n\t<string>參與人員</string>\n\t<key>GENERAL</key>\n\t<string>一般</string>\n\t<key>SUPPORT</key>\n\t<string>支援</string>\n\n\t<!-- Label for switch to enable or disable the tweak. -->\n\t<key>ENABLED</key>\n\t<string>啟用</string>\n\n\t<!-- Label for the state of a switch.-->\n\t<key>OFF</key>\n\t<string>關閉</string>\n\t<key>ON</key>\n\t<string>開啟</string>\n\n\t<!-- Button leading to a website. -->\n\t<key>VISIT_WEBSITE</key>\n\t<string>訪問網站</string>\n\n\t<!-- Heading above the \"Email Support\" button. -->\n\t<key>EMAIL_SUPPORT_HEADER</key>\n\t<string>遇到問題了？</string>\n\n\t<!-- Button leading to a contact form. -->\n\t<key>EMAIL_SUPPORT</key>\n\t<string>電郵支援</string>\n\n\t<!-- Button leading to a donation page. -->\n\t<key>DONATE</key>\n\t<string>捐款贊助</string>\n\n\t<!-- Footer under the donate button. -->\n\t<key>DONATE_FOOTER</key>\n\t<string>請考慮捐款，以對作者表達感謝。</string>\n\n\t<!-- Headings above the credits. -->\n\t<key>DEVELOPER</key>\n\t<string>開發者</string>\n\t<key>DEVELOPERS</key>\n\t<string>開發者</string>\n\t<key>LEAD_DEVELOPER</key>\n\t<string>主要開發者</string>\n\t<key>DESIGNER</key>\n\t<string>設計者</string>\n\t<key>DESIGNERS</key>\n\t<string>設計者</string>\n\t<key>ICON</key>\n\t<string>圖標</string>\n\t<key>ICONS</key>\n\t<string>圖標</string>\n\t<key>TRANSLATORS</key>\n\t<string>翻譯人員</string>\n\n\t<!-- Title of a prompt that allows typing in a value. -->\n\t<key>ENTER_VALUE</key>\n\t<string>輸入數值</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_TW.lproj/PackageCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title of a menu of apps the user can view the package in. -->\n\t<key>OPEN_PACKAGE_IN_TITLE</key>\n\t<string>開啟…</string>\n\n\t<!-- Message displayed below the Open In… title when the package comes from a non-default repository. %@ is the repository URL. -->\n\t<key>OPEN_PACKAGE_IN_REPO_NOTICE</key>\n\t<string>請在「設定」中設定電子郵件帳號 %@.</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_TW.lproj/PackageNameHeaderCell.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- The subheading containing the package version. -->\n\t<key>HEADER_VERSION</key>\n\t<string>版本 %@</string>\n\n\t<!-- The subheading containing the package author. -->\n\t<key>HEADER_AUTHOR</key>\n\t<string>由 %@</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiPrefs.framework/zh_TW.lproj/Support.strings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<!-- Title displayed in the navigation bar of the support page. -->\n\t<key>SUPPORT_TITLE</key>\n\t<string>支援</string>\n\n\t<!-- The subject used when sending a support email. %@ %@ is the package name and version respectively. -->\n\t<key>SUPPORT_EMAIL_SUBJECT</key>\n\t<string>%@ %@ – 支援</string>\n\n\t<!-- Title of error message shown when no email accounts are set up on the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_TITLE</key>\n\t<string>電子郵件帳號未設定</string>\n\n\t<!-- Explanation of how to add an email account to the device. -->\n\t<key>NO_EMAIL_ACCOUNTS_BODY</key>\n\t<string>請在「設定」中設定電子郵件帳號</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiUI.framework/Headers/CepheiUI-Swift.h",
    "content": "// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n#ifndef CEPHEIUI_SWIFT_H\n#define CEPHEIUI_SWIFT_H\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wgcc-compat\"\n\n#if !defined(__has_include)\n# define __has_include(x) 0\n#endif\n#if !defined(__has_attribute)\n# define __has_attribute(x) 0\n#endif\n#if !defined(__has_feature)\n# define __has_feature(x) 0\n#endif\n#if !defined(__has_warning)\n# define __has_warning(x) 0\n#endif\n\n#if __has_include(<swift/objc-prologue.h>)\n# include <swift/objc-prologue.h>\n#endif\n\n#pragma clang diagnostic ignored \"-Wduplicate-method-match\"\n#pragma clang diagnostic ignored \"-Wauto-import\"\n#if defined(__OBJC__)\n#include <Foundation/Foundation.h>\n#endif\n#if defined(__cplusplus)\n#include <cstdint>\n#include <cstddef>\n#include <cstdbool>\n#else\n#include <stdint.h>\n#include <stddef.h>\n#include <stdbool.h>\n#endif\n\n#if !defined(SWIFT_TYPEDEFS)\n# define SWIFT_TYPEDEFS 1\n# if __has_include(<uchar.h>)\n#  include <uchar.h>\n# elif !defined(__cplusplus)\ntypedef uint_least16_t char16_t;\ntypedef uint_least32_t char32_t;\n# endif\ntypedef float swift_float2  __attribute__((__ext_vector_type__(2)));\ntypedef float swift_float3  __attribute__((__ext_vector_type__(3)));\ntypedef float swift_float4  __attribute__((__ext_vector_type__(4)));\ntypedef double swift_double2  __attribute__((__ext_vector_type__(2)));\ntypedef double swift_double3  __attribute__((__ext_vector_type__(3)));\ntypedef double swift_double4  __attribute__((__ext_vector_type__(4)));\ntypedef int swift_int2  __attribute__((__ext_vector_type__(2)));\ntypedef int swift_int3  __attribute__((__ext_vector_type__(3)));\ntypedef int swift_int4  __attribute__((__ext_vector_type__(4)));\ntypedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));\ntypedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));\ntypedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));\n#endif\n\n#if !defined(SWIFT_PASTE)\n# define SWIFT_PASTE_HELPER(x, y) x##y\n# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)\n#endif\n#if !defined(SWIFT_METATYPE)\n# define SWIFT_METATYPE(X) Class\n#endif\n#if !defined(SWIFT_CLASS_PROPERTY)\n# if __has_feature(objc_class_property)\n#  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__\n# else\n#  define SWIFT_CLASS_PROPERTY(...)\n# endif\n#endif\n\n#if __has_attribute(objc_runtime_name)\n# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))\n#else\n# define SWIFT_RUNTIME_NAME(X)\n#endif\n#if __has_attribute(swift_name)\n# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))\n#else\n# define SWIFT_COMPILE_NAME(X)\n#endif\n#if __has_attribute(objc_method_family)\n# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))\n#else\n# define SWIFT_METHOD_FAMILY(X)\n#endif\n#if __has_attribute(noescape)\n# define SWIFT_NOESCAPE __attribute__((noescape))\n#else\n# define SWIFT_NOESCAPE\n#endif\n#if __has_attribute(ns_consumed)\n# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))\n#else\n# define SWIFT_RELEASES_ARGUMENT\n#endif\n#if __has_attribute(warn_unused_result)\n# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))\n#else\n# define SWIFT_WARN_UNUSED_RESULT\n#endif\n#if __has_attribute(noreturn)\n# define SWIFT_NORETURN __attribute__((noreturn))\n#else\n# define SWIFT_NORETURN\n#endif\n#if !defined(SWIFT_CLASS_EXTRA)\n# define SWIFT_CLASS_EXTRA\n#endif\n#if !defined(SWIFT_PROTOCOL_EXTRA)\n# define SWIFT_PROTOCOL_EXTRA\n#endif\n#if !defined(SWIFT_ENUM_EXTRA)\n# define SWIFT_ENUM_EXTRA\n#endif\n#if !defined(SWIFT_CLASS)\n# if __has_attribute(objc_subclassing_restricted)\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# else\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# endif\n#endif\n#if !defined(SWIFT_RESILIENT_CLASS)\n# if __has_attribute(objc_class_stub)\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# else\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# endif\n#endif\n\n#if !defined(SWIFT_PROTOCOL)\n# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n#endif\n\n#if !defined(SWIFT_EXTENSION)\n# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)\n#endif\n\n#if !defined(OBJC_DESIGNATED_INITIALIZER)\n# if __has_attribute(objc_designated_initializer)\n#  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))\n# else\n#  define OBJC_DESIGNATED_INITIALIZER\n# endif\n#endif\n#if !defined(SWIFT_ENUM_ATTR)\n# if defined(__has_attribute) && __has_attribute(enum_extensibility)\n#  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))\n# else\n#  define SWIFT_ENUM_ATTR(_extensibility)\n# endif\n#endif\n#if !defined(SWIFT_ENUM)\n# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# if __has_feature(generalized_swift_name)\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# else\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)\n# endif\n#endif\n#if !defined(SWIFT_UNAVAILABLE)\n# define SWIFT_UNAVAILABLE __attribute__((unavailable))\n#endif\n#if !defined(SWIFT_UNAVAILABLE_MSG)\n# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))\n#endif\n#if !defined(SWIFT_AVAILABILITY)\n# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))\n#endif\n#if !defined(SWIFT_WEAK_IMPORT)\n# define SWIFT_WEAK_IMPORT __attribute__((weak_import))\n#endif\n#if !defined(SWIFT_DEPRECATED)\n# define SWIFT_DEPRECATED __attribute__((deprecated))\n#endif\n#if !defined(SWIFT_DEPRECATED_MSG)\n# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))\n#endif\n#if __has_feature(attribute_diagnose_if_objc)\n# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, \"warning\")))\n#else\n# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)\n#endif\n#if defined(__OBJC__)\n#if !defined(IBSegueAction)\n# define IBSegueAction\n#endif\n#endif\n#if !defined(SWIFT_EXTERN)\n# if defined(__cplusplus)\n#  define SWIFT_EXTERN extern \"C\"\n# else\n#  define SWIFT_EXTERN extern\n# endif\n#endif\n#if !defined(SWIFT_CALL)\n# define SWIFT_CALL __attribute__((swiftcall))\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT noexcept\n#endif\n#else\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT \n#endif\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_CXX_INT_DEFINED)\n#define SWIFT_CXX_INT_DEFINED\nnamespace swift {\nusing Int = ptrdiff_t;\nusing UInt = size_t;\n}\n#endif\n#endif\n#if defined(__OBJC__)\n#if __has_feature(modules)\n#if __has_warning(\"-Watimport-in-framework-header\")\n#pragma clang diagnostic ignored \"-Watimport-in-framework-header\"\n#endif\n@import Foundation;\n@import UIKit;\n#endif\n\n#endif\n#pragma clang diagnostic ignored \"-Wproperty-attribute-mismatch\"\n#pragma clang diagnostic ignored \"-Wduplicate-method-arg\"\n#if __has_warning(\"-Wpragma-clang-attribute\")\n# pragma clang diagnostic ignored \"-Wpragma-clang-attribute\"\n#endif\n#pragma clang diagnostic ignored \"-Wunknown-pragmas\"\n#pragma clang diagnostic ignored \"-Wnullability\"\n#pragma clang diagnostic ignored \"-Wdollar-in-identifier-extension\"\n\n#if __has_attribute(external_source_symbol)\n# pragma push_macro(\"any\")\n# undef any\n# pragma clang attribute push(__attribute__((external_source_symbol(language=\"Swift\", defined_in=\"CepheiUI\",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))\n# pragma pop_macro(\"any\")\n#endif\n\n#if defined(__OBJC__)\n@class NSNumber;\n\n@interface UIColor (SWIFT_EXTENSION(CepheiUI))\n- (nullable instancetype)hb_initWithPropertyListValue:(id _Nullable)propertyListValue SWIFT_METHOD_FAMILY(init);\n+ (UIColor * _Nullable)hb_colorWithPropertyListValue:(id _Nullable)propertyListValue SWIFT_WARN_UNUSED_RESULT;\n- (nonnull instancetype)hb_initWithInterfaceStyleVariants:(NSDictionary<NSNumber *, UIColor *> * _Nonnull)variants SWIFT_METHOD_FAMILY(init);\n+ (UIColor * _Nonnull)hb_colorWithInterfaceStyleVariants:(NSDictionary<NSNumber *, UIColor *> * _Nonnull)variants SWIFT_WARN_UNUSED_RESULT;\n- (UIColor * _Nonnull)hb_colorWithDarkInterfaceVariant SWIFT_WARN_UNUSED_RESULT;\n- (UIColor * _Nonnull)hb_colorWithDarkInterfaceVariant:(UIColor * _Nullable)darkColor SWIFT_WARN_UNUSED_RESULT;\n@end\n\n#endif\n#if defined(__cplusplus)\n#endif\n#if __has_attribute(external_source_symbol)\n# pragma clang attribute pop\n#endif\n#pragma clang diagnostic pop\n#endif\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiUI.framework/Headers/CepheiUI.h",
    "content": "#import \"CepheiUI-Swift.h\"\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiUI.framework/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>English</string>\n\t<key>CFBundleExecutable</key>\n\t<string>CepheiUI</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>ws.hbang.common.ui</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>CepheiUI</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1.0</string>\n\t<key>DTPlatformName</key>\n\t<string>iphoneos</string>\n\t<key>HBPackageIdentifier</key>\n\t<string>ws.hbang.common</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "theos/lib/iphone/roothide/CepheiUI.framework/Modules/module.modulemap",
    "content": "framework module CepheiUI {\n\tumbrella header \"CepheiUI.h\"\n\n\texport *\n\tmodule * { export * }\n}\n\nmodule CepheiUI.Swift {\n\theader \"CepheiUI-Swift.h\"\n\trequires objc\n}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Headers/Comet-Swift.h",
    "content": "#if 0\n#elif defined(__arm64e__) && __arm64e__\n// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n#ifndef COMET_SWIFT_H\n#define COMET_SWIFT_H\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wgcc-compat\"\n\n#if !defined(__has_include)\n# define __has_include(x) 0\n#endif\n#if !defined(__has_attribute)\n# define __has_attribute(x) 0\n#endif\n#if !defined(__has_feature)\n# define __has_feature(x) 0\n#endif\n#if !defined(__has_warning)\n# define __has_warning(x) 0\n#endif\n\n#if __has_include(<swift/objc-prologue.h>)\n# include <swift/objc-prologue.h>\n#endif\n\n#pragma clang diagnostic ignored \"-Wduplicate-method-match\"\n#pragma clang diagnostic ignored \"-Wauto-import\"\n#if defined(__OBJC__)\n#include <Foundation/Foundation.h>\n#endif\n#if defined(__cplusplus)\n#include <cstdint>\n#include <cstddef>\n#include <cstdbool>\n#else\n#include <stdint.h>\n#include <stddef.h>\n#include <stdbool.h>\n#endif\n\n#if !defined(SWIFT_TYPEDEFS)\n# define SWIFT_TYPEDEFS 1\n# if __has_include(<uchar.h>)\n#  include <uchar.h>\n# elif !defined(__cplusplus)\ntypedef uint_least16_t char16_t;\ntypedef uint_least32_t char32_t;\n# endif\ntypedef float swift_float2  __attribute__((__ext_vector_type__(2)));\ntypedef float swift_float3  __attribute__((__ext_vector_type__(3)));\ntypedef float swift_float4  __attribute__((__ext_vector_type__(4)));\ntypedef double swift_double2  __attribute__((__ext_vector_type__(2)));\ntypedef double swift_double3  __attribute__((__ext_vector_type__(3)));\ntypedef double swift_double4  __attribute__((__ext_vector_type__(4)));\ntypedef int swift_int2  __attribute__((__ext_vector_type__(2)));\ntypedef int swift_int3  __attribute__((__ext_vector_type__(3)));\ntypedef int swift_int4  __attribute__((__ext_vector_type__(4)));\ntypedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));\ntypedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));\ntypedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));\n#endif\n\n#if !defined(SWIFT_PASTE)\n# define SWIFT_PASTE_HELPER(x, y) x##y\n# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)\n#endif\n#if !defined(SWIFT_METATYPE)\n# define SWIFT_METATYPE(X) Class\n#endif\n#if !defined(SWIFT_CLASS_PROPERTY)\n# if __has_feature(objc_class_property)\n#  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__\n# else\n#  define SWIFT_CLASS_PROPERTY(...)\n# endif\n#endif\n\n#if __has_attribute(objc_runtime_name)\n# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))\n#else\n# define SWIFT_RUNTIME_NAME(X)\n#endif\n#if __has_attribute(swift_name)\n# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))\n#else\n# define SWIFT_COMPILE_NAME(X)\n#endif\n#if __has_attribute(objc_method_family)\n# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))\n#else\n# define SWIFT_METHOD_FAMILY(X)\n#endif\n#if __has_attribute(noescape)\n# define SWIFT_NOESCAPE __attribute__((noescape))\n#else\n# define SWIFT_NOESCAPE\n#endif\n#if __has_attribute(ns_consumed)\n# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))\n#else\n# define SWIFT_RELEASES_ARGUMENT\n#endif\n#if __has_attribute(warn_unused_result)\n# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))\n#else\n# define SWIFT_WARN_UNUSED_RESULT\n#endif\n#if __has_attribute(noreturn)\n# define SWIFT_NORETURN __attribute__((noreturn))\n#else\n# define SWIFT_NORETURN\n#endif\n#if !defined(SWIFT_CLASS_EXTRA)\n# define SWIFT_CLASS_EXTRA\n#endif\n#if !defined(SWIFT_PROTOCOL_EXTRA)\n# define SWIFT_PROTOCOL_EXTRA\n#endif\n#if !defined(SWIFT_ENUM_EXTRA)\n# define SWIFT_ENUM_EXTRA\n#endif\n#if !defined(SWIFT_CLASS)\n# if __has_attribute(objc_subclassing_restricted)\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# else\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# endif\n#endif\n#if !defined(SWIFT_RESILIENT_CLASS)\n# if __has_attribute(objc_class_stub)\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# else\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# endif\n#endif\n\n#if !defined(SWIFT_PROTOCOL)\n# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n#endif\n\n#if !defined(SWIFT_EXTENSION)\n# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)\n#endif\n\n#if !defined(OBJC_DESIGNATED_INITIALIZER)\n# if __has_attribute(objc_designated_initializer)\n#  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))\n# else\n#  define OBJC_DESIGNATED_INITIALIZER\n# endif\n#endif\n#if !defined(SWIFT_ENUM_ATTR)\n# if defined(__has_attribute) && __has_attribute(enum_extensibility)\n#  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))\n# else\n#  define SWIFT_ENUM_ATTR(_extensibility)\n# endif\n#endif\n#if !defined(SWIFT_ENUM)\n# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# if __has_feature(generalized_swift_name)\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# else\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)\n# endif\n#endif\n#if !defined(SWIFT_UNAVAILABLE)\n# define SWIFT_UNAVAILABLE __attribute__((unavailable))\n#endif\n#if !defined(SWIFT_UNAVAILABLE_MSG)\n# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))\n#endif\n#if !defined(SWIFT_AVAILABILITY)\n# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))\n#endif\n#if !defined(SWIFT_WEAK_IMPORT)\n# define SWIFT_WEAK_IMPORT __attribute__((weak_import))\n#endif\n#if !defined(SWIFT_DEPRECATED)\n# define SWIFT_DEPRECATED __attribute__((deprecated))\n#endif\n#if !defined(SWIFT_DEPRECATED_MSG)\n# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))\n#endif\n#if __has_feature(attribute_diagnose_if_objc)\n# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, \"warning\")))\n#else\n# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)\n#endif\n#if defined(__OBJC__)\n#if !defined(IBSegueAction)\n# define IBSegueAction\n#endif\n#endif\n#if !defined(SWIFT_EXTERN)\n# if defined(__cplusplus)\n#  define SWIFT_EXTERN extern \"C\"\n# else\n#  define SWIFT_EXTERN extern\n# endif\n#endif\n#if !defined(SWIFT_CALL)\n# define SWIFT_CALL __attribute__((swiftcall))\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT noexcept\n#endif\n#else\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT \n#endif\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_CXX_INT_DEFINED)\n#define SWIFT_CXX_INT_DEFINED\nnamespace swift {\nusing Int = ptrdiff_t;\nusing UInt = size_t;\n}\n#endif\n#endif\n#if defined(__OBJC__)\n#if __has_feature(modules)\n#if __has_warning(\"-Watimport-in-framework-header\")\n#pragma clang diagnostic ignored \"-Watimport-in-framework-header\"\n#endif\n@import UIKit;\n#endif\n\n#endif\n#pragma clang diagnostic ignored \"-Wproperty-attribute-mismatch\"\n#pragma clang diagnostic ignored \"-Wduplicate-method-arg\"\n#if __has_warning(\"-Wpragma-clang-attribute\")\n# pragma clang diagnostic ignored \"-Wpragma-clang-attribute\"\n#endif\n#pragma clang diagnostic ignored \"-Wunknown-pragmas\"\n#pragma clang diagnostic ignored \"-Wnullability\"\n#pragma clang diagnostic ignored \"-Wdollar-in-identifier-extension\"\n\n#if __has_attribute(external_source_symbol)\n# pragma push_macro(\"any\")\n# undef any\n# pragma clang attribute push(__attribute__((external_source_symbol(language=\"Swift\", defined_in=\"Comet\",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))\n# pragma pop_macro(\"any\")\n#endif\n\n#if defined(__OBJC__)\n\n@class NSString;\n@class NSBundle;\n@class NSCoder;\n\nSWIFT_CLASS(\"_TtC5Comet16CMViewController\")\n@interface CMViewController : UIViewController\n- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;\n- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;\n@end\n\n\n@interface CMViewController (SWIFT_EXTENSION(Comet))\n- (void)setRootController:(UIViewController * _Nullable)controller;\n- (void)setParentController:(UIViewController * _Nullable)controller;\n- (void)setSpecifier:(id _Nullable)specifier;\n@end\n\n\n\n#endif\n#if defined(__cplusplus)\n#endif\n#if __has_attribute(external_source_symbol)\n# pragma clang attribute pop\n#endif\n#pragma clang diagnostic pop\n#endif\n\n#elif defined(__arm64__) && __arm64__\n// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n#ifndef COMET_SWIFT_H\n#define COMET_SWIFT_H\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wgcc-compat\"\n\n#if !defined(__has_include)\n# define __has_include(x) 0\n#endif\n#if !defined(__has_attribute)\n# define __has_attribute(x) 0\n#endif\n#if !defined(__has_feature)\n# define __has_feature(x) 0\n#endif\n#if !defined(__has_warning)\n# define __has_warning(x) 0\n#endif\n\n#if __has_include(<swift/objc-prologue.h>)\n# include <swift/objc-prologue.h>\n#endif\n\n#pragma clang diagnostic ignored \"-Wduplicate-method-match\"\n#pragma clang diagnostic ignored \"-Wauto-import\"\n#if defined(__OBJC__)\n#include <Foundation/Foundation.h>\n#endif\n#if defined(__cplusplus)\n#include <cstdint>\n#include <cstddef>\n#include <cstdbool>\n#else\n#include <stdint.h>\n#include <stddef.h>\n#include <stdbool.h>\n#endif\n\n#if !defined(SWIFT_TYPEDEFS)\n# define SWIFT_TYPEDEFS 1\n# if __has_include(<uchar.h>)\n#  include <uchar.h>\n# elif !defined(__cplusplus)\ntypedef uint_least16_t char16_t;\ntypedef uint_least32_t char32_t;\n# endif\ntypedef float swift_float2  __attribute__((__ext_vector_type__(2)));\ntypedef float swift_float3  __attribute__((__ext_vector_type__(3)));\ntypedef float swift_float4  __attribute__((__ext_vector_type__(4)));\ntypedef double swift_double2  __attribute__((__ext_vector_type__(2)));\ntypedef double swift_double3  __attribute__((__ext_vector_type__(3)));\ntypedef double swift_double4  __attribute__((__ext_vector_type__(4)));\ntypedef int swift_int2  __attribute__((__ext_vector_type__(2)));\ntypedef int swift_int3  __attribute__((__ext_vector_type__(3)));\ntypedef int swift_int4  __attribute__((__ext_vector_type__(4)));\ntypedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));\ntypedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));\ntypedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));\n#endif\n\n#if !defined(SWIFT_PASTE)\n# define SWIFT_PASTE_HELPER(x, y) x##y\n# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)\n#endif\n#if !defined(SWIFT_METATYPE)\n# define SWIFT_METATYPE(X) Class\n#endif\n#if !defined(SWIFT_CLASS_PROPERTY)\n# if __has_feature(objc_class_property)\n#  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__\n# else\n#  define SWIFT_CLASS_PROPERTY(...)\n# endif\n#endif\n\n#if __has_attribute(objc_runtime_name)\n# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))\n#else\n# define SWIFT_RUNTIME_NAME(X)\n#endif\n#if __has_attribute(swift_name)\n# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))\n#else\n# define SWIFT_COMPILE_NAME(X)\n#endif\n#if __has_attribute(objc_method_family)\n# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))\n#else\n# define SWIFT_METHOD_FAMILY(X)\n#endif\n#if __has_attribute(noescape)\n# define SWIFT_NOESCAPE __attribute__((noescape))\n#else\n# define SWIFT_NOESCAPE\n#endif\n#if __has_attribute(ns_consumed)\n# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))\n#else\n# define SWIFT_RELEASES_ARGUMENT\n#endif\n#if __has_attribute(warn_unused_result)\n# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))\n#else\n# define SWIFT_WARN_UNUSED_RESULT\n#endif\n#if __has_attribute(noreturn)\n# define SWIFT_NORETURN __attribute__((noreturn))\n#else\n# define SWIFT_NORETURN\n#endif\n#if !defined(SWIFT_CLASS_EXTRA)\n# define SWIFT_CLASS_EXTRA\n#endif\n#if !defined(SWIFT_PROTOCOL_EXTRA)\n# define SWIFT_PROTOCOL_EXTRA\n#endif\n#if !defined(SWIFT_ENUM_EXTRA)\n# define SWIFT_ENUM_EXTRA\n#endif\n#if !defined(SWIFT_CLASS)\n# if __has_attribute(objc_subclassing_restricted)\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# else\n#  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n#  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA\n# endif\n#endif\n#if !defined(SWIFT_RESILIENT_CLASS)\n# if __has_attribute(objc_class_stub)\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# else\n#  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)\n#  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)\n# endif\n#endif\n\n#if !defined(SWIFT_PROTOCOL)\n# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA\n#endif\n\n#if !defined(SWIFT_EXTENSION)\n# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)\n#endif\n\n#if !defined(OBJC_DESIGNATED_INITIALIZER)\n# if __has_attribute(objc_designated_initializer)\n#  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))\n# else\n#  define OBJC_DESIGNATED_INITIALIZER\n# endif\n#endif\n#if !defined(SWIFT_ENUM_ATTR)\n# if defined(__has_attribute) && __has_attribute(enum_extensibility)\n#  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))\n# else\n#  define SWIFT_ENUM_ATTR(_extensibility)\n# endif\n#endif\n#if !defined(SWIFT_ENUM)\n# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# if __has_feature(generalized_swift_name)\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type\n# else\n#  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)\n# endif\n#endif\n#if !defined(SWIFT_UNAVAILABLE)\n# define SWIFT_UNAVAILABLE __attribute__((unavailable))\n#endif\n#if !defined(SWIFT_UNAVAILABLE_MSG)\n# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))\n#endif\n#if !defined(SWIFT_AVAILABILITY)\n# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))\n#endif\n#if !defined(SWIFT_WEAK_IMPORT)\n# define SWIFT_WEAK_IMPORT __attribute__((weak_import))\n#endif\n#if !defined(SWIFT_DEPRECATED)\n# define SWIFT_DEPRECATED __attribute__((deprecated))\n#endif\n#if !defined(SWIFT_DEPRECATED_MSG)\n# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))\n#endif\n#if __has_feature(attribute_diagnose_if_objc)\n# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, \"warning\")))\n#else\n# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)\n#endif\n#if defined(__OBJC__)\n#if !defined(IBSegueAction)\n# define IBSegueAction\n#endif\n#endif\n#if !defined(SWIFT_EXTERN)\n# if defined(__cplusplus)\n#  define SWIFT_EXTERN extern \"C\"\n# else\n#  define SWIFT_EXTERN extern\n# endif\n#endif\n#if !defined(SWIFT_CALL)\n# define SWIFT_CALL __attribute__((swiftcall))\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT noexcept\n#endif\n#else\n#if !defined(SWIFT_NOEXCEPT)\n# define SWIFT_NOEXCEPT \n#endif\n#endif\n#if defined(__cplusplus)\n#if !defined(SWIFT_CXX_INT_DEFINED)\n#define SWIFT_CXX_INT_DEFINED\nnamespace swift {\nusing Int = ptrdiff_t;\nusing UInt = size_t;\n}\n#endif\n#endif\n#if defined(__OBJC__)\n#if __has_feature(modules)\n#if __has_warning(\"-Watimport-in-framework-header\")\n#pragma clang diagnostic ignored \"-Watimport-in-framework-header\"\n#endif\n@import UIKit;\n#endif\n\n#endif\n#pragma clang diagnostic ignored \"-Wproperty-attribute-mismatch\"\n#pragma clang diagnostic ignored \"-Wduplicate-method-arg\"\n#if __has_warning(\"-Wpragma-clang-attribute\")\n# pragma clang diagnostic ignored \"-Wpragma-clang-attribute\"\n#endif\n#pragma clang diagnostic ignored \"-Wunknown-pragmas\"\n#pragma clang diagnostic ignored \"-Wnullability\"\n#pragma clang diagnostic ignored \"-Wdollar-in-identifier-extension\"\n\n#if __has_attribute(external_source_symbol)\n# pragma push_macro(\"any\")\n# undef any\n# pragma clang attribute push(__attribute__((external_source_symbol(language=\"Swift\", defined_in=\"Comet\",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))\n# pragma pop_macro(\"any\")\n#endif\n\n#if defined(__OBJC__)\n\n@class NSString;\n@class NSBundle;\n@class NSCoder;\n\nSWIFT_CLASS(\"_TtC5Comet16CMViewController\")\n@interface CMViewController : UIViewController\n- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;\n- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;\n@end\n\n\n@interface CMViewController (SWIFT_EXTENSION(Comet))\n- (void)setRootController:(UIViewController * _Nullable)controller;\n- (void)setParentController:(UIViewController * _Nullable)controller;\n- (void)setSpecifier:(id _Nullable)specifier;\n@end\n\n\n\n#endif\n#if defined(__cplusplus)\n#endif\n#if __has_attribute(external_source_symbol)\n# pragma clang attribute pop\n#endif\n#pragma clang diagnostic pop\n#endif\n\n#else\n#error unsupported Swift architecture\n#endif\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Headers/Comet.h",
    "content": "#import <Foundation/Foundation.h>\n\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/Comet.swiftmodule/arm64-apple-ios.abi.json",
    "content": "{\n  \"ABIRoot\": {\n    \"kind\": \"Root\",\n    \"name\": \"TopLevel\",\n    \"printedName\": \"TopLevel\",\n    \"children\": [\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerListViewRow\",\n        \"printedName\": \"AppPickerListViewRow\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"app\",\n            \"printedName\": \"app\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppModel\",\n                \"printedName\": \"Comet.AppPicker.AppModel\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvp\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 0,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvg\",\n                \"mangledName\": \"$s5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"isSelected\",\n            \"printedName\": \"isSelected\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV10isSelectedSbvp\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV10isSelectedSbvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 1,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV10isSelectedSbvg\",\n                \"mangledName\": \"$s5Comet20AppPickerListViewRowV10isSelectedSbvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet20AppPickerListViewRowV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"checkmarkView\",\n            \"printedName\": \"checkmarkView(isSelected:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV09checkmarkE010isSelectedQrSb_tF\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV09checkmarkE010isSelectedQrSb_tF\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(app:isSelected:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerListViewRow\",\n                \"printedName\": \"Comet.AppPickerListViewRow\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppModel\",\n                \"printedName\": \"Comet.AppPicker.AppModel\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV3app10isSelectedAcA0bC0V0B5ModelV_Sbtcfc\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV3app10isSelectedAcA0bC0V0B5ModelV_Sbtcfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet20AppPickerListViewRowV\",\n        \"mangledName\": \"$s5Comet20AppPickerListViewRowV\",\n        \"moduleName\": \"Comet\",\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerListViewRow_Previews\",\n        \"printedName\": \"AppPickerListViewRow_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerListViewRow_Previews\",\n                \"printedName\": \"Comet.AppPickerListViewRow_Previews\",\n                \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV\",\n        \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"UIKit.UIImage\",\n        \"printedName\": \"UIKit.UIImage\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Copy\",\n        \"printedName\": \"Copy\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"respring\",\n            \"printedName\": \"respring\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO8respringSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO8respringSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO8respringSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO8respringSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO8respringSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO8respringSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO8respringSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO8respringSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"search\",\n            \"printedName\": \"search\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO6searchSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO6searchSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6searchSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO6searchSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6searchSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO6searchSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6searchSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO6searchSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"loadingApplications\",\n            \"printedName\": \"loadingApplications\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectAll\",\n            \"printedName\": \"selectAll\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO9selectAllSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO9selectAllSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO9selectAllSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO9selectAllSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO9selectAllSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO9selectAllSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO9selectAllSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO9selectAllSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"unselectAll\",\n            \"printedName\": \"unselectAll\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO11unselectAllSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO11unselectAllSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO11unselectAllSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO11unselectAllSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"app\",\n            \"printedName\": \"app\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO3appSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO3appSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO3appSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO3appSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO3appSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO3appSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO3appSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO3appSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"apps\",\n            \"printedName\": \"apps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO4appsSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO4appsSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4appsSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO4appsSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4appsSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO4appsSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4appsSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO4appsSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"user\",\n            \"printedName\": \"user\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO4userSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO4userSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4userSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO4userSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4userSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO4userSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4userSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO4userSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"system\",\n            \"printedName\": \"system\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO6systemSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO6systemSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6systemSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO6systemSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6systemSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO6systemSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6systemSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO6systemSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"allApps\",\n            \"printedName\": \"allApps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO7allAppsSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO7allAppsSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO7allAppsSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO7allAppsSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO7allAppsSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO7allAppsSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO7allAppsSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO7allAppsSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Enum\",\n        \"usr\": \"s:5Comet4CopyO\",\n        \"mangledName\": \"$s5Comet4CopyO\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ],\n        \"isEnumExhaustive\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"ApplicationWorkspaceInterface\",\n        \"printedName\": \"ApplicationWorkspaceInterface\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loadApplicationsPublisher\",\n            \"printedName\": \"loadApplicationsPublisher()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Future\",\n                \"printedName\": \"Combine.Future<[Comet.ApplicationWorkspace.ApplicationProxy], Swift.Never>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ],\n                \"usr\": \"s:7Combine6FutureC\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Comet.ApplicationWorkspaceInterface>\",\n            \"sugared_genericSig\": \"<Self where Self : Comet.ApplicationWorkspaceInterface>\",\n            \"protocolReq\": true,\n            \"reqNewWitnessTableEntry\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Protocol\",\n        \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\",\n        \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"ApplicationWorkspace\",\n        \"printedName\": \"ApplicationWorkspace\",\n        \"children\": [\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"ApplicationProxy\",\n            \"printedName\": \"ApplicationProxy\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"id\",\n                \"printedName\": \"id\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvp\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 0,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvg\",\n                    \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"displayName\",\n                \"printedName\": \"displayName\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvp\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 1,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvg\",\n                    \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"isSystem\",\n                \"printedName\": \"isSystem\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvp\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 2,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Bool\",\n                        \"printedName\": \"Swift.Bool\",\n                        \"usr\": \"s:Sb\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvg\",\n                    \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(id:displayName:isSystem:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2id11displayName8isSystemAESS_SSSbtcfc\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2id11displayName8isSystemAESS_SSSbtcfc\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(from:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Decoder\",\n                    \"printedName\": \"Swift.Decoder\",\n                    \"usr\": \"s:s7DecoderP\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV4fromAEs7Decoder_p_tKcfc\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV4fromAEs7Decoder_p_tKcfc\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"throwing\": true,\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"encode\",\n                \"printedName\": \"encode(to:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Encoder\",\n                    \"printedName\": \"Swift.Encoder\",\n                    \"usr\": \"s:s7EncoderP\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV6encode2toys7Encoder_p_tKF\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV6encode2toys7Encoder_p_tKF\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"throwing\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"==\",\n                \"printedName\": \"==(_:_:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2eeoiySbAE_AEtFZ\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2eeoiySbAE_AEtFZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Struct\",\n            \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\",\n            \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV\",\n            \"moduleName\": \"Comet\",\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Decodable\",\n                \"printedName\": \"Decodable\",\n                \"usr\": \"s:Se\",\n                \"mangledName\": \"$sSe\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Encodable\",\n                \"printedName\": \"Encodable\",\n                \"usr\": \"s:SE\",\n                \"mangledName\": \"$sSE\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Equatable\",\n                \"printedName\": \"Equatable\",\n                \"usr\": \"s:SQ\",\n                \"mangledName\": \"$sSQ\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Identifiable\",\n                \"printedName\": \"Identifiable\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeWitness\",\n                    \"name\": \"ID\",\n                    \"printedName\": \"ID\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ]\n                  }\n                ],\n                \"usr\": \"s:s12IdentifiableP\",\n                \"mangledName\": \"$ss12IdentifiableP\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Sendable\",\n                \"printedName\": \"Sendable\",\n                \"usr\": \"s:s8SendableP\",\n                \"mangledName\": \"$ss8SendableP\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loadApplicationsPublisher\",\n            \"printedName\": \"loadApplicationsPublisher()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Future\",\n                \"printedName\": \"Combine.Future<[Comet.ApplicationWorkspace.ApplicationProxy], Swift.Never>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ],\n                \"usr\": \"s:7Combine6FutureC\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet20ApplicationWorkspaceC25loadApplicationsPublisher7Combine6FutureCySayAC0B5ProxyVGs5NeverOGyF\",\n            \"mangledName\": \"$s5Comet20ApplicationWorkspaceC25loadApplicationsPublisher7Combine6FutureCySayAC0B5ProxyVGs5NeverOGyF\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"ApplicationWorkspace\",\n                \"printedName\": \"Comet.ApplicationWorkspace\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet20ApplicationWorkspaceCACycfc\",\n            \"mangledName\": \"$s5Comet20ApplicationWorkspaceCACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"s:5Comet20ApplicationWorkspaceC\",\n        \"mangledName\": \"$s5Comet20ApplicationWorkspaceC\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Final\",\n          \"AccessControl\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ObservableObject\",\n            \"printedName\": \"ObservableObject\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"ObjectWillChangePublisher\",\n                \"printedName\": \"ObjectWillChangePublisher\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ObservableObjectPublisher\",\n                    \"printedName\": \"Combine.ObservableObjectPublisher\",\n                    \"usr\": \"s:7Combine25ObservableObjectPublisherC\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7Combine16ObservableObjectP\",\n            \"mangledName\": \"$s7Combine16ObservableObjectP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ApplicationWorkspaceInterface\",\n            \"printedName\": \"ApplicationWorkspaceInterface\",\n            \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\",\n            \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"RespringButton\",\n        \"printedName\": \"RespringButton\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"RespringButton\",\n                \"printedName\": \"Comet.RespringButton\",\n                \"usr\": \"s:5Comet14RespringButtonV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet14RespringButtonVACycfc\",\n            \"mangledName\": \"$s5Comet14RespringButtonVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"AccessControl\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14RespringButtonV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet14RespringButtonV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14RespringButtonV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet14RespringButtonV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet14RespringButtonV\",\n        \"mangledName\": \"$s5Comet14RespringButtonV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"RespringButton_Previews\",\n        \"printedName\": \"RespringButton_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23RespringButton_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet23RespringButton_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23RespringButton_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet23RespringButton_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"RespringButton_Previews\",\n                \"printedName\": \"Comet.RespringButton_Previews\",\n                \"usr\": \"s:5Comet23RespringButton_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet23RespringButton_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet23RespringButton_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet23RespringButton_PreviewsV\",\n        \"mangledName\": \"$s5Comet23RespringButton_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Keys\",\n        \"printedName\": \"Keys\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"appCache\",\n            \"printedName\": \"appCache\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4KeysO8appCacheSSvpZ\",\n            \"mangledName\": \"$s5Comet4KeysO8appCacheSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4KeysO8appCacheSSvgZ\",\n                \"mangledName\": \"$s5Comet4KeysO8appCacheSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4KeysO8appCacheSSvsZ\",\n                \"mangledName\": \"$s5Comet4KeysO8appCacheSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4KeysO8appCacheSSvMZ\",\n                \"mangledName\": \"$s5Comet4KeysO8appCacheSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Enum\",\n        \"usr\": \"s:5Comet4KeysO\",\n        \"mangledName\": \"$s5Comet4KeysO\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ],\n        \"isEnumExhaustive\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Respring\",\n        \"printedName\": \"Respring\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"execute\",\n            \"printedName\": \"execute()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet8RespringV7executeyyFZ\",\n            \"mangledName\": \"$s5Comet8RespringV7executeyyFZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"AccessControl\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Respring\",\n                \"printedName\": \"Comet.Respring\",\n                \"usr\": \"s:5Comet8RespringV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet8RespringVACycfc\",\n            \"mangledName\": \"$s5Comet8RespringVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet8RespringV\",\n        \"mangledName\": \"$s5Comet8RespringV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"ApplicationWorkspaceMock\",\n        \"printedName\": \"ApplicationWorkspaceMock\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loadApplicationsPublisher\",\n            \"printedName\": \"loadApplicationsPublisher()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Future\",\n                \"printedName\": \"Combine.Future<[Comet.ApplicationWorkspace.ApplicationProxy], Swift.Never>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ],\n                \"usr\": \"s:7Combine6FutureC\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet24ApplicationWorkspaceMockC25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"mangledName\": \"$s5Comet24ApplicationWorkspaceMockC25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"ApplicationWorkspaceMock\",\n                \"printedName\": \"Comet.ApplicationWorkspaceMock\",\n                \"usr\": \"s:5Comet24ApplicationWorkspaceMockC\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet24ApplicationWorkspaceMockCACycfc\",\n            \"mangledName\": \"$s5Comet24ApplicationWorkspaceMockCACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"s:5Comet24ApplicationWorkspaceMockC\",\n        \"mangledName\": \"$s5Comet24ApplicationWorkspaceMockC\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Final\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ApplicationWorkspaceInterface\",\n            \"printedName\": \"ApplicationWorkspaceInterface\",\n            \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\",\n            \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"CMViewController\",\n        \"printedName\": \"CMViewController\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setup\",\n            \"printedName\": \"setup(content:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"GenericTypeParam\",\n                \"printedName\": \"τ_0_0\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet16CMViewControllerC5setup7contentyx_t7SwiftUI4ViewRzlF\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC5setup7contentyx_t7SwiftUI4ViewRzlF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : SwiftUI.View>\",\n            \"sugared_genericSig\": \"<Content where Content : SwiftUI.View>\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(nibName:bundle:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"CMViewController\",\n                \"printedName\": \"Comet.CMViewController\",\n                \"usr\": \"c:@M@Comet@objc(cs)CMViewController\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"Swift.String?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"Foundation.Bundle?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bundle\",\n                    \"printedName\": \"Foundation.Bundle\",\n                    \"usr\": \"c:objc(cs)NSBundle\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"c:@M@Comet@objc(cs)CMViewController(im)initWithNibName:bundle:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc\",\n            \"moduleName\": \"Comet\",\n            \"overriding\": true,\n            \"implicit\": true,\n            \"objc_name\": \"initWithNibName:bundle:\",\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"ObjC\",\n              \"Custom\",\n              \"Override\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(coder:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"Comet.CMViewController?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"CMViewController\",\n                    \"printedName\": \"Comet.CMViewController\",\n                    \"usr\": \"c:@M@Comet@objc(cs)CMViewController\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"NSCoder\",\n                \"printedName\": \"Foundation.NSCoder\",\n                \"usr\": \"c:objc(cs)NSCoder\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"c:@M@Comet@objc(cs)CMViewController(im)initWithCoder:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC5coderACSgSo7NSCoderC_tcfc\",\n            \"moduleName\": \"Comet\",\n            \"overriding\": true,\n            \"implicit\": true,\n            \"objc_name\": \"initWithCoder:\",\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"ObjC\",\n              \"Custom\",\n              \"Required\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setRootController\",\n            \"printedName\": \"setRootController(_:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"UIKit.UIViewController?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UIViewController\",\n                    \"printedName\": \"UIKit.UIViewController\",\n                    \"usr\": \"c:objc(cs)UIViewController\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"c:@CM@Comet@objc(cs)CMViewController(im)setRootController:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC07setRootC0yySo06UIViewC0CSgF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"Custom\",\n              \"ObjC\"\n            ],\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setParentController\",\n            \"printedName\": \"setParentController(_:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"UIKit.UIViewController?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UIViewController\",\n                    \"printedName\": \"UIKit.UIViewController\",\n                    \"usr\": \"c:objc(cs)UIViewController\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"c:@CM@Comet@objc(cs)CMViewController(im)setParentController:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC09setParentC0yySo06UIViewC0CSgF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"Custom\",\n              \"ObjC\"\n            ],\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setSpecifier\",\n            \"printedName\": \"setSpecifier(_:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"AnyObject?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ProtocolComposition\",\n                    \"printedName\": \"AnyObject\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"c:@CM@Comet@objc(cs)CMViewController(im)setSpecifier:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC12setSpecifieryyyXlSgF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"Custom\",\n              \"ObjC\"\n            ],\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:@M@Comet@objc(cs)CMViewController\",\n        \"mangledName\": \"$s5Comet16CMViewControllerC\",\n        \"moduleName\": \"Comet\",\n        \"isOpen\": true,\n        \"declAttributes\": [\n          \"Custom\",\n          \"AccessControl\",\n          \"ObjCMembers\",\n          \"RawDocComment\",\n          \"ObjC\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)UIViewController\",\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"UIKit.UIViewController\",\n          \"UIKit.UIResponder\",\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"HexColorPicker\",\n        \"printedName\": \"HexColorPicker\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedColorHex\",\n            \"printedName\": \"selectedColorHex\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvs\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvM\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedColorHex\",\n            \"printedName\": \"$selectedColorHex\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"title\",\n            \"printedName\": \"title\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV5titleSSvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV5titleSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV5titleSSvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV5titleSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(selectedColorHex:title:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"HexColorPicker\",\n                \"printedName\": \"Comet.HexColorPicker\",\n                \"usr\": \"s:5Comet14HexColorPickerV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet14HexColorPickerV08selectedcB05titleAC7SwiftUI7BindingVySSG_SStcfc\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB05titleAC7SwiftUI7BindingVySSG_SStcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"AccessControl\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet14HexColorPickerV\",\n        \"mangledName\": \"$s5Comet14HexColorPickerV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"HexColorPicker_Previews\",\n        \"printedName\": \"HexColorPicker_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23HexColorPicker_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23HexColorPicker_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"HexColorPicker_Previews\",\n                \"printedName\": \"Comet.HexColorPicker_Previews\",\n                \"usr\": \"s:5Comet23HexColorPicker_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet23HexColorPicker_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet23HexColorPicker_PreviewsV\",\n        \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerSingleListView\",\n        \"printedName\": \"AppPickerSingleListView\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"apps\",\n            \"printedName\": \"apps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 0,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"sectionTitle\",\n            \"printedName\": \"sectionTitle\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV12sectionTitleSSvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV12sectionTitleSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 1,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV12sectionTitleSSvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV12sectionTitleSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifier\",\n            \"printedName\": \"selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvs\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvM\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifier\",\n            \"printedName\": \"$selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_selectedAppIdentifier\",\n            \"printedName\": \"_selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV09_selectedB10Identifier33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV09_selectedB10Identifier33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 2,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_searchQuery\",\n            \"printedName\": \"_searchQuery\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"State\",\n                \"printedName\": \"SwiftUI.State<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI5StateV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV12_searchQuery33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI5StateVySSGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV12_searchQuery33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI5StateVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 3,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(apps:sectionTitle:selectedAppIdentifier:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerSingleListView\",\n                \"printedName\": \"Comet.AppPickerSingleListView\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV4apps12sectionTitle08selectedB10IdentifierACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySSGtcfc\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4apps12sectionTitle08selectedB10IdentifierACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySSGtcfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet23AppPickerSingleListViewV\",\n        \"mangledName\": \"$s5Comet23AppPickerSingleListViewV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerSingleListView_Previews\",\n        \"printedName\": \"AppPickerSingleListView_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerSingleListView_Previews\",\n                \"printedName\": \"Comet.AppPickerSingleListView_Previews\",\n                \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV\",\n        \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerMultiListView\",\n        \"printedName\": \"AppPickerMultiListView\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"apps\",\n            \"printedName\": \"apps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 0,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"sectionTitle\",\n            \"printedName\": \"sectionTitle\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV12sectionTitleSSvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV12sectionTitleSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 1,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV12sectionTitleSSvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV12sectionTitleSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifiers\",\n            \"printedName\": \"selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Swift.String]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvs\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvM\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifiers\",\n            \"printedName\": \"$selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Swift.String]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"String\",\n                            \"printedName\": \"Swift.String\",\n                            \"usr\": \"s:SS\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_selectedAppIdentifiers\",\n            \"printedName\": \"_selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV09_selectedB11Identifiers33_0490D53C6A73466092405F6310F9A998LL7SwiftUI7BindingVySaySSGGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV09_selectedB11Identifiers33_0490D53C6A73466092405F6310F9A998LL7SwiftUI7BindingVySaySSGGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 2,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_searchQuery\",\n            \"printedName\": \"_searchQuery\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"State\",\n                \"printedName\": \"SwiftUI.State<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI5StateV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV12_searchQuery33_0490D53C6A73466092405F6310F9A998LL7SwiftUI5StateVySSGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV12_searchQuery33_0490D53C6A73466092405F6310F9A998LL7SwiftUI5StateVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 3,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(apps:sectionTitle:selectedAppIdentifiers:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerMultiListView\",\n                \"printedName\": \"Comet.AppPickerMultiListView\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV4apps12sectionTitle08selectedB11IdentifiersACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySaySSGGtcfc\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4apps12sectionTitle08selectedB11IdentifiersACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySaySSGGtcfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet22AppPickerMultiListViewV\",\n        \"mangledName\": \"$s5Comet22AppPickerMultiListViewV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerMultiListView_Previews\",\n        \"printedName\": \"AppPickerMultiListView_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerMultiListView_Previews\",\n                \"printedName\": \"Comet.AppPickerMultiListView_Previews\",\n                \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV\",\n        \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Preferences\",\n        \"printedName\": \"Preferences\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setValue\",\n            \"printedName\": \"setValue(_:key:registry:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"GenericTypeParam\",\n                \"printedName\": \"τ_0_0\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet11PreferencesV8setValue_3key8registryyx_S2StKSeRzSERzlFZ\",\n            \"mangledName\": \"$s5Comet11PreferencesV8setValue_3key8registryyx_S2StKSeRzSERzlFZ\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>\",\n            \"sugared_genericSig\": \"<T where T : Swift.Decodable, T : Swift.Encodable>\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"throwing\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"value\",\n            \"printedName\": \"value(key:registry:returnType:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"τ_0_0?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Metatype\",\n                \"printedName\": \"τ_0_0.Type\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet11PreferencesV5value3key8registry10returnTypexSgSS_SSxmtSeRzSERzlFZ\",\n            \"mangledName\": \"$s5Comet11PreferencesV5value3key8registry10returnTypexSgSS_SSxmtSeRzSERzlFZ\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>\",\n            \"sugared_genericSig\": \"<T where T : Swift.Decodable, T : Swift.Encodable>\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Preferences\",\n                \"printedName\": \"Comet.Preferences\",\n                \"usr\": \"s:5Comet11PreferencesV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet11PreferencesVACycfc\",\n            \"mangledName\": \"$s5Comet11PreferencesVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet11PreferencesV\",\n        \"mangledName\": \"$s5Comet11PreferencesV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPicker\",\n        \"printedName\": \"AppPicker\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifier\",\n            \"printedName\": \"selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvs\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvM\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifier\",\n            \"printedName\": \"$selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifiers\",\n            \"printedName\": \"selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Swift.String]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvs\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvM\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifiers\",\n            \"printedName\": \"$selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Swift.String]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"String\",\n                            \"printedName\": \"Swift.String\",\n                            \"usr\": \"s:SS\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(selectedAppIdentifier:title:visibleApplicationGroup:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPicker\",\n                \"printedName\": \"Comet.AppPicker\",\n                \"usr\": \"s:5Comet9AppPickerV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"VisibleApplicationGroup\",\n                \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                \"hasDefaultArg\": true,\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB10Identifier5title23visibleApplicationGroupAC7SwiftUI7BindingVySSG_SSAC07VisiblehI0Otcfc\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB10Identifier5title23visibleApplicationGroupAC7SwiftUI7BindingVySSG_SSAC07VisiblehI0Otcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(selectedAppIdentifiers:title:visibleApplicationGroup:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPicker\",\n                \"printedName\": \"Comet.AppPicker\",\n                \"usr\": \"s:5Comet9AppPickerV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"VisibleApplicationGroup\",\n                \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                \"hasDefaultArg\": true,\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB11Identifiers5title23visibleApplicationGroupAC7SwiftUI7BindingVySaySSGG_SSAC07VisiblehI0Otcfc\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB11Identifiers5title23visibleApplicationGroupAC7SwiftUI7BindingVySaySSGG_SSAC07VisiblehI0Otcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"VisibleApplicationGroup\",\n            \"printedName\": \"VisibleApplicationGroup\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"user\",\n                \"printedName\": \"user\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeFunc\",\n                    \"name\": \"Function\",\n                    \"printedName\": \"(Comet.AppPicker.VisibleApplicationGroup.Type) -> Comet.AppPicker.VisibleApplicationGroup\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Metatype\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup.Type\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"VisibleApplicationGroup\",\n                            \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                          }\n                        ]\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"EnumElement\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO4useryA2EmF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO4useryA2EmF\",\n                \"moduleName\": \"Comet\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"system\",\n                \"printedName\": \"system\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeFunc\",\n                    \"name\": \"Function\",\n                    \"printedName\": \"(Comet.AppPicker.VisibleApplicationGroup.Type) -> Comet.AppPicker.VisibleApplicationGroup\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Metatype\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup.Type\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"VisibleApplicationGroup\",\n                            \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                          }\n                        ]\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"EnumElement\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO6systemyA2EmF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO6systemyA2EmF\",\n                \"moduleName\": \"Comet\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"all\",\n                \"printedName\": \"all\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeFunc\",\n                    \"name\": \"Function\",\n                    \"printedName\": \"(Comet.AppPicker.VisibleApplicationGroup.Type) -> Comet.AppPicker.VisibleApplicationGroup\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Metatype\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup.Type\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"VisibleApplicationGroup\",\n                            \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                          }\n                        ]\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"EnumElement\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO3allyA2EmF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO3allyA2EmF\",\n                \"moduleName\": \"Comet\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"title\",\n                \"printedName\": \"title\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvp\",\n                \"moduleName\": \"Comet\",\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"==\",\n                \"printedName\": \"==(_:_:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO2eeoiySbAE_AEtFZ\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO2eeoiySbAE_AEtFZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"hashValue\",\n                \"printedName\": \"hashValue\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivp\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivp\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"hash\",\n                \"printedName\": \"hash(into:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Hasher\",\n                    \"printedName\": \"Swift.Hasher\",\n                    \"paramValueOwnership\": \"InOut\",\n                    \"usr\": \"s:s6HasherV\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO4hash4intoys6HasherVz_tF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO4hash4intoys6HasherVz_tF\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Enum\",\n            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\",\n            \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Equatable\",\n                \"printedName\": \"Equatable\",\n                \"usr\": \"s:SQ\",\n                \"mangledName\": \"$sSQ\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Hashable\",\n                \"printedName\": \"Hashable\",\n                \"usr\": \"s:SH\",\n                \"mangledName\": \"$sSH\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"AppModel\",\n            \"printedName\": \"AppModel\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"proxy\",\n                \"printedName\": \"proxy\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 0,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"icon\",\n                \"printedName\": \"icon\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UIImage\",\n                    \"printedName\": \"UIKit.UIImage\",\n                    \"usr\": \"c:objc(cs)UIImage\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 1,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"UIImage\",\n                        \"printedName\": \"UIKit.UIImage\",\n                        \"usr\": \"c:objc(cs)UIImage\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"id\",\n                \"printedName\": \"id\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV2idSSvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV2idSSvp\",\n                \"moduleName\": \"Comet\",\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV2idSSvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV2idSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(proxy:icon:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Optional\",\n                    \"printedName\": \"UIKit.UIImage?\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"UIImage\",\n                        \"printedName\": \"UIKit.UIImage\",\n                        \"usr\": \"c:objc(cs)UIImage\"\n                      }\n                    ],\n                    \"usr\": \"s:Sq\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV5proxy4iconAeA20ApplicationWorkspaceC0G5ProxyV_So7UIImageCSgtcfc\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV5proxy4iconAeA20ApplicationWorkspaceC0G5ProxyV_So7UIImageCSgtcfc\",\n                \"moduleName\": \"Comet\",\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"==\",\n                \"printedName\": \"==(_:_:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV2eeoiySbAE_AEtFZ\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV2eeoiySbAE_AEtFZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Struct\",\n            \"usr\": \"s:5Comet9AppPickerV0B5ModelV\",\n            \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Identifiable\",\n                \"printedName\": \"Identifiable\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeWitness\",\n                    \"name\": \"ID\",\n                    \"printedName\": \"ID\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ]\n                  }\n                ],\n                \"usr\": \"s:s12IdentifiableP\",\n                \"mangledName\": \"$ss12IdentifiableP\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Equatable\",\n                \"printedName\": \"Equatable\",\n                \"usr\": \"s:SQ\",\n                \"mangledName\": \"$sSQ\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Sendable\",\n                \"printedName\": \"Sendable\",\n                \"usr\": \"s:s8SendableP\",\n                \"mangledName\": \"$ss8SendableP\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"ViewModel\",\n            \"printedName\": \"ViewModel\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"bag\",\n                \"printedName\": \"bag\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Set\",\n                    \"printedName\": \"Swift.Set<Combine.AnyCancellable>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AnyCancellable\",\n                        \"printedName\": \"Combine.AnyCancellable\",\n                        \"usr\": \"s:7Combine14AnyCancellableC\"\n                      }\n                    ],\n                    \"usr\": \"s:Sh\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC3bag33_198DF74090DEB73DAF2A32D7D3C51330LLShy7Combine14AnyCancellableCGvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC3bag33_198DF74090DEB73DAF2A32D7D3C51330LLShy7Combine14AnyCancellableCGvp\",\n                \"moduleName\": \"Comet\",\n                \"isInternal\": true,\n                \"declAttributes\": [\n                  \"HasInitialValue\",\n                  \"Final\",\n                  \"HasStorage\",\n                  \"AccessControl\"\n                ],\n                \"fixedbinaryorder\": 0,\n                \"hasStorage\": true\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"workspace\",\n                \"printedName\": \"workspace\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationWorkspaceInterface\",\n                    \"printedName\": \"Comet.ApplicationWorkspaceInterface\",\n                    \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC9workspace33_198DF74090DEB73DAF2A32D7D3C51330LLAA29ApplicationWorkspaceInterface_pvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC9workspace33_198DF74090DEB73DAF2A32D7D3C51330LLAA29ApplicationWorkspaceInterface_pvp\",\n                \"moduleName\": \"Comet\",\n                \"isInternal\": true,\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"AccessControl\"\n                ],\n                \"fixedbinaryorder\": 1,\n                \"isLet\": true,\n                \"hasStorage\": true\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"visibleApplicationGroup\",\n                \"printedName\": \"visibleApplicationGroup\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"SetterAccess\"\n                ],\n                \"fixedbinaryorder\": 2,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\",\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"title\",\n                \"printedName\": \"title\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC5titleSSvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC5titleSSvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"SetterAccess\"\n                ],\n                \"fixedbinaryorder\": 3,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC5titleSSvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC5titleSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\",\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"isSinglePicker\",\n                \"printedName\": \"isSinglePicker\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC08isSingleC0Sbvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC08isSingleC0Sbvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"SetterAccess\"\n                ],\n                \"fixedbinaryorder\": 4,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Bool\",\n                        \"printedName\": \"Swift.Bool\",\n                        \"usr\": \"s:Sb\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC08isSingleC0Sbvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC08isSingleC0Sbvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\",\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"_appProxies\",\n                \"printedName\": \"_appProxies\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Published\",\n                    \"printedName\": \"Combine.Published<[Comet.ApplicationWorkspace.ApplicationProxy]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"ApplicationProxy\",\n                            \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                            \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:7Combine9PublishedV\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC11_appProxies33_198DF74090DEB73DAF2A32D7D3C51330LL7Combine9PublishedVySayAA20ApplicationWorkspaceC0Q5ProxyVGGvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC11_appProxies33_198DF74090DEB73DAF2A32D7D3C51330LL7Combine9PublishedVySayAA20ApplicationWorkspaceC0Q5ProxyVGGvp\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"isInternal\": true,\n                \"declAttributes\": [\n                  \"HasInitialValue\",\n                  \"Final\",\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 5,\n                \"hasStorage\": true\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"appModels\",\n                \"printedName\": \"appModels\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"AppModel\",\n                            \"printedName\": \"Comet.AppPicker.AppModel\",\n                            \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvg\",\n                    \"moduleName\": \"Comet\",\n                    \"declAttributes\": [\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(visibleApplicationGroup:title:isSinglePicker:workspace:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ViewModel\",\n                    \"printedName\": \"Comet.AppPicker.ViewModel\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationWorkspaceInterface\",\n                    \"printedName\": \"Comet.ApplicationWorkspaceInterface\",\n                    \"hasDefaultArg\": true,\n                    \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC23visibleApplicationGroup5title08isSingleC09workspaceAeC07VisiblegH0O_SSSbAA0G18WorkspaceInterface_ptcfc\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC23visibleApplicationGroup5title08isSingleC09workspaceAeC07VisiblegH0O_SSSbAA0G18WorkspaceInterface_ptcfc\",\n                \"moduleName\": \"Comet\",\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"loadIfNeeded\",\n                \"printedName\": \"loadIfNeeded()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC12loadIfNeededyyF\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC12loadIfNeededyyF\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"funcSelfKind\": \"NonMutating\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"app\",\n                \"printedName\": \"app(matchingIdentifier:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Optional\",\n                    \"printedName\": \"Comet.AppPicker.AppModel?\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sq\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC3app18matchingIdentifierAC0bE0VSgSS_tF\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC3app18matchingIdentifierAC0bE0VSgSS_tF\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Class\",\n            \"usr\": \"s:5Comet9AppPickerV9ViewModelC\",\n            \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"isFromExtension\": true,\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"ObservableObject\",\n                \"printedName\": \"ObservableObject\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeWitness\",\n                    \"name\": \"ObjectWillChangePublisher\",\n                    \"printedName\": \"ObjectWillChangePublisher\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ObservableObjectPublisher\",\n                        \"printedName\": \"Combine.ObservableObjectPublisher\",\n                        \"usr\": \"s:7Combine25ObservableObjectPublisherC\"\n                      }\n                    ]\n                  }\n                ],\n                \"usr\": \"s:7Combine16ObservableObjectP\",\n                \"mangledName\": \"$s7Combine16ObservableObjectP\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet9AppPickerV\",\n        \"mangledName\": \"$s5Comet9AppPickerV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"AccessControl\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPicker_Previews\",\n        \"printedName\": \"AppPicker_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet18AppPicker_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet18AppPicker_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet18AppPicker_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet18AppPicker_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPicker_Previews\",\n                \"printedName\": \"Comet.AppPicker_Previews\",\n                \"usr\": \"s:5Comet18AppPicker_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet18AppPicker_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet18AppPicker_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet18AppPicker_PreviewsV\",\n        \"mangledName\": \"$s5Comet18AppPicker_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"String\",\n        \"printedName\": \"String\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"localized\",\n            \"printedName\": \"localized\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:SS5CometE9localizedSSvp\",\n            \"mangledName\": \"$sSS5CometE9localizedSSvp\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:SS5CometE9localizedSSvg\",\n                \"mangledName\": \"$sSS5CometE9localizedSSvg\",\n                \"moduleName\": \"Comet\",\n                \"isFromExtension\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:SS\",\n        \"mangledName\": \"$sSS\",\n        \"moduleName\": \"Swift\",\n        \"declAttributes\": [\n          \"Frozen\"\n        ],\n        \"isExternal\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Decodable\",\n            \"printedName\": \"Decodable\",\n            \"usr\": \"s:Se\",\n            \"mangledName\": \"$sSe\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Encodable\",\n            \"printedName\": \"Encodable\",\n            \"usr\": \"s:SE\",\n            \"mangledName\": \"$sSE\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CodingKeyRepresentable\",\n            \"printedName\": \"CodingKeyRepresentable\",\n            \"usr\": \"s:s22CodingKeyRepresentableP\",\n            \"mangledName\": \"$ss22CodingKeyRepresentableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_HasContiguousBytes\",\n            \"printedName\": \"_HasContiguousBytes\",\n            \"usr\": \"s:s19_HasContiguousBytesP\",\n            \"mangledName\": \"$ss19_HasContiguousBytesP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomReflectable\",\n            \"printedName\": \"CustomReflectable\",\n            \"usr\": \"s:s17CustomReflectableP\",\n            \"mangledName\": \"$ss17CustomReflectableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_CustomPlaygroundQuickLookable\",\n            \"printedName\": \"_CustomPlaygroundQuickLookable\",\n            \"usr\": \"s:s30_CustomPlaygroundQuickLookableP\",\n            \"mangledName\": \"$ss30_CustomPlaygroundQuickLookableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"TextOutputStream\",\n            \"printedName\": \"TextOutputStream\",\n            \"usr\": \"s:s16TextOutputStreamP\",\n            \"mangledName\": \"$ss16TextOutputStreamP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"TextOutputStreamable\",\n            \"printedName\": \"TextOutputStreamable\",\n            \"usr\": \"s:s20TextOutputStreamableP\",\n            \"mangledName\": \"$ss20TextOutputStreamableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByBuiltinUnicodeScalarLiteral\",\n            \"printedName\": \"_ExpressibleByBuiltinUnicodeScalarLiteral\",\n            \"usr\": \"s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP\",\n            \"mangledName\": \"$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByBuiltinExtendedGraphemeClusterLiteral\",\n            \"printedName\": \"_ExpressibleByBuiltinExtendedGraphemeClusterLiteral\",\n            \"usr\": \"s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP\",\n            \"mangledName\": \"$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByBuiltinStringLiteral\",\n            \"printedName\": \"_ExpressibleByBuiltinStringLiteral\",\n            \"usr\": \"s:s34_ExpressibleByBuiltinStringLiteralP\",\n            \"mangledName\": \"$ss34_ExpressibleByBuiltinStringLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByStringLiteral\",\n            \"printedName\": \"ExpressibleByStringLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"StringLiteralType\",\n                \"printedName\": \"StringLiteralType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s26ExpressibleByStringLiteralP\",\n            \"mangledName\": \"$ss26ExpressibleByStringLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByExtendedGraphemeClusterLiteral\",\n            \"printedName\": \"ExpressibleByExtendedGraphemeClusterLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"ExtendedGraphemeClusterLiteralType\",\n                \"printedName\": \"ExtendedGraphemeClusterLiteralType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s43ExpressibleByExtendedGraphemeClusterLiteralP\",\n            \"mangledName\": \"$ss43ExpressibleByExtendedGraphemeClusterLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByUnicodeScalarLiteral\",\n            \"printedName\": \"ExpressibleByUnicodeScalarLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UnicodeScalarLiteralType\",\n                \"printedName\": \"UnicodeScalarLiteralType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s33ExpressibleByUnicodeScalarLiteralP\",\n            \"mangledName\": \"$ss33ExpressibleByUnicodeScalarLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"BidirectionalCollection\",\n            \"printedName\": \"BidirectionalCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Character\",\n                    \"printedName\": \"Swift.Character\",\n                    \"usr\": \"s:SJ\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Index\",\n                    \"printedName\": \"Swift.String.Index\",\n                    \"usr\": \"s:SS5IndexV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DefaultIndices\",\n                    \"printedName\": \"Swift.DefaultIndices<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:SI\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:SK\",\n            \"mangledName\": \"$sSK\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Collection\",\n            \"printedName\": \"Collection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Character\",\n                    \"printedName\": \"Swift.Character\",\n                    \"usr\": \"s:SJ\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Index\",\n                    \"printedName\": \"Swift.String.Index\",\n                    \"usr\": \"s:SS5IndexV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Iterator\",\n                    \"printedName\": \"Swift.String.Iterator\",\n                    \"usr\": \"s:SS8IteratorV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DefaultIndices\",\n                    \"printedName\": \"Swift.DefaultIndices<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:SI\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sl\",\n            \"mangledName\": \"$sSl\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sequence\",\n            \"printedName\": \"Sequence\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Character\",\n                    \"printedName\": \"Swift.Character\",\n                    \"usr\": \"s:SJ\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Iterator\",\n                    \"printedName\": \"Swift.String.Iterator\",\n                    \"usr\": \"s:SS8IteratorV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:ST\",\n            \"mangledName\": \"$sST\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Comparable\",\n            \"printedName\": \"Comparable\",\n            \"usr\": \"s:SL\",\n            \"mangledName\": \"$sSL\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"StringProtocol\",\n            \"printedName\": \"StringProtocol\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UTF8View\",\n                \"printedName\": \"UTF8View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UTF8View\",\n                    \"printedName\": \"Swift.String.UTF8View\",\n                    \"usr\": \"s:SS8UTF8ViewV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UTF16View\",\n                \"printedName\": \"UTF16View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UTF16View\",\n                    \"printedName\": \"Swift.String.UTF16View\",\n                    \"usr\": \"s:SS9UTF16ViewV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UnicodeScalarView\",\n                \"printedName\": \"UnicodeScalarView\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UnicodeScalarView\",\n                    \"printedName\": \"Swift.String.UnicodeScalarView\",\n                    \"usr\": \"s:SS17UnicodeScalarViewV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sy\",\n            \"mangledName\": \"$sSy\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByStringInterpolation\",\n            \"printedName\": \"ExpressibleByStringInterpolation\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"StringInterpolation\",\n                \"printedName\": \"StringInterpolation\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DefaultStringInterpolation\",\n                    \"printedName\": \"Swift.DefaultStringInterpolation\",\n                    \"usr\": \"s:s26DefaultStringInterpolationV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s32ExpressibleByStringInterpolationP\",\n            \"mangledName\": \"$ss32ExpressibleByStringInterpolationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"LosslessStringConvertible\",\n            \"printedName\": \"LosslessStringConvertible\",\n            \"usr\": \"s:s25LosslessStringConvertibleP\",\n            \"mangledName\": \"$ss25LosslessStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"RangeReplaceableCollection\",\n            \"printedName\": \"RangeReplaceableCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sm\",\n            \"mangledName\": \"$sSm\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"MirrorPath\",\n            \"printedName\": \"MirrorPath\",\n            \"usr\": \"s:s10MirrorPathP\",\n            \"mangledName\": \"$ss10MirrorPathP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ObjectiveCBridgeable\",\n            \"printedName\": \"_ObjectiveCBridgeable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"_ObjectiveCType\",\n                \"printedName\": \"_ObjectiveCType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"NSString\",\n                    \"printedName\": \"Foundation.NSString\",\n                    \"usr\": \"c:objc(cs)NSString\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s21_ObjectiveCBridgeableP\",\n            \"mangledName\": \"$ss21_ObjectiveCBridgeableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Transferable\",\n            \"printedName\": \"Transferable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Representation\",\n                \"printedName\": \"Representation\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some CoreTransferable.TransferRepresentation\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"TransferRepresentation\",\n                        \"printedName\": \"CoreTransferable.TransferRepresentation\",\n                        \"usr\": \"s:16CoreTransferable22TransferRepresentationP\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Sendable\",\n                        \"printedName\": \"Swift.Sendable\",\n                        \"usr\": \"s:s8SendableP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:16CoreTransferable0B0P\",\n            \"mangledName\": \"$s16CoreTransferable0B0P\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Published\",\n        \"printedName\": \"Published\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(wrappedValue:key:registry:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Published\",\n                \"printedName\": \"Combine.Published<τ_0_0>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ],\n                \"usr\": \"s:7Combine9PublishedV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"GenericTypeParam\",\n                \"printedName\": \"τ_0_0\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:7Combine9PublishedV5CometSeRzSERzlE12wrappedValue3key8registryACyxGx_S2Stcfc\",\n            \"mangledName\": \"$s7Combine9PublishedV5CometSeRzSERzlE12wrappedValue3key8registryACyxGx_S2Stcfc\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>\",\n            \"sugared_genericSig\": \"<Value where Value : Swift.Decodable, Value : Swift.Encodable>\",\n            \"declAttributes\": [\n              \"RawDocComment\"\n            ],\n            \"isFromExtension\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:7Combine9PublishedV\",\n        \"mangledName\": \"$s7Combine9PublishedV\",\n        \"moduleName\": \"Combine\",\n        \"genericSig\": \"<τ_0_0>\",\n        \"sugared_genericSig\": \"<Value>\",\n        \"intro_Macosx\": \"10.15\",\n        \"intro_iOS\": \"13.0\",\n        \"intro_tvOS\": \"13.0\",\n        \"intro_watchOS\": \"6.0\",\n        \"declAttributes\": [\n          \"PropertyWrapper\",\n          \"Available\",\n          \"Available\",\n          \"Available\",\n          \"Available\"\n        ],\n        \"isExternal\": true\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Color\",\n        \"printedName\": \"Color\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(hex:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Color\",\n                \"printedName\": \"SwiftUI.Color\",\n                \"usr\": \"s:7SwiftUI5ColorV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:7SwiftUI5ColorV5CometE3hexACSS_tcfc\",\n            \"mangledName\": \"$s7SwiftUI5ColorV5CometE3hexACSS_tcfc\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"toHex\",\n            \"printedName\": \"toHex()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:7SwiftUI5ColorV5CometE5toHexSSyF\",\n            \"mangledName\": \"$s7SwiftUI5ColorV5CometE5toHexSSyF\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:7SwiftUI5ColorV\",\n        \"mangledName\": \"$s7SwiftUI5ColorV\",\n        \"moduleName\": \"SwiftUI\",\n        \"intro_Macosx\": \"10.15\",\n        \"intro_iOS\": \"13.0\",\n        \"intro_tvOS\": \"13.0\",\n        \"intro_watchOS\": \"6.0\",\n        \"declAttributes\": [\n          \"Frozen\",\n          \"Available\",\n          \"Available\",\n          \"Available\",\n          \"Available\"\n        ],\n        \"isExternal\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ShapeStyle\",\n            \"printedName\": \"ShapeStyle\",\n            \"usr\": \"s:7SwiftUI10ShapeStyleP\",\n            \"mangledName\": \"$s7SwiftUI10ShapeStyleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Transferable\",\n            \"printedName\": \"Transferable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Representation\",\n                \"printedName\": \"Representation\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some CoreTransferable.TransferRepresentation\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"TransferRepresentation\",\n                        \"printedName\": \"CoreTransferable.TransferRepresentation\",\n                        \"usr\": \"s:16CoreTransferable22TransferRepresentationP\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Sendable\",\n                        \"printedName\": \"Swift.Sendable\",\n                        \"usr\": \"s:s8SendableP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:16CoreTransferable0B0P\",\n            \"mangledName\": \"$s16CoreTransferable0B0P\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"UIColor\",\n        \"printedName\": \"UIColor\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(hex:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"UIColor\",\n                \"printedName\": \"UIKit.UIColor\",\n                \"usr\": \"c:objc(cs)UIColor\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:So7UIColorC5CometE3hexABSS_tcfc\",\n            \"mangledName\": \"$sSo7UIColorC5CometE3hexABSS_tcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Convenience\"\n            ],\n            \"isFromExtension\": true,\n            \"init_kind\": \"Convenience\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:objc(cs)UIColor\",\n        \"moduleName\": \"UIKit\",\n        \"isOpen\": true,\n        \"intro_iOS\": \"2.0\",\n        \"objc_name\": \"UIColor\",\n        \"declAttributes\": [\n          \"Available\",\n          \"ObjC\",\n          \"SynthesizedProtocol\",\n          \"NonSendable\",\n          \"Sendable\",\n          \"Dynamic\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)NSObject\",\n        \"isExternal\": true,\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByColorLiteral\",\n            \"printedName\": \"_ExpressibleByColorLiteral\",\n            \"usr\": \"s:s26_ExpressibleByColorLiteralP\",\n            \"mangledName\": \"$ss26_ExpressibleByColorLiteralP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Array\",\n        \"printedName\": \"Array\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"filtered\",\n            \"printedName\": \"filtered(visibleGroup:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[τ_0_0]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"VisibleApplicationGroup\",\n                \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:Sa5CometAA9AppPickerV0B5ModelVRszlE8filtered12visibleGroupSayAEGAC018VisibleApplicationG0O_tF\",\n            \"mangledName\": \"$sSa5CometAA9AppPickerV0B5ModelVRszlE8filtered12visibleGroupSayAEGAC018VisibleApplicationG0O_tF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 == Comet.AppPicker.AppModel>\",\n            \"sugared_genericSig\": \"<Element where Element == Comet.AppPicker.AppModel>\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:Sa\",\n        \"mangledName\": \"$sSa\",\n        \"moduleName\": \"Swift\",\n        \"genericSig\": \"<τ_0_0>\",\n        \"sugared_genericSig\": \"<Element>\",\n        \"declAttributes\": [\n          \"Frozen\"\n        ],\n        \"isExternal\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_DestructorSafeContainer\",\n            \"printedName\": \"_DestructorSafeContainer\",\n            \"usr\": \"s:s24_DestructorSafeContainerP\",\n            \"mangledName\": \"$ss24_DestructorSafeContainerP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ArrayProtocol\",\n            \"printedName\": \"_ArrayProtocol\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"_Buffer\",\n                \"printedName\": \"_Buffer\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"_ArrayBuffer\",\n                    \"printedName\": \"Swift._ArrayBuffer<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s12_ArrayBufferV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s14_ArrayProtocolP\",\n            \"mangledName\": \"$ss14_ArrayProtocolP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"RandomAccessCollection\",\n            \"printedName\": \"RandomAccessCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Range\",\n                    \"printedName\": \"Swift.Range<Swift.Int>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"usr\": \"s:Sn\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sk\",\n            \"mangledName\": \"$sSk\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"MutableCollection\",\n            \"printedName\": \"MutableCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:SM\",\n            \"mangledName\": \"$sSM\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"BidirectionalCollection\",\n            \"printedName\": \"BidirectionalCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Range\",\n                    \"printedName\": \"Swift.Range<Swift.Int>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"usr\": \"s:Sn\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:SK\",\n            \"mangledName\": \"$sSK\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Collection\",\n            \"printedName\": \"Collection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"IndexingIterator\",\n                    \"printedName\": \"Swift.IndexingIterator<[τ_0_0]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[τ_0_0]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"GenericTypeParam\",\n                            \"printedName\": \"τ_0_0\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:s16IndexingIteratorV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Range\",\n                    \"printedName\": \"Swift.Range<Swift.Int>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"usr\": \"s:Sn\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sl\",\n            \"mangledName\": \"$sSl\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sequence\",\n            \"printedName\": \"Sequence\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"IndexingIterator\",\n                    \"printedName\": \"Swift.IndexingIterator<[τ_0_0]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[τ_0_0]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"GenericTypeParam\",\n                            \"printedName\": \"τ_0_0\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:s16IndexingIteratorV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:ST\",\n            \"mangledName\": \"$sST\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByArrayLiteral\",\n            \"printedName\": \"ExpressibleByArrayLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"ArrayLiteralElement\",\n                \"printedName\": \"ArrayLiteralElement\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s25ExpressibleByArrayLiteralP\",\n            \"mangledName\": \"$ss25ExpressibleByArrayLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"RangeReplaceableCollection\",\n            \"printedName\": \"RangeReplaceableCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sm\",\n            \"mangledName\": \"$sSm\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomReflectable\",\n            \"printedName\": \"CustomReflectable\",\n            \"usr\": \"s:s17CustomReflectableP\",\n            \"mangledName\": \"$ss17CustomReflectableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_HasCustomAnyHashableRepresentation\",\n            \"printedName\": \"_HasCustomAnyHashableRepresentation\",\n            \"usr\": \"s:s35_HasCustomAnyHashableRepresentationP\",\n            \"mangledName\": \"$ss35_HasCustomAnyHashableRepresentationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Encodable\",\n            \"printedName\": \"Encodable\",\n            \"usr\": \"s:SE\",\n            \"mangledName\": \"$sSE\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Decodable\",\n            \"printedName\": \"Decodable\",\n            \"usr\": \"s:Se\",\n            \"mangledName\": \"$sSe\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_HasContiguousBytes\",\n            \"printedName\": \"_HasContiguousBytes\",\n            \"usr\": \"s:s19_HasContiguousBytesP\",\n            \"mangledName\": \"$ss19_HasContiguousBytesP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"DataProtocol\",\n            \"printedName\": \"DataProtocol\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Regions\",\n                \"printedName\": \"Regions\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"CollectionOfOne\",\n                    \"printedName\": \"Swift.CollectionOfOne<[Swift.UInt8]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Swift.UInt8]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"UInt8\",\n                            \"printedName\": \"Swift.UInt8\",\n                            \"usr\": \"s:s5UInt8V\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:s15CollectionOfOneV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:10Foundation12DataProtocolP\",\n            \"mangledName\": \"$s10Foundation12DataProtocolP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"MutableDataProtocol\",\n            \"printedName\": \"MutableDataProtocol\",\n            \"usr\": \"s:10Foundation19MutableDataProtocolP\",\n            \"mangledName\": \"$s10Foundation19MutableDataProtocolP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"EncodableWithConfiguration\",\n            \"printedName\": \"EncodableWithConfiguration\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"EncodingConfiguration\",\n                \"printedName\": \"EncodingConfiguration\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DependentMember\",\n                    \"printedName\": \"τ_0_0.EncodingConfiguration\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:10Foundation26EncodableWithConfigurationP\",\n            \"mangledName\": \"$s10Foundation26EncodableWithConfigurationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"DecodableWithConfiguration\",\n            \"printedName\": \"DecodableWithConfiguration\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"DecodingConfiguration\",\n                \"printedName\": \"DecodingConfiguration\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DependentMember\",\n                    \"printedName\": \"τ_0_0.DecodingConfiguration\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:10Foundation26DecodableWithConfigurationP\",\n            \"mangledName\": \"$s10Foundation26DecodableWithConfigurationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ObjectiveCBridgeable\",\n            \"printedName\": \"_ObjectiveCBridgeable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"_ObjectiveCType\",\n                \"printedName\": \"_ObjectiveCType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"NSArray\",\n                    \"printedName\": \"Foundation.NSArray\",\n                    \"usr\": \"c:objc(cs)NSArray\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s21_ObjectiveCBridgeableP\",\n            \"mangledName\": \"$ss21_ObjectiveCBridgeableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ContiguousBytes\",\n            \"printedName\": \"ContiguousBytes\",\n            \"usr\": \"s:10Foundation15ContiguousBytesP\",\n            \"mangledName\": \"$s10Foundation15ContiguousBytesP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Bundle\",\n        \"printedName\": \"Bundle\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"comet\",\n            \"printedName\": \"comet\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bundle\",\n                \"printedName\": \"Foundation.Bundle\",\n                \"usr\": \"c:objc(cs)NSBundle\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:So8NSBundleC5CometE5cometABvpZ\",\n            \"mangledName\": \"$sSo8NSBundleC5CometE5cometABvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"isFromExtension\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bundle\",\n                    \"printedName\": \"Foundation.Bundle\",\n                    \"usr\": \"c:objc(cs)NSBundle\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:So8NSBundleC5CometE5cometABvgZ\",\n                \"mangledName\": \"$sSo8NSBundleC5CometE5cometABvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"isFromExtension\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:objc(cs)NSBundle\",\n        \"moduleName\": \"Foundation\",\n        \"isOpen\": true,\n        \"objc_name\": \"NSBundle\",\n        \"declAttributes\": [\n          \"ObjC\",\n          \"NonSendable\",\n          \"Dynamic\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)NSObject\",\n        \"isExternal\": true,\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"UserDefaults\",\n        \"printedName\": \"UserDefaults\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setAppProxies\",\n            \"printedName\": \"setAppProxies(_:forKey:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:So14NSUserDefaultsC5CometE13setAppProxies_6forKeyySayAC20ApplicationWorkspaceC0I5ProxyVGSg_SStF\",\n            \"mangledName\": \"$sSo14NSUserDefaultsC5CometE13setAppProxies_6forKeyySayAC20ApplicationWorkspaceC0I5ProxyVGSg_SStF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"appProxies\",\n            \"printedName\": \"appProxies(forKey:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:So14NSUserDefaultsC5CometE10appProxies6forKeySayAC20ApplicationWorkspaceC0H5ProxyVGSgSS_tF\",\n            \"mangledName\": \"$sSo14NSUserDefaultsC5CometE10appProxies6forKeySayAC20ApplicationWorkspaceC0H5ProxyVGSgSS_tF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:objc(cs)NSUserDefaults\",\n        \"moduleName\": \"Foundation\",\n        \"isOpen\": true,\n        \"objc_name\": \"NSUserDefaults\",\n        \"declAttributes\": [\n          \"ObjC\",\n          \"NonSendable\",\n          \"Dynamic\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)NSObject\",\n        \"isExternal\": true,\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"View\",\n        \"printedName\": \"View\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"compatSearchable\",\n            \"printedName\": \"compatSearchable(text:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:7SwiftUI4ViewP5CometE16compatSearchable4textQrAA7BindingVySSG_tF\",\n            \"mangledName\": \"$s7SwiftUI4ViewP5CometE16compatSearchable4textQrAA7BindingVySSG_tF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : SwiftUI.View>\",\n            \"sugared_genericSig\": \"<Self where Self : SwiftUI.View>\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loading\",\n            \"printedName\": \"loading(_:title:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:7SwiftUI4ViewP5CometE7loading_5titleQrSb_SStF\",\n            \"mangledName\": \"$s7SwiftUI4ViewP5CometE7loading_5titleQrSb_SStF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : SwiftUI.View>\",\n            \"sugared_genericSig\": \"<Self where Self : SwiftUI.View>\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Protocol\",\n        \"usr\": \"s:7SwiftUI4ViewP\",\n        \"mangledName\": \"$s7SwiftUI4ViewP\",\n        \"moduleName\": \"SwiftUI\",\n        \"genericSig\": \"<τ_0_0.Body : SwiftUI.View>\",\n        \"sugared_genericSig\": \"<Self.Body : SwiftUI.View>\",\n        \"intro_Macosx\": \"10.15\",\n        \"intro_iOS\": \"13.0\",\n        \"intro_tvOS\": \"13.0\",\n        \"intro_watchOS\": \"6.0\",\n        \"declAttributes\": [\n          \"TypeEraser\",\n          \"Available\",\n          \"Available\",\n          \"Available\",\n          \"Available\"\n        ],\n        \"isExternal\": true\n      }\n    ],\n    \"json_format_version\": 8\n  },\n  \"ConstValues\": [\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Preferences\\/Published+Preferences.swift\",\n      \"kind\": \"Array\",\n      \"offset\": 177,\n      \"length\": 2,\n      \"value\": \"[]\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/UI\\/AppPicker\\/AppPicker.ViewModel.swift\",\n      \"kind\": \"Array\",\n      \"offset\": 1654,\n      \"length\": 2,\n      \"value\": \"[]\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 142,\n      \"length\": 10,\n      \"value\": \"\\\"Respring\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 187,\n      \"length\": 8,\n      \"value\": \"\\\"Search\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 243,\n      \"length\": 22,\n      \"value\": \"\\\"Loading_Applications\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 303,\n      \"length\": 12,\n      \"value\": \"\\\"Select_All\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 355,\n      \"length\": 14,\n      \"value\": \"\\\"Unselect_All\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 401,\n      \"length\": 5,\n      \"value\": \"\\\"App\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 439,\n      \"length\": 6,\n      \"value\": \"\\\"Apps\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 478,\n      \"length\": 32,\n      \"value\": \"\\\"Visible_Application_Group_User\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 545,\n      \"length\": 34,\n      \"value\": \"\\\"Visible_Application_Group_System\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 615,\n      \"length\": 35,\n      \"value\": \"\\\"Visible_Application_Group_AllApps\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Storage+Keys.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 150,\n      \"length\": 32,\n      \"value\": \"\\\"Comet.Cache.ApplicationProxies\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/UI\\/AppPicker\\/Lists\\/AppPickerSingleListView.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 317,\n      \"length\": 2,\n      \"value\": \"\\\"\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/UI\\/AppPicker\\/Lists\\/AppPickerMultiListView.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 318,\n      \"length\": 2,\n      \"value\": \"\\\"\\\"\"\n    }\n  ]\n}"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/Comet.swiftmodule/arm64-apple-ios.private.swiftinterface",
    "content": "// swift-interface-format-version: 1.0\n// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Comet\n// swift-module-flags-ignorable: -enable-bare-slash-regex\nimport Combine\n@_exported import Comet\nimport Foundation\nimport Swift\nimport SwiftUI\nimport UIKit.UIImage\nimport UIKit\nimport _Concurrency\nimport _StringProcessing\n@_exported import __ObjC\nextension Combine.Published where Value : Swift.Decodable, Value : Swift.Encodable {\n  public init(wrappedValue defaultValue: Value, key: Swift.String, registry: Swift.String)\n}\nextension Comet.AppPicker {\n  public enum VisibleApplicationGroup {\n    case user\n    case system\n    case all\n    public static func == (a: Comet.AppPicker.VisibleApplicationGroup, b: Comet.AppPicker.VisibleApplicationGroup) -> Swift.Bool\n    public func hash(into hasher: inout Swift.Hasher)\n    public var hashValue: Swift.Int {\n      get\n    }\n  }\n}\nextension SwiftUI.Color {\n  public init(hex: Swift.String)\n  public func toHex() -> Swift.String\n}\nextension UIKit.UIColor {\n  convenience public init(hex: Swift.String)\n}\npublic struct RespringButton : SwiftUI.View {\n  public init()\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14RespringButtonV4bodyQrvp\", 0) __\n}\npublic struct Respring {\n  public static func execute()\n}\n@objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class CMViewController : UIKit.UIViewController {\n  @_Concurrency.MainActor(unsafe) public func setup<Content>(content: Content) where Content : SwiftUI.View\n  @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)\n  @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder)\n  @objc deinit\n}\nextension Comet.CMViewController {\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setRootController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setParentController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setSpecifier(_ specifier: Swift.AnyObject?)\n}\npublic struct HexColorPicker : SwiftUI.View {\n  public init(selectedColorHex: SwiftUI.Binding<Swift.String>, title: Swift.String)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14HexColorPickerV4bodyQrvp\", 0) __\n}\npublic struct Preferences {\n  public static func setValue<T>(_ value: T, key: Swift.String, registry: Swift.String) throws where T : Swift.Decodable, T : Swift.Encodable\n  public static func value<T>(key: Swift.String, registry: Swift.String, returnType: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable\n}\n@_Concurrency.MainActor(unsafe) public struct AppPicker : SwiftUI.View {\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifier: SwiftUI.Binding<Swift.String>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifiers: SwiftUI.Binding<[Swift.String]>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet9AppPickerV4bodyQrvp\", 0) __\n}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Equatable {}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Hashable {}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/Comet.swiftmodule/arm64-apple-ios.swiftinterface",
    "content": "// swift-interface-format-version: 1.0\n// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Comet\n// swift-module-flags-ignorable: -enable-bare-slash-regex\nimport Combine\n@_exported import Comet\nimport Foundation\nimport Swift\nimport SwiftUI\nimport UIKit.UIImage\nimport UIKit\nimport _Concurrency\nimport _StringProcessing\n@_exported import __ObjC\nextension Combine.Published where Value : Swift.Decodable, Value : Swift.Encodable {\n  public init(wrappedValue defaultValue: Value, key: Swift.String, registry: Swift.String)\n}\nextension Comet.AppPicker {\n  public enum VisibleApplicationGroup {\n    case user\n    case system\n    case all\n    public static func == (a: Comet.AppPicker.VisibleApplicationGroup, b: Comet.AppPicker.VisibleApplicationGroup) -> Swift.Bool\n    public func hash(into hasher: inout Swift.Hasher)\n    public var hashValue: Swift.Int {\n      get\n    }\n  }\n}\nextension SwiftUI.Color {\n  public init(hex: Swift.String)\n  public func toHex() -> Swift.String\n}\nextension UIKit.UIColor {\n  convenience public init(hex: Swift.String)\n}\npublic struct RespringButton : SwiftUI.View {\n  public init()\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14RespringButtonV4bodyQrvp\", 0) __\n}\npublic struct Respring {\n  public static func execute()\n}\n@objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class CMViewController : UIKit.UIViewController {\n  @_Concurrency.MainActor(unsafe) public func setup<Content>(content: Content) where Content : SwiftUI.View\n  @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)\n  @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder)\n  @objc deinit\n}\nextension Comet.CMViewController {\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setRootController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setParentController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setSpecifier(_ specifier: Swift.AnyObject?)\n}\npublic struct HexColorPicker : SwiftUI.View {\n  public init(selectedColorHex: SwiftUI.Binding<Swift.String>, title: Swift.String)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14HexColorPickerV4bodyQrvp\", 0) __\n}\npublic struct Preferences {\n  public static func setValue<T>(_ value: T, key: Swift.String, registry: Swift.String) throws where T : Swift.Decodable, T : Swift.Encodable\n  public static func value<T>(key: Swift.String, registry: Swift.String, returnType: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable\n}\n@_Concurrency.MainActor(unsafe) public struct AppPicker : SwiftUI.View {\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifier: SwiftUI.Binding<Swift.String>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifiers: SwiftUI.Binding<[Swift.String]>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet9AppPickerV4bodyQrvp\", 0) __\n}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Equatable {}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Hashable {}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/Comet.swiftmodule/arm64e-apple-ios.abi.json",
    "content": "{\n  \"ABIRoot\": {\n    \"kind\": \"Root\",\n    \"name\": \"TopLevel\",\n    \"printedName\": \"TopLevel\",\n    \"children\": [\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerListViewRow\",\n        \"printedName\": \"AppPickerListViewRow\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"app\",\n            \"printedName\": \"app\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppModel\",\n                \"printedName\": \"Comet.AppPicker.AppModel\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvp\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 0,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvg\",\n                \"mangledName\": \"$s5Comet20AppPickerListViewRowV3appAA0bC0V0B5ModelVvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"isSelected\",\n            \"printedName\": \"isSelected\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV10isSelectedSbvp\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV10isSelectedSbvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 1,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV10isSelectedSbvg\",\n                \"mangledName\": \"$s5Comet20AppPickerListViewRowV10isSelectedSbvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet20AppPickerListViewRowV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"checkmarkView\",\n            \"printedName\": \"checkmarkView(isSelected:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV09checkmarkE010isSelectedQrSb_tF\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV09checkmarkE010isSelectedQrSb_tF\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(app:isSelected:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerListViewRow\",\n                \"printedName\": \"Comet.AppPickerListViewRow\",\n                \"usr\": \"s:5Comet20AppPickerListViewRowV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppModel\",\n                \"printedName\": \"Comet.AppPicker.AppModel\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet20AppPickerListViewRowV3app10isSelectedAcA0bC0V0B5ModelV_Sbtcfc\",\n            \"mangledName\": \"$s5Comet20AppPickerListViewRowV3app10isSelectedAcA0bC0V0B5ModelV_Sbtcfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet20AppPickerListViewRowV\",\n        \"mangledName\": \"$s5Comet20AppPickerListViewRowV\",\n        \"moduleName\": \"Comet\",\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerListViewRow_Previews\",\n        \"printedName\": \"AppPickerListViewRow_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerListViewRow_Previews\",\n                \"printedName\": \"Comet.AppPickerListViewRow_Previews\",\n                \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet29AppPickerListViewRow_PreviewsV\",\n        \"mangledName\": \"$s5Comet29AppPickerListViewRow_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"UIKit.UIImage\",\n        \"printedName\": \"UIKit.UIImage\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Copy\",\n        \"printedName\": \"Copy\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"respring\",\n            \"printedName\": \"respring\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO8respringSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO8respringSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO8respringSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO8respringSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO8respringSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO8respringSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO8respringSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO8respringSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"search\",\n            \"printedName\": \"search\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO6searchSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO6searchSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6searchSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO6searchSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6searchSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO6searchSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6searchSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO6searchSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"loadingApplications\",\n            \"printedName\": \"loadingApplications\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO19loadingApplicationsSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO19loadingApplicationsSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectAll\",\n            \"printedName\": \"selectAll\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO9selectAllSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO9selectAllSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO9selectAllSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO9selectAllSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO9selectAllSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO9selectAllSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO9selectAllSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO9selectAllSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"unselectAll\",\n            \"printedName\": \"unselectAll\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO11unselectAllSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO11unselectAllSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO11unselectAllSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO11unselectAllSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO11unselectAllSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"app\",\n            \"printedName\": \"app\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO3appSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO3appSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO3appSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO3appSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO3appSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO3appSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO3appSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO3appSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"apps\",\n            \"printedName\": \"apps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO4appsSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO4appsSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4appsSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO4appsSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4appsSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO4appsSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4appsSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO4appsSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"user\",\n            \"printedName\": \"user\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO4userSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO4userSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4userSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO4userSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4userSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO4userSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO4userSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO4userSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"system\",\n            \"printedName\": \"system\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO6systemSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO6systemSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6systemSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO6systemSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6systemSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO6systemSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO6systemSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO6systemSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"allApps\",\n            \"printedName\": \"allApps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4CopyO7allAppsSSvpZ\",\n            \"mangledName\": \"$s5Comet4CopyO7allAppsSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO7allAppsSSvgZ\",\n                \"mangledName\": \"$s5Comet4CopyO7allAppsSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO7allAppsSSvsZ\",\n                \"mangledName\": \"$s5Comet4CopyO7allAppsSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4CopyO7allAppsSSvMZ\",\n                \"mangledName\": \"$s5Comet4CopyO7allAppsSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Enum\",\n        \"usr\": \"s:5Comet4CopyO\",\n        \"mangledName\": \"$s5Comet4CopyO\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ],\n        \"isEnumExhaustive\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"ApplicationWorkspaceInterface\",\n        \"printedName\": \"ApplicationWorkspaceInterface\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loadApplicationsPublisher\",\n            \"printedName\": \"loadApplicationsPublisher()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Future\",\n                \"printedName\": \"Combine.Future<[Comet.ApplicationWorkspace.ApplicationProxy], Swift.Never>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ],\n                \"usr\": \"s:7Combine6FutureC\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Comet.ApplicationWorkspaceInterface>\",\n            \"sugared_genericSig\": \"<Self where Self : Comet.ApplicationWorkspaceInterface>\",\n            \"protocolReq\": true,\n            \"reqNewWitnessTableEntry\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Protocol\",\n        \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\",\n        \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"ApplicationWorkspace\",\n        \"printedName\": \"ApplicationWorkspace\",\n        \"children\": [\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"ApplicationProxy\",\n            \"printedName\": \"ApplicationProxy\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"id\",\n                \"printedName\": \"id\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvp\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 0,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvg\",\n                    \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2idSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"displayName\",\n                \"printedName\": \"displayName\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvp\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 1,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvg\",\n                    \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV11displayNameSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"isSystem\",\n                \"printedName\": \"isSystem\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvp\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 2,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Bool\",\n                        \"printedName\": \"Swift.Bool\",\n                        \"usr\": \"s:Sb\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvg\",\n                    \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV8isSystemSbvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(id:displayName:isSystem:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2id11displayName8isSystemAESS_SSSbtcfc\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2id11displayName8isSystemAESS_SSSbtcfc\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(from:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Decoder\",\n                    \"printedName\": \"Swift.Decoder\",\n                    \"usr\": \"s:s7DecoderP\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV4fromAEs7Decoder_p_tKcfc\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV4fromAEs7Decoder_p_tKcfc\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"throwing\": true,\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"encode\",\n                \"printedName\": \"encode(to:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Encoder\",\n                    \"printedName\": \"Swift.Encoder\",\n                    \"usr\": \"s:s7EncoderP\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV6encode2toys7Encoder_p_tKF\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV6encode2toys7Encoder_p_tKF\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"throwing\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"==\",\n                \"printedName\": \"==(_:_:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV2eeoiySbAE_AEtFZ\",\n                \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV2eeoiySbAE_AEtFZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Struct\",\n            \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\",\n            \"mangledName\": \"$s5Comet20ApplicationWorkspaceC0B5ProxyV\",\n            \"moduleName\": \"Comet\",\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Decodable\",\n                \"printedName\": \"Decodable\",\n                \"usr\": \"s:Se\",\n                \"mangledName\": \"$sSe\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Encodable\",\n                \"printedName\": \"Encodable\",\n                \"usr\": \"s:SE\",\n                \"mangledName\": \"$sSE\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Equatable\",\n                \"printedName\": \"Equatable\",\n                \"usr\": \"s:SQ\",\n                \"mangledName\": \"$sSQ\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Identifiable\",\n                \"printedName\": \"Identifiable\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeWitness\",\n                    \"name\": \"ID\",\n                    \"printedName\": \"ID\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ]\n                  }\n                ],\n                \"usr\": \"s:s12IdentifiableP\",\n                \"mangledName\": \"$ss12IdentifiableP\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Sendable\",\n                \"printedName\": \"Sendable\",\n                \"usr\": \"s:s8SendableP\",\n                \"mangledName\": \"$ss8SendableP\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loadApplicationsPublisher\",\n            \"printedName\": \"loadApplicationsPublisher()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Future\",\n                \"printedName\": \"Combine.Future<[Comet.ApplicationWorkspace.ApplicationProxy], Swift.Never>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ],\n                \"usr\": \"s:7Combine6FutureC\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet20ApplicationWorkspaceC25loadApplicationsPublisher7Combine6FutureCySayAC0B5ProxyVGs5NeverOGyF\",\n            \"mangledName\": \"$s5Comet20ApplicationWorkspaceC25loadApplicationsPublisher7Combine6FutureCySayAC0B5ProxyVGs5NeverOGyF\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"ApplicationWorkspace\",\n                \"printedName\": \"Comet.ApplicationWorkspace\",\n                \"usr\": \"s:5Comet20ApplicationWorkspaceC\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet20ApplicationWorkspaceCACycfc\",\n            \"mangledName\": \"$s5Comet20ApplicationWorkspaceCACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"s:5Comet20ApplicationWorkspaceC\",\n        \"mangledName\": \"$s5Comet20ApplicationWorkspaceC\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Final\",\n          \"AccessControl\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ObservableObject\",\n            \"printedName\": \"ObservableObject\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"ObjectWillChangePublisher\",\n                \"printedName\": \"ObjectWillChangePublisher\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ObservableObjectPublisher\",\n                    \"printedName\": \"Combine.ObservableObjectPublisher\",\n                    \"usr\": \"s:7Combine25ObservableObjectPublisherC\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7Combine16ObservableObjectP\",\n            \"mangledName\": \"$s7Combine16ObservableObjectP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ApplicationWorkspaceInterface\",\n            \"printedName\": \"ApplicationWorkspaceInterface\",\n            \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\",\n            \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"RespringButton\",\n        \"printedName\": \"RespringButton\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"RespringButton\",\n                \"printedName\": \"Comet.RespringButton\",\n                \"usr\": \"s:5Comet14RespringButtonV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet14RespringButtonVACycfc\",\n            \"mangledName\": \"$s5Comet14RespringButtonVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"AccessControl\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14RespringButtonV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet14RespringButtonV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14RespringButtonV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet14RespringButtonV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet14RespringButtonV\",\n        \"mangledName\": \"$s5Comet14RespringButtonV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"RespringButton_Previews\",\n        \"printedName\": \"RespringButton_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23RespringButton_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet23RespringButton_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23RespringButton_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet23RespringButton_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"RespringButton_Previews\",\n                \"printedName\": \"Comet.RespringButton_Previews\",\n                \"usr\": \"s:5Comet23RespringButton_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet23RespringButton_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet23RespringButton_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet23RespringButton_PreviewsV\",\n        \"mangledName\": \"$s5Comet23RespringButton_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Keys\",\n        \"printedName\": \"Keys\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"appCache\",\n            \"printedName\": \"appCache\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet4KeysO8appCacheSSvpZ\",\n            \"mangledName\": \"$s5Comet4KeysO8appCacheSSvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4KeysO8appCacheSSvgZ\",\n                \"mangledName\": \"$s5Comet4KeysO8appCacheSSvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4KeysO8appCacheSSvsZ\",\n                \"mangledName\": \"$s5Comet4KeysO8appCacheSSvsZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet4KeysO8appCacheSSvMZ\",\n                \"mangledName\": \"$s5Comet4KeysO8appCacheSSvMZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Enum\",\n        \"usr\": \"s:5Comet4KeysO\",\n        \"mangledName\": \"$s5Comet4KeysO\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ],\n        \"isEnumExhaustive\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Respring\",\n        \"printedName\": \"Respring\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"execute\",\n            \"printedName\": \"execute()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet8RespringV7executeyyFZ\",\n            \"mangledName\": \"$s5Comet8RespringV7executeyyFZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"AccessControl\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Respring\",\n                \"printedName\": \"Comet.Respring\",\n                \"usr\": \"s:5Comet8RespringV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet8RespringVACycfc\",\n            \"mangledName\": \"$s5Comet8RespringVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet8RespringV\",\n        \"mangledName\": \"$s5Comet8RespringV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Combine\",\n        \"printedName\": \"Combine\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\"\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"ApplicationWorkspaceMock\",\n        \"printedName\": \"ApplicationWorkspaceMock\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loadApplicationsPublisher\",\n            \"printedName\": \"loadApplicationsPublisher()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Future\",\n                \"printedName\": \"Combine.Future<[Comet.ApplicationWorkspace.ApplicationProxy], Swift.Never>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ],\n                \"usr\": \"s:7Combine6FutureC\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet24ApplicationWorkspaceMockC25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"mangledName\": \"$s5Comet24ApplicationWorkspaceMockC25loadApplicationsPublisher7Combine6FutureCySayAA0bC0C0B5ProxyVGs5NeverOGyF\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"ApplicationWorkspaceMock\",\n                \"printedName\": \"Comet.ApplicationWorkspaceMock\",\n                \"usr\": \"s:5Comet24ApplicationWorkspaceMockC\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet24ApplicationWorkspaceMockCACycfc\",\n            \"mangledName\": \"$s5Comet24ApplicationWorkspaceMockCACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"s:5Comet24ApplicationWorkspaceMockC\",\n        \"mangledName\": \"$s5Comet24ApplicationWorkspaceMockC\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Final\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ApplicationWorkspaceInterface\",\n            \"printedName\": \"ApplicationWorkspaceInterface\",\n            \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\",\n            \"mangledName\": \"$s5Comet29ApplicationWorkspaceInterfaceP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"CMViewController\",\n        \"printedName\": \"CMViewController\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setup\",\n            \"printedName\": \"setup(content:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"GenericTypeParam\",\n                \"printedName\": \"τ_0_0\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet16CMViewControllerC5setup7contentyx_t7SwiftUI4ViewRzlF\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC5setup7contentyx_t7SwiftUI4ViewRzlF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : SwiftUI.View>\",\n            \"sugared_genericSig\": \"<Content where Content : SwiftUI.View>\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(nibName:bundle:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"CMViewController\",\n                \"printedName\": \"Comet.CMViewController\",\n                \"usr\": \"c:@M@Comet@objc(cs)CMViewController\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"Swift.String?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"Foundation.Bundle?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bundle\",\n                    \"printedName\": \"Foundation.Bundle\",\n                    \"usr\": \"c:objc(cs)NSBundle\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"c:@M@Comet@objc(cs)CMViewController(im)initWithNibName:bundle:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc\",\n            \"moduleName\": \"Comet\",\n            \"overriding\": true,\n            \"implicit\": true,\n            \"objc_name\": \"initWithNibName:bundle:\",\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"ObjC\",\n              \"Custom\",\n              \"Override\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(coder:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"Comet.CMViewController?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"CMViewController\",\n                    \"printedName\": \"Comet.CMViewController\",\n                    \"usr\": \"c:@M@Comet@objc(cs)CMViewController\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"NSCoder\",\n                \"printedName\": \"Foundation.NSCoder\",\n                \"usr\": \"c:objc(cs)NSCoder\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"c:@M@Comet@objc(cs)CMViewController(im)initWithCoder:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC5coderACSgSo7NSCoderC_tcfc\",\n            \"moduleName\": \"Comet\",\n            \"overriding\": true,\n            \"implicit\": true,\n            \"objc_name\": \"initWithCoder:\",\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"ObjC\",\n              \"Custom\",\n              \"Required\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setRootController\",\n            \"printedName\": \"setRootController(_:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"UIKit.UIViewController?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UIViewController\",\n                    \"printedName\": \"UIKit.UIViewController\",\n                    \"usr\": \"c:objc(cs)UIViewController\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"c:@CM@Comet@objc(cs)CMViewController(im)setRootController:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC07setRootC0yySo06UIViewC0CSgF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"Custom\",\n              \"ObjC\"\n            ],\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setParentController\",\n            \"printedName\": \"setParentController(_:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"UIKit.UIViewController?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UIViewController\",\n                    \"printedName\": \"UIKit.UIViewController\",\n                    \"usr\": \"c:objc(cs)UIViewController\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"c:@CM@Comet@objc(cs)CMViewController(im)setParentController:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC09setParentC0yySo06UIViewC0CSgF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"Custom\",\n              \"ObjC\"\n            ],\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setSpecifier\",\n            \"printedName\": \"setSpecifier(_:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"AnyObject?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ProtocolComposition\",\n                    \"printedName\": \"AnyObject\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"c:@CM@Comet@objc(cs)CMViewController(im)setSpecifier:\",\n            \"mangledName\": \"$s5Comet16CMViewControllerC12setSpecifieryyyXlSgF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"declAttributes\": [\n              \"Dynamic\",\n              \"Custom\",\n              \"ObjC\"\n            ],\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:@M@Comet@objc(cs)CMViewController\",\n        \"mangledName\": \"$s5Comet16CMViewControllerC\",\n        \"moduleName\": \"Comet\",\n        \"isOpen\": true,\n        \"declAttributes\": [\n          \"Custom\",\n          \"AccessControl\",\n          \"ObjCMembers\",\n          \"RawDocComment\",\n          \"ObjC\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)UIViewController\",\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"UIKit.UIViewController\",\n          \"UIKit.UIResponder\",\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"HexColorPicker\",\n        \"printedName\": \"HexColorPicker\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedColorHex\",\n            \"printedName\": \"selectedColorHex\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvs\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV08selectedcB0SSvM\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB0SSvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedColorHex\",\n            \"printedName\": \"$selectedColorHex\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV09$selectedcB07SwiftUI7BindingVySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"title\",\n            \"printedName\": \"title\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV5titleSSvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV5titleSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV5titleSSvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV5titleSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(selectedColorHex:title:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"HexColorPicker\",\n                \"printedName\": \"Comet.HexColorPicker\",\n                \"usr\": \"s:5Comet14HexColorPickerV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet14HexColorPickerV08selectedcB05titleAC7SwiftUI7BindingVySSG_SStcfc\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV08selectedcB05titleAC7SwiftUI7BindingVySSG_SStcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"AccessControl\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet14HexColorPickerV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet14HexColorPickerV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet14HexColorPickerV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet14HexColorPickerV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet14HexColorPickerV\",\n        \"mangledName\": \"$s5Comet14HexColorPickerV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"HexColorPicker_Previews\",\n        \"printedName\": \"HexColorPicker_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23HexColorPicker_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23HexColorPicker_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"HexColorPicker_Previews\",\n                \"printedName\": \"Comet.HexColorPicker_Previews\",\n                \"usr\": \"s:5Comet23HexColorPicker_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet23HexColorPicker_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet23HexColorPicker_PreviewsV\",\n        \"mangledName\": \"$s5Comet23HexColorPicker_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerSingleListView\",\n        \"printedName\": \"AppPickerSingleListView\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"apps\",\n            \"printedName\": \"apps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 0,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"sectionTitle\",\n            \"printedName\": \"sectionTitle\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV12sectionTitleSSvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV12sectionTitleSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 1,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV12sectionTitleSSvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV12sectionTitleSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifier\",\n            \"printedName\": \"selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvs\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvM\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV08selectedB10IdentifierSSvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifier\",\n            \"printedName\": \"$selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_selectedAppIdentifier\",\n            \"printedName\": \"_selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV09_selectedB10Identifier33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV09_selectedB10Identifier33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 2,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_searchQuery\",\n            \"printedName\": \"_searchQuery\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"State\",\n                \"printedName\": \"SwiftUI.State<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI5StateV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV12_searchQuery33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI5StateVySSGvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV12_searchQuery33_1F1C409B4B1A2B285E2563A69AD9CBC0LL7SwiftUI5StateVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 3,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(apps:sectionTitle:selectedAppIdentifier:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerSingleListView\",\n                \"printedName\": \"Comet.AppPickerSingleListView\",\n                \"usr\": \"s:5Comet23AppPickerSingleListViewV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet23AppPickerSingleListViewV4apps12sectionTitle08selectedB10IdentifierACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySSGtcfc\",\n            \"mangledName\": \"$s5Comet23AppPickerSingleListViewV4apps12sectionTitle08selectedB10IdentifierACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySSGtcfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet23AppPickerSingleListViewV\",\n        \"mangledName\": \"$s5Comet23AppPickerSingleListViewV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerSingleListView_Previews\",\n        \"printedName\": \"AppPickerSingleListView_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerSingleListView_Previews\",\n                \"printedName\": \"Comet.AppPickerSingleListView_Previews\",\n                \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet32AppPickerSingleListView_PreviewsV\",\n        \"mangledName\": \"$s5Comet32AppPickerSingleListView_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerMultiListView\",\n        \"printedName\": \"AppPickerMultiListView\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"apps\",\n            \"printedName\": \"apps\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 0,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4appsSayAA0bC0V0B5ModelVGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"sectionTitle\",\n            \"printedName\": \"sectionTitle\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV12sectionTitleSSvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV12sectionTitleSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 1,\n            \"isLet\": true,\n            \"hasStorage\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV12sectionTitleSSvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV12sectionTitleSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"declAttributes\": [\n                  \"Transparent\"\n                ],\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifiers\",\n            \"printedName\": \"selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Swift.String]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvs\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvM\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV08selectedB11IdentifiersSaySSGvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifiers\",\n            \"printedName\": \"$selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Swift.String]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"String\",\n                            \"printedName\": \"Swift.String\",\n                            \"usr\": \"s:SS\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_selectedAppIdentifiers\",\n            \"printedName\": \"_selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV09_selectedB11Identifiers33_0490D53C6A73466092405F6310F9A998LL7SwiftUI7BindingVySaySSGGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV09_selectedB11Identifiers33_0490D53C6A73466092405F6310F9A998LL7SwiftUI7BindingVySaySSGGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 2,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"_searchQuery\",\n            \"printedName\": \"_searchQuery\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"State\",\n                \"printedName\": \"SwiftUI.State<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI5StateV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV12_searchQuery33_0490D53C6A73466092405F6310F9A998LL7SwiftUI5StateVySSGvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV12_searchQuery33_0490D53C6A73466092405F6310F9A998LL7SwiftUI5StateVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"isInternal\": true,\n            \"declAttributes\": [\n              \"HasInitialValue\",\n              \"HasStorage\"\n            ],\n            \"fixedbinaryorder\": 3,\n            \"hasStorage\": true\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(apps:sectionTitle:selectedAppIdentifiers:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerMultiListView\",\n                \"printedName\": \"Comet.AppPickerMultiListView\",\n                \"usr\": \"s:5Comet22AppPickerMultiListViewV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet22AppPickerMultiListViewV4apps12sectionTitle08selectedB11IdentifiersACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySaySSGGtcfc\",\n            \"mangledName\": \"$s5Comet22AppPickerMultiListViewV4apps12sectionTitle08selectedB11IdentifiersACSayAA0bC0V0B5ModelVG_SS7SwiftUI7BindingVySaySSGGtcfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet22AppPickerMultiListViewV\",\n        \"mangledName\": \"$s5Comet22AppPickerMultiListViewV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPickerMultiListView_Previews\",\n        \"printedName\": \"AppPickerMultiListView_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPickerMultiListView_Previews\",\n                \"printedName\": \"Comet.AppPickerMultiListView_Previews\",\n                \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet31AppPickerMultiListView_PreviewsV\",\n        \"mangledName\": \"$s5Comet31AppPickerMultiListView_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"Foundation\",\n        \"printedName\": \"Foundation\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Preferences\",\n        \"printedName\": \"Preferences\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setValue\",\n            \"printedName\": \"setValue(_:key:registry:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"GenericTypeParam\",\n                \"printedName\": \"τ_0_0\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet11PreferencesV8setValue_3key8registryyx_S2StKSeRzSERzlFZ\",\n            \"mangledName\": \"$s5Comet11PreferencesV8setValue_3key8registryyx_S2StKSeRzSERzlFZ\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>\",\n            \"sugared_genericSig\": \"<T where T : Swift.Decodable, T : Swift.Encodable>\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"throwing\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"value\",\n            \"printedName\": \"value(key:registry:returnType:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"τ_0_0?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Metatype\",\n                \"printedName\": \"τ_0_0.Type\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:5Comet11PreferencesV5value3key8registry10returnTypexSgSS_SSxmtSeRzSERzlFZ\",\n            \"mangledName\": \"$s5Comet11PreferencesV5value3key8registry10returnTypexSgSS_SSxmtSeRzSERzlFZ\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>\",\n            \"sugared_genericSig\": \"<T where T : Swift.Decodable, T : Swift.Encodable>\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Preferences\",\n                \"printedName\": \"Comet.Preferences\",\n                \"usr\": \"s:5Comet11PreferencesV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet11PreferencesVACycfc\",\n            \"mangledName\": \"$s5Comet11PreferencesVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet11PreferencesV\",\n        \"mangledName\": \"$s5Comet11PreferencesV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"AccessControl\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"Import\",\n        \"name\": \"SwiftUI\",\n        \"printedName\": \"SwiftUI\",\n        \"declKind\": \"Import\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"RawDocComment\"\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPicker\",\n        \"printedName\": \"AppPicker\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifier\",\n            \"printedName\": \"selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvs\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB10IdentifierSSvM\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB10IdentifierSSvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifier\",\n            \"printedName\": \"$selectedAppIdentifier\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV09$selectedB10Identifier7SwiftUI7BindingVySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"selectedAppIdentifiers\",\n            \"printedName\": \"selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[Swift.String]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"ProjectedValueProperty\",\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Set\",\n                \"printedName\": \"Set()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvs\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvs\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"set\"\n              },\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Modify\",\n                \"printedName\": \"Modify()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV08selectedB11IdentifiersSaySSGvM\",\n                \"mangledName\": \"$s5Comet9AppPickerV08selectedB11IdentifiersSaySSGvM\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"_modify\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"$selectedAppIdentifiers\",\n            \"printedName\": \"$selectedAppIdentifiers\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvp\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Binding\",\n                    \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Swift.String]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"String\",\n                            \"printedName\": \"Swift.String\",\n                            \"usr\": \"s:SS\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:7SwiftUI7BindingV\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV09$selectedB11Identifiers7SwiftUI7BindingVySaySSGGvg\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(selectedAppIdentifier:title:visibleApplicationGroup:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPicker\",\n                \"printedName\": \"Comet.AppPicker\",\n                \"usr\": \"s:5Comet9AppPickerV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"VisibleApplicationGroup\",\n                \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                \"hasDefaultArg\": true,\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB10Identifier5title23visibleApplicationGroupAC7SwiftUI7BindingVySSG_SSAC07VisiblehI0Otcfc\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB10Identifier5title23visibleApplicationGroupAC7SwiftUI7BindingVySSG_SSAC07VisiblehI0Otcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(selectedAppIdentifiers:title:visibleApplicationGroup:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPicker\",\n                \"printedName\": \"Comet.AppPicker\",\n                \"usr\": \"s:5Comet9AppPickerV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<[Swift.String]>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Swift.String]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"VisibleApplicationGroup\",\n                \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                \"hasDefaultArg\": true,\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet9AppPickerV08selectedB11Identifiers5title23visibleApplicationGroupAC7SwiftUI7BindingVySaySSGG_SSAC07VisiblehI0Otcfc\",\n            \"mangledName\": \"$s5Comet9AppPickerV08selectedB11Identifiers5title23visibleApplicationGroupAC7SwiftUI7BindingVySaySSGG_SSAC07VisiblehI0Otcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\",\n              \"RawDocComment\"\n            ],\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Var\",\n            \"name\": \"body\",\n            \"printedName\": \"body\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet9AppPickerV4bodyQrvp\",\n            \"mangledName\": \"$s5Comet9AppPickerV4bodyQrvp\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Custom\",\n              \"AccessControl\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet9AppPickerV4bodyQrvg\",\n                \"mangledName\": \"$s5Comet9AppPickerV4bodyQrvg\",\n                \"moduleName\": \"Comet\",\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"VisibleApplicationGroup\",\n            \"printedName\": \"VisibleApplicationGroup\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"user\",\n                \"printedName\": \"user\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeFunc\",\n                    \"name\": \"Function\",\n                    \"printedName\": \"(Comet.AppPicker.VisibleApplicationGroup.Type) -> Comet.AppPicker.VisibleApplicationGroup\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Metatype\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup.Type\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"VisibleApplicationGroup\",\n                            \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                          }\n                        ]\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"EnumElement\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO4useryA2EmF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO4useryA2EmF\",\n                \"moduleName\": \"Comet\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"system\",\n                \"printedName\": \"system\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeFunc\",\n                    \"name\": \"Function\",\n                    \"printedName\": \"(Comet.AppPicker.VisibleApplicationGroup.Type) -> Comet.AppPicker.VisibleApplicationGroup\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Metatype\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup.Type\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"VisibleApplicationGroup\",\n                            \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                          }\n                        ]\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"EnumElement\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO6systemyA2EmF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO6systemyA2EmF\",\n                \"moduleName\": \"Comet\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"all\",\n                \"printedName\": \"all\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeFunc\",\n                    \"name\": \"Function\",\n                    \"printedName\": \"(Comet.AppPicker.VisibleApplicationGroup.Type) -> Comet.AppPicker.VisibleApplicationGroup\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Metatype\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup.Type\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"VisibleApplicationGroup\",\n                            \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                          }\n                        ]\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"EnumElement\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO3allyA2EmF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO3allyA2EmF\",\n                \"moduleName\": \"Comet\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"title\",\n                \"printedName\": \"title\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvp\",\n                \"moduleName\": \"Comet\",\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO5titleSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"==\",\n                \"printedName\": \"==(_:_:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO2eeoiySbAE_AEtFZ\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO2eeoiySbAE_AEtFZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"hashValue\",\n                \"printedName\": \"hashValue\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivp\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivp\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO9hashValueSivg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"hash\",\n                \"printedName\": \"hash(into:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Hasher\",\n                    \"printedName\": \"Swift.Hasher\",\n                    \"paramValueOwnership\": \"InOut\",\n                    \"usr\": \"s:s6HasherV\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO4hash4intoys6HasherVz_tF\",\n                \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO4hash4intoys6HasherVz_tF\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Enum\",\n            \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\",\n            \"mangledName\": \"$s5Comet9AppPickerV23VisibleApplicationGroupO\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Equatable\",\n                \"printedName\": \"Equatable\",\n                \"usr\": \"s:SQ\",\n                \"mangledName\": \"$sSQ\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Hashable\",\n                \"printedName\": \"Hashable\",\n                \"usr\": \"s:SH\",\n                \"mangledName\": \"$sSH\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"AppModel\",\n            \"printedName\": \"AppModel\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"proxy\",\n                \"printedName\": \"proxy\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 0,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV5proxyAA20ApplicationWorkspaceC0F5ProxyVvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"icon\",\n                \"printedName\": \"icon\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UIImage\",\n                    \"printedName\": \"UIKit.UIImage\",\n                    \"usr\": \"c:objc(cs)UIImage\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 1,\n                \"isLet\": true,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"UIImage\",\n                        \"printedName\": \"UIKit.UIImage\",\n                        \"usr\": \"c:objc(cs)UIImage\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV4iconSo7UIImageCvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"id\",\n                \"printedName\": \"id\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV2idSSvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV2idSSvp\",\n                \"moduleName\": \"Comet\",\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV2idSSvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV2idSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(proxy:icon:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationProxy\",\n                    \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                    \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Optional\",\n                    \"printedName\": \"UIKit.UIImage?\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"UIImage\",\n                        \"printedName\": \"UIKit.UIImage\",\n                        \"usr\": \"c:objc(cs)UIImage\"\n                      }\n                    ],\n                    \"usr\": \"s:Sq\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV5proxy4iconAeA20ApplicationWorkspaceC0G5ProxyV_So7UIImageCSgtcfc\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV5proxy4iconAeA20ApplicationWorkspaceC0G5ProxyV_So7UIImageCSgtcfc\",\n                \"moduleName\": \"Comet\",\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"==\",\n                \"printedName\": \"==(_:_:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"AppModel\",\n                    \"printedName\": \"Comet.AppPicker.AppModel\",\n                    \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV0B5ModelV2eeoiySbAE_AEtFZ\",\n                \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV2eeoiySbAE_AEtFZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"implicit\": true,\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Struct\",\n            \"usr\": \"s:5Comet9AppPickerV0B5ModelV\",\n            \"mangledName\": \"$s5Comet9AppPickerV0B5ModelV\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Identifiable\",\n                \"printedName\": \"Identifiable\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeWitness\",\n                    \"name\": \"ID\",\n                    \"printedName\": \"ID\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ]\n                  }\n                ],\n                \"usr\": \"s:s12IdentifiableP\",\n                \"mangledName\": \"$ss12IdentifiableP\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Equatable\",\n                \"printedName\": \"Equatable\",\n                \"usr\": \"s:SQ\",\n                \"mangledName\": \"$sSQ\"\n              },\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"Sendable\",\n                \"printedName\": \"Sendable\",\n                \"usr\": \"s:s8SendableP\",\n                \"mangledName\": \"$ss8SendableP\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"TypeDecl\",\n            \"name\": \"ViewModel\",\n            \"printedName\": \"ViewModel\",\n            \"children\": [\n              {\n                \"kind\": \"Var\",\n                \"name\": \"bag\",\n                \"printedName\": \"bag\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Set\",\n                    \"printedName\": \"Swift.Set<Combine.AnyCancellable>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AnyCancellable\",\n                        \"printedName\": \"Combine.AnyCancellable\",\n                        \"usr\": \"s:7Combine14AnyCancellableC\"\n                      }\n                    ],\n                    \"usr\": \"s:Sh\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC3bag33_198DF74090DEB73DAF2A32D7D3C51330LLShy7Combine14AnyCancellableCGvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC3bag33_198DF74090DEB73DAF2A32D7D3C51330LLShy7Combine14AnyCancellableCGvp\",\n                \"moduleName\": \"Comet\",\n                \"isInternal\": true,\n                \"declAttributes\": [\n                  \"HasInitialValue\",\n                  \"Final\",\n                  \"HasStorage\",\n                  \"AccessControl\"\n                ],\n                \"fixedbinaryorder\": 0,\n                \"hasStorage\": true\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"workspace\",\n                \"printedName\": \"workspace\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationWorkspaceInterface\",\n                    \"printedName\": \"Comet.ApplicationWorkspaceInterface\",\n                    \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC9workspace33_198DF74090DEB73DAF2A32D7D3C51330LLAA29ApplicationWorkspaceInterface_pvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC9workspace33_198DF74090DEB73DAF2A32D7D3C51330LLAA29ApplicationWorkspaceInterface_pvp\",\n                \"moduleName\": \"Comet\",\n                \"isInternal\": true,\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"AccessControl\"\n                ],\n                \"fixedbinaryorder\": 1,\n                \"isLet\": true,\n                \"hasStorage\": true\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"visibleApplicationGroup\",\n                \"printedName\": \"visibleApplicationGroup\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"SetterAccess\"\n                ],\n                \"fixedbinaryorder\": 2,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"VisibleApplicationGroup\",\n                        \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                        \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC23visibleApplicationGroupAC07VisiblegH0Ovg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\",\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"title\",\n                \"printedName\": \"title\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC5titleSSvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC5titleSSvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"SetterAccess\"\n                ],\n                \"fixedbinaryorder\": 3,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC5titleSSvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC5titleSSvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\",\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"isSinglePicker\",\n                \"printedName\": \"isSinglePicker\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC08isSingleC0Sbvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC08isSingleC0Sbvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\",\n                  \"HasStorage\",\n                  \"SetterAccess\"\n                ],\n                \"fixedbinaryorder\": 4,\n                \"hasStorage\": true,\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Bool\",\n                        \"printedName\": \"Swift.Bool\",\n                        \"usr\": \"s:Sb\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC08isSingleC0Sbvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC08isSingleC0Sbvg\",\n                    \"moduleName\": \"Comet\",\n                    \"implicit\": true,\n                    \"declAttributes\": [\n                      \"Transparent\",\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"_appProxies\",\n                \"printedName\": \"_appProxies\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Published\",\n                    \"printedName\": \"Combine.Published<[Comet.ApplicationWorkspace.ApplicationProxy]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"ApplicationProxy\",\n                            \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                            \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:7Combine9PublishedV\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC11_appProxies33_198DF74090DEB73DAF2A32D7D3C51330LL7Combine9PublishedVySayAA20ApplicationWorkspaceC0Q5ProxyVGGvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC11_appProxies33_198DF74090DEB73DAF2A32D7D3C51330LL7Combine9PublishedVySayAA20ApplicationWorkspaceC0Q5ProxyVGGvp\",\n                \"moduleName\": \"Comet\",\n                \"implicit\": true,\n                \"isInternal\": true,\n                \"declAttributes\": [\n                  \"HasInitialValue\",\n                  \"Final\",\n                  \"HasStorage\"\n                ],\n                \"fixedbinaryorder\": 5,\n                \"hasStorage\": true\n              },\n              {\n                \"kind\": \"Var\",\n                \"name\": \"appModels\",\n                \"printedName\": \"appModels\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"declKind\": \"Var\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvp\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvp\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"accessors\": [\n                  {\n                    \"kind\": \"Accessor\",\n                    \"name\": \"Get\",\n                    \"printedName\": \"Get()\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Comet.AppPicker.AppModel]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"AppModel\",\n                            \"printedName\": \"Comet.AppPicker.AppModel\",\n                            \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"declKind\": \"Accessor\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvg\",\n                    \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC9appModelsSayAC0bE0VGvg\",\n                    \"moduleName\": \"Comet\",\n                    \"declAttributes\": [\n                      \"Final\"\n                    ],\n                    \"accessorKind\": \"get\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"Constructor\",\n                \"name\": \"init\",\n                \"printedName\": \"init(visibleApplicationGroup:title:isSinglePicker:workspace:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ViewModel\",\n                    \"printedName\": \"Comet.AppPicker.ViewModel\",\n                    \"usr\": \"s:5Comet9AppPickerV9ViewModelC\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"VisibleApplicationGroup\",\n                    \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                    \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bool\",\n                    \"printedName\": \"Swift.Bool\",\n                    \"usr\": \"s:Sb\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ApplicationWorkspaceInterface\",\n                    \"printedName\": \"Comet.ApplicationWorkspaceInterface\",\n                    \"hasDefaultArg\": true,\n                    \"usr\": \"s:5Comet29ApplicationWorkspaceInterfaceP\"\n                  }\n                ],\n                \"declKind\": \"Constructor\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC23visibleApplicationGroup5title08isSingleC09workspaceAeC07VisiblegH0O_SSSbAA0G18WorkspaceInterface_ptcfc\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC23visibleApplicationGroup5title08isSingleC09workspaceAeC07VisiblegH0O_SSSbAA0G18WorkspaceInterface_ptcfc\",\n                \"moduleName\": \"Comet\",\n                \"init_kind\": \"Designated\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"loadIfNeeded\",\n                \"printedName\": \"loadIfNeeded()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Void\",\n                    \"printedName\": \"()\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC12loadIfNeededyyF\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC12loadIfNeededyyF\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"funcSelfKind\": \"NonMutating\"\n              },\n              {\n                \"kind\": \"Function\",\n                \"name\": \"app\",\n                \"printedName\": \"app(matchingIdentifier:)\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Optional\",\n                    \"printedName\": \"Comet.AppPicker.AppModel?\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"AppModel\",\n                        \"printedName\": \"Comet.AppPicker.AppModel\",\n                        \"usr\": \"s:5Comet9AppPickerV0B5ModelV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sq\"\n                  },\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Func\",\n                \"usr\": \"s:5Comet9AppPickerV9ViewModelC3app18matchingIdentifierAC0bE0VSgSS_tF\",\n                \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC3app18matchingIdentifierAC0bE0VSgSS_tF\",\n                \"moduleName\": \"Comet\",\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"funcSelfKind\": \"NonMutating\"\n              }\n            ],\n            \"declKind\": \"Class\",\n            \"usr\": \"s:5Comet9AppPickerV9ViewModelC\",\n            \"mangledName\": \"$s5Comet9AppPickerV9ViewModelC\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"isFromExtension\": true,\n            \"conformances\": [\n              {\n                \"kind\": \"Conformance\",\n                \"name\": \"ObservableObject\",\n                \"printedName\": \"ObservableObject\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeWitness\",\n                    \"name\": \"ObjectWillChangePublisher\",\n                    \"printedName\": \"ObjectWillChangePublisher\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ObservableObjectPublisher\",\n                        \"printedName\": \"Combine.ObservableObjectPublisher\",\n                        \"usr\": \"s:7Combine25ObservableObjectPublisherC\"\n                      }\n                    ]\n                  }\n                ],\n                \"usr\": \"s:7Combine16ObservableObjectP\",\n                \"mangledName\": \"$s7Combine16ObservableObjectP\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet9AppPickerV\",\n        \"mangledName\": \"$s5Comet9AppPickerV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"AccessControl\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"AppPicker_Previews\",\n        \"printedName\": \"AppPicker_Previews\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"previews\",\n            \"printedName\": \"previews\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:5Comet18AppPicker_PreviewsV8previewsQrvpZ\",\n            \"mangledName\": \"$s5Comet18AppPicker_PreviewsV8previewsQrvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:5Comet18AppPicker_PreviewsV8previewsQrvgZ\",\n                \"mangledName\": \"$s5Comet18AppPicker_PreviewsV8previewsQrvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          },\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"AppPicker_Previews\",\n                \"printedName\": \"Comet.AppPicker_Previews\",\n                \"usr\": \"s:5Comet18AppPicker_PreviewsV\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:5Comet18AppPicker_PreviewsVACycfc\",\n            \"mangledName\": \"$s5Comet18AppPicker_PreviewsVACycfc\",\n            \"moduleName\": \"Comet\",\n            \"implicit\": true,\n            \"declAttributes\": [\n              \"Custom\"\n            ],\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:5Comet18AppPicker_PreviewsV\",\n        \"mangledName\": \"$s5Comet18AppPicker_PreviewsV\",\n        \"moduleName\": \"Comet\",\n        \"declAttributes\": [\n          \"Custom\",\n          \"RawDocComment\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"PreviewProvider\",\n            \"printedName\": \"PreviewProvider\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Previews\",\n                \"printedName\": \"Previews\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some SwiftUI.View\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"View\",\n                        \"printedName\": \"SwiftUI.View\",\n                        \"usr\": \"s:7SwiftUI4ViewP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI15PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI15PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_PreviewProvider\",\n            \"printedName\": \"_PreviewProvider\",\n            \"usr\": \"s:7SwiftUI16_PreviewProviderP\",\n            \"mangledName\": \"$s7SwiftUI16_PreviewProviderP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"String\",\n        \"printedName\": \"String\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"localized\",\n            \"printedName\": \"localized\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:SS5CometE9localizedSSvp\",\n            \"mangledName\": \"$sSS5CometE9localizedSSvp\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:SS5CometE9localizedSSvg\",\n                \"mangledName\": \"$sSS5CometE9localizedSSvg\",\n                \"moduleName\": \"Comet\",\n                \"isFromExtension\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:SS\",\n        \"mangledName\": \"$sSS\",\n        \"moduleName\": \"Swift\",\n        \"declAttributes\": [\n          \"Frozen\"\n        ],\n        \"isExternal\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Decodable\",\n            \"printedName\": \"Decodable\",\n            \"usr\": \"s:Se\",\n            \"mangledName\": \"$sSe\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Encodable\",\n            \"printedName\": \"Encodable\",\n            \"usr\": \"s:SE\",\n            \"mangledName\": \"$sSE\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CodingKeyRepresentable\",\n            \"printedName\": \"CodingKeyRepresentable\",\n            \"usr\": \"s:s22CodingKeyRepresentableP\",\n            \"mangledName\": \"$ss22CodingKeyRepresentableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_HasContiguousBytes\",\n            \"printedName\": \"_HasContiguousBytes\",\n            \"usr\": \"s:s19_HasContiguousBytesP\",\n            \"mangledName\": \"$ss19_HasContiguousBytesP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomReflectable\",\n            \"printedName\": \"CustomReflectable\",\n            \"usr\": \"s:s17CustomReflectableP\",\n            \"mangledName\": \"$ss17CustomReflectableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_CustomPlaygroundQuickLookable\",\n            \"printedName\": \"_CustomPlaygroundQuickLookable\",\n            \"usr\": \"s:s30_CustomPlaygroundQuickLookableP\",\n            \"mangledName\": \"$ss30_CustomPlaygroundQuickLookableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"TextOutputStream\",\n            \"printedName\": \"TextOutputStream\",\n            \"usr\": \"s:s16TextOutputStreamP\",\n            \"mangledName\": \"$ss16TextOutputStreamP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"TextOutputStreamable\",\n            \"printedName\": \"TextOutputStreamable\",\n            \"usr\": \"s:s20TextOutputStreamableP\",\n            \"mangledName\": \"$ss20TextOutputStreamableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByBuiltinUnicodeScalarLiteral\",\n            \"printedName\": \"_ExpressibleByBuiltinUnicodeScalarLiteral\",\n            \"usr\": \"s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP\",\n            \"mangledName\": \"$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByBuiltinExtendedGraphemeClusterLiteral\",\n            \"printedName\": \"_ExpressibleByBuiltinExtendedGraphemeClusterLiteral\",\n            \"usr\": \"s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP\",\n            \"mangledName\": \"$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByBuiltinStringLiteral\",\n            \"printedName\": \"_ExpressibleByBuiltinStringLiteral\",\n            \"usr\": \"s:s34_ExpressibleByBuiltinStringLiteralP\",\n            \"mangledName\": \"$ss34_ExpressibleByBuiltinStringLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByStringLiteral\",\n            \"printedName\": \"ExpressibleByStringLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"StringLiteralType\",\n                \"printedName\": \"StringLiteralType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s26ExpressibleByStringLiteralP\",\n            \"mangledName\": \"$ss26ExpressibleByStringLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByExtendedGraphemeClusterLiteral\",\n            \"printedName\": \"ExpressibleByExtendedGraphemeClusterLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"ExtendedGraphemeClusterLiteralType\",\n                \"printedName\": \"ExtendedGraphemeClusterLiteralType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s43ExpressibleByExtendedGraphemeClusterLiteralP\",\n            \"mangledName\": \"$ss43ExpressibleByExtendedGraphemeClusterLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByUnicodeScalarLiteral\",\n            \"printedName\": \"ExpressibleByUnicodeScalarLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UnicodeScalarLiteralType\",\n                \"printedName\": \"UnicodeScalarLiteralType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s33ExpressibleByUnicodeScalarLiteralP\",\n            \"mangledName\": \"$ss33ExpressibleByUnicodeScalarLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"BidirectionalCollection\",\n            \"printedName\": \"BidirectionalCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Character\",\n                    \"printedName\": \"Swift.Character\",\n                    \"usr\": \"s:SJ\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Index\",\n                    \"printedName\": \"Swift.String.Index\",\n                    \"usr\": \"s:SS5IndexV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DefaultIndices\",\n                    \"printedName\": \"Swift.DefaultIndices<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:SI\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:SK\",\n            \"mangledName\": \"$sSK\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Collection\",\n            \"printedName\": \"Collection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Character\",\n                    \"printedName\": \"Swift.Character\",\n                    \"usr\": \"s:SJ\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Index\",\n                    \"printedName\": \"Swift.String.Index\",\n                    \"usr\": \"s:SS5IndexV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Iterator\",\n                    \"printedName\": \"Swift.String.Iterator\",\n                    \"usr\": \"s:SS8IteratorV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DefaultIndices\",\n                    \"printedName\": \"Swift.DefaultIndices<Swift.String>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"String\",\n                        \"printedName\": \"Swift.String\",\n                        \"usr\": \"s:SS\"\n                      }\n                    ],\n                    \"usr\": \"s:SI\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sl\",\n            \"mangledName\": \"$sSl\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sequence\",\n            \"printedName\": \"Sequence\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Character\",\n                    \"printedName\": \"Swift.Character\",\n                    \"usr\": \"s:SJ\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Iterator\",\n                    \"printedName\": \"Swift.String.Iterator\",\n                    \"usr\": \"s:SS8IteratorV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:ST\",\n            \"mangledName\": \"$sST\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Comparable\",\n            \"printedName\": \"Comparable\",\n            \"usr\": \"s:SL\",\n            \"mangledName\": \"$sSL\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"StringProtocol\",\n            \"printedName\": \"StringProtocol\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UTF8View\",\n                \"printedName\": \"UTF8View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UTF8View\",\n                    \"printedName\": \"Swift.String.UTF8View\",\n                    \"usr\": \"s:SS8UTF8ViewV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UTF16View\",\n                \"printedName\": \"UTF16View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UTF16View\",\n                    \"printedName\": \"Swift.String.UTF16View\",\n                    \"usr\": \"s:SS9UTF16ViewV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"UnicodeScalarView\",\n                \"printedName\": \"UnicodeScalarView\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"UnicodeScalarView\",\n                    \"printedName\": \"Swift.String.UnicodeScalarView\",\n                    \"usr\": \"s:SS17UnicodeScalarViewV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sy\",\n            \"mangledName\": \"$sSy\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByStringInterpolation\",\n            \"printedName\": \"ExpressibleByStringInterpolation\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"StringInterpolation\",\n                \"printedName\": \"StringInterpolation\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DefaultStringInterpolation\",\n                    \"printedName\": \"Swift.DefaultStringInterpolation\",\n                    \"usr\": \"s:s26DefaultStringInterpolationV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s32ExpressibleByStringInterpolationP\",\n            \"mangledName\": \"$ss32ExpressibleByStringInterpolationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"LosslessStringConvertible\",\n            \"printedName\": \"LosslessStringConvertible\",\n            \"usr\": \"s:s25LosslessStringConvertibleP\",\n            \"mangledName\": \"$ss25LosslessStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"RangeReplaceableCollection\",\n            \"printedName\": \"RangeReplaceableCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Substring\",\n                    \"printedName\": \"Swift.Substring\",\n                    \"usr\": \"s:Ss\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sm\",\n            \"mangledName\": \"$sSm\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"MirrorPath\",\n            \"printedName\": \"MirrorPath\",\n            \"usr\": \"s:s10MirrorPathP\",\n            \"mangledName\": \"$ss10MirrorPathP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ObjectiveCBridgeable\",\n            \"printedName\": \"_ObjectiveCBridgeable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"_ObjectiveCType\",\n                \"printedName\": \"_ObjectiveCType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"NSString\",\n                    \"printedName\": \"Foundation.NSString\",\n                    \"usr\": \"c:objc(cs)NSString\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s21_ObjectiveCBridgeableP\",\n            \"mangledName\": \"$ss21_ObjectiveCBridgeableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Transferable\",\n            \"printedName\": \"Transferable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Representation\",\n                \"printedName\": \"Representation\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some CoreTransferable.TransferRepresentation\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"TransferRepresentation\",\n                        \"printedName\": \"CoreTransferable.TransferRepresentation\",\n                        \"usr\": \"s:16CoreTransferable22TransferRepresentationP\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Sendable\",\n                        \"printedName\": \"Swift.Sendable\",\n                        \"usr\": \"s:s8SendableP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:16CoreTransferable0B0P\",\n            \"mangledName\": \"$s16CoreTransferable0B0P\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Published\",\n        \"printedName\": \"Published\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(wrappedValue:key:registry:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Published\",\n                \"printedName\": \"Combine.Published<τ_0_0>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ],\n                \"usr\": \"s:7Combine9PublishedV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"GenericTypeParam\",\n                \"printedName\": \"τ_0_0\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:7Combine9PublishedV5CometSeRzSERzlE12wrappedValue3key8registryACyxGx_S2Stcfc\",\n            \"mangledName\": \"$s7Combine9PublishedV5CometSeRzSERzlE12wrappedValue3key8registryACyxGx_S2Stcfc\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>\",\n            \"sugared_genericSig\": \"<Value where Value : Swift.Decodable, Value : Swift.Encodable>\",\n            \"declAttributes\": [\n              \"RawDocComment\"\n            ],\n            \"isFromExtension\": true,\n            \"init_kind\": \"Designated\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:7Combine9PublishedV\",\n        \"mangledName\": \"$s7Combine9PublishedV\",\n        \"moduleName\": \"Combine\",\n        \"genericSig\": \"<τ_0_0>\",\n        \"sugared_genericSig\": \"<Value>\",\n        \"intro_Macosx\": \"10.15\",\n        \"intro_iOS\": \"13.0\",\n        \"intro_tvOS\": \"13.0\",\n        \"intro_watchOS\": \"6.0\",\n        \"declAttributes\": [\n          \"PropertyWrapper\",\n          \"Available\",\n          \"Available\",\n          \"Available\",\n          \"Available\"\n        ],\n        \"isExternal\": true\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Color\",\n        \"printedName\": \"Color\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(hex:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Color\",\n                \"printedName\": \"SwiftUI.Color\",\n                \"usr\": \"s:7SwiftUI5ColorV\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:7SwiftUI5ColorV5CometE3hexACSS_tcfc\",\n            \"mangledName\": \"$s7SwiftUI5ColorV5CometE3hexACSS_tcfc\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"init_kind\": \"Designated\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"toHex\",\n            \"printedName\": \"toHex()\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:7SwiftUI5ColorV5CometE5toHexSSyF\",\n            \"mangledName\": \"$s7SwiftUI5ColorV5CometE5toHexSSyF\",\n            \"moduleName\": \"Comet\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:7SwiftUI5ColorV\",\n        \"mangledName\": \"$s7SwiftUI5ColorV\",\n        \"moduleName\": \"SwiftUI\",\n        \"intro_Macosx\": \"10.15\",\n        \"intro_iOS\": \"13.0\",\n        \"intro_tvOS\": \"13.0\",\n        \"intro_watchOS\": \"6.0\",\n        \"declAttributes\": [\n          \"Frozen\",\n          \"Available\",\n          \"Available\",\n          \"Available\",\n          \"Available\"\n        ],\n        \"isExternal\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"View\",\n            \"printedName\": \"View\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Body\",\n                \"printedName\": \"Body\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Never\",\n                    \"printedName\": \"Swift.Never\",\n                    \"usr\": \"s:s5NeverO\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:7SwiftUI4ViewP\",\n            \"mangledName\": \"$s7SwiftUI4ViewP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ShapeStyle\",\n            \"printedName\": \"ShapeStyle\",\n            \"usr\": \"s:7SwiftUI10ShapeStyleP\",\n            \"mangledName\": \"$s7SwiftUI10ShapeStyleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Transferable\",\n            \"printedName\": \"Transferable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Representation\",\n                \"printedName\": \"Representation\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"OpaqueTypeArchetype\",\n                    \"printedName\": \"some CoreTransferable.TransferRepresentation\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"TransferRepresentation\",\n                        \"printedName\": \"CoreTransferable.TransferRepresentation\",\n                        \"usr\": \"s:16CoreTransferable22TransferRepresentationP\"\n                      },\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Sendable\",\n                        \"printedName\": \"Swift.Sendable\",\n                        \"usr\": \"s:s8SendableP\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:16CoreTransferable0B0P\",\n            \"mangledName\": \"$s16CoreTransferable0B0P\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"UIColor\",\n        \"printedName\": \"UIColor\",\n        \"children\": [\n          {\n            \"kind\": \"Constructor\",\n            \"name\": \"init\",\n            \"printedName\": \"init(hex:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"UIColor\",\n                \"printedName\": \"UIKit.UIColor\",\n                \"usr\": \"c:objc(cs)UIColor\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Constructor\",\n            \"usr\": \"s:So7UIColorC5CometE3hexABSS_tcfc\",\n            \"mangledName\": \"$sSo7UIColorC5CometE3hexABSS_tcfc\",\n            \"moduleName\": \"Comet\",\n            \"declAttributes\": [\n              \"Convenience\"\n            ],\n            \"isFromExtension\": true,\n            \"init_kind\": \"Convenience\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:objc(cs)UIColor\",\n        \"moduleName\": \"UIKit\",\n        \"isOpen\": true,\n        \"intro_iOS\": \"2.0\",\n        \"objc_name\": \"UIColor\",\n        \"declAttributes\": [\n          \"Available\",\n          \"ObjC\",\n          \"SynthesizedProtocol\",\n          \"NonSendable\",\n          \"Sendable\",\n          \"Dynamic\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)NSObject\",\n        \"isExternal\": true,\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ExpressibleByColorLiteral\",\n            \"printedName\": \"_ExpressibleByColorLiteral\",\n            \"usr\": \"s:s26_ExpressibleByColorLiteralP\",\n            \"mangledName\": \"$ss26_ExpressibleByColorLiteralP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Array\",\n        \"printedName\": \"Array\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"filtered\",\n            \"printedName\": \"filtered(visibleGroup:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Array\",\n                \"printedName\": \"[τ_0_0]\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ],\n                \"usr\": \"s:Sa\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"VisibleApplicationGroup\",\n                \"printedName\": \"Comet.AppPicker.VisibleApplicationGroup\",\n                \"usr\": \"s:5Comet9AppPickerV23VisibleApplicationGroupO\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:Sa5CometAA9AppPickerV0B5ModelVRszlE8filtered12visibleGroupSayAEGAC018VisibleApplicationG0O_tF\",\n            \"mangledName\": \"$sSa5CometAA9AppPickerV0B5ModelVRszlE8filtered12visibleGroupSayAEGAC018VisibleApplicationG0O_tF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 == Comet.AppPicker.AppModel>\",\n            \"sugared_genericSig\": \"<Element where Element == Comet.AppPicker.AppModel>\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Struct\",\n        \"usr\": \"s:Sa\",\n        \"mangledName\": \"$sSa\",\n        \"moduleName\": \"Swift\",\n        \"genericSig\": \"<τ_0_0>\",\n        \"sugared_genericSig\": \"<Element>\",\n        \"declAttributes\": [\n          \"Frozen\"\n        ],\n        \"isExternal\": true,\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_DestructorSafeContainer\",\n            \"printedName\": \"_DestructorSafeContainer\",\n            \"usr\": \"s:s24_DestructorSafeContainerP\",\n            \"mangledName\": \"$ss24_DestructorSafeContainerP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ArrayProtocol\",\n            \"printedName\": \"_ArrayProtocol\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"_Buffer\",\n                \"printedName\": \"_Buffer\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"_ArrayBuffer\",\n                    \"printedName\": \"Swift._ArrayBuffer<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s12_ArrayBufferV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s14_ArrayProtocolP\",\n            \"mangledName\": \"$ss14_ArrayProtocolP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"RandomAccessCollection\",\n            \"printedName\": \"RandomAccessCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Range\",\n                    \"printedName\": \"Swift.Range<Swift.Int>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"usr\": \"s:Sn\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sk\",\n            \"mangledName\": \"$sSk\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"MutableCollection\",\n            \"printedName\": \"MutableCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:SM\",\n            \"mangledName\": \"$sSM\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"BidirectionalCollection\",\n            \"printedName\": \"BidirectionalCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Range\",\n                    \"printedName\": \"Swift.Range<Swift.Int>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"usr\": \"s:Sn\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:SK\",\n            \"mangledName\": \"$sSK\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Collection\",\n            \"printedName\": \"Collection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Index\",\n                \"printedName\": \"Index\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Int\",\n                    \"printedName\": \"Swift.Int\",\n                    \"usr\": \"s:Si\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"IndexingIterator\",\n                    \"printedName\": \"Swift.IndexingIterator<[τ_0_0]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[τ_0_0]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"GenericTypeParam\",\n                            \"printedName\": \"τ_0_0\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:s16IndexingIteratorV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Indices\",\n                \"printedName\": \"Indices\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Range\",\n                    \"printedName\": \"Swift.Range<Swift.Int>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Int\",\n                        \"printedName\": \"Swift.Int\",\n                        \"usr\": \"s:Si\"\n                      }\n                    ],\n                    \"usr\": \"s:Sn\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sl\",\n            \"mangledName\": \"$sSl\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sequence\",\n            \"printedName\": \"Sequence\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Element\",\n                \"printedName\": \"Element\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Iterator\",\n                \"printedName\": \"Iterator\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"IndexingIterator\",\n                    \"printedName\": \"Swift.IndexingIterator<[τ_0_0]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[τ_0_0]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"GenericTypeParam\",\n                            \"printedName\": \"τ_0_0\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:s16IndexingIteratorV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:ST\",\n            \"mangledName\": \"$sST\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ExpressibleByArrayLiteral\",\n            \"printedName\": \"ExpressibleByArrayLiteral\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"ArrayLiteralElement\",\n                \"printedName\": \"ArrayLiteralElement\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"GenericTypeParam\",\n                    \"printedName\": \"τ_0_0\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s25ExpressibleByArrayLiteralP\",\n            \"mangledName\": \"$ss25ExpressibleByArrayLiteralP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"RangeReplaceableCollection\",\n            \"printedName\": \"RangeReplaceableCollection\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"SubSequence\",\n                \"printedName\": \"SubSequence\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"ArraySlice\",\n                    \"printedName\": \"Swift.ArraySlice<τ_0_0>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"GenericTypeParam\",\n                        \"printedName\": \"τ_0_0\"\n                      }\n                    ],\n                    \"usr\": \"s:s10ArraySliceV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:Sm\",\n            \"mangledName\": \"$sSm\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomReflectable\",\n            \"printedName\": \"CustomReflectable\",\n            \"usr\": \"s:s17CustomReflectableP\",\n            \"mangledName\": \"$ss17CustomReflectableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_HasCustomAnyHashableRepresentation\",\n            \"printedName\": \"_HasCustomAnyHashableRepresentation\",\n            \"usr\": \"s:s35_HasCustomAnyHashableRepresentationP\",\n            \"mangledName\": \"$ss35_HasCustomAnyHashableRepresentationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Sendable\",\n            \"printedName\": \"Sendable\",\n            \"usr\": \"s:s8SendableP\",\n            \"mangledName\": \"$ss8SendableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Encodable\",\n            \"printedName\": \"Encodable\",\n            \"usr\": \"s:SE\",\n            \"mangledName\": \"$sSE\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Decodable\",\n            \"printedName\": \"Decodable\",\n            \"usr\": \"s:Se\",\n            \"mangledName\": \"$sSe\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_HasContiguousBytes\",\n            \"printedName\": \"_HasContiguousBytes\",\n            \"usr\": \"s:s19_HasContiguousBytesP\",\n            \"mangledName\": \"$ss19_HasContiguousBytesP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"DataProtocol\",\n            \"printedName\": \"DataProtocol\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"Regions\",\n                \"printedName\": \"Regions\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"CollectionOfOne\",\n                    \"printedName\": \"Swift.CollectionOfOne<[Swift.UInt8]>\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"Array\",\n                        \"printedName\": \"[Swift.UInt8]\",\n                        \"children\": [\n                          {\n                            \"kind\": \"TypeNominal\",\n                            \"name\": \"UInt8\",\n                            \"printedName\": \"Swift.UInt8\",\n                            \"usr\": \"s:s5UInt8V\"\n                          }\n                        ],\n                        \"usr\": \"s:Sa\"\n                      }\n                    ],\n                    \"usr\": \"s:s15CollectionOfOneV\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:10Foundation12DataProtocolP\",\n            \"mangledName\": \"$s10Foundation12DataProtocolP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"MutableDataProtocol\",\n            \"printedName\": \"MutableDataProtocol\",\n            \"usr\": \"s:10Foundation19MutableDataProtocolP\",\n            \"mangledName\": \"$s10Foundation19MutableDataProtocolP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"EncodableWithConfiguration\",\n            \"printedName\": \"EncodableWithConfiguration\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"EncodingConfiguration\",\n                \"printedName\": \"EncodingConfiguration\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DependentMember\",\n                    \"printedName\": \"τ_0_0.EncodingConfiguration\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:10Foundation26EncodableWithConfigurationP\",\n            \"mangledName\": \"$s10Foundation26EncodableWithConfigurationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"DecodableWithConfiguration\",\n            \"printedName\": \"DecodableWithConfiguration\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"DecodingConfiguration\",\n                \"printedName\": \"DecodingConfiguration\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"DependentMember\",\n                    \"printedName\": \"τ_0_0.DecodingConfiguration\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:10Foundation26DecodableWithConfigurationP\",\n            \"mangledName\": \"$s10Foundation26DecodableWithConfigurationP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_ObjectiveCBridgeable\",\n            \"printedName\": \"_ObjectiveCBridgeable\",\n            \"children\": [\n              {\n                \"kind\": \"TypeWitness\",\n                \"name\": \"_ObjectiveCType\",\n                \"printedName\": \"_ObjectiveCType\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"NSArray\",\n                    \"printedName\": \"Foundation.NSArray\",\n                    \"usr\": \"c:objc(cs)NSArray\"\n                  }\n                ]\n              }\n            ],\n            \"usr\": \"s:s21_ObjectiveCBridgeableP\",\n            \"mangledName\": \"$ss21_ObjectiveCBridgeableP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"ContiguousBytes\",\n            \"printedName\": \"ContiguousBytes\",\n            \"usr\": \"s:10Foundation15ContiguousBytesP\",\n            \"mangledName\": \"$s10Foundation15ContiguousBytesP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"Bundle\",\n        \"printedName\": \"Bundle\",\n        \"children\": [\n          {\n            \"kind\": \"Var\",\n            \"name\": \"comet\",\n            \"printedName\": \"comet\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bundle\",\n                \"printedName\": \"Foundation.Bundle\",\n                \"usr\": \"c:objc(cs)NSBundle\"\n              }\n            ],\n            \"declKind\": \"Var\",\n            \"usr\": \"s:So8NSBundleC5CometE5cometABvpZ\",\n            \"mangledName\": \"$sSo8NSBundleC5CometE5cometABvpZ\",\n            \"moduleName\": \"Comet\",\n            \"static\": true,\n            \"declAttributes\": [\n              \"Final\"\n            ],\n            \"isFromExtension\": true,\n            \"accessors\": [\n              {\n                \"kind\": \"Accessor\",\n                \"name\": \"Get\",\n                \"printedName\": \"Get()\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Bundle\",\n                    \"printedName\": \"Foundation.Bundle\",\n                    \"usr\": \"c:objc(cs)NSBundle\"\n                  }\n                ],\n                \"declKind\": \"Accessor\",\n                \"usr\": \"s:So8NSBundleC5CometE5cometABvgZ\",\n                \"mangledName\": \"$sSo8NSBundleC5CometE5cometABvgZ\",\n                \"moduleName\": \"Comet\",\n                \"static\": true,\n                \"declAttributes\": [\n                  \"Final\"\n                ],\n                \"isFromExtension\": true,\n                \"accessorKind\": \"get\"\n              }\n            ]\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:objc(cs)NSBundle\",\n        \"moduleName\": \"Foundation\",\n        \"isOpen\": true,\n        \"objc_name\": \"NSBundle\",\n        \"declAttributes\": [\n          \"ObjC\",\n          \"NonSendable\",\n          \"Dynamic\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)NSObject\",\n        \"isExternal\": true,\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"UserDefaults\",\n        \"printedName\": \"UserDefaults\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"setAppProxies\",\n            \"printedName\": \"setAppProxies(_:forKey:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Void\",\n                \"printedName\": \"()\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:So14NSUserDefaultsC5CometE13setAppProxies_6forKeyySayAC20ApplicationWorkspaceC0I5ProxyVGSg_SStF\",\n            \"mangledName\": \"$sSo14NSUserDefaultsC5CometE13setAppProxies_6forKeyySayAC20ApplicationWorkspaceC0I5ProxyVGSg_SStF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"appProxies\",\n            \"printedName\": \"appProxies(forKey:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Optional\",\n                \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]?\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"Array\",\n                    \"printedName\": \"[Comet.ApplicationWorkspace.ApplicationProxy]\",\n                    \"children\": [\n                      {\n                        \"kind\": \"TypeNominal\",\n                        \"name\": \"ApplicationProxy\",\n                        \"printedName\": \"Comet.ApplicationWorkspace.ApplicationProxy\",\n                        \"usr\": \"s:5Comet20ApplicationWorkspaceC0B5ProxyV\"\n                      }\n                    ],\n                    \"usr\": \"s:Sa\"\n                  }\n                ],\n                \"usr\": \"s:Sq\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:So14NSUserDefaultsC5CometE10appProxies6forKeySayAC20ApplicationWorkspaceC0H5ProxyVGSgSS_tF\",\n            \"mangledName\": \"$sSo14NSUserDefaultsC5CometE10appProxies6forKeySayAC20ApplicationWorkspaceC0H5ProxyVGSgSS_tF\",\n            \"moduleName\": \"Comet\",\n            \"isOpen\": true,\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Class\",\n        \"usr\": \"c:objc(cs)NSUserDefaults\",\n        \"moduleName\": \"Foundation\",\n        \"isOpen\": true,\n        \"objc_name\": \"NSUserDefaults\",\n        \"declAttributes\": [\n          \"ObjC\",\n          \"NonSendable\",\n          \"Dynamic\"\n        ],\n        \"superclassUsr\": \"c:objc(cs)NSObject\",\n        \"isExternal\": true,\n        \"inheritsConvenienceInitializers\": true,\n        \"superclassNames\": [\n          \"ObjectiveC.NSObject\"\n        ],\n        \"conformances\": [\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Equatable\",\n            \"printedName\": \"Equatable\",\n            \"usr\": \"s:SQ\",\n            \"mangledName\": \"$sSQ\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"Hashable\",\n            \"printedName\": \"Hashable\",\n            \"usr\": \"s:SH\",\n            \"mangledName\": \"$sSH\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CVarArg\",\n            \"printedName\": \"CVarArg\",\n            \"usr\": \"s:s7CVarArgP\",\n            \"mangledName\": \"$ss7CVarArgP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObservingPublishing\",\n            \"printedName\": \"_KeyValueCodingAndObservingPublishing\",\n            \"usr\": \"s:10Foundation37_KeyValueCodingAndObservingPublishingP\",\n            \"mangledName\": \"$s10Foundation37_KeyValueCodingAndObservingPublishingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"_KeyValueCodingAndObserving\",\n            \"printedName\": \"_KeyValueCodingAndObserving\",\n            \"usr\": \"s:10Foundation27_KeyValueCodingAndObservingP\",\n            \"mangledName\": \"$s10Foundation27_KeyValueCodingAndObservingP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomStringConvertible\",\n            \"printedName\": \"CustomStringConvertible\",\n            \"usr\": \"s:s23CustomStringConvertibleP\",\n            \"mangledName\": \"$ss23CustomStringConvertibleP\"\n          },\n          {\n            \"kind\": \"Conformance\",\n            \"name\": \"CustomDebugStringConvertible\",\n            \"printedName\": \"CustomDebugStringConvertible\",\n            \"usr\": \"s:s28CustomDebugStringConvertibleP\",\n            \"mangledName\": \"$ss28CustomDebugStringConvertibleP\"\n          }\n        ]\n      },\n      {\n        \"kind\": \"TypeDecl\",\n        \"name\": \"View\",\n        \"printedName\": \"View\",\n        \"children\": [\n          {\n            \"kind\": \"Function\",\n            \"name\": \"compatSearchable\",\n            \"printedName\": \"compatSearchable(text:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Binding\",\n                \"printedName\": \"SwiftUI.Binding<Swift.String>\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"String\",\n                    \"printedName\": \"Swift.String\",\n                    \"usr\": \"s:SS\"\n                  }\n                ],\n                \"usr\": \"s:7SwiftUI7BindingV\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:7SwiftUI4ViewP5CometE16compatSearchable4textQrAA7BindingVySSG_tF\",\n            \"mangledName\": \"$s7SwiftUI4ViewP5CometE16compatSearchable4textQrAA7BindingVySSG_tF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : SwiftUI.View>\",\n            \"sugared_genericSig\": \"<Self where Self : SwiftUI.View>\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          },\n          {\n            \"kind\": \"Function\",\n            \"name\": \"loading\",\n            \"printedName\": \"loading(_:title:)\",\n            \"children\": [\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"OpaqueTypeArchetype\",\n                \"printedName\": \"some SwiftUI.View\",\n                \"children\": [\n                  {\n                    \"kind\": \"TypeNominal\",\n                    \"name\": \"View\",\n                    \"printedName\": \"SwiftUI.View\",\n                    \"usr\": \"s:7SwiftUI4ViewP\"\n                  }\n                ]\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"Bool\",\n                \"printedName\": \"Swift.Bool\",\n                \"usr\": \"s:Sb\"\n              },\n              {\n                \"kind\": \"TypeNominal\",\n                \"name\": \"String\",\n                \"printedName\": \"Swift.String\",\n                \"usr\": \"s:SS\"\n              }\n            ],\n            \"declKind\": \"Func\",\n            \"usr\": \"s:7SwiftUI4ViewP5CometE7loading_5titleQrSb_SStF\",\n            \"mangledName\": \"$s7SwiftUI4ViewP5CometE7loading_5titleQrSb_SStF\",\n            \"moduleName\": \"Comet\",\n            \"genericSig\": \"<τ_0_0 where τ_0_0 : SwiftUI.View>\",\n            \"sugared_genericSig\": \"<Self where Self : SwiftUI.View>\",\n            \"isFromExtension\": true,\n            \"funcSelfKind\": \"NonMutating\"\n          }\n        ],\n        \"declKind\": \"Protocol\",\n        \"usr\": \"s:7SwiftUI4ViewP\",\n        \"mangledName\": \"$s7SwiftUI4ViewP\",\n        \"moduleName\": \"SwiftUI\",\n        \"genericSig\": \"<τ_0_0.Body : SwiftUI.View>\",\n        \"sugared_genericSig\": \"<Self.Body : SwiftUI.View>\",\n        \"intro_Macosx\": \"10.15\",\n        \"intro_iOS\": \"13.0\",\n        \"intro_tvOS\": \"13.0\",\n        \"intro_watchOS\": \"6.0\",\n        \"declAttributes\": [\n          \"TypeEraser\",\n          \"Available\",\n          \"Available\",\n          \"Available\",\n          \"Available\"\n        ],\n        \"isExternal\": true\n      }\n    ],\n    \"json_format_version\": 8\n  },\n  \"ConstValues\": [\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Preferences\\/Published+Preferences.swift\",\n      \"kind\": \"Array\",\n      \"offset\": 177,\n      \"length\": 2,\n      \"value\": \"[]\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/UI\\/AppPicker\\/AppPicker.ViewModel.swift\",\n      \"kind\": \"Array\",\n      \"offset\": 1654,\n      \"length\": 2,\n      \"value\": \"[]\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 142,\n      \"length\": 10,\n      \"value\": \"\\\"Respring\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 187,\n      \"length\": 8,\n      \"value\": \"\\\"Search\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 243,\n      \"length\": 22,\n      \"value\": \"\\\"Loading_Applications\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 303,\n      \"length\": 12,\n      \"value\": \"\\\"Select_All\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 355,\n      \"length\": 14,\n      \"value\": \"\\\"Unselect_All\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 401,\n      \"length\": 5,\n      \"value\": \"\\\"App\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 439,\n      \"length\": 6,\n      \"value\": \"\\\"Apps\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 478,\n      \"length\": 32,\n      \"value\": \"\\\"Visible_Application_Group_User\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 545,\n      \"length\": 34,\n      \"value\": \"\\\"Visible_Application_Group_System\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Copy.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 615,\n      \"length\": 35,\n      \"value\": \"\\\"Visible_Application_Group_AllApps\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/Core\\/Storage+Keys.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 150,\n      \"length\": 32,\n      \"value\": \"\\\"Comet.Cache.ApplicationProxies\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/UI\\/AppPicker\\/Lists\\/AppPickerSingleListView.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 317,\n      \"length\": 2,\n      \"value\": \"\\\"\\\"\"\n    },\n    {\n      \"filePath\": \"\\/Users\\/admin\\/Documents\\/roothide\\/Comet\\/Comet\\/UI\\/AppPicker\\/Lists\\/AppPickerMultiListView.swift\",\n      \"kind\": \"StringLiteral\",\n      \"offset\": 318,\n      \"length\": 2,\n      \"value\": \"\\\"\\\"\"\n    }\n  ]\n}"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/Comet.swiftmodule/arm64e-apple-ios.private.swiftinterface",
    "content": "// swift-interface-format-version: 1.0\n// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n// swift-module-flags: -target arm64e-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Comet\n// swift-module-flags-ignorable: -enable-bare-slash-regex\nimport Combine\n@_exported import Comet\nimport Foundation\nimport Swift\nimport SwiftUI\nimport UIKit.UIImage\nimport UIKit\nimport _Concurrency\nimport _StringProcessing\n@_exported import __ObjC\nextension Combine.Published where Value : Swift.Decodable, Value : Swift.Encodable {\n  public init(wrappedValue defaultValue: Value, key: Swift.String, registry: Swift.String)\n}\nextension Comet.AppPicker {\n  public enum VisibleApplicationGroup {\n    case user\n    case system\n    case all\n    public static func == (a: Comet.AppPicker.VisibleApplicationGroup, b: Comet.AppPicker.VisibleApplicationGroup) -> Swift.Bool\n    public func hash(into hasher: inout Swift.Hasher)\n    public var hashValue: Swift.Int {\n      get\n    }\n  }\n}\nextension SwiftUI.Color {\n  public init(hex: Swift.String)\n  public func toHex() -> Swift.String\n}\nextension UIKit.UIColor {\n  convenience public init(hex: Swift.String)\n}\npublic struct RespringButton : SwiftUI.View {\n  public init()\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14RespringButtonV4bodyQrvp\", 0) __\n}\npublic struct Respring {\n  public static func execute()\n}\n@objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class CMViewController : UIKit.UIViewController {\n  @_Concurrency.MainActor(unsafe) public func setup<Content>(content: Content) where Content : SwiftUI.View\n  @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)\n  @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder)\n  @objc deinit\n}\nextension Comet.CMViewController {\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setRootController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setParentController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setSpecifier(_ specifier: Swift.AnyObject?)\n}\npublic struct HexColorPicker : SwiftUI.View {\n  public init(selectedColorHex: SwiftUI.Binding<Swift.String>, title: Swift.String)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14HexColorPickerV4bodyQrvp\", 0) __\n}\npublic struct Preferences {\n  public static func setValue<T>(_ value: T, key: Swift.String, registry: Swift.String) throws where T : Swift.Decodable, T : Swift.Encodable\n  public static func value<T>(key: Swift.String, registry: Swift.String, returnType: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable\n}\n@_Concurrency.MainActor(unsafe) public struct AppPicker : SwiftUI.View {\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifier: SwiftUI.Binding<Swift.String>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifiers: SwiftUI.Binding<[Swift.String]>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet9AppPickerV4bodyQrvp\", 0) __\n}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Equatable {}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Hashable {}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/Comet.swiftmodule/arm64e-apple-ios.swiftinterface",
    "content": "// swift-interface-format-version: 1.0\n// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)\n// swift-module-flags: -target arm64e-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name Comet\n// swift-module-flags-ignorable: -enable-bare-slash-regex\nimport Combine\n@_exported import Comet\nimport Foundation\nimport Swift\nimport SwiftUI\nimport UIKit.UIImage\nimport UIKit\nimport _Concurrency\nimport _StringProcessing\n@_exported import __ObjC\nextension Combine.Published where Value : Swift.Decodable, Value : Swift.Encodable {\n  public init(wrappedValue defaultValue: Value, key: Swift.String, registry: Swift.String)\n}\nextension Comet.AppPicker {\n  public enum VisibleApplicationGroup {\n    case user\n    case system\n    case all\n    public static func == (a: Comet.AppPicker.VisibleApplicationGroup, b: Comet.AppPicker.VisibleApplicationGroup) -> Swift.Bool\n    public func hash(into hasher: inout Swift.Hasher)\n    public var hashValue: Swift.Int {\n      get\n    }\n  }\n}\nextension SwiftUI.Color {\n  public init(hex: Swift.String)\n  public func toHex() -> Swift.String\n}\nextension UIKit.UIColor {\n  convenience public init(hex: Swift.String)\n}\npublic struct RespringButton : SwiftUI.View {\n  public init()\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14RespringButtonV4bodyQrvp\", 0) __\n}\npublic struct Respring {\n  public static func execute()\n}\n@objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class CMViewController : UIKit.UIViewController {\n  @_Concurrency.MainActor(unsafe) public func setup<Content>(content: Content) where Content : SwiftUI.View\n  @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)\n  @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder)\n  @objc deinit\n}\nextension Comet.CMViewController {\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setRootController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setParentController(_ controller: UIKit.UIViewController?)\n  @objc @_Concurrency.MainActor(unsafe) dynamic public func setSpecifier(_ specifier: Swift.AnyObject?)\n}\npublic struct HexColorPicker : SwiftUI.View {\n  public init(selectedColorHex: SwiftUI.Binding<Swift.String>, title: Swift.String)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet14HexColorPickerV4bodyQrvp\", 0) __\n}\npublic struct Preferences {\n  public static func setValue<T>(_ value: T, key: Swift.String, registry: Swift.String) throws where T : Swift.Decodable, T : Swift.Encodable\n  public static func value<T>(key: Swift.String, registry: Swift.String, returnType: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable\n}\n@_Concurrency.MainActor(unsafe) public struct AppPicker : SwiftUI.View {\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifier: SwiftUI.Binding<Swift.String>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public init(selectedAppIdentifiers: SwiftUI.Binding<[Swift.String]>, title: Swift.String, visibleApplicationGroup: Comet.AppPicker.VisibleApplicationGroup = .all)\n  @_Concurrency.MainActor(unsafe) public var body: some SwiftUI.View {\n    get\n  }\n  public typealias Body = @_opaqueReturnTypeOf(\"$s5Comet9AppPickerV4bodyQrvp\", 0) __\n}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Equatable {}\nextension Comet.AppPicker.VisibleApplicationGroup : Swift.Hashable {}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Modules/module.modulemap",
    "content": "//\n//  module.modulemap\n//  Comet\n//\n//  Created by Noah Little on 23/4/2023.\n//\n\nframework module Comet {\n    umbrella header \"Comet.h\"\n\n    private header \"LSApplicationWorkspace.h\"\n    private header \"UIImage+Icon.h\"\n    private header \"FBSSystemService.h\"\n\n    export *\n    module * { export * }\n}\n\nmodule Comet.Swift {\n  header \"Comet-Swift.h\"\n  requires objc\n}\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/PrivateHeaders/FBSSystemService.h",
    "content": "//\n//  FBSSystemService.h\n//  Comet\n//\n//  Created by Noah Little on 9/4/2023.\n//\n\n#ifndef Respring_Private_h\n#define Respring_Private_h\n\n#import <Foundation/Foundation.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\ntypedef NS_OPTIONS(NSUInteger, SBSRelaunchActionOptions) {\n    SBSRelaunchActionOptionsNone,\n    SBSRelaunchActionOptionsRestartRenderServer = 1 << 0,\n    SBSRelaunchActionOptionsSnapshotTransition = 1 << 1,\n    SBSRelaunchActionOptionsFadeToBlackTransition = 1 << 2\n};\n\n// MARK: - Underlying\n\n@interface SBSRelaunchAction : NSObject\n@end\n\n@interface FBSSystemService : NSObject\n@end\n\n// MARK: - Facade\n\n@interface _SBSRelaunchAction : NSObject\n+ (instancetype)actionWithReason:(NSString *)reason options:(SBSRelaunchActionOptions)options targetURL:(nullable NSURL *)url;\n@end\n\n@interface _FBSSystemService : NSObject\n+ (instancetype)sharedService;\n- (void)openApplication:(NSString *)app options:(NSDictionary *)options withResult:(void (^)(void))result;\n- (void)sendActions:(NSSet<_SBSRelaunchAction *> *)actions withResult:(nullable /*^block*/id)result;\n@end\n\nNS_ASSUME_NONNULL_END\n\n#endif /* Respring_Private_h */\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/PrivateHeaders/LSApplicationWorkspace.h",
    "content": "//\n//  LSApplicationWorkspace.h\n//  Comet\n//\n//  Created by Noah Little on 9/4/2023.\n//\n\n#ifndef LSApplicationWorkspace_h\n#define LSApplicationWorkspace_h\n\n#import <Foundation/Foundation.h>\n#import <MobileCoreServices/MobileCoreServices.h>\n\n// MARK: - Underlying\n\nNS_ASSUME_NONNULL_BEGIN\n@interface LSApplicationRecord : NSObject\n@property (readonly) NSArray<NSString *> * appTags;\n@property (getter=isLaunchProhibited,readonly) BOOL launchProhibited;\n@end\n\n@interface LSResourceProxy: NSObject\n@property (setter=_setLocalizedName:,nonatomic,copy) NSString * localizedName;\n@end\n\n@interface LSApplicationProxy : LSResourceProxy\n@property (nonatomic,readonly) NSString * applicationIdentifier;\n@property (nonatomic,readonly) LSApplicationRecord * correspondingApplicationRecord;\n@property (nonatomic,readonly) NSString * applicationType;\n+ (nullable instancetype)applicationProxyForIdentifier:(NSString *)identifier;\n@end\n\n@interface LSApplicationWorkspace : NSObject\n+ (instancetype)defaultWorkspace;\n- (nullable NSArray<LSApplicationProxy *> *)allApplications;\n@end\nNS_ASSUME_NONNULL_END\n#endif /* LSApplicationWorkspace_h */\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/PrivateHeaders/UIImage+Icon.h",
    "content": "//\n//  UIImage+Icon.h\n//  Comet\n//\n//  Created by Noah Little on 23/4/2023.\n//\n\n#ifndef UIImage_Icon_h\n#define UIImage_Icon_h\n\n#import <UIKit/UIKit.h>\n\n@interface UIImage (Private)\n+ (instancetype)_applicationIconImageForBundleIdentifier:(NSString*)bundleIdentifier format:(int)format scale:(CGFloat)scale;\n@end\n\n#endif /* UIImage_Icon_h */\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Resources.bundle/en.lproj/Localizable.strings",
    "content": "/* \n  Localizable.strings\n  Comet\n\n  Created by Noah Little on 12/4/2023.\n  \n*/\n\n\"Respring\" = \"Respring\";\n\"Search\" = \"Search\";\n\"Loading_Applications\" = \"Loading applications\";\n\"Select_All\" = \"Select all\";\n\"Unselect_All\" = \"Unselect all\";\n\"App\" = \"App\";\n\"Apps\" = \"Apps\";\n\"Visible_Application_Group_User\" = \"User\";\n\"Visible_Application_Group_System\" = \"System\";\n\"Visible_Application_Group_AllApps\" = \"All apps\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Resources.bundle/zh-Hant.lproj/Localizable.strings",
    "content": "/* \n  Localizable.strings\n  Comet\n\n  Created by Noah Little on 12/4/2023.\n  \n*/\n\n\"Respring\" = \"重啓SpringBoard\";\n\"Search\" = \"搜索\";\n\"Loading_Applications\" = \"正在加載應用\";\n\"Select_All\" = \"全選\";\n\"Unselect_All\" = \"取消全選\";\n\"App\" = \"應用程式\";\n\"Apps\" = \"應用程式\";\n\"Visible_Application_Group_User\" = \"使用者應用程式\";\n\"Visible_Application_Group_System\" = \"系統應用程式\";\n\"Visible_Application_Group_AllApps\" = \"全部應用程式\";\n"
  },
  {
    "path": "theos/lib/iphone/roothide/Comet.framework/Resources.bundle/zh_Hans.lproj/Localizable.strings",
    "content": "/* \n  Localizable.strings\n  Comet\n\n  Created by Noah Little on 12/4/2023.\n  \n*/\n\n\"Respring\" = \"重启SpringBoard\";\n\"Search\" = \"搜索\";\n\"Loading_Applications\" = \"正在加载应用\";\n\"Select_All\" = \"全选\";\n\"Unselect_All\" = \"取消全选\";\n\"App\" = \"应用软件\";\n\"Apps\" = \"应用软件\";\n\"Visible_Application_Group_User\" = \"用户软件\";\n\"Visible_Application_Group_System\" = \"系统软件\";\n\"Visible_Application_Group_AllApps\" = \"全部应用软件\";\n"
  },
  {
    "path": "vroot.md",
    "content": "# vroot\n\nvroot is a shim library for c/c++ programs/modules, \nit changes the default root of file system for programs/modules by replacing all system APIs related to file paths at compile/build time.\nit implements nearly 200 system APIs in roothide at present, \nit's mainly designed for bootstrap, and most of the packages in procrusus come from gnu or other open source C/C++ projects, \nit can fully meet the needs.\n\n# details\n\n![text](vroot.png)\n\n\n# path mirror\n\nsee [file/directory mirror](filemirror.md).\n\n\n# develop with libvroot\n\nwhen specifying roothide as the target to compile procursus/bootstrap, \nvroot will be applied to all programs/libraries by default, you can exclude specific packages from using vroot (such as those packages written specifically for iOS using objc/swift).\nyou can also apply libvroot to your C/C++ programs/modules in theos/xcode.\n"
  }
]