Skip to content

Instantly share code, notes, and snippets.

@bradherman
Created May 1, 2021 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradherman/6f04a5210ffbd04f54fe8951c7609c4c to your computer and use it in GitHub Desktop.
Save bradherman/6f04a5210ffbd04f54fe8951c7609c4c to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>
#import <UMCore/UMAppDelegateWrapper.h>
#import <RNAppsFlyer.h>
@import IterableSDK;
@interface AppDelegate : UMAppDelegateWrapper <UIApplicationDelegate, RCTBridgeDelegate>
@end
#import "AppDelegate.h"
#import <React/RCTBridge.h>
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>
#import <UMCore/UMModuleRegistry.h>
#import <UMReactNativeAdapter/UMNativeModulesProxy.h>
#import <UMReactNativeAdapter/UMModuleRegistryAdapter.h>
#import <EXSplashScreen/EXSplashScreenService.h>
#import <UMCore/UMModuleRegistryProvider.h>
#ifdef FB_SONARKIT_ENABLED
#import <FlipperKit/FlipperClient.h>
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
@import IterableSDK;
static void InitializeFlipper(UIApplication *application) {
FlipperClient *client = [FlipperClient sharedClient];
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
[client addPlugin:[FlipperKitReactPlugin new]];
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
[client start];
}
#endif
@interface AppDelegate () <RCTBridgeDelegate>
@property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter;
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
#ifdef FB_SONARKIT_ENABLED
InitializeFlipper(application);
#endif
self.moduleRegistryAdapter = [[UMModuleRegistryAdapter alloc] initWithModuleRegistryProvider:[[UMModuleRegistryProvider alloc] init]];
if(_AppsFlyerdelegate == nil){
_AppsFlyerdelegate = [[RNAppsFlyer alloc] init];
}
[[AppsFlyerLib shared] setDelegate:_AppsFlyerdelegate];
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"main" initialProperties:nil];
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
UIViewController *rootViewController = [UIViewController new];
rootViewController.view = rootView;
self.window.rootViewController = rootViewController;
[self.window makeKeyAndVisible];
[super application:application didFinishLaunchingWithOptions:launchOptions];
return YES;
}
- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler {
[[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:restorationHandler];
return YES;
}
// Reports app open from deep link from apps which do not support Universal Links (Twitter) and for iOS8 and below
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation {
[[AppsFlyerLib shared] handleOpenURL:url sourceApplication:sourceApplication withAnnotation:annotation];
return YES;
}
// Reports app open from URL Scheme deep link for iOS 10
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
options:(NSDictionary *) options {
[[AppsFlyerLib shared] handleOpenUrl:url options:options];
return YES;
}
- (NSArray<id<RCTBridgeModule>> *)extraModulesForBridge:(RCTBridge *)bridge
{
NSArray<id<RCTBridgeModule>> *extraModules = [_moduleRegistryAdapter extraModulesForBridge:bridge];
// If you'd like to export some custom RCTBridgeModules that are not Expo modules, add them here!
return extraModules;
}
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge {
#ifdef DEBUG
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
#else
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
}
// - (void)appController:(EXUpdatesAppController *)appController didStartWithSuccess:(BOOL)success {
// appController.bridge = [self initializeReactNativeApp];
// EXSplashScreenService *splashScreenService = (EXSplashScreenService *)[UMModuleRegistryProvider getSingletonModuleForClass:[EXSplashScreenService class]];
// [splashScreenService showSplashScreenFor:self.window.rootViewController];
// }
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
[IterableAPI registerToken:deviceToken];
}
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
[IterableAppIntegration application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
}
@end
Incident Identifier: 4AAC7B28-29FC-46DA-81AA-33D634F0A215
Hardware Model: iPhone13,3
Process: myapp [2765]
Path: /private/var/containers/Bundle/Application/A1194935-B5B7-4062-89F2-9AB97C81352E/myapp.app/myapp
Identifier: com.myapp.myapp
Version: 1.2.13 (1.2.13)
AppStoreTools: 12E262
AppVariant: 1:iPhone13,3:14
Beta: YES
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.myapp.myapp [845]
Date/Time: 2021-05-01 00:44:54.7020 -0700
Launch Time: 2021-05-01 00:44:54.6111 -0700
OS Version: iPhone OS 14.5 (18E199)
Release Type: User
Baseband Version: 1.62.11
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x1a20165b4 __exceptionPreprocess + 220 (NSException.m:199)
1 libobjc.A.dylib 0x1b6a957a8 objc_exception_throw + 60 (objc-exception.mm:565)
2 myapp 0x1024f6664 0x1022c4000 + 2303588
3 myapp 0x10250c228 0x1022c4000 + 2392616
4 libdispatch.dylib 0x1a1c01a54 _dispatch_call_block_and_release + 32 (init.c:1466)
5 libdispatch.dylib 0x1a1c037ec _dispatch_client_callout + 20 (object.m:559)
6 libdispatch.dylib 0x1a1c11c40 _dispatch_main_queue_callback_4CF + 884 (inline_internal.h:2557)
7 CoreFoundation 0x1a1f901f8 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16 (CFRunLoop.c:1790)
8 CoreFoundation 0x1a1f8a0d0 __CFRunLoopRun + 2524 (CFRunLoop.c:3118)
9 CoreFoundation 0x1a1f891c0 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
10 GraphicsServices 0x1b9571734 GSEventRunModal + 164 (GSEvent.c:2259)
11 UIKitCore 0x1a49f77e4 -[UIApplication _run] + 1072 (UIApplication.m:3269)
12 UIKitCore 0x1a49fd054 UIApplicationMain + 168 (UIApplication.m:4740)
13 myapp 0x1022cac90 0x1022c4000 + 27792
14 libdyld.dylib 0x1a1c45cf8 0x1a1c44000 + 7416
Thread 0 name:
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x00000001d0129334 __pthread_kill + 8
1 libsystem_pthread.dylib 0x00000001edb4daa0 pthread_kill + 272 (pthread.c:1392)
2 libsystem_c.dylib 0x00000001ab396b90 abort + 104 (abort.c:110)
3 libc++abi.dylib 0x00000001b6b76bb8 0x1b6b63000 + 80824
4 libc++abi.dylib 0x00000001b6b67ec8 0x1b6b63000 + 20168
5 libobjc.A.dylib 0x00000001b6a7405c _objc_terminate() + 144 (objc-exception.mm:701)
6 libc++abi.dylib 0x00000001b6b75fa0 0x1b6b63000 + 77728
7 libc++abi.dylib 0x00000001b6b75f2c 0x1b6b63000 + 77612
8 libdispatch.dylib 0x00000001a1c03800 _dispatch_client_callout + 40 (object.m:562)
9 libdispatch.dylib 0x00000001a1c11c40 _dispatch_main_queue_callback_4CF + 884 (inline_internal.h:2557)
10 CoreFoundation 0x00000001a1f901f8 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16 (CFRunLoop.c:1790)
11 CoreFoundation 0x00000001a1f8a0d0 __CFRunLoopRun + 2524 (CFRunLoop.c:3118)
12 CoreFoundation 0x00000001a1f891c0 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
13 GraphicsServices 0x00000001b9571734 GSEventRunModal + 164 (GSEvent.c:2259)
14 UIKitCore 0x00000001a49f77e4 -[UIApplication _run] + 1072 (UIApplication.m:3269)
15 UIKitCore 0x00000001a49fd054 UIApplicationMain + 168 (UIApplication.m:4740)
16 myapp 0x00000001022cac90 0x1022c4000 + 27792
17 libdyld.dylib 0x00000001a1c45cf8 0x1a1c44000 + 7416
Thread 1:
0 libsystem_pthread.dylib 0x00000001edb55744 start_wqthread + 0
Thread 2:
0 libsystem_pthread.dylib 0x00000001edb55744 start_wqthread + 0
Thread 3:
0 libsystem_pthread.dylib 0x00000001edb55744 start_wqthread + 0
Thread 4 name:
Thread 4:
0 libsystem_kernel.dylib 0x00000001d01044fc mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001d0103884 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x00000001a1f8fd10 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2641)
3 CoreFoundation 0x00000001a1f89bb0 __CFRunLoopRun + 1212 (CFRunLoop.c:2974)
4 CoreFoundation 0x00000001a1f891c0 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 Foundation 0x00000001a3269fac -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 232 (NSRunLoop.m:377)
6 Foundation 0x00000001a3269e78 -[NSRunLoop(NSRunLoop) runUntilDate:] + 92 (NSRunLoop.m:424)
7 UIKitCore 0x00000001a4aac38c -[UIEventFetcher threadMain] + 516 (UIEventFetcher.m:929)
8 Foundation 0x00000001a33db2fc __NSThread__start__ + 864 (NSThread.m:724)
9 libsystem_pthread.dylib 0x00000001edb4cc00 _pthread_start + 320 (pthread.c:881)
10 libsystem_pthread.dylib 0x00000001edb55758 thread_start + 8
Thread 5 name:
Thread 5:
0 libsystem_kernel.dylib 0x00000001d0127d0c __channel_sync + 8
1 libsystem_kernel.dylib 0x00000001d010a694 os_channel_packet_alloc + 588 (os_channel.c:1693)
2 libnetwork.dylib 0x00000001a2dbe730 nw_channel_get_output_frames + 848 (channel.c:1781)
3 libnetwork.dylib 0x00000001a302df78 nw_protocol_ipv4_get_output_frames + 172 (protocol_ip.c:654)
4 libusrtcp.dylib 0x00000001a56234b4 tcp_output + 7980 (tcp_output.c:1827)
5 libusrtcp.dylib 0x00000001a562e728 tcp_trigger_connect + 180 (user_socket.c:1307)
6 libusrtcp.dylib 0x00000001a55fcd88 nw_protocol_tcp_connected + 224 (protocol_tcp.c:2079)
7 libnetwork.dylib 0x00000001a302ce28 nw_protocol_ipv4_connected + 248 (protocol_ip.c:1079)
8 libnetwork.dylib 0x00000001a2dbd464 nw_channel_connect + 136 (channel.c:721)
9 libusrtcp.dylib 0x00000001a55fe51c nw_protocol_tcp_connect + 148 (protocol_tcp.c:2028)
10 libboringssl.dylib 0x00000001b7dd6d68 0x1b7dca000 + 52584
11 CFNetwork 0x00000001a28571ec 0x1a2617000 + 2359788
12 libnetwork.dylib 0x00000001a2ac862c nw_endpoint_flow_connect + 164 (endpoint_flow.m:2403)
13 libnetwork.dylib 0x00000001a2ac3f58 nw_endpoint_flow_setup_protocols + 3272 (endpoint_flow.m:2690)
14 libnetwork.dylib 0x00000001a2ac1564 nw_endpoint_flow_setup_channel + 3740 (endpoint_flow.m:2879)
15 libnetwork.dylib 0x00000001a2abd648 -[NWConcrete_nw_endpoint_flow updatePathWithHandler:] + 3144 (endpoint_flow.m:319)
16 libnetwork.dylib 0x00000001a2bcd66c nw_endpoint_handler_path_change + 14648 (endpoint_handler.m:0)
17 libnetwork.dylib 0x00000001a2bc876c __nw_endpoint_handler_initialize_association_block_invoke + 156 (endpoint_handler.m:907)
18 libnetwork.dylib 0x00000001a2d6fca0 __nw_association_update_paths_block_invoke.81 + 92 (association.m:316)
19 libnetwork.dylib 0x00000001a2f1e6bc nw_hash_table_apply + 124 (hash_table.c:381)
20 libnetwork.dylib 0x00000001a2d6f5b4 nw_association_update_paths + 488 (association.m:311)
21 libnetwork.dylib 0x00000001a307ad28 nw_path_necp_update_evaluator + 2092 (path_evaluation.m:996)
22 libnetwork.dylib 0x00000001a307a1d0 nw_path_necp_check_for_updates + 1028 (path_evaluation.m:1084)
23 libnetwork.dylib 0x00000001a3091144 nw_path_evaluator_force_update + 128 (path_evaluation.m:5437)
24 libnetwork.dylib 0x00000001a2d77560 nw_association_force_update + 108 (association.m:622)
25 libnetwork.dylib 0x00000001a2ac2a18 nw_endpoint_flow_setup_channel + 9040 (endpoint_flow.m:2903)
26 libnetwork.dylib 0x00000001a2ad1278 -[NWConcrete_nw_endpoint_flow startWithHandler:] + 3704 (endpoint_flow.m:202)
27 libnetwork.dylib 0x00000001a2bcd66c nw_endpoint_handler_path_change + 14648 (endpoint_handler.m:0)
28 libnetwork.dylib 0x00000001a2bd48e0 nw_endpoint_handler_start + 1184 (endpoint_handler.m:960)
29 libnetwork.dylib 0x00000001a2f259f0 nw_endpoint_resolver_start_next_child + 4440 (endpoint_resolver.m:715)
30 libdispatch.dylib 0x00000001a1c01a54 _dispatch_call_block_and_release + 32 (init.c:1466)
31 libdispatch.dylib 0x00000001a1c037ec _dispatch_client_callout + 20 (object.m:559)
32 libdispatch.dylib 0x00000001a1c0cfe8 _dispatch_workloop_invoke + 1984 (inline_internal.h:2557)
33 libdispatch.dylib 0x00000001a1c1648c _dispatch_workloop_worker_thread + 764 (queue.c:6589)
34 libsystem_pthread.dylib 0x00000001edb4e7a4 _pthread_wqthread + 276 (pthread.c:2232)
35 libsystem_pthread.dylib 0x00000001edb5574c start_wqthread + 8
Thread 6:
0 libsystem_pthread.dylib 0x00000001edb55744 start_wqthread + 0
Thread 7 name:
Thread 7:
0 libsystem_kernel.dylib 0x00000001d01044fc mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001d0103884 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x00000001a1f8fd10 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2641)
3 CoreFoundation 0x00000001a1f89bb0 __CFRunLoopRun + 1212 (CFRunLoop.c:2974)
4 CoreFoundation 0x00000001a1f891c0 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 myapp 0x000000010250818c 0x1022c4000 + 2376076
6 Foundation 0x00000001a33db2fc __NSThread__start__ + 864 (NSThread.m:724)
7 libsystem_pthread.dylib 0x00000001edb4cc00 _pthread_start + 320 (pthread.c:881)
8 libsystem_pthread.dylib 0x00000001edb55758 thread_start + 8
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x000000016db3a010 x5: 0x000000016db3a5b0 x6: 0x000000000000006e x7: 0x0000000000000600
x8: 0x8cb94b6dd1d2347d x9: 0x8cb94b6cd33a0cbd x10: 0x0000000000000002 x11: 0x0000000000000003
x12: 0x0000000000000000 x13: 0x0000000000000000 x14: 0x0000000000000010 x15: 0x0000000000000000
x16: 0x0000000000000148 x17: 0x0000000102e838c0 x18: 0x00000001056cff24 x19: 0x0000000000000006
x20: 0x0000000000000103 x21: 0x0000000102e839a0 x22: 0x0000000283aa3080 x23: 0x0000000000000114
x24: 0x0000000000000000 x25: 0x0000000102e839a0 x26: 0x000000000000000f x27: 0x0000000000000000
x28: 0x0000000002ffffff fp: 0x000000016db3a520 lr: 0x00000001edb4daa0
sp: 0x000000016db3a500 pc: 0x00000001d0129334 cpsr: 0x40000000
esr: 0x56000080 Address size fault
Binary Images:
0x1022c4000 - 0x1027dffff myapp arm64 <ce1a3e61d58b3960a3b785c9c11f2f93> /var/containers/Bundle/Application/A1194935-B5B7-4062-89F2-9AB97C81352E/myapp.app/myapp
0x102a28000 - 0x102be3fff OpenSSL arm64 <f1ee5b0c32b43243890fa3d10ec573a5> /var/containers/Bundle/Application/A1194935-B5B7-4062-89F2-9AB97C81352E/myapp.app/Frameworks/OpenSSL.framework/OpenSSL
0x102d4c000 - 0x102d57fff libobjc-trampolines.dylib arm64e <f23e71e84220389a901aa5f2398905ee> /usr/lib/libobjc-trampolines.dylib
0x102dd4000 - 0x102e47fff dyld arm64e <ca553810334f351692ecaedeaa5c0426> /usr/lib/dyld
0x1a1bff000 - 0x1a1c43fff libdispatch.dylib arm64e <ffc93e7e836032a09eb5fe3761b8c90a> /usr/lib/system/libdispatch.dylib
0x1a1c44000 - 0x1a1c80fff libdyld.dylib arm64e <b08ab7c264e839379487c33d0175fd34> /usr/lib/system/libdyld.dylib
0x1a1c81000 - 0x1a1eecfff libicucore.A.dylib arm64e <ab7fcb3c67263f4697a573d41da6f4ea> /usr/lib/libicucore.A.dylib
0x1a1eed000 - 0x1a22acfff CoreFoundation arm64e <58500388bf36397c84cf17315a3445b6> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1a22ad000 - 0x1a245bfff CoreServices arm64e <6c07f046e45a3faf97885725a53f1ee7> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1a245c000 - 0x1a24a3fff WirelessDiagnostics arm64e <b9824cf1c287309f8eb07bccfa7d7332> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1a24a4000 - 0x1a2520fff SystemConfiguration arm64e <73f1b810e3ac3491a337b14b62ce0bd1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1a2521000 - 0x1a2616fff CoreTelephony arm64e <07e708ee6f8d3cb9a37383f72b4c3eea> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1a2617000 - 0x1a2aa8fff CFNetwork arm64e <048134a8c3cb3b41bc1df2f16e824512> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1a2aa9000 - 0x1a31ecfff libnetwork.dylib arm64e <816831deee0435f8a76cf90daa7b1ae6> /usr/lib/libnetwork.dylib
0x1a31ed000 - 0x1a3261fff Accounts arm64e <206a05d79eab36ca96deb5c27cf4768f> /System/Library/Frameworks/Accounts.framework/Accounts
0x1a3262000 - 0x1a3517fff Foundation arm64e <63d26deea1fb34b09adacc52e7f1d60c> /System/Library/Frameworks/Foundation.framework/Foundation
0x1a3518000 - 0x1a387afff ImageIO arm64e <028eba55dac633e7a775dd9d9d9a0f35> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1a3894000 - 0x1a3e2cfff CoreGraphics arm64e <5c35f490b0b43b64a48a2a9d319191b8> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1a3e2d000 - 0x1a5238fff UIKitCore arm64e <186c18fd10823811a76188e8376c7e69> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1a5239000 - 0x1a5257fff libAccessibility.dylib arm64e <09f834f076c73667b8287bc52eb4c491> /usr/lib/libAccessibility.dylib
0x1a5258000 - 0x1a54ecfff QuartzCore arm64e <b5b69ca265b2359fbcff24fd57d1ebf7> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1a54ed000 - 0x1a5557fff BackBoardServices arm64e <ac98379f333d3d5fbd6312905a1a9ace> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1a5558000 - 0x1a55dffff TextInput arm64e <4e970142a01737c8be9e8418392f2e0c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1a55e0000 - 0x1a5648fff libusrtcp.dylib arm64e <1d45f4eed723396fa68fa82936fd4276> /usr/lib/libusrtcp.dylib
0x1a5649000 - 0x1a5a00fff AppleMediaServices arm64e <c7a50416b22e3f96915ed6141d013e2f> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1a5a01000 - 0x1a5b63fff libswiftFoundation.dylib arm64e <991b8be787fc37a7a071c35dd3be3188> /usr/lib/swift/libswiftFoundation.dylib
0x1a5b64000 - 0x1a5fa5fff libswiftCore.dylib arm64e <c619b3274d693b8dbeac10db207910ed> /usr/lib/swift/libswiftCore.dylib
0x1a5fa6000 - 0x1a5fc1fff UIKitServices arm64e <efe515c39c4730458117fad6a0f01c1c> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1a5fc2000 - 0x1a6117fff Preferences arm64e <d13714c157953b9ca0ba895ca84d43e7> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1a6118000 - 0x1a6323fff ContactsUI arm64e <749637f4bee034388db71ebc43b59264> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1a6324000 - 0x1a64d9fff CoreText arm64e <45e9e61d0dc13cd3aa4f6579c3ac1568> /System/Library/Frameworks/CoreText.framework/CoreText
0x1a64da000 - 0x1a64f3fff ExtensionKit arm64e <4312dac44db23e688afe6e4dc9686d8c> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x1a650a000 - 0x1a658dfff BaseBoard arm64e <2a3bc731c5423387ae6abf72e43dc76f> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1a658e000 - 0x1a67d9fff CoreDuet arm64e <745d8b020d4d3c8ba80ac15fdfdb7f5b> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1a67da000 - 0x1a6933fff Contacts arm64e <9bd9f9345dda33e4b65380257b0aa2a7> /System/Library/Frameworks/Contacts.framework/Contacts
0x1a6934000 - 0x1a7e94fff GeoServices arm64e <9b1779e9985d39c0b87b6d5bd3f3ba8c> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1a7e95000 - 0x1a7f2afff CoreLocation arm64e <c673bf8e505230bb9d096c1e3c6cf76c> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1a7f2b000 - 0x1a80ccfff CloudKit arm64e <c1d2686f90213259818ecad2adeb113d> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1a80cd000 - 0x1a8441fff CoreData arm64e <4ae82cd06dc234acb4d44a4fbe4095f3> /System/Library/Frameworks/CoreData.framework/CoreData
0x1a91e0000 - 0x1a91eafff libswiftCoreGraphics.dylib arm64e <e42cd51affd93d4b9a53b7f31fb03f2b> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1a91eb000 - 0x1a922afff AppSupport arm64e <04497297f87a33a4ada345e414053b66> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1a922b000 - 0x1a934cfff ManagedConfiguration arm64e <e82cd71b412a3c8386ba694f051aac52> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1a934d000 - 0x1a93bbfff IMFoundation arm64e <5eec2fe3679239c6a9b7682735136272> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1a93bc000 - 0x1a94c9fff IDS arm64e <8c18a6bcf2663d38ad0f374775e29174> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1a94ca000 - 0x1a961bfff Security arm64e <a5dcbb29f11631d0b260c2dfb13dc646> /System/Library/Frameworks/Security.framework/Security
0x1a961c000 - 0x1a99f8fff MediaPlayer arm64e <cf3c59c6cc5c368893a6828b84d21b57> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1a99f9000 - 0x1a9a10fff AudioSession arm64e <f97d28c3922733af9adf0f2132df864f> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x1a9a11000 - 0x1a9bb5fff AVFCore arm64e <e90b96040f3439009de776a8ac04c954> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x1a9bb6000 - 0x1aa152fff Intents arm64e <679e85b3c24834e38f649b23d80ecdfa> /System/Library/Frameworks/Intents.framework/Intents
0x1aa1a2000 - 0x1aa4b3fff CoreImage arm64e <198570e5a97e3b79835975d64a9a8321> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1aa4b4000 - 0x1aa571fff ColorSync arm64e <f8e0a67871283785a955df3e73d47ff5> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1aa572000 - 0x1aa5adfff CoreVideo arm64e <bbd3b44b50353fd99442d4254ecffde0> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1aa5ae000 - 0x1aadcdfff MediaToolbox arm64e <49aedcafce783c6ea9adb7ca63be49c5> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1aadce000 - 0x1aaecffff CoreMedia arm64e <2a0f257912c130a5a72ae29c23636678> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1aaed0000 - 0x1ab140fff AudioToolbox arm64e <1e0023f6e1783baea294758ed5a12c5f> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1ab141000 - 0x1ab191fff CoreHaptics arm64e <9f631dabcbf63e0690c1f6b2f164f57d> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1ab192000 - 0x1ab1f0fff UserActivity arm64e <33792a46e2e53fbc999f0942004d1285> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1ab1f1000 - 0x1ab2f8fff UIFoundation arm64e <29ff2b7a379d3c298d6d9e0cb7e8cde7> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1ab2f9000 - 0x1ab31efff libsystem_info.dylib arm64e <a64375ac16443a9f8c0398df6855971e> /usr/lib/system/libsystem_info.dylib
0x1ab31f000 - 0x1ab39efff libsystem_c.dylib arm64e <7a2b5cfaf443345b9a818746d01ca8c0> /usr/lib/system/libsystem_c.dylib
0x1ab39f000 - 0x1ab3e9fff RunningBoardServices arm64e <4fd570b3d26f3ea1a4f91ee1d63a8e23> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1ab3ea000 - 0x1ac4b7fff JavaScriptCore arm64e <0d3c56e1ca343e199cfc940c415bd833> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1aca73000 - 0x1acb01fff ContactsFoundation arm64e <1c2922f8fd1c316aa2bcaa70ffd8734a> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1acb02000 - 0x1acd44fff HealthKit arm64e <1bc794f284cf3595a98f28451784c348> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x1acd45000 - 0x1acd67fff ProactiveEventTracker arm64e <97680381232d36dabd1de93f9a758239> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1acd68000 - 0x1acdb2fff Lexicon arm64e <3c57df5d5f6b39878f0fc9886919d9b6> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1acdb3000 - 0x1ace1cfff PersonalizationPortrait arm64e <b422ac5b4bd13792b6c13b808c910568> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1ace1d000 - 0x1ace6bfff CoreDuetContext arm64e <e61c76ac3d5e38e0be6088c81e8ddff9> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1ace6c000 - 0x1acf17fff IOKit arm64e <6fca9166daed3a14af0084023652a54f> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1acf18000 - 0x1acf26fff DataMigration arm64e <05b3e601d2213dab97bae982c8539b6d> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1acf27000 - 0x1acf82fff SpringBoardServices arm64e <ca19c1623cee3dbe98ee4f220c5edc13> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1acf83000 - 0x1acf94fff ContextKit arm64e <5c562a798c20348b83efbb846f612292> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1acf95000 - 0x1ad208fff CoreMotion arm64e <4b414798c90632069f91752086513a84> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1ad209000 - 0x1ad346fff EventKit arm64e <4288fb3d413a33479aaf61687b3f9f82> /System/Library/Frameworks/EventKit.framework/EventKit
0x1ad897000 - 0x1adb36fff MediaRemote arm64e <bdf03d937e283203b6ff714b73e6eb92> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1adb37000 - 0x1adce1fff CoreUtils arm64e <14c8cde85362354387402aeb5298fe4a> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1adce2000 - 0x1adcf7fff FamilyCircle arm64e <e00e1fff28a4359eb4a98f0fd9e52ed2> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1adcf8000 - 0x1add64fff CoreSpotlight arm64e <3407c4f701a53ec887e32250be69eba2> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1ae0b2000 - 0x1ae280fff AssistantServices arm64e <4ff4d127aec43b4fa0d0cba807cd0571> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1ae281000 - 0x1ae345fff CoreUI arm64e <01c884bbadb5397da797b8f767f0f266> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1ae346000 - 0x1ae393fff SafariSafeBrowsing arm64e <51cd6dba09f73689a63ab07ba5f8a51c> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1ae394000 - 0x1aeb6cfff WebKit arm64e <22d8cc4f55743559b05427d6ab4288d1> /System/Library/Frameworks/WebKit.framework/WebKit
0x1aeb6d000 - 0x1b1108fff WebCore arm64e <4966787572d037b8bba2e584638ebdfe> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1b1109000 - 0x1b1166fff libMobileGestalt.dylib arm64e <3cd30c4e8e5e3414b25587e27f27573e> /usr/lib/libMobileGestalt.dylib
0x1b1167000 - 0x1b1182fff CommonUtilities arm64e <f9fa7976974532f699ccf4ded1d22ebe> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1b1183000 - 0x1b12e8fff IDSFoundation arm64e <62f46d4a5f693c5e9fbf0e1b96f9296f> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1b12e9000 - 0x1b13effff IMSharedUtilities arm64e <35d741f65c773f089f285c5470577f02> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1b13f0000 - 0x1b1498fff CoreSuggestions arm64e <da35bd2854ee31d19ceca5051ebfb4cd> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1b1499000 - 0x1b1535fff AddressBookLegacy arm64e <03cac203bcd33feba2530a290a58b447> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1b1536000 - 0x1b1567fff UserNotifications arm64e <316675c0962e3a3cb3c20a693a6424f9> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1b1568000 - 0x1b15f1fff FrontBoardServices arm64e <aef93719639a3862864995b3fa53899f> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1b15f2000 - 0x1b1615fff libsystem_malloc.dylib arm64e <a5addce2985231c28a5b03fadb759923> /usr/lib/system/libsystem_malloc.dylib
0x1b1616000 - 0x1b18dafff MapKit arm64e <ef52fe4550533d75bf7109faf5aefa58> /System/Library/Frameworks/MapKit.framework/MapKit
0x1b18db000 - 0x1b207afff VectorKit arm64e <61e9b915d1f537c2b0aa62d28b994733> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1b207b000 - 0x1b2109fff AuthKit arm64e <bd148bb3759738848eb37eca1c7f34ec> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1b210a000 - 0x1b219bfff AppleAccount arm64e <12e97b3da0473183a3c269b90d50717c> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1b219c000 - 0x1b2403fff AudioToolboxCore arm64e <def3b64587fc30e6b5180f141873c1c1> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1b2437000 - 0x1b2709fff StoreServices arm64e <5640d1cd07ae38e58e79809a6c5f7f65> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1b270a000 - 0x1b2899fff Sharing arm64e <b3efed4ba4ed30a282c13dae680c95e8> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1b289a000 - 0x1b293afff ShareSheet arm64e <e74c095cea19376aab6a16361482e261> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1b293b000 - 0x1b29fefff CoreParsec arm64e <281c81690f56300baa4fc43572ba38c7> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1b29ff000 - 0x1b2a46fff PhotoFoundation arm64e <12520ee704b938e0a072736bf5570179> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1b2a47000 - 0x1b2c85fff Photos arm64e <4e9543ad4f5533d390a75966b2353044> /System/Library/Frameworks/Photos.framework/Photos
0x1b2c86000 - 0x1b33a2fff PhotoLibraryServices arm64e <72712adf548c3ec29c7c885c8e78b79c> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1b33a3000 - 0x1b3462fff AssetsLibraryServices arm64e <8cf235c08dd43355bbcc29d085bcaa3f> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1b3463000 - 0x1b34b2fff MobileBackup arm64e <a3e62bc478cd31b6996a7241befe028f> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1b34b3000 - 0x1b34c6fff MSUDataAccessor arm64e <eca142ecdd8d3b9da2554008169c3b75> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x1b34c7000 - 0x1b34eefff MobileAsset arm64e <d25cc61f68c23f55b2b5d26502bef5e2> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1b34ef000 - 0x1b34fefff libsystem_networkextension.dylib arm64e <3fbd7ab2b56134ddafff3f701a0e8d70> /usr/lib/system/libsystem_networkextension.dylib
0x1b34ff000 - 0x1b3746fff NetworkExtension arm64e <9aac742ed5f73619bc05ea4f2d8601fb> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1b3747000 - 0x1b377dfff Trial arm64e <2ac64392246b3648a5317a43d048b489> /System/Library/PrivateFrameworks/Trial.framework/Trial
0x1b377e000 - 0x1b3ffdfff CoreML arm64e <e63b5688e4bf311e81af768de88859aa> /System/Library/Frameworks/CoreML.framework/CoreML
0x1b3ffe000 - 0x1b4771fff Espresso arm64e <ae4e89e1d605329cb29a0e5b6dceaafb> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1b4772000 - 0x1b487afff VideoToolbox arm64e <29248b123cde35a588a195c32c022922> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1b487b000 - 0x1b48c3fff OnBoardingKit arm64e <fa5456cb1c493bd5a30b3f59fac560eb> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x1b49b9000 - 0x1b49cafff AXCoreUtilities arm64e <014031bc30613d918e3c9c3fc107b99d> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1b49cb000 - 0x1b4f4bfff PhotosUI arm64e <4a9e11f21ef63cb0a56e72c3f7d3c61c> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x1b4f4c000 - 0x1b5815fff PhotosUICore arm64e <6b0f1a9ab51c38e39c667f27e64e6506> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x1b5816000 - 0x1b598afff Montreal arm64e <92ef6ab63ca73bcc891a7606e41479ac> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b598b000 - 0x1b5a9efff LanguageModeling arm64e <b5a21e1a28553a3bae456d0aa72d82a5> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1b5a9f000 - 0x1b5aa7fff InternationalSupport arm64e <f35c75e17e373e3c8f3fdc2b8cafbe8c> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b5aa8000 - 0x1b5cf7fff iTunesCloud arm64e <d64f26b2c0793953b00dd259c4370706> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1b5cf8000 - 0x1b5d3dfff libswiftUIKit.dylib arm64e <6fec7ff46dce3122808ec2852bc4403f> /usr/lib/swift/libswiftUIKit.dylib
0x1b5e54000 - 0x1b5efdfff CalendarDatabase arm64e <fe3291441ced3c34a5d459f5dadd6bb7> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1b5f4c000 - 0x1b602ffff LinkPresentation arm64e <5567c66e9f79320283ae3121957cb95e> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1b6030000 - 0x1b616efff Combine arm64e <ad79dd78c66638688a909246fa175a20> /System/Library/Frameworks/Combine.framework/Combine
0x1b61fb000 - 0x1b620cfff UniformTypeIdentifiers arm64e <cd3a71afaafe3202acdc7eb159799ce1> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1b620d000 - 0x1b628efff CloudDocs arm64e <e288ab835d5b385686c109a77aa52153> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1b67c5000 - 0x1b6808fff MediaServices arm64e <7bdd6cc77a88373384388d05968d2881> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1b6809000 - 0x1b6993fff SearchFoundation arm64e <5ebd338a9e4a3b62aeedb10b04f17576> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1b6994000 - 0x1b69eefff WebBookmarks arm64e <89df099d721433f0a59bff389549c0ed> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1b6a6d000 - 0x1b6aa4fff libobjc.A.dylib arm64e <5e3463af65df310784dd1a10b3ebb1c8> /usr/lib/libobjc.A.dylib
0x1b6aa5000 - 0x1b6b06fff LoggingSupport arm64e <77706ef2861c33a5b898594e23a594f4> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1b6b07000 - 0x1b6b62fff libc++.1.dylib arm64e <e75ee07c2fbf363595482f3648371925> /usr/lib/libc++.1.dylib
0x1b6b63000 - 0x1b6b7cfff libc++abi.dylib arm64e <5f0f3e96ff313253998119ea89a8a578> /usr/lib/libc++abi.dylib
0x1b6b7d000 - 0x1b6bbefff SetupAssistant arm64e <0ef8f8e8fcdb333298ea5cb56463af6e> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1b6d10000 - 0x1b6d52fff CoreAutoLayout arm64e <9d52b2d988f63696bdd72c5c39cb55e2> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1b6d53000 - 0x1b6eaafff Network arm64e <ea77aa5767793c6495067d33a143a93e> /System/Library/Frameworks/Network.framework/Network
0x1b6eab000 - 0x1b6ee1fff MobileKeyBag arm64e <49adf173d1d33adfbb93db274289cb24> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b7112000 - 0x1b7124fff BaseBoardUI arm64e <8d0e07c01ee337489132f8babe88b7e4> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1b7125000 - 0x1b71d3fff libvDSP.dylib arm64e <b7f54bcfd7a03857961a3398ac014859> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1b71d4000 - 0x1b7207fff libAudioToolboxUtility.dylib arm64e <39ffaacc889c35beb97e065a31c391c2> /usr/lib/libAudioToolboxUtility.dylib
0x1b73db000 - 0x1b7466fff CoreNLP arm64e <2c7f216138d836e0acbf898cae55e845> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1b7467000 - 0x1b757cfff FileProvider arm64e <1b1a916cc61e320ea9d07374aef73435> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1b757d000 - 0x1b758efff BiomeStorage arm64e <edca4835bd3a3af5b9ce01d7f21425ec> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x1b758f000 - 0x1b75a7fff libswiftDispatch.dylib arm64e <62b14104518738ae9130167ff084bde9> /usr/lib/swift/libswiftDispatch.dylib
0x1b75a8000 - 0x1b75ddfff DataDetectorsCore arm64e <75f6765602563e158e75c8a6dba02097> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1b75de000 - 0x1b767afff Symbolication arm64e <8aa08212e2a03dbbba0c6b998cef9707> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1b767b000 - 0x1b7689fff CrashReporterSupport arm64e <0569dabbb67139a7a8d08c3580d6b540> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1b76eb000 - 0x1b77bbfff TelephonyUtilities arm64e <d6393deaf7d73901aa2906481bdb2032> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1b77f3000 - 0x1b79e0fff MPSNeuralNetwork arm64e <586e47f1d92936058fc65c0b0e87acb7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1b79e1000 - 0x1b7a36fff MPSCore arm64e <622a2dcf4d1334669fd09348bb6b4f02> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1b7b91000 - 0x1b7bfafff CalendarFoundation arm64e <a7b3e3c7ae4e3f42a8d75b41ef82c615> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1b7c5b000 - 0x1b7d44fff NLP arm64e <4078734e2be43bc3841bd411628835e2> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1b7d45000 - 0x1b7d6cfff AppSupportUI arm64e <7eb6be0948d433a0a403e0429feacfa3> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1b7d76000 - 0x1b7dc9fff FTServices arm64e <1eeeb471a5603dfc9de8dedb46d6da42> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1b7dca000 - 0x1b7e7cfff libboringssl.dylib arm64e <727308976954333f9ea70fce4af877e3> /usr/lib/libboringssl.dylib
0x1b7e7d000 - 0x1b7e93fff ProtocolBuffer arm64e <d07ee4972be53857aa4382df727e3da6> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1b7e94000 - 0x1b7f94fff AVKit arm64e <1d20a2c3e3053aa39cdb2cd947301dd5> /System/Library/Frameworks/AVKit.framework/AVKit
0x1b8102000 - 0x1b8111fff AssertionServices arm64e <06da174e39c83cb898bb81db943434df> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1b818f000 - 0x1b8269fff Metal arm64e <242392f1b3f63c49b1b009c6e11c5b6c> /System/Library/Frameworks/Metal.framework/Metal
0x1b826a000 - 0x1b83befff MediaExperience arm64e <cf0e134b2bbc37aea64bf440e7a4bd22> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1b83bf000 - 0x1b87c7fff VideoProcessing arm64e <5e173771f2e239629c56225a66aa42c9> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
0x1b87c8000 - 0x1b87defff libsystem_trace.dylib arm64e <de6b2aa8d12e39bf997ea9cc29bea159> /usr/lib/system/libsystem_trace.dylib
0x1b87df000 - 0x1b8810fff CoreServicesInternal arm64e <057a9ad89d763e2291d15a51c521facc> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1b8811000 - 0x1b8880fff SafariCore arm64e <6cd4ff9fd6fd3de7ad4cb308007e2230> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1b8881000 - 0x1b8ab4fff SafariShared arm64e <d54a6ff2712a3a589d7b3d77475d7477> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1b8ab5000 - 0x1b8b46fff AppStoreDaemon arm64e <2013ca079e163b17a767653a70c8730c> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1b94ab000 - 0x1b9523fff SAObjects arm64e <2ee46702bcbb30158e8af6023c656c16> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1b9524000 - 0x1b956dfff VoiceServices arm64e <82f933fc10bb3ddaa0a620573810645e> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1b956e000 - 0x1b9576fff GraphicsServices arm64e <fd6e6f8068c635e09d0d09c1167643ad> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1b9577000 - 0x1b95c9fff DeviceManagement arm64e <67d349140ec83b059732b8a8335d7eac> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1b95ca000 - 0x1b9743fff Translation arm64e <c4e4fc4484d83ebf82410de097cac8e2> /System/Library/PrivateFrameworks/Translation.framework/Translation
0x1b9744000 - 0x1b9758fff PowerLog arm64e <d7bc9acb68dc334b83a6b5fd5efedf44> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1b9759000 - 0x1b9780fff DuetActivityScheduler arm64e <ab3eed6273d93cee84753b4dddd55b4a> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1bb216000 - 0x1bb4bbfff Vision arm64e <9c7f7926d6633473ac76437f7321bf9d> /System/Library/Frameworks/Vision.framework/Vision
0x1bb516000 - 0x1bb580fff ProactiveSupport arm64e <22cfe32cec853c6fa9c1c3c865b0cca7> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1bb5ac000 - 0x1bb5cbfff ApplePushService arm64e <8c892fe2bd8c31e78af67ae513b7e2c5> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1bb5cc000 - 0x1bb5f5fff BoardServices arm64e <51079d716df0363c8697097c285f533b> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1bb5f6000 - 0x1bb602fff libswiftCloudKit.dylib arm64e <3c4f0b765775341ea2c293a274459128> /usr/lib/swift/libswiftCloudKit.dylib
0x1bb76a000 - 0x1bb79afff libncurses.5.4.dylib arm64e <9df61b26570b3caa8cf83d6d460e65fd> /usr/lib/libncurses.5.4.dylib
0x1bb79b000 - 0x1bb7dafff OSAnalytics arm64e <113e1451f4fa36cab9f31557a9ac64b5> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1bb7db000 - 0x1bb836fff CoreBluetooth arm64e <42ebbb4dbfcc3f07b151784b68845faa> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1bba2a000 - 0x1bba6dfff TemplateKit arm64e <8cae50ec1ef632789d2b5dff0d5d3e2d> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x1bba6e000 - 0x1bbaa2fff MobileInstallation arm64e <4c31ffbe97ab397fbe651d242d1a06ec> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1bbaa3000 - 0x1bbb30fff libTelephonyUtilDynamic.dylib arm64e <6836da9d0dbd3d44a74c4fdcb6e5c12e> /usr/lib/libTelephonyUtilDynamic.dylib
0x1bbb31000 - 0x1bbb9efff NanoRegistry arm64e <5057570e0b9c382f81055c6d1346aa2c> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1bbc7e000 - 0x1bbc9afff CoreMaterial arm64e <54f2177002dc3c65b7d217d25315d21b> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1bbd11000 - 0x1bbe96fff libsqlite3.dylib arm64e <ded140ca959b386e8a752cf0dbfa0924> /usr/lib/libsqlite3.dylib
0x1bbe97000 - 0x1bbf5cfff AVFCapture arm64e <98773cb379493cea94f8d75e183ef3d0> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1bbf5d000 - 0x1bc2a8fff CMCapture arm64e <16d6b3c56d2936c28b2e5c6c62abdf39> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1bc463000 - 0x1bc6cffff MobileSpotlightIndex arm64e <7ac2add75d99391f84b34e6492c96c9d> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1bcafd000 - 0x1bcb07fff libsystem_notify.dylib arm64e <72bb0e384af237efa46c22e51a15cd6c> /usr/lib/system/libsystem_notify.dylib
0x1bcb08000 - 0x1bcb4bfff CryptoTokenKit arm64e <6ed98570ce9a34d4884ae5d7001370eb> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1bcbb6000 - 0x1bcc29fff libcorecrypto.dylib arm64e <193092c2ca43370bb2f5fc9912342afe> /usr/lib/system/libcorecrypto.dylib
0x1bcc2a000 - 0x1bcc4dfff UserManagement arm64e <c77fab4fc2fd3dfeb6aa3f8c074cb778> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1bcd25000 - 0x1bcd3ffff libsystem_asl.dylib arm64e <7ea474d4da40363ca729cb534d12462c> /usr/lib/system/libsystem_asl.dylib
0x1bcd40000 - 0x1bcd64fff AppSSO arm64e <5faf5addf6d73fadb9318d5bedf4866f> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1bcd65000 - 0x1bcd85fff SharedWebCredentials arm64e <c414ff40c4f632658c7dead712a1bd2e> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1bcd86000 - 0x1bcf56fff SafariServices arm64e <aafba9edf53f32c68b7b4e6b390ee251> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1bcfab000 - 0x1bcfe1fff DataAccessExpress arm64e <5dc11e3861f73241bf4be1ddd1297d5b> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1bcfe2000 - 0x1bd019fff CoreServicesStore arm64e <779d9f99f61636eea0ee34c5a44f6fcb> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1bd01a000 - 0x1bd04cfff CoreAnalytics arm64e <9705d34d797e36f5af4d5408463f07c0> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1bd04d000 - 0x1bd058fff SymptomAnalytics arm64e <1f8cec54a1e3365b8e2f7ed8de95e8b2> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1bd252000 - 0x1bd261fff NanoPreferencesSync arm64e <1bcd78a38e8a3c718e047a2ae03d23b1> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1bdacc000 - 0x1bdaf6fff IconServices arm64e <f2c26c70509c330cacaeaeb5dfefb058> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1be581000 - 0x1be83efff vImage arm64e <7d619ec35f6a3fd792390c09e8c2e1ef> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1bf644000 - 0x1bf81efff IMCore arm64e <7bbd9148883132da98f0d8e67a8d7783> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1bf913000 - 0x1bf92afff IAP arm64e <4f525bd552ac31a1abbfaefa8cee92df> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x1bf92b000 - 0x1bf986fff ktrace arm64e <4908d2c4b5143ea28bfb557d2c5921a2> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1bfca9000 - 0x1bfcb7fff Celestial arm64e <6cf09e6694db3db9af109d33af95f353> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1bfd5e000 - 0x1bfda5fff Pegasus arm64e <2252f88f414632e1a4c6069a4362f422> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1bfda6000 - 0x1bff0cfff WebKitLegacy arm64e <19c126ed72583da1a433e0c280d483e5> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1bff81000 - 0x1c0000fff ClassKit arm64e <6fae3aeaea1034d7ac6ae4bc057f8b8a> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1c0001000 - 0x1c0047fff StoreKit arm64e <45e16b0cc0073303974671bac282438f> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1c1175000 - 0x1c117ffff IOMobileFramebuffer arm64e <6a5768f3613234b3a081b1261d1a4aee> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1c1180000 - 0x1c11f4fff ScreenTimeCore arm64e <eb2c076acb1b31e986bc9918302d46f2> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x1c12a0000 - 0x1c1422fff CloudPhotoLibrary arm64e <a702f5dda77a3044a9c6c9a25c6dd1f6> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1c1423000 - 0x1c16eafff MusicLibrary arm64e <42882a66dbee3f3ea96c2d9efe96405c> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1c16eb000 - 0x1c1753fff CallKit arm64e <ed6b8e24124d3733a477cb6f1dd1359e> /System/Library/Frameworks/CallKit.framework/CallKit
0x1c17f7000 - 0x1c1816fff PrototypeTools arm64e <8119aabb892c3994a2a62225c9dc19c5> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1c1817000 - 0x1c1842fff PersistentConnection arm64e <058616437e3638aea65eaae1560381d9> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1c1922000 - 0x1c1964fff BiomeStreams arm64e <2ce2484c6e8f3d08ae8dcb387fdfced8> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x1c197f000 - 0x1c1c2dfff PencilKit arm64e <6a43292eec84362299d0964068e5539a> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x1c1cec000 - 0x1c1e58fff CoreSpeech arm64e <2f61d947acfe306d99fbf1cffe576a9b> /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech
0x1c1e59000 - 0x1c1fb4fff IMDPersistence arm64e <df2a649d317a3588a190bf9fee3ecc0e> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1c2251000 - 0x1c2316fff SafariSharedUI arm64e <d170fa96d7f93f89824b4b81cb9fc9ef> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
0x1c2333000 - 0x1c2349fff AppSSOCore arm64e <8d7766e53db03899bd87534e1b0317e7> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x1c2355000 - 0x1c236bfff CoreFollowUp arm64e <5e4f0a8a1a9d342cb08b25923c152133> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1c236c000 - 0x1c23e4fff Rapport arm64e <1406806a4b8633e9b72a590d02c1b709> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1c24c7000 - 0x1c24d8fff Categories arm64e <0eb19e880c2f3dc28372e27904e31288> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1c27a6000 - 0x1c27cdfff LocationSupport arm64e <beb6ad59ebe93ffaa79f5bb26a241ef8> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1c27ce000 - 0x1c2801fff iCalendar arm64e <f46b1543617531ab811f8955ae291f49> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1c2802000 - 0x1c2830fff CoreAccessories arm64e <e9cf8329c3cc3e3eaadef4a62236bc3e> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x1c2831000 - 0x1c292ffff ConfigurationEngineModel arm64e <843da2d740273a2ca9c807ecf79a1e3f> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1c2930000 - 0x1c295afff CacheDelete arm64e <b40d8bb0baaa31b2b1ac59d4185a0ecf> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1c295b000 - 0x1c29d5fff CVNLP arm64e <bfbd395ae83732198d8c3b35bda9e564> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x1c2b45000 - 0x1c2b47fff OSAServicesClient arm64e <a1160a791cd13397ab3d33fcbfca9d71> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1c2b48000 - 0x1c2b4afff BiomeFoundation arm64e <d81bc2689d5b3200ae3e4933fff7bb9e> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x1c2b4b000 - 0x1c2ba4fff ProtectedCloudStorage arm64e <17d7fc36dfa03e9e8149aa16f974a3fd> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1c2ba5000 - 0x1c2bdafff C2 arm64e <5f732b028303354e88fed94997bb1d3b> /System/Library/PrivateFrameworks/C2.framework/C2
0x1c2bdb000 - 0x1c2e46fff DifferentialPrivacy arm64e <c60c53b059a13cb4a1fe9fff62bcbd40> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1c3078000 - 0x1c38ddfff EmbeddedAcousticRecognition arm64e <87911efdb77133dda7fc06acd98b0f67> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
0x1c38de000 - 0x1c399cfff SiriInstrumentation arm64e <18dc4558333d351c87519c978d42dd04> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1c399d000 - 0x1c39e0fff BiometricKit arm64e <faf092ffc4a737729778f9546c891f28> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1c3a35000 - 0x1c3ae3fff CoreSymbolication arm64e <d4c99b0d6aa636da839f96aca615ca52> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1c3b5c000 - 0x1c3bedfff SpeakerRecognition arm64e <c3ce1dad3dee33dea957de323b9dea6d> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition
0x1c42aa000 - 0x1c42bcfff IOSurface arm64e <3465394de5cd368cb62f4ad3b48ce973> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1c42bd000 - 0x1c4320fff MobileWiFi arm64e <4946d0754665304d85610d1c77efabdc> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1c47f7000 - 0x1c489ffff MMCS arm64e <4a8db91f4a113e43a11704a6c9f6dc1c> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1c4916000 - 0x1c4951fff libGLImage.dylib arm64e <7f45e7b9e4ab36a3ab0426d4226e1e32> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1c4952000 - 0x1c4959fff libsystem_symptoms.dylib arm64e <f47448fac0863fa9ace974c38acc3fa5> /usr/lib/system/libsystem_symptoms.dylib
0x1c49a5000 - 0x1c4efcfff CoreAudio arm64e <dbd12b6cf18f3e83939810d4e1e2705e> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1c4efd000 - 0x1c4f14fff ContactsDonation arm64e <5d2ad700f2203d788b49711c8b0a06da> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1c4f15000 - 0x1c4f32fff IntentsCore arm64e <c7f4315040ed3b0fb09ae9aaa5a16bfe> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x1c4fd7000 - 0x1c500dfff ImageCaptureCore arm64e <8449b630e8fc342689525bfc2a1d2b9e> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1c517b000 - 0x1c52c0fff Navigation arm64e <3d036d20aae035c780aa7c1b2e7bd153> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1c52c1000 - 0x1c52ddfff SafariFoundation arm64e <9c8a455958a337e498fd4da816e2503a> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1c5467000 - 0x1c547afff MaterialKit arm64e <9caad6c613e235b1874ce8d1c9d27e76> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1c5624000 - 0x1c5634fff CoreAUC arm64e <31775b839c0f3f34ac92a1db4118db98> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1c5e84000 - 0x1c5e9afff SettingsFoundation arm64e <869ce99c636f3a32b35795e960f62dd8> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1c6866000 - 0x1c68c6fff ToneLibrary arm64e <b8c66787e2f73879bdc2f1eb12d26455> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1c68c7000 - 0x1c6931fff TrialProto arm64e <1394646917553bc39c112ba8df032e0d> /System/Library/PrivateFrameworks/TrialProto.framework/TrialProto
0x1c7105000 - 0x1c7112fff MediaSafetyNet arm64e <e6eec0f4678a3eee94f6cb9a505be335> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1c7113000 - 0x1c714efff TimeSync arm64e <37e68b2c1b5e3992859865bd6493f3d3> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1c71e6000 - 0x1c722bfff ExposureNotification arm64e <9ba8317a75f63301a4248cde40ee1e5d> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1c78ba000 - 0x1c78c3fff CoreTime arm64e <2943aaa14f033444882c5d11f6743422> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1c805c000 - 0x1c8258fff NeutrinoCore arm64e <d0a2ee62d82e372db42daddf284c828a> /System/Library/PrivateFrameworks/NeutrinoCore.framework/NeutrinoCore
0x1c8268000 - 0x1c8365fff TextRecognition arm64e <72db6868a6193615b29309ccf2ad623d> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1c8480000 - 0x1c8489fff ContextKitExtraction arm64e <8f936f9715643cc7b1a2ed0875d31273> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1c855e000 - 0x1c8560fff libswiftObjectiveC.dylib arm64e <212c3aa6b00e349f8fbdc7fce8f8161f> /usr/lib/swift/libswiftObjectiveC.dylib
0x1c8561000 - 0x1c87b0fff libmorphun.dylib arm64e <3e69843e4cef37228e7bf584ba970a3c> /usr/lib/libmorphun.dylib
0x1c9b1d000 - 0x1c9b56fff PhotosPlayer arm64e <590a2b9e85a0341394490aa291ce703e> /System/Library/PrivateFrameworks/PhotosPlayer.framework/PhotosPlayer
0x1c9b9b000 - 0x1c9c1efff CoreDAV arm64e <3634be0845153a339be39a57f16ebd5d> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1c9dfe000 - 0x1c9e0dfff MobileIcons arm64e <bf17aa446c6e3d568905ad5dffeb4caa> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1ca1df000 - 0x1ca2b3fff ProofReader arm64e <ce41ce3541ce330a9af6a4471fff7bcf> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1cb516000 - 0x1cb520fff MallocStackLogging arm64e <0a810c71bcc83f0cb57d6896c6bbe154> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1cb759000 - 0x1cb7a4fff MetadataUtilities arm64e <c1f0d5de3319301b91d4b15033509770> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1cbf38000 - 0x1cbf96fff CoreLocationProtobuf arm64e <ba7659abdc7b39e5a7bbac288870b5b5> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1cc1b3000 - 0x1cc1e5fff Bom arm64e <0f1f2d0647a235f9abe4b25c4fa63184> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1cc217000 - 0x1cc21dfff PushKit arm64e <012004fe051e3f76abcab3d9c24f488e> /System/Library/Frameworks/PushKit.framework/PushKit
0x1cc21e000 - 0x1cc287fff PhotosFormats arm64e <012f2dd22a7831c794a251f9bf57629d> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1cc419000 - 0x1cc4a9fff Quagga arm64e <6410201142df3c95aa8b27289e5b30ae> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1cc4aa000 - 0x1cc4b2fff StudyLog arm64e <fd70df9b78f13d2b89af05c1324d87f8> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1cd463000 - 0x1cd4a4fff NaturalLanguage arm64e <4e6da6648c893f7399968759d5805d4c> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1cdf5e000 - 0x1cdf7dfff MediaStream arm64e <f5803b1a5bbe394db960ae247d8f4ec9> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1ceacf000 - 0x1cebfcfff InternalSwiftProtobuf arm64e <0fc3875e7a833526a122174d49ba62c6> /System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf
0x1ced1c000 - 0x1ced45fff MediaConversionService arm64e <dbe13a8fceca3c5dadf4b6de89c62b05> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1cee9b000 - 0x1cefdefff CoreHandwriting arm64e <be4f616232a33576b633f233c5419032> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1cf810000 - 0x1cf81bfff AppleIDAuthSupport arm64e <48c91b83505e3b57a3768d91167ba53b> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1cf82b000 - 0x1cf842fff LocalAuthentication arm64e <1328e0378138343ab27f018e8e8c3c88> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1cf843000 - 0x1cf849fff IOAccelerator arm64e <165587444f3c376489aaf746732fbf2f> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1cfc34000 - 0x1cfc3efff CloudPhotoServices arm64e <d0101352389c395b843d1c4f049ebc28> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1cfc86000 - 0x1cfd31fff iTunesStore arm64e <58b2e4c386b93b818ccfeec4d3d7a2aa> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1d0100000 - 0x1d0132fff libsystem_kernel.dylib arm64e <8c05f540631539e293852765f56e844a> /usr/lib/system/libsystem_kernel.dylib
0x1d043b000 - 0x1d0545fff ResponseKit arm64e <a1021543cff83582860560a878a60a16> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1d0546000 - 0x1d0580fff EmojiFoundation arm64e <b5c7fc06af5e367db033d1ba87b6a74d> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1d0bb0000 - 0x1d0bbdfff FontServices arm64e <064aca6f5c0f3fbbac15b4b88e61df12> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1d0d77000 - 0x1d0d83fff MediaAccessibility arm64e <8ec945a4ae953fe4b053ce4d85ad41ab> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1d0dc4000 - 0x1d13a0fff SiriTTS arm64e <51b960203fd23590917cb860f169b75c> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1d13a1000 - 0x1d13affff SetupAssistantSupport arm64e <d5903898995b36b1b046080ac2720914> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1d13b8000 - 0x1d1418fff Social arm64e <482086914f8b36be9c9a8c27176337bc> /System/Library/Frameworks/Social.framework/Social
0x1d14f3000 - 0x1d1524fff VirtualGarage arm64e <e213a23964383e53ae8539e9ad4feed8> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
0x1d1525000 - 0x1d154afff NetAppsUtilities arm64e <9f09d90836fe35b9af55408dbd840a4a> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1d154b000 - 0x1d15acfff Osprey arm64e <b9d3de4fc48238789e441a5692d48dc7> /System/Library/PrivateFrameworks/Osprey.framework/Osprey
0x1d2769000 - 0x1d2776fff libdscsym.dylib arm64e <ec7945da59ec337ab29380f3e7ad5581> /usr/lib/libdscsym.dylib
0x1d2777000 - 0x1d2787fff HangTracer arm64e <430aab222f0334edb52e4bf7a4a3f9d0> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1d2943000 - 0x1d29fefff SampleAnalysis arm64e <5ac5570419fd388f87ec8a410e856b15> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1d29ff000 - 0x1d2a2efff PlugInKit arm64e <82eb44db978633ee85691c868f25c716> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1d2ae2000 - 0x1d2ae3fff libSystem.B.dylib arm64e <d26d5975ef8b3a65b8cb7930f8672da6> /usr/lib/libSystem.B.dylib
0x1d2df4000 - 0x1d2e01fff MobileActivation arm64e <54c4a7126583398ba91433003f3ee098> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1d2e02000 - 0x1d2e5afff CalendarDaemon arm64e <5f9e7b971b7638e2b205f9061153cee8> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1d2f4f000 - 0x1d2fbffff libarchive.2.dylib arm64e <d4f11823f8dd3c059c2edffd520956ad> /usr/lib/libarchive.2.dylib
0x1d2fc0000 - 0x1d2fe4fff libtailspin.dylib arm64e <94d0bc453ec037cbbd1251d74818fc5c> /usr/lib/libtailspin.dylib
0x1d2fe5000 - 0x1d34a2fff libBNNS.dylib arm64e <ac4ba004bf36344a887a5c4382aa90ed> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1d34a3000 - 0x1d34e6fff SharedUtils arm64e <6a37be8ab47e30799057da3ca93bb31c> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1d379a000 - 0x1d379ffff libsysdiagnose.dylib arm64e <a128b3c255b1323cb5b4b2ce32d87fcb> /usr/lib/libsysdiagnose.dylib
0x1d37dc000 - 0x1d38e7fff CoreMediaStream arm64e <112b60b7bb6f30b8a3a491734947bab4> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1d3af9000 - 0x1d3af9fff AVFoundation arm64e <bd9529232fa339b78bffa4088f0b5f75> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1d3afa000 - 0x1d3afafff Accelerate arm64e <baf3bf06407f3cef8575aa9db846df44> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1d3afb000 - 0x1d3d65fff libBLAS.dylib arm64e <6f55ec39731d39669c5476fe4d453e7b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1d3d66000 - 0x1d4222fff libLAPACK.dylib arm64e <5dc4f213b2bc3f78a650b27dabf3b874> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1d4223000 - 0x1d4237fff libLinearAlgebra.dylib arm64e <1f37432fbd5c3864afb0545a456904d6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1d4238000 - 0x1d423cfff libQuadrature.dylib arm64e <05c8929914b13f8cb87750b5c2f1679f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1d423d000 - 0x1d429ffff libSparse.dylib arm64e <569942602f8335198b461ee8ba30315b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1d42a0000 - 0x1d42b2fff libSparseBLAS.dylib arm64e <f3d9df744e343fa586fc2cf88569c257> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1d42b3000 - 0x1d4306fff libvMisc.dylib arm64e <85e8b76d450133ae90437b8d604a8665> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1d4307000 - 0x1d4307fff vecLib arm64e <9f93937dcb963dd4a591605605408b74> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1d433f000 - 0x1d4342fff AppTrackingTransparency arm64e <67a29cd32b6a3c58a38c944684786910> /System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency
0x1d4343000 - 0x1d4354fff AssetsLibrary arm64e <ef8878dcaaec33dbbf5ee8202c63ca9d> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1d446a000 - 0x1d4487fff AuthenticationServices arm64e <58cf7b3d76cd33929a5fadab3fd251a4> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1d4b0b000 - 0x1d4b22fff ExternalAccessory arm64e <b51d2faf605d3ffeb00dc171c0bce04b> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
0x1d4d03000 - 0x1d4e87fff MLCompute arm64e <c889e0ef1c0b3c56bb5b6edb4d364738> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1d4eae000 - 0x1d4ec6fff MetalKit arm64e <d76fa64b123935ecb41eab68f571b074> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1d4ec7000 - 0x1d4f4dfff MPSImage arm64e <2d6c5b162a7033429adf7a8fdb84e48e> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1d4f4e000 - 0x1d4f74fff MPSMatrix arm64e <e7abf0bc853731fb8c825e40543edeef> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1d4f75000 - 0x1d4faffff MPSNDArray arm64e <6a4c5835442b3065ae2cd6b6ca45beab> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1d4fb0000 - 0x1d4ff8fff MPSRayIntersector arm64e <f9f9608a889e3190a38a3b7612526539> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1d4ff9000 - 0x1d4ff9fff MetalPerformanceShaders arm64e <c1a83facc24f32b7a6ce21d4ba83ee6a> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1d5396000 - 0x1d5396fff MobileCoreServices arm64e <c5ccbb715fc632649cb64a5178106626> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1d5f76000 - 0x1d5f7efff OpenGLES arm64e <10b9b296d0c73ac9b20e4be5d48a3e4e> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1d5f7f000 - 0x1d5f80fff libCVMSPluginSupport.dylib arm64e <4c021c28dd3a3a398e210461335b3b34> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1d5f81000 - 0x1d5f87fff libCoreFSCache.dylib arm64e <da6fb0f94c093d7ba647968cdd3d2eb3> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1d5f88000 - 0x1d5f8dfff libCoreVMClient.dylib arm64e <1836f8b71f403eb6957c424c3ef66639> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1d5f8e000 - 0x1d5f97fff libGFXShared.dylib arm64e <a929d5af04bd39e1a2ea52dca41b2aac> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1d6150000 - 0x1d6216fff PDFKit arm64e <a2abdf832c9439588193ea9fe4bd47a9> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1d6225000 - 0x1d6260fff QuickLookThumbnailing arm64e <21367c19bef53438847166f81d543f79> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1d6932000 - 0x1d6a76fff SoundAnalysis arm64e <79eb469d48e23ea29b89ef5e3654aa4c> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1d6a77000 - 0x1d6a88fff Speech arm64e <db5ff2ebb2323d1b8e7f2a27d6755e9c> /System/Library/Frameworks/Speech.framework/Speech
0x1d6ba5000 - 0x1d6ba5fff UIKit arm64e <62b6934197173978be1600e08c127b47> /System/Library/Frameworks/UIKit.framework/UIKit
0x1d6baf000 - 0x1d6c77fff VideoSubscriberAccount arm64e <ea987fb33bf6334c9a550ecce9a78c09> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1d6c78000 - 0x1d7862fff libfaceCore.dylib arm64e <beb92eeaf50b30f6b264ac424703ae7e> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x1d7dba000 - 0x1d7dbdfff AFKUser arm64e <4c5b875ab894324b9cc24f432a0ad4dd> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1d7e83000 - 0x1d8109fff ANECompiler arm64e <c5da2568cf313d72b714589628cc0f08> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1d810a000 - 0x1d811efff ANEServices arm64e <d08c39ce24fd34fb92d71a2514239c89> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1d8123000 - 0x1d81e1fff APFS arm64e <4b51fdcb47713c60a9bb0d84d84fc587> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1d81e2000 - 0x1d81e8fff ASEProcessing arm64e <477c867675ad3a78b5d43c12d14bf0b1> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1d8a09000 - 0x1d8a0efff AggregateDictionary arm64e <42de7a0ca2203854abcb147f9f93f586> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1d8ba3000 - 0x1d8c79fff AirPlaySync arm64e <85302ca9d90938e8ae2e9f1fbfbaf289> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1d8d82000 - 0x1d8d9efff AlgosScoreFramework arm64e <1c12ab2016883a19855f7de20c171c94> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1d8ec8000 - 0x1d9051fff AppC3D arm64e <190dc87e9aa2331798af5a28d768ee72> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x1d9052000 - 0x1d9074fff AppConduit arm64e <c5180e8680563f289c373b66dbc614c5> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1d917d000 - 0x1d9187fff AppStoreOverlays arm64e <80b7ff8104e237bfa5e2a5e99d8274b4> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x1da2ba000 - 0x1da45bfff AppleCVA arm64e <9360db7d55a932008897bc95e996018e> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1da4ac000 - 0x1da4bbfff AppleFSCompression arm64e <5445b3f4f3d33244a7bad770497b1d39> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1da4c9000 - 0x1da4edfff AppleIDSSOAuthentication arm64e <aef2024c71b8303d9f595e6ae89ae724> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1da4ee000 - 0x1da533fff AppleJPEG arm64e <67d4772de42d39c1862f259974abdc90> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1da5d2000 - 0x1da5e5fff AppleNeuralEngine arm64e <dfc9cc40732a349e806080681257ce87> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1da5ef000 - 0x1da613fff AppleSauce arm64e <077e80c228653d7a9b700b3a6244a0d6> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1da646000 - 0x1da664fff AssetCacheServices arm64e <a388a37c0c4037ea9f70196ef12ebdc5> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1da7cc000 - 0x1da829fff AuthKitUI arm64e <670a55258b203f59892a20f6a4e492d7> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1da82a000 - 0x1da87dfff AutoLoop arm64e <7f6b24153e9133b994ed05b240e567c2> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop
0x1da8b6000 - 0x1da8cffff BiomePubSub arm64e <b3bf76c13e60328281cec2a4c3d07d64> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x1dabd0000 - 0x1dabdffff BluetoothManager arm64e <3e45b39719b93ddd81418f6c74c29d53> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1dae83000 - 0x1dae8dfff CMCaptureCore arm64e <e74013fc4e54331b9a1be1fb7c634c41> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1dae8e000 - 0x1daea4fff CPAnalytics arm64e <3486e32ba4d53d64b4598111ec2ec346> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
0x1daea7000 - 0x1daeb6fff CPMS arm64e <510adbf01f3c34c0bf8df60d23c1f0b0> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1daeb7000 - 0x1daec6fff CTCarrierSpace arm64e <0bfb09554dd03e6baea1763bcb986154> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1db031000 - 0x1db05bfff CameraEditKit arm64e <b89401f964503bef8ef3466b91daf512> /System/Library/PrivateFrameworks/CameraEditKit.framework/CameraEditKit
0x1db1cb000 - 0x1db1d6fff CaptiveNetwork arm64e <2ee00109262a328c901a31515130e35c> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1db2f5000 - 0x1db341fff Catalyst arm64e <c594de90310d3869bc34767dc003d0a5> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1db366000 - 0x1db38afff CellularPlanManager arm64e <fdc9a3a4493934859f5905dde224a3bc> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1db3a2000 - 0x1db3aafff CertUI arm64e <7f400f7ae31b3255bacb91c53da10ddb> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1db3b3000 - 0x1db402fff ChunkingLibrary arm64e <fbd94f97e4153c77956261e4b30a12a9> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1db86b000 - 0x1db86ffff CommunicationsFilter arm64e <c3d43e4a6d1a3bb6b8f638174f5f23ee> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1db942000 - 0x1db945fff ConstantClasses arm64e <8f8d1129ded33b0db5bd7a68305095bb> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1db94f000 - 0x1db98dfff ContactsAutocomplete arm64e <fdaa7f38989336a7825704339e05ac7b> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1db993000 - 0x1dba0bfff ContactsUICore arm64e <a3e64106d2d831018aea59890d0771dc> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1dba48000 - 0x1dbaa1fff CoreAppleCVA arm64e <a6406fd5e8cd3ee8a6a48d9b59054fc9> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1dbaa2000 - 0x1dbb9dfff CoreBrightness arm64e <7429dad659be3488a1f164163560b867> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1dbc09000 - 0x1dbc16fff CoreDuetDaemonProtocol arm64e <624ea208abc737b3bfa11f4330272f4b> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1dbc19000 - 0x1dbc1bfff CoreDuetDebugLogging arm64e <45c441ce262a3f70808af88294437173> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1dbc2a000 - 0x1dbc3cfff CoreEmoji arm64e <f05a6726815b39c3b2c86cb2fda6ffb7> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1dc264000 - 0x1dc268fff CoreOptimization arm64e <9dad0d94b8d936aba9443f8965d581c5> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1dc269000 - 0x1dc325fff CorePDF arm64e <9c4352c55561371aa0d5b5ba140546a7> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1dc326000 - 0x1dc32efff CorePhoneNumbers arm64e <8870ad9e62ae3f80b1727a183914c7fd> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1dc32f000 - 0x1dc386fff CorePrediction arm64e <153c1cd36d3e35979f15ac05f5a8a91e> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1dccb3000 - 0x1dccbefff CoreRecents arm64e <4cee9425acec364fb64aaa43ab73364d> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1dccbf000 - 0x1dcd26fff CoreRecognition arm64e <4e0f6848a0ed32e1a7309fa797cf62fd> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1dcd27000 - 0x1dcd3ffff CoreSDB arm64e <321a616ad22e3c52a153d9dbab5bd044> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1dcd40000 - 0x1dcd6afff CoreSVG arm64e <c51397eb25e43a9ebb280141a297a2ee> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1dcf72000 - 0x1dcf76fff DAAPKit arm64e <eada5b67d0fa36d3af03064a01bc3bfc> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1dcf97000 - 0x1dcfa4fff DCIMServices arm64e <763a7c994a8a3a3e98f037840f04cdaf> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1dcfbb000 - 0x1dcff7fff DataDetectorsNaturalLanguage arm64e <c03b36e3cbbf36bcbe9717577c8a16d0> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1dd055000 - 0x1dd08afff DeviceIdentity arm64e <f90a40c60edb33d0881715c7b320be9b> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1dd1ba000 - 0x1dd1f1fff DistributedEvaluation arm64e <cda9d3e3ab4b31b9834547d4db7c4e2c> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x1dd311000 - 0x1dd34bfff DocumentManager arm64e <42180568809b3aa989585e006f41c4dd> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1dd34c000 - 0x1dd36afff DocumentManagerCore arm64e <6a9d4bbf6875330e9a36873be05ec09e> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1dd3f1000 - 0x1dd3f3fff DragUI arm64e <e78cc45649ae30a0b0c0ad622232e9a7> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1dd424000 - 0x1dd455fff EAP8021X arm64e <fb49182a93203b5abaca4aad0f3c6c64> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1dd485000 - 0x1dd49afff Engram arm64e <b915c21debae308d933e55e9ba5e2150> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1dd5d3000 - 0x1dd5d9fff ExtensionFoundation arm64e <8ee34203f5903a26b468906159c8c51a> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1dd769000 - 0x1dd771fff FSEvents arm64e <0d5c0f848cb4369892dee6536dd9e2b7> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1dd772000 - 0x1dd791fff FTAWD arm64e <ba306f1eae7737f3baf7823947ea7cff> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1dd792000 - 0x1dd795fff FTClientServices arm64e <8c505cffb93a3282ac9cd48c6785d497> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1dd796000 - 0x1ddba9fff FaceCore arm64e <efecda2af0b538fbb076db6095c32136> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1ddbb0000 - 0x1ddbb5fff FeatureFlagsSupport arm64e <add1170f38873cfd8499e57f268703dd> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1ddbb6000 - 0x1ddbc1fff FeedbackLogger arm64e <122208d23060334a8d8ecf819a22e50b> /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
0x1ddd57000 - 0x1dde99fff libFontParser.dylib arm64e <96cd45aa6d253f7b8b9e44de7c87e3c1> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1dde9a000 - 0x1ddea2fff libGSFont.dylib arm64e <ae807ffeae523dc6955ca1bce826065c> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1ddea3000 - 0x1ddee0fff libGSFontCache.dylib arm64e <9b28465f8a1d32dca2a6114cbd3cfb5f> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1ddf46000 - 0x1ddf53fff libhvf.dylib arm64e <01a10beba20b34caa33dff095d4acda4> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1ddf7b000 - 0x1ddf92fff Futhark arm64e <ff3d27dcab27314ca9d66fc748598fb5> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1dec06000 - 0x1dec24fff GenerationalStorage arm64e <bc8b93d7db123fc98afdf567a3123b8d> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1dec25000 - 0x1dec32fff GraphVisualizer arm64e <cdac8d1c40fe3902861db31d039b99d5> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1dec60000 - 0x1dec6cfff HID arm64e <e4fc6e3648b73e578446e119bc5de69a> /System/Library/PrivateFrameworks/HID.framework/HID
0x1df367000 - 0x1df3dbfff HomeSharing arm64e <86c166aa0fa1381d8e77a06fe752177e> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1df435000 - 0x1df43bfff IDSKVStore arm64e <87fd72cd6ef130798ae5fbb99f901ce7> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1df761000 - 0x1df76afff IOKitten arm64e <98749cb53f95340ba7e8950047b53591> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1df76b000 - 0x1df76dfff IOSurfaceAccelerator arm64e <39e9a2a42dc63683a06985854334d71f> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1df795000 - 0x1df79cfff IdleTimerServices arm64e <4bf38e2414f13efdaa5686bd0a1730fe> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1df7a5000 - 0x1df7abfff IncomingCallFilter arm64e <4b8c65e0825330d0950f4558cf173649> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1df7ac000 - 0x1df828fff InertiaCam arm64e <259545eebc783325b506ace1b0c12e2f> /System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam
0x1df86c000 - 0x1df879fff IntentsFoundation arm64e <e89732cd31583b74afbd12ecbbab7d97> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1df893000 - 0x1df895fff InternationalTextSearch arm64e <0dd92c9a5aad3ce6a355eb68bddd181c> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1df896000 - 0x1df8b2fff IntlPreferences arm64e <97781264677a303ca96cc3ad3c2ac93d> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1dfb17000 - 0x1dfb1dfff LinguisticData arm64e <da19be7cd01e38a6ace1c9e1caefd57d> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1dfb6d000 - 0x1dfba5fff LocalAuthenticationPrivateUI arm64e <23082baffa8f34c6aea54dd3b1b5b3e8> /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
0x1dfd73000 - 0x1dfd73fff Marco arm64e <163aa463ff9831c7a6a2828ab62438cc> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1e007f000 - 0x1e0342fff MediaLibraryCore arm64e <5eacee4014b73f7eab9ec570ff9ac1ec> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1e0343000 - 0x1e0395fff MediaPlatform arm64e <ceb59b0154c035ecb9c678eeda2d0f7e> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1e0786000 - 0x1e0858fff MetalTools arm64e <63a418e8ba7e3535a26076812fe7b4b6> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1e087a000 - 0x1e08d6fff MetricsKit arm64e <e458c0d47e3b394d90472b87a0afc18c> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1e08e7000 - 0x1e0920fff MobileBluetooth arm64e <0f93956eb2d237e98f41529173afcedb> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1e09a1000 - 0x1e09a7fff MobileSystemServices arm64e <998167bcb61a3a8e8f7f9396e00ee00f> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1e0d51000 - 0x1e0d57fff Netrb arm64e <8619e78892ce3de892782a39df7e9c3e> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1e0e2c000 - 0x1e0e4afff NeutrinoKit arm64e <4b591510c7863196ab359677269a6bf6> /System/Library/PrivateFrameworks/NeutrinoKit.framework/NeutrinoKit
0x1e0e86000 - 0x1e0e88fff OAuth arm64e <b41d0b7716983ca49ee8aad94bbe146b> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1e0ea6000 - 0x1e0ee5fff OTSVG arm64e <d0ee17002afd314e8a34fe255bc67b04> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1e1522000 - 0x1e1524fff ParsecSubscriptionServiceSupport arm64e <c517247bb333381db7dcc947005296b2> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1e1529000 - 0x1e1553fff Pasteboard arm64e <1067d9ab70863b4c89439fe0e2a9b311> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1e1583000 - 0x1e158dfff PersonaKit arm64e <dd7c14a8474c3bf8ab99490e87ece1c0> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1e158e000 - 0x1e159afff PersonaUI arm64e <ff3d99bf7bc53c56847e4cfa6c838a7e> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1e15d4000 - 0x1e15d4fff PhoneNumbers arm64e <283e61ef85573c22bf02cbbcfdb0c323> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1e15dd000 - 0x1e16f4fff PhotoImaging arm64e <60c339bc95ca3161b6d4f7fec210c938> /System/Library/PrivateFrameworks/PhotoImaging.framework/PhotoImaging
0x1e16f5000 - 0x1e1752fff PhotoLibrary arm64e <a2d07d41fcc53487a99af1f6e817b95a> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x1e179b000 - 0x1e17dafff PhotosImagingFoundation arm64e <76e881d6698e31aa9f397c6c613cefc0> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1e17db000 - 0x1e1825fff PhysicsKit arm64e <967a4ee77a653e91bbeccd5b7a774035> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1e18ce000 - 0x1e18d9fff PointerUIServices arm64e <5735e3ca52fa33ab97c7722d524f0406> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1e2d25000 - 0x1e2d32fff PrototypeToolsUI arm64e <18c7fedfa5c83fe5bd1c2bcb423bd888> /System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
0x1e2daf000 - 0x1e2dbafff RTCReporting arm64e <94c8ebfc7c9332588a0b81a2af088427> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1e30fa000 - 0x1e310afff RemoteTextInput arm64e <cf37feba3de13fccbc0b44574be9e169> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1e310b000 - 0x1e3172fff RemoteUI arm64e <56a883d0b0023196b9184976dc1f9c08> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x1e31aa000 - 0x1e31aefff RevealCore arm64e <26ab377f80a03cc9a2c394321236162e> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1e31c5000 - 0x1e354cfff SDAPI arm64e <05653a95db953080ab6cdab758e85dd7> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
0x1e4cc8000 - 0x1e4cd2fff SignpostCollection arm64e <880daadfb00133f08aa21e266b29a194> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1e4cd3000 - 0x1e4cd3fff SignpostMetrics arm64e <7c1d4469024532e08dac202b7728aa46> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1e4cd5000 - 0x1e4d12fff SignpostSupport arm64e <44b3997f78fe3a5085e756c64b233c7e> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1e5908000 - 0x1e5908fff SoftLinking arm64e <2d8bc330e3da3ff99a15b32f4b506fa4> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1e5d00000 - 0x1e5d3efff StreamingZip arm64e <9fa6ddfd7f1b37c9ae6875d7d9356af5> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1e5d46000 - 0x1e5d50fff SymptomDiagnosticReporter arm64e <9458c6a387043fdcb150a2c9387ad825> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1e5d81000 - 0x1e5d9dfff SymptomPresentationFeed arm64e <93e1d119454d3a14a3594cc9e7b384ff> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1e5dda000 - 0x1e5deafff TCC arm64e <97b79f6b24a23d27b256621eb989af3f> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1e66c4000 - 0x1e6777fff TextureIO arm64e <257b9d7032253e2b94f956fce4232e98> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1e69a7000 - 0x1e69aefff URLFormatting arm64e <1631bf6bee8e3c46b9dda29c2bfc4ebd> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1e6f8a000 - 0x1e6fb3fff UsageTracking arm64e <74018a6ee3ab391b8f85904d5357f831> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1e7ade000 - 0x1e7ba7fff VoiceTrigger arm64e <c4114ac5b06f303b9945ec11d38e3a6d> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger
0x1e7c76000 - 0x1e7c77fff WatchdogClient arm64e <76470639eea73fe48e68ca7f974aadef> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1e7fe1000 - 0x1e8722fff libwebrtc.dylib arm64e <408ecfc397f738b596ee0e40b457802a> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1e87a1000 - 0x1e87b6fff WebUI arm64e <efe9018c04163808bad9afe9052fde67> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1e8cd9000 - 0x1e8cdcfff XCTTargetBootstrap arm64e <ea2cbf73de53325b8c578e1071951a50> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1e8d6e000 - 0x1e8d8dfff caulk arm64e <dedb334482b03c669746a0b88be05e4c> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1eb365000 - 0x1eb36afff kperf arm64e <b3369e932fd8339780c3ddf9dfd34629> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1eb36b000 - 0x1eb373fff kperfdata arm64e <8db73a6050f93ec3a00a4a5576cdbaca> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1eb374000 - 0x1eb38afff libEDR arm64e <5c80cebe537a3d348ad79555f55c9381> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1eb3a3000 - 0x1eb3b3fff perfdata arm64e <3a321764ae643d22bd21242cef26fd09> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1eb3b4000 - 0x1eb3e3fff vCard arm64e <d766cd1eb4823bbcab7a2bb9ba38b21e> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1ebc47000 - 0x1ebc86fff libAWDSupport.dylib arm64e <5b2a915c679a36f691b8632cc96032ba> /usr/lib/libAWDSupport.dylib
0x1ebc87000 - 0x1ec028fff libAWDSupportFramework.dylib arm64e <89e073dfc268370d8a4ffbbad7e7e3e0> /usr/lib/libAWDSupportFramework.dylib
0x1ec1b7000 - 0x1ec1c6fff libAudioStatistics.dylib arm64e <dfd5dc568a383cd79baf3a99caf4cc0f> /usr/lib/libAudioStatistics.dylib
0x1ec36a000 - 0x1ec39cfff libCRFSuite.dylib arm64e <14326fda68c1379b991b324ed6c712fd> /usr/lib/libCRFSuite.dylib
0x1ec39d000 - 0x1ec39efff libCTGreenTeaLogger.dylib arm64e <03e020e7a71e3c0fb47376d9c50965a5> /usr/lib/libCTGreenTeaLogger.dylib
0x1ec39f000 - 0x1ec3a9fff libChineseTokenizer.dylib arm64e <fd07d3dfcaf0339199d0fc62f86e8d57> /usr/lib/libChineseTokenizer.dylib
0x1ec640000 - 0x1ec647fff libIOReport.dylib arm64e <12ba77a7c9563b3e8ba89bbfafd457fd> /usr/lib/libIOReport.dylib
0x1ec6c3000 - 0x1ec6cafff libMatch.1.dylib arm64e <21262094f3133777be13ee2fe3756d6a> /usr/lib/libMatch.1.dylib
0x1ec7e6000 - 0x1ec7e7fff libThaiTokenizer.dylib arm64e <9300b3efd3bc3228852b4687ec5a7362> /usr/lib/libThaiTokenizer.dylib
0x1eca53000 - 0x1eca55fff libapp_launch_measurement.dylib arm64e <54c205c4323a39fca3ab363ae14e7669> /usr/lib/libapp_launch_measurement.dylib
0x1eca56000 - 0x1eca6cfff libapple_nghttp2.dylib arm64e <ae2215e796a13def9036300e8fa34ee1> /usr/lib/libapple_nghttp2.dylib
0x1eca6d000 - 0x1ecafefff libate.dylib arm64e <cf5449ab47993bcca8e867db66932121> /usr/lib/libate.dylib
0x1ecb8f000 - 0x1ecb9ffff libbsm.0.dylib arm64e <3f5799e0ad99395da935c088abb12f8b> /usr/lib/libbsm.0.dylib
0x1ecba0000 - 0x1ecbacfff libbz2.1.0.dylib arm64e <2bb355466b0b31eca1db0ac6667ce929> /usr/lib/libbz2.1.0.dylib
0x1ecbad000 - 0x1ecbadfff libcharset.1.dylib arm64e <1b7a123026e53636a7c19cd035666f0c> /usr/lib/libcharset.1.dylib
0x1ecbae000 - 0x1ecbbffff libcmph.dylib arm64e <983eb5b489043206aeb644a17286076a> /usr/lib/libcmph.dylib
0x1ecbc0000 - 0x1ecbd7fff libcompression.dylib arm64e <38c52ab2584237f08c6eb022062acd0d> /usr/lib/libcompression.dylib
0x1ecbd8000 - 0x1ecbeefff libcoretls.dylib arm64e <93424c7b691b33698a294fabeb1f71bb> /usr/lib/libcoretls.dylib
0x1ecbef000 - 0x1ecbf0fff libcoretls_cfhelpers.dylib arm64e <68fa0c7f2cdc3bc5b67a54b4fcb31347> /usr/lib/libcoretls_cfhelpers.dylib
0x1ecc16000 - 0x1ecc1dfff libcupolicy.dylib arm64e <35e81052825038189be0ded942431cd3> /usr/lib/libcupolicy.dylib
0x1ecc1e000 - 0x1ecc25fff libdns_services.dylib arm64e <1dfca5741d793edb8cdedf7fcf069756> /usr/lib/libdns_services.dylib
0x1ecc26000 - 0x1ecc43fff libedit.3.dylib arm64e <1d4dcc9f47bd3feda831d6faacc372f5> /usr/lib/libedit.3.dylib
0x1ecc44000 - 0x1ecc48fff libenergytrace.dylib arm64e <2a8033ac772e35398a3730a6f679e924> /usr/lib/libenergytrace.dylib
0x1ecc49000 - 0x1ecc62fff libexpat.1.dylib arm64e <d8c88cc120a43ddf8adb4911b35f427c> /usr/lib/libexpat.1.dylib
0x1ecc8f000 - 0x1ecc93fff libgermantok.dylib arm64e <4903e4559fd93191929d4d15f37a7aee> /usr/lib/libgermantok.dylib
0x1ecc94000 - 0x1ecc99fff libheimdal-asn1.dylib arm64e <a01bf790b3233506924eabc818530b2f> /usr/lib/libheimdal-asn1.dylib
0x1ecc9a000 - 0x1ecd8bfff libiconv.2.dylib arm64e <8036e34928c530af9baf314fdce2766b> /usr/lib/libiconv.2.dylib
0x1ecdaa000 - 0x1ecdabfff liblangid.dylib arm64e <ed9c421652b130539e5a6c2db39e4468> /usr/lib/liblangid.dylib
0x1ecdac000 - 0x1ecdb7fff liblockdown.dylib arm64e <f411493e831f3afdbb4d13c1ee9e2c81> /usr/lib/liblockdown.dylib
0x1ecdb8000 - 0x1ecdd0fff liblzma.5.dylib arm64e <df8e9a6bf1dc337b92662a96d1754405> /usr/lib/liblzma.5.dylib
0x1ecdff000 - 0x1ece55fff libmecab.dylib arm64e <3dde07bef6d3340d8cbc821aeeb1cc8f> /usr/lib/libmecab.dylib
0x1ece56000 - 0x1ed090fff libmecabra.dylib arm64e <798cf82ca32c3c8e936b37372057334d> /usr/lib/libmecabra.dylib
0x1ed091000 - 0x1ed0a4fff libmis.dylib arm64e <fd688d28b122357890b76310ac59a2d6> /usr/lib/libmis.dylib
0x1ed0a5000 - 0x1ed0bbfff libnetworkextension.dylib arm64e <caa737d95b053a6e9b862b6ef8df5768> /usr/lib/libnetworkextension.dylib
0x1ed466000 - 0x1ed4a1fff libpcap.A.dylib arm64e <907c82354f473a019838c1025f3d28ae> /usr/lib/libpcap.A.dylib
0x1ed4a2000 - 0x1ed4affff libperfcheck.dylib arm64e <c65c7bcde0143e2eb11d33f6060c818b> /usr/lib/libperfcheck.dylib
0x1ed4b7000 - 0x1ed4c9fff libprequelite.dylib arm64e <9a81fbfd6fc131b09b528d70024e69f8> /usr/lib/libprequelite.dylib
0x1ed4ca000 - 0x1ed4dcfff libprotobuf-lite.dylib arm64e <b67dc62902ab3eff913cec3ae122dcef> /usr/lib/libprotobuf-lite.dylib
0x1ed4dd000 - 0x1ed53efff libprotobuf.dylib arm64e <d62fcdc315b53fe4852a9c77d199fe10> /usr/lib/libprotobuf.dylib
0x1ed53f000 - 0x1ed5dcfff libquic.dylib arm64e <57508f7b70553d7d8a5e035b36aa7f1f> /usr/lib/libquic.dylib
0x1ed5dd000 - 0x1ed5f5fff libresolv.9.dylib arm64e <dde22db6e9b53477a42cd91c175c8802> /usr/lib/libresolv.9.dylib
0x1ed5f6000 - 0x1ed5f8fff libsandbox.1.dylib arm64e <9fe12bdc2440379d908e17e6363b7705> /usr/lib/libsandbox.1.dylib
0x1ed640000 - 0x1ed643fff libutil.dylib arm64e <05a80aff4b8e3d21b3e3cf3570b822b3> /usr/lib/libutil.dylib
0x1ed644000 - 0x1ed730fff libxml2.2.dylib arm64e <d687e7bdb55d32d4aaa6accaf0f08f98> /usr/lib/libxml2.2.dylib
0x1ed735000 - 0x1ed75efff libxslt.1.dylib arm64e <bca0f5cf4b9b30b9b08ec8cc9baa829c> /usr/lib/libxslt.1.dylib
0x1ed75f000 - 0x1ed770fff libz.1.dylib arm64e <913f1bb4d19f31a9869fa780d7481027> /usr/lib/libz.1.dylib
0x1ed864000 - 0x1ed868fff libswiftCoreData.dylib arm64e <c26d30347e8e3fd196fafdb57195bf6b> /usr/lib/swift/libswiftCoreData.dylib
0x1ed869000 - 0x1ed869fff libswiftCoreFoundation.dylib arm64e <cbbebe44e2f03e118193f98289b9b395> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1ed86a000 - 0x1ed86afff libswiftCoreImage.dylib arm64e <374d34b0c465344aa2af27045b325c5a> /usr/lib/swift/libswiftCoreImage.dylib
0x1ed86b000 - 0x1ed86dfff libswiftCoreLocation.dylib arm64e <cc9bf7dc3ff9320c80ca2e8be644a0dd> /usr/lib/swift/libswiftCoreLocation.dylib
0x1ed8c6000 - 0x1ed8cffff libswiftDarwin.dylib arm64e <077709cc5a63301c862f4ae5d194520e> /usr/lib/swift/libswiftDarwin.dylib
0x1ed8ef000 - 0x1ed8f3fff libswiftMetal.dylib arm64e <cc064f3ab2663d60982a5bfa5decc577> /usr/lib/swift/libswiftMetal.dylib
0x1ed907000 - 0x1ed956fff libswiftNetwork.dylib arm64e <c8d4a888a843393080a81c339c99aa14> /usr/lib/swift/libswiftNetwork.dylib
0x1ed968000 - 0x1ed969fff libswiftQuartzCore.dylib arm64e <b6463a9b30fb348fa7ad964208e0feb8> /usr/lib/swift/libswiftQuartzCore.dylib
0x1ed9a7000 - 0x1ed9a9fff libswiftWebKit.dylib arm64e <4ca86f981edd348ba196987facecd3b0> /usr/lib/swift/libswiftWebKit.dylib
0x1ed9aa000 - 0x1ed9bcfff libswiftos.dylib arm64e <b6bf34a88f083132a229d0d1b7388f0e> /usr/lib/swift/libswiftos.dylib
0x1ed9d0000 - 0x1ed9d5fff libcache.dylib arm64e <8c6d6165fd3331ac8f7873af9099e7f3> /usr/lib/system/libcache.dylib
0x1ed9d6000 - 0x1ed9e3fff libcommonCrypto.dylib arm64e <7d3249c31118334bb92ea5c5f61ed6bb> /usr/lib/system/libcommonCrypto.dylib
0x1ed9e4000 - 0x1ed9e7fff libcompiler_rt.dylib arm64e <c1ca7500e55e3fd4852014fd05ecdfee> /usr/lib/system/libcompiler_rt.dylib
0x1ed9e8000 - 0x1ed9f0fff libcopyfile.dylib arm64e <7227b64cfd03301689ea92784a6f8835> /usr/lib/system/libcopyfile.dylib
0x1edad6000 - 0x1edad6fff liblaunch.dylib arm64e <bc02b6cc6f65332d964f669a23c50199> /usr/lib/system/liblaunch.dylib
0x1edad7000 - 0x1edadcfff libmacho.dylib arm64e <c50ed14895b030acbadc6caf1a399dc3> /usr/lib/system/libmacho.dylib
0x1edadd000 - 0x1edadffff libremovefile.dylib arm64e <92a5542338d53c8f9222132940abb36a> /usr/lib/system/libremovefile.dylib
0x1edae0000 - 0x1edae1fff libsystem_blocks.dylib arm64e <af2c7fda17b436139bac35a64a801967> /usr/lib/system/libsystem_blocks.dylib
0x1edae2000 - 0x1edae4fff libsystem_collections.dylib arm64e <5477100d4fe836bb985329f17506eac0> /usr/lib/system/libsystem_collections.dylib
0x1edae5000 - 0x1edae9fff libsystem_configuration.dylib arm64e <612ef67c1bc33f6880c93226eae86bf3> /usr/lib/system/libsystem_configuration.dylib
0x1edaea000 - 0x1edafcfff libsystem_containermanager.dylib arm64e <e60ba1c8e8e53c52b73dcc4fec1fb3ff> /usr/lib/system/libsystem_containermanager.dylib
0x1edafd000 - 0x1edafefff libsystem_coreservices.dylib arm64e <91a23b901d893e09ae7919db3dbf905c> /usr/lib/system/libsystem_coreservices.dylib
0x1edaff000 - 0x1edb08fff libsystem_darwin.dylib arm64e <33c070a2acdc317eacc897d32bfc8b12> /usr/lib/system/libsystem_darwin.dylib
0x1edb09000 - 0x1edb11fff libsystem_dnssd.dylib arm64e <ece151b095b93705ad3b89e5484cd0c5> /usr/lib/system/libsystem_dnssd.dylib
0x1edb12000 - 0x1edb14fff libsystem_featureflags.dylib arm64e <75dc696472933ac3ae03dfbce443e66f> /usr/lib/system/libsystem_featureflags.dylib
0x1edb15000 - 0x1edb42fff libsystem_m.dylib arm64e <6ea765d836213dec9765713265931fcd> /usr/lib/system/libsystem_m.dylib
0x1edb43000 - 0x1edb49fff libsystem_platform.dylib arm64e <f35753b991203131858fb0a60e2f4238> /usr/lib/system/libsystem_platform.dylib
0x1edb4a000 - 0x1edb4afff libsystem_product_info_filter.dylib arm64e <6d31b687806130e492c612a8b04663ae> /usr/lib/system/libsystem_product_info_filter.dylib
0x1edb4b000 - 0x1edb56fff libsystem_pthread.dylib arm64e <ee321b1157413b4aa3dca7d210f15a1d> /usr/lib/system/libsystem_pthread.dylib
0x1edb57000 - 0x1edb5afff libsystem_sandbox.dylib arm64e <d4ad0fc690873db7b16f057ac96014da> /usr/lib/system/libsystem_sandbox.dylib
0x1edb5b000 - 0x1edb65fff libunwind.dylib arm64e <7b646b04009c394ab1b9c9e9c1d26221> /usr/lib/system/libunwind.dylib
0x1edb66000 - 0x1edb9cfff libxpc.dylib arm64e <51b3f90e3b21383e9dbdae48625c9e9d> /usr/lib/system/libxpc.dylib
0x1ef0f5000 - 0x1ef201fff AVFAudio arm64e <d404f5fbdcd338a8892327ecc6b36a78> /System/Library/Frameworks/AVFAudio.framework/AVFAudio
0x1ef674000 - 0x1ef67afff AuthenticationServicesCore arm64e <99f4c66e46c03a519a63791e88ffc49e> /System/Library/PrivateFrameworks/AuthenticationServicesCore.framework/AuthenticationServicesCore
0x1ef67b000 - 0x1ef688fff CMImaging arm64e <77b54575b46c3705a95e4765422dcb75> /System/Library/PrivateFrameworks/CMImaging.framework/CMImaging
0x1ef689000 - 0x1ef69ffff CinematicFraming arm64e <ec72da489f4d39a78646d81a31c49cac> /System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming
0x1ef755000 - 0x1ef76dfff CoreSpeechFoundation arm64e <81bd2bf5cd523f24b63dfbbe76d1dcda> /System/Library/PrivateFrameworks/CoreSpeechFoundation.framework/CoreSpeechFoundation
0x1ef91a000 - 0x1ef92afff MobileSafari arm64e <70381e9a0bab372b8029497f0495b5f1> /System/Library/PrivateFrameworks/MobileSafari.framework/MobileSafari
0x1ef9a6000 - 0x1f023cfff PegasusAPI arm64e <608f7182e4a63807a7581c8f72412e73> /System/Library/PrivateFrameworks/PegasusAPI.framework/PegasusAPI
0x1f038a000 - 0x1f038efff SiriLiminal arm64e <819e382f1c9f302ea1937c516664df39> /System/Library/PrivateFrameworks/SiriLiminal.framework/SiriLiminal
0x1f0517000 - 0x1f0529fff SpotlightLinguistics arm64e <c514c4d80fca3b34adaff321f94db77d> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics
EOF
{
"name": "MYAPP",
"version": "1.3.0",
"description": "MYAPP Mobile App",
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"eject": "expo eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creativetimofficial/argon-pro-react-native.git"
},
"dependencies": {
"@expo/vector-icons": "^12.0.3",
"@iterable/react-native-sdk": "^1.0.20",
"@ptomasroos/react-native-multi-slider": "^2.2.2",
"@react-native-community/checkbox": "^0.4.1",
"@react-native-community/cli-platform-ios": "^4.13.0",
"@react-native-community/datetimepicker": "3.0.0",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/netinfo": "^5.9.10",
"@react-navigation/stack": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"air-port-codes-node": "^1.3.7",
"axios": "^0.19.2",
"email-validator": "^2.0.4",
"eslint-plugin-react": "^7.20.0",
"expo": "^39.0.0",
"expo-analytics-segment": "~9.0.0",
"expo-apple-authentication": "~2.2.1",
"expo-asset": "~8.2.0",
"expo-constants": "~10.0.1",
"expo-device": "~2.3.0",
"expo-facebook": "~9.0.0",
"expo-font": "~8.3.0",
"expo-google-app-auth": "^8.1.0",
"expo-image-picker": "~9.1.0",
"expo-linear-gradient": "~8.3.0",
"expo-localization": "~9.0.0",
"expo-location": "~9.0.0",
"expo-network": "~2.3.0",
"expo-notifications": "~0.7.2",
"expo-permissions": "~9.3.0",
"expo-splash-screen": "~0.6.2",
"expo-status-bar": "~1.0.2",
"expo-task-manager": "~8.5.0",
"expo-web-browser": "~8.5.0",
"galio-framework": "^0.6.3",
"hermes-engine": "0.5.2-rc1",
"humps": "^2.0.1",
"lodash": "^4.17.20",
"lottie-ios": "3.1.8",
"lottie-react-native": "^4.0.2",
"luxon": "^1.26.0",
"metro-react-native-babel-preset": "^0.64.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"native-base": "2.13.8",
"object-to-formdata": "^4.1.0",
"payment-icons": "^1.2.1",
"prop-types": "^15.7.2",
"qs": "^6.9.3",
"react": "16.13.1",
"react-credit-card-input": "^1.1.5",
"react-currency-format": "^1.0.0",
"react-dom": "16.13.1",
"react-native": "~0.63.3",
"react-native-24h-timepicker": "^1.1.0",
"react-native-animated-loader": "^0.0.9",
"react-native-appsflyer": "^6.1.41",
"react-native-credit-card": "^0.1.9",
"react-native-credit-card-input": "^0.4.1",
"react-native-divider": "^1.0.3",
"react-native-draggable-dynamic-flatlist": "^1.0.4",
"react-native-elements": "^2.0.2",
"react-native-expandable-listview": "^1.3.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-input-credit-card": "^0.5.5",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-map-link": "^2.7.20",
"react-native-maps": "0.27.1",
"react-native-maps-directions": "^1.8.0",
"react-native-masked-text": "^1.13.0",
"react-native-modal": "^11.5.6",
"react-native-modal-datetime-picker": "^9.2.0",
"react-native-modal-dropdown": "^0.6.2",
"react-native-modern-datepicker": "^1.0.0-beta.91",
"react-native-reanimated": "^2.0.0",
"react-native-safe-area-context": "3.1.4",
"react-native-screens": "~2.10.1",
"react-native-select-input-ios": "^2.0.4",
"react-native-step-indicator": "^1.0.3",
"react-native-svg": "12.1.0",
"react-native-swipe-gestures": "^1.0.5",
"react-native-swipe-up-down": "^1.0.7",
"react-native-swipeable-item": "^1.5.4",
"react-native-swipeout": "^2.3.6",
"react-native-switch-selector": "^2.0.3",
"react-native-toasty": "^1.0.2",
"react-native-unimodules": "^0.12.0",
"react-native-vector-icons": "^8.0.0",
"react-native-web": "~0.13.12",
"react-navigation": "^3.13.0",
"react-navigation-stack": "^2.2.2",
"react-navigation-transitions": "^1.0.12",
"react-payment-icons": "^1.2.6",
"rest-hooks": "^4.5.9",
"rn-sliding-up-panel": "^2.4.5",
"semver": "^7.3.5",
"strftime": "^0.10.0",
"stripe-client": "^1.1.5",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "~25.2.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"eslint": "^5.14.1",
"jest": "~25.2.6",
"react-test-renderer": "~16.13.1"
},
"keywords": [
"MYAPP"
],
"author": "MYAPP",
"bugs": {
"url": "MYSITE"
},
"homepage": "MYSITE"
}
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
platform :ios, '11.0'
target 'MyApp' do
use_unimodules!
config = use_native_modules!
use_react_native!(:path => config["reactNativePath"])
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'Iterable-iOS-SDK'
# pod 'FBSDKShareKit'
# pod 'FBSDKPlacesKit'
use_flipper!({ 'Flipper-Folly' => '2.5.3', 'Flipper' => '0.87.0', 'Flipper-RSocket' => '1.3.1' })
post_install do |installer|
flipper_post_install(installer)
end
end
# Post Install processing for Flipper
def flipper_post_install(installer)
installer.pods_project.targets.each do |target|
if target.name == 'YogaKit'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.1'
end
end
end
file_name = Dir.glob("*.xcodeproj")[0]
app_project = Xcodeproj::Project.open(file_name)
app_project.native_targets.each do |target|
target.build_configurations.each do |config|
cflags = config.build_settings['OTHER_CFLAGS'] || '$(inherited) '
unless cflags.include? '-DFB_SONARKIT_ENABLED=1'
puts 'Adding -DFB_SONARKIT_ENABLED=1 in OTHER_CFLAGS...'
cflags << '-DFB_SONARKIT_ENABLED=1'
end
config.build_settings['OTHER_CFLAGS'] = cflags
end
app_project.save
end
installer.pods_project.save
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment