firebase / firebase-ios-sdk

Firebase SDK for Apple App Development
https://firebase.google.com
Apache License 2.0
5.53k stars 1.44k forks source link

Crashes in [PKService run] when Crashlytics is included in widget #7325

Open carloshwa opened 3 years ago

carloshwa commented 3 years ago

[REQUIRED] Step 1: Describe your environment

[REQUIRED] Step 2: Describe the problem

Steps to reproduce:

Although I am not able to reproduce it myself, my production app reports a lot of crashes coming from my iOS 14 widget's app extension reported through Xcode. I have tried deploying builds with Crashlytics and without, and the crashes only occur when Crashlytics is included.

I have included Crashlytics in my today app extension for years without any problems.

Here is one of the many crash logs exported from Xcode: 2021-01-1813-21-54.2029-0500-4bc8e779fd8d46c951f971b3a30bcba7e7065366.txt

Relevant Code:

I am adding the following Firebase pods to my widget app extension:

pod 'Firebase/Core'
pod 'Firebase/Crashlytics'

and initialize Firebase in my extension like this:

@main
struct WeatherWidget: Widget {
    init() {
        FirebaseApp.configure();
    }
}

Can you tell from the log what is causing the crash? Am I initializing Firebase for widgets correctly? Are there known problems with using Crashlytics with iOS 14 widgets?

I have also tried adding Crashlytics to my watch app extension, and I do not get any crashes for it there, but I also do not get any crashes reported to Crashlytics from my watch app (this may be a separate issue).

morganchen12 commented 3 years ago

Here's the crashing stack trace inline, for my own convenience.

The crash reason here, 0xdead10cc, is a result of the operating system terminating your extension for holding on to a file lock or SQLite database lock during suspension (see Apple's doc here). In the stack trace, you can see pretty clearly that Analytics (APMSqliteStore) is performing sqlite ops as the widget is being backgrounded/slept by the OS, resulting in termination.

This is not a crash that occurs regularly in normal apps, which leads me to believe our code in Analytics is maybe missing a lifecycle event handler specific to widgets. The correct thing to do is probably to request more execution time upon sleeping/backgrounding so the sqlite ops can complete without being terminated by the OS.

@allenktv, do you have time to take a look at this crash?

Incident Identifier: A5CF812E-6737-43CC-A506-FC269C37084D
Hardware Model:      iPhone11,6
Process:             widget [6369]
Path:                /private/var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/PlugIns/widget.appex/widget
Identifier:          pandamonium.noaaweather.widget
Version:             01140200 (1.14.2)
AppVariant:          1:iPhone11,6:13
Code Type:           ARM-64 (Native)
Role:                unknown
Parent Process:      launchd [1]
Coalition:           pandamonium.noaaweather.widget [1437]

Date/Time:           2021-01-18 13:21:54.2029 -0500
Launch Time:         2021-01-18 13:21:53.7966 -0500
OS Version:          iPhone OS 14.3 (18C66)
Release Type:        User
Baseband Version:    3.02.02
Report Version:      104

Exception Type:  EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: Namespace RUNNINGBOARD, Code 0xdead10cc
Triggered by Thread:  0

Thread 0 name:
Thread 0 Crashed:
0   libsystem_kernel.dylib          0x00000001d264c2d0 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001d264b660 mach_msg + 76 (mach_msg.c:103)
2   CoreFoundation                  0x00000001a4874c30 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641)
3   CoreFoundation                  0x00000001a486ec14 __CFRunLoopRun + 1216 (CFRunLoop.c:2974)
4   CoreFoundation                  0x00000001a486e21c CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5   Foundation                      0x00000001a5b1ddf0 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 232 (NSRunLoop.m:374)
6   Foundation                      0x00000001a5b516bc -[NSRunLoop(NSRunLoop) run] + 92 (NSRunLoop.m:399)
7   libxpc.dylib                    0x00000001f00fac2c _xpc_objc_main + 688 (main.m:265)
8   libxpc.dylib                    0x00000001f00fcf48 xpc_main + 180 (init.c:1206)
9   Foundation                      0x00000001a5b53a5c -[NSXPCListener resume] + 340 (NSXPCListener.m:448)
10  PlugInKit                       0x00000001d4e70960 -[PKService run] + 424 (PKService.m:186)
11  PlugInKit                       0x00000001d4e70588 +[PKService main] + 576 (PKService.m:115)
12  PlugInKit                       0x00000001d4e70d78 +[PKService _defaultRun:arguments:] + 24 (PKService.m:233)
13  ExtensionKit                    0x00000001a8e7dc5c EXExtensionMain + 84 (EXExtensionMain.m:23)
14  Foundation                      0x00000001a5ca2c70 NSExtensionMain + 200 (NSExtensionMain.m:13)
15  libdyld.dylib                   0x00000001a452e6b0 start + 4

Thread 1:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 2 name:
Thread 2:
0   libsystem_kernel.dylib          0x00000001d2671c2c fsync + 8
1   libsqlite3.dylib                0x00000001be9f5a44 unixSync + 212 (sqlite3.c:39866)
2   libsqlite3.dylib                0x00000001be9ff5d0 syncJournal + 604 (sqlite3.c:23740)
3   libsqlite3.dylib                0x00000001be9f54a4 sqlite3PagerCommitPhaseOne + 1216 (sqlite3.c:65287)
4   libsqlite3.dylib                0x00000001be9e0270 sqlite3BtreeCommitPhaseOne + 164 (sqlite3.c:75129)
5   libsqlite3.dylib                0x00000001be9aaf44 sqlite3VdbeHalt + 2820 (sqlite3.c:87131)
6   libsqlite3.dylib                0x00000001be9d949c sqlite3VdbeExec + 58648 (sqlite3.c:93555)
7   libsqlite3.dylib                0x00000001be9c9858 sqlite3_step + 304 (sqlite3.c:90602)
8   widget                          0x0000000104321078 -[APMSqliteStore executeSQLStatement:error:] + 104
9   widget                          0x0000000104320fe8 -[APMSqliteStore executeSQL:error:] + 164
10  widget                          0x000000010431e37c 0x1042a4000 + 500604
11  widget                          0x000000010431d5e8 -[APMSqliteStore ensureTableWithName:elementaryColumnInfo:addOnColumnInfo:error:] + 1640
12  widget                          0x000000010431df04 0x1042a4000 + 499460
13  widget                          0x00000001042d21f4 -[APMEDatabase ensureAllTables] + 700
14  widget                          0x00000001042d1d48 -[APMEDatabase initializeDatabaseResourcesWithContext:databasePath:] + 152
15  widget                          0x00000001042d1c24 -[APMEDatabase initWithPath:] + 148
16  widget                          0x00000001042daa58 0x1042a4000 + 223832
17  widget                          0x00000001042daa00 __35-[APMETaskManager startTaskManager]_block_invoke + 36
18  widget                          0x00000001042dbf78 0x1042a4000 + 229240
19  libdispatch.dylib               0x00000001a44ec24c _dispatch_call_block_and_release + 32 (init.c:1454)
20  libdispatch.dylib               0x00000001a44eddb0 _dispatch_client_callout + 20 (object.m:559)
21  libdispatch.dylib               0x00000001a44f510c _dispatch_lane_serial_drain + 580 (inline_internal.h:2548)
22  libdispatch.dylib               0x00000001a44f5c5c _dispatch_lane_invoke + 408 (queue.c:3862)
23  libdispatch.dylib               0x00000001a44ffd78 _dispatch_workloop_worker_thread + 708 (queue.c:6601)
24  libsystem_pthread.dylib         0x00000001f00cb804 _pthread_wqthread + 276 (pthread.c:2207)
25  libsystem_pthread.dylib         0x00000001f00d275c start_wqthread + 8

Thread 3:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 4:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 5:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 6 name:
Thread 6:
0   libsystem_kernel.dylib          0x00000001d264c2d0 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001d264b660 mach_msg + 76 (mach_msg.c:103)
2   FirebaseCrashlytics             0x00000001045bba2c FIRCLSMachExceptionReadMessage + 56 (FIRCLSMachException.c:194)
3   FirebaseCrashlytics             0x00000001045bba2c FIRCLSMachExceptionServer + 104 (FIRCLSMachException.c:170)
4   libsystem_pthread.dylib         0x00000001f00c9b40 _pthread_start + 320 (pthread.c:881)
5   libsystem_pthread.dylib         0x00000001f00d2768 thread_start + 8

Thread 7:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 8:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 9:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 10:
0   libsystem_pthread.dylib         0x00000001f00d2754 _pthread_atomic_xchg_uint32_relaxed + 8 (pthread_dependency.c:114)

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000010004005   x1: 0x0000000007000806   x2: 0x0000000000000000   x3: 0x0000000000000c00
    x4: 0x0000000000002d03   x5: 0x00000000ffffffff   x6: 0x0000000000000000   x7: 0x00000002803e4000
    x8: 0x00000000fffffbbf   x9: 0x0000000007000906  x10: 0xd5774a3db2430098  x11: 0x000000b2f336b4ba
   x12: 0x00000000016e3600  x13: 0x000000000000729b  x14: 0x0000000000000200  x15: 0x0000020000000000
   x16: 0xffffffffffffffe1  x17: 0x0000000000000001  x18: 0x0000000000000000  x19: 0x0000000000000000
   x20: 0x00000000ffffffff  x21: 0x0000000000002d03  x22: 0x0000000000000c00  x23: 0x000000016bb5a960
   x24: 0x0000000007000806  x25: 0x0000000000000000  x26: 0x0000000007000806  x27: 0x0000000000002d03
   x28: 0x000000016bb5a8e8   fp: 0x000000016bb5a7f0   lr: 0x00000001d264b660
    sp: 0x000000016bb5a7a0   pc: 0x00000001d264c2d0 cpsr: 0x60000000
   esr: 0x56000080  Address size fault

Binary Images:
0x1042a4000 - 0x104393fff widget arm64  <a5b4ffd1580338a4afc050bc918b1470> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/PlugIns/widget.appex/widget
0x104414000 - 0x104427fff DateTools arm64  <04744d1e7b303e60b91e3ce1be338549> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/DateTools.framework/DateTools
0x104434000 - 0x104443fff FBLPromises arm64  <9c245e4f409134b28a9d2af95a37a06d> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/FBLPromises.framework/FBLPromises
0x104450000 - 0x10445ffff FirebaseCore arm64  <47d22d761afb343dae77c20c1bd7906d> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/FirebaseCore.framework/FirebaseCore
0x104478000 - 0x10447ffff FirebaseCoreDiagnostics arm64  <d1fffabd8e283db0b6a1a5fef10458bd> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics
0x10448c000 - 0x104493fff nanopb arm64  <358d07656678386780608d9936602d96> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/nanopb.framework/nanopb
0x1044b4000 - 0x104523fff dyld arm64e  <aef26ac9cbc73c16900778abe893949b> /usr/lib/dyld
0x1045a4000 - 0x1045dffff FirebaseCrashlytics arm64  <31929f7442113f7594aa2355a0d72006> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/FirebaseCrashlytics.framework/FirebaseCrashlytics
0x104604000 - 0x10461bfff FirebaseInstallations arm64  <3056233b4d4c31a4815b2ed353f8101b> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/FirebaseInstallations.framework/FirebaseInstallations
0x104634000 - 0x104653fff GoogleDataTransport arm64  <84f289ab34ab31c2b6a3babb150020e7> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/GoogleDataTransport.framework/GoogleDataTransport
0x10466c000 - 0x104687fff GoogleUtilities arm64  <b7e7d4f169d1305cae342d94da9a7ba4> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x10469c000 - 0x1046e3fff SDWebImage arm64  <158f1c18edc138f1971e6d9484122d1f> /var/containers/Bundle/Application/6534C7C5-0CE8-41BF-96B6-7D77FD3AED9B/NOAA Weather.app/Frameworks/SDWebImage.framework/SDWebImage
0x1065d8000 - 0x1065e3fff libobjc-trampolines.dylib arm64e  <971156a5835a310dbfc7152c55760859> /usr/lib/libobjc-trampolines.dylib
0x1a44ea000 - 0x1a452cfff libdispatch.dylib arm64e  <0f3905e067203d089ae0a43a8da244c0> /usr/lib/system/libdispatch.dylib
0x1a452d000 - 0x1a4567fff libdyld.dylib arm64e  <785bee7fac2c388d865c36279d1b3dd1> /usr/lib/system/libdyld.dylib
0x1a4568000 - 0x1a47d3fff libicucore.A.dylib arm64e  <5df9c67888463ca8bca58ee1fcf52d83> /usr/lib/libicucore.A.dylib
0x1a47d4000 - 0x1a4b8dfff CoreFoundation arm64e  <935533f235ee314ea760e74521f68435> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1a4b8e000 - 0x1a4d39fff CoreServices arm64e  <93715af6c73f3f3c9390faa5b3277b3c> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1a4d83000 - 0x1a4dfffff SystemConfiguration arm64e  <097a53f5b92e3e8c8d94aad83a3ac34d> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1a4e00000 - 0x1a4ef7fff CoreTelephony arm64e  <b924fbab9d893f54bceac699fb644d41> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1a4ef8000 - 0x1a538ffff CFNetwork arm64e  <732d963945783405b2f946752c88cec2> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1a5390000 - 0x1a5a9dfff libnetwork.dylib arm64e  <ba939c74db973081977111bed18da835> /usr/lib/libnetwork.dylib
0x1a5a9e000 - 0x1a5b14fff Accounts arm64e  <d4d5a3975f783e409956cb82c3cbdb2c> /System/Library/Frameworks/Accounts.framework/Accounts
0x1a5b15000 - 0x1a5dd0fff Foundation arm64e  <50b3154e8c733e17a162c30da82424cd> /System/Library/Frameworks/Foundation.framework/Foundation
0x1a5dd1000 - 0x1a6131fff ImageIO arm64e  <d45f51194ec4332b9e74de6115393021> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1a614b000 - 0x1a66e3fff CoreGraphics arm64e  <ed1c5c0f087b380cb01e3e362f57bdce> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1a66e4000 - 0x1a7b91fff UIKitCore arm64e  <233110718ad73e8f836abe5dc8a8b0df> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1a7b92000 - 0x1a7bb4fff libAccessibility.dylib arm64e  <83c094c40ac73bf9bb8beb0c1925f2b7> /usr/lib/libAccessibility.dylib
0x1a7bb5000 - 0x1a7e3bfff QuartzCore arm64e  <f911f0c2d892355ab6ba495376dbf2c7> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1a7e3c000 - 0x1a7ea7fff BackBoardServices arm64e  <48ebf0f7ebc8340fbd4778a7c13572ac> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1a7ea8000 - 0x1a7f35fff TextInput arm64e  <eb97705be6a43a7d8d2bbd348b110c15> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1a7f36000 - 0x1a7f9efff libusrtcp.dylib arm64e  <1a7cd5869a873ceea69f07dbf64e7882> /usr/lib/libusrtcp.dylib
0x1a7f9f000 - 0x1a836afff AppleMediaServices arm64e  <4a4731de09393969a10b331140440686> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1a836b000 - 0x1a84e6fff libswiftFoundation.dylib arm64e  <9a80db9297bc3343b51d9b0daf91c535> /usr/lib/swift/libswiftFoundation.dylib
0x1a84e7000 - 0x1a8916fff libswiftCore.dylib arm64e  <11eabdf1b76a31d59fbf9b7ce6e2df00> /usr/lib/swift/libswiftCore.dylib
0x1a8917000 - 0x1a892ffff UIKitServices arm64e  <410174cfc98f3139b3e25fede3eceeb7> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1a8930000 - 0x1a8a89fff Preferences arm64e  <5462c09751893e47863e6c7a92ae81cd> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1a8cb2000 - 0x1a8e69fff CoreText arm64e  <a5ca71f8721e36c285423f0032ce6cf0> /System/Library/Frameworks/CoreText.framework/CoreText
0x1a8e6a000 - 0x1a8e84fff ExtensionKit arm64e  <96995f08124b35a7985508e1a5981618> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x1a8e85000 - 0x1a8e99fff ChronoServices arm64e  <03bff0957ea13b4baf4438032f5da1ee> /System/Library/PrivateFrameworks/ChronoServices.framework/ChronoServices
0x1a8e9a000 - 0x1a8f1efff BaseBoard arm64e  <e0a95ad9b7ab3b87843db59b03f206c0> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1a8f1f000 - 0x1a914afff CoreDuet arm64e  <986f6cb8d3343ca6951d6ff084266932> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1a914b000 - 0x1a92adfff Contacts arm64e  <7b1a6d1c1dfe3a4ea20dcad39da74440> /System/Library/Frameworks/Contacts.framework/Contacts
0x1a92ae000 - 0x1aa7fcfff GeoServices arm64e  <441d6dbb3dec324697c96cf271f9e0ef> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1aa7fd000 - 0x1aa892fff CoreLocation arm64e  <4a9b0097310a30c9b7ab443521bc2c59> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1aa893000 - 0x1aaa41fff CloudKit arm64e  <e2cdb510e68f31fea1180922c46ac26e> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1aaa42000 - 0x1aadc0fff CoreData arm64e  <d1240876c2983e82824ff4d0db8f474d> /System/Library/Frameworks/CoreData.framework/CoreData
0x1aadc1000 - 0x1aae5bfff WidgetKit arm64e  <3e89e2340ccf3083b2e869697342210b> /System/Library/Frameworks/WidgetKit.framework/WidgetKit
0x1aae5c000 - 0x1abab1fff SwiftUI arm64e  <b093a7da71113e37ab752463cef8132b> /System/Library/Frameworks/SwiftUI.framework/SwiftUI
0x1abab2000 - 0x1ababcfff libswiftCoreGraphics.dylib arm64e  <7cef61bf5cb4379ca3f23a95e4eaae7d> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1ababd000 - 0x1abafcfff AppSupport arm64e  <3ce778276c08371bad32daed8735180e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1abafd000 - 0x1abc26fff ManagedConfiguration arm64e  <50c83accad1f3555b1014831ebe08612> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1abc27000 - 0x1abc98fff IMFoundation arm64e  <849d9883997537d4ba3a5adb89bab189> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1abc99000 - 0x1abda9fff IDS arm64e  <812f8408b4bd3b51a86a4bae597776f7> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1abdaa000 - 0x1abef7fff Security arm64e  <e1383fc7191438b197d893486d17a758> /System/Library/Frameworks/Security.framework/Security
0x1ac31b000 - 0x1ac333fff AudioSession arm64e  <d4cf1605ad4b3818b3ce4aa9cd34af3c> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x1ac334000 - 0x1ac4d4fff AVFCore arm64e  <75d6e04835f0367fa36a2c59eea1bc41> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x1ac4d5000 - 0x1aca81fff Intents arm64e  <312278eb986932ca9ff0bdc2386c0dc0> /System/Library/Frameworks/Intents.framework/Intents
0x1acad1000 - 0x1acdeafff CoreImage arm64e  <857d7a82b0b83811b431de0c5896abd8> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1acdeb000 - 0x1acea8fff ColorSync arm64e  <11e5f6dc36b63488ad2876f372b25184> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1acea9000 - 0x1acee4fff CoreVideo arm64e  <83d2844c69e93131a96b5e4698534231> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1acee5000 - 0x1ad6d0fff MediaToolbox arm64e  <5ea248d72a1b3f589d3d09637db8da07> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1ad6d1000 - 0x1ad7d1fff CoreMedia arm64e  <3a08e638c6703b818e08e0919ffdee7e> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1ad7d2000 - 0x1ada3dfff AudioToolbox arm64e  <4f068bb26967312d86da3effa611aca4> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1ada3e000 - 0x1ada8efff CoreHaptics arm64e  <5a1256f1fa9934a5a96cf3ceca7dd1b4> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1adaf0000 - 0x1adbf9fff UIFoundation arm64e  <2f5d26e3788337428aa2a523744a874b> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1adbfa000 - 0x1adc1ffff libsystem_info.dylib arm64e  <076d8dedd18b3e41b7b6b644c60cfa44> /usr/lib/system/libsystem_info.dylib
0x1adc20000 - 0x1adc9efff libsystem_c.dylib arm64e  <ca117552e7213c8696a2213afd7b7d57> /usr/lib/system/libsystem_c.dylib
0x1adc9f000 - 0x1adceafff RunningBoardServices arm64e  <eb122edc8d94307fa0c42abd4a8123b2> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1adceb000 - 0x1aee1cfff JavaScriptCore arm64e  <6a501f300cf53e66b1487bebbf861fa4> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1af3ec000 - 0x1af47dfff ContactsFoundation arm64e  <c311cd2ab12c3d58b88e57428f0a104b> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1af6cd000 - 0x1af6f0fff ProactiveEventTracker arm64e  <19bc1f90d4c43f68b2dc6990811e595e> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1af6f1000 - 0x1af73bfff Lexicon arm64e  <63a53ec3ca143f6f98ae938d380a25fa> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1af7aa000 - 0x1af7fafff CoreDuetContext arm64e  <543bac71965f3b5db555ad18863fdbfb> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1af7fb000 - 0x1af8a6fff IOKit arm64e  <0a341be7849d3cde9003fbff5728e2b0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1af8a7000 - 0x1af8b7fff DataMigration arm64e  <26fb7e8ccebf3186918bca1c45c3c667> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1af8b8000 - 0x1af915fff SpringBoardServices arm64e  <06eb64afe5a3312e8f63a42ea1790f8a> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1af929000 - 0x1afb9cfff CoreMotion arm64e  <aa720064736432f0bfa756c9f175728e> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1afb9d000 - 0x1afce2fff EventKit arm64e  <7fa1b78a6c4a3fd8ae9f8196e4a05fb6> /System/Library/Frameworks/EventKit.framework/EventKit
0x1b023d000 - 0x1b04d8fff MediaRemote arm64e  <1709e2a06e473b23a793a44f82941cc9> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1b04d9000 - 0x1b0681fff CoreUtils arm64e  <3b074ee0c5293d48a5efd152bd416221> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1b0699000 - 0x1b0709fff CoreSpotlight arm64e  <a1388adfcf1736299f2ce2016efda6af> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1b0cd6000 - 0x1b0d9cfff CoreUI arm64e  <fd20a63172773bd19762649fca5d1554> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1b17e2000 - 0x1b4141fff WebCore arm64e  <5ba09042eeb53b46920f6a2f7f98ae4d> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1b4142000 - 0x1b41a1fff libMobileGestalt.dylib arm64e  <90fcf37940483531b8f1261f6f9e0f7c> /usr/lib/libMobileGestalt.dylib
0x1b41a2000 - 0x1b41befff CommonUtilities arm64e  <4c4c93c808b53b4fbf7975cb45a70421> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1b41bf000 - 0x1b432dfff IDSFoundation arm64e  <a71624be95813f6086d285fd0cb881f7> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1b4433000 - 0x1b44ddfff CoreSuggestions arm64e  <3958e368f76638bf8af884f116133d31> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1b44de000 - 0x1b457bfff AddressBookLegacy arm64e  <3bf49a48972d3e8892f4cb3405cb548f> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1b457c000 - 0x1b45affff UserNotifications arm64e  <f1be0e4d33f13c58a38de2449f5f8e36> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1b45b0000 - 0x1b463cfff FrontBoardServices arm64e  <fee22194e05438e6a1e203f77c643336> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1b463d000 - 0x1b4660fff libsystem_malloc.dylib arm64e  <dd80ebfd97273ace97c184f53eaed689> /usr/lib/system/libsystem_malloc.dylib
0x1b510f000 - 0x1b51a2fff AuthKit arm64e  <e46838283fde38af8f26ad6e5d2c84c6> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1b51a3000 - 0x1b5236fff AppleAccount arm64e  <82ae9cea277f34de9aca0af9f1d9e878> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1b5237000 - 0x1b5339fff AVFAudio arm64e  <2a9c1acdca903b67a7002131cbadc156> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1b533a000 - 0x1b55a5fff AudioToolboxCore arm64e  <de6bdf46d6b83b80b2bd83b441617ec0> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1b55da000 - 0x1b58aefff StoreServices arm64e  <84a1b4a20bb63eeeb17503606d194767> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1b5a39000 - 0x1b5ae0fff ShareSheet arm64e  <d1502be4efa33e04a4212fceb2b53739> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1b6661000 - 0x1b66b2fff MobileBackup arm64e  <82a758aae8b93098900c0cd323cc2100> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1b66b3000 - 0x1b66c7fff MSUDataAccessor arm64e  <23a6455cb0f332b2b4dcbf7077c7c6b1> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x1b66c8000 - 0x1b66eefff MobileAsset arm64e  <2ea5c4ab58453c4ea6cfe908f94bddd8> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1b66ef000 - 0x1b66fefff libsystem_networkextension.dylib arm64e  <dbc568bd3b0635f696a9fe6d2418a47f> /usr/lib/system/libsystem_networkextension.dylib
0x1b66ff000 - 0x1b6950fff NetworkExtension arm64e  <4cadfb74c6e133e9bd8a1cd2bddfe244> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1b6988000 - 0x1b6d54fff CoreML arm64e  <6bdbc52f8e303510afd322744829b5eb> /System/Library/Frameworks/CoreML.framework/CoreML
0x1b6d55000 - 0x1b74dafff Espresso arm64e  <123a523fe8e23634b65baa506bf392bb> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1b74db000 - 0x1b75d8fff VideoToolbox arm64e  <a3e41de4ad7c37b9ae58a4c59ac8aa0a> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1b7724000 - 0x1b7735fff AXCoreUtilities arm64e  <2943430400033a6d915a9cebeec46de7> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1b862b000 - 0x1b87a1fff Montreal arm64e  <1bcf904562813d6c856f2c6a45cade25> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b87a2000 - 0x1b88b7fff LanguageModeling arm64e  <84e4b8532ca43b6e99f8147170817343> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1b88b8000 - 0x1b88c0fff InternationalSupport arm64e  <42384fe6ad98325f8245552370b38375> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b8b14000 - 0x1b8b55fff libswiftUIKit.dylib arm64e  <3520401709e931918a55e61667235cb5> /usr/lib/swift/libswiftUIKit.dylib
0x1b8c70000 - 0x1b8d19fff CalendarDatabase arm64e  <b0340b2e16103d2ebd00242e200c2523> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1b8e4b000 - 0x1b8f6efff Combine arm64e  <594468b8aa063295a896ec55aa4efd17> /System/Library/Frameworks/Combine.framework/Combine
0x1b8ffd000 - 0x1b900efff UniformTypeIdentifiers arm64e  <d69cbfa5fc493f3bbbc8b29e23ea1f82> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1b900f000 - 0x1b9091fff CloudDocs arm64e  <c5de704568013d99b71b7b2ebd4c082f> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1b95b3000 - 0x1b95f1fff MediaServices arm64e  <70a6d6a3c0083f50b5ef39ebfcef00ad> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1b9862000 - 0x1b9898fff libobjc.A.dylib arm64e  <2e47abd72c5a318d8044776883bcccb6> /usr/lib/libobjc.A.dylib
0x1b9899000 - 0x1b98fbfff LoggingSupport arm64e  <400d2a1f525b3827a69edffa2e6d7d0f> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1b98fc000 - 0x1b995afff libc++.1.dylib arm64e  <0073bc582e413d4786f43b51f934fbe1> /usr/lib/libc++.1.dylib
0x1b995b000 - 0x1b9974fff libc++abi.dylib arm64e  <f7f0397b828f31029b946a926d52d3fc> /usr/lib/libc++abi.dylib
0x1b9975000 - 0x1b99b7fff SetupAssistant arm64e  <fc61b97de33b3255b69437aada436477> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1b99b8000 - 0x1b99d2fff OctagonTrust arm64e  <cd6904ebb0183dd0bdf52c425563e883> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x1b9b00000 - 0x1b9b43fff CoreAutoLayout arm64e  <44455e87a63130bcb64711f4f92d70ed> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1b9b44000 - 0x1b9ca2fff Network arm64e  <2c8c473787cd354cbac5946720dedd5b> /System/Library/Frameworks/Network.framework/Network
0x1b9ca3000 - 0x1b9cd9fff MobileKeyBag arm64e  <b1b49ca9aa583fb584c16007266fc411> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b9f32000 - 0x1b9fe4fff libvDSP.dylib arm64e  <179ae738b97c3ff98df6dd5aa19da686> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1b9fe5000 - 0x1ba018fff libAudioToolboxUtility.dylib arm64e  <c9f23955b6ae328cb89acc8b11810553> /usr/lib/libAudioToolboxUtility.dylib
0x1ba1e6000 - 0x1ba272fff CoreNLP arm64e  <84fbc8ac011d377787059c14148b4c28> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1ba273000 - 0x1ba38dfff FileProvider arm64e  <bf2581f8d78639cc8ce4b4883c32db33> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1ba39f000 - 0x1ba3b7fff libswiftDispatch.dylib arm64e  <1422dd58b4eb387db9dc330244e4b9b7> /usr/lib/swift/libswiftDispatch.dylib
0x1ba3b8000 - 0x1ba3eefff DataDetectorsCore arm64e  <445726f0e3193acda2018f90b1491537> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1ba3ef000 - 0x1ba47ffff Symbolication arm64e  <6f5ad452a4b7399ba73c41f7d71b6544> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1ba480000 - 0x1ba49dfff CrashReporterSupport arm64e  <b3f69c67b95e37d0985f88b3d775cb1d> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1ba609000 - 0x1ba7f7fff MPSNeuralNetwork arm64e  <be74cf58180032428aaef486b1f615a5> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1ba7f8000 - 0x1ba84efff MPSCore arm64e  <4d56444d00843a5785c07cead595779a> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1ba9ac000 - 0x1baa19fff CalendarFoundation arm64e  <81be0d2f4afc3220b3e1d74f985aaf44> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1baa7d000 - 0x1bab69fff NLP arm64e  <87ac48aecd0433c28a0e213255446c9a> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1babf2000 - 0x1baca2fff libboringssl.dylib arm64e  <127f59bbc1cf3c8a8965576c125f1333> /usr/lib/libboringssl.dylib
0x1baca3000 - 0x1bacbafff ProtocolBuffer arm64e  <15bdb48c1bc53d7ca1f2d129b3c5cb5a> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1baf3c000 - 0x1baf4bfff AssertionServices arm64e  <f91a2f32bb3b30b9878f8e8bb61588cf> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1baf4c000 - 0x1baf75fff CloudServices arm64e  <cf63e2e824aa3fe693602a6040a6aba4> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x1bafc8000 - 0x1bb0a8fff Metal arm64e  <93d81bb817af3f8b98f164c8bae65255> /System/Library/Frameworks/Metal.framework/Metal
0x1bb0a9000 - 0x1bb1f8fff MediaExperience arm64e  <bcbc4656947f35b6af206a8e588ea4ba> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1bb606000 - 0x1bb61cfff libsystem_trace.dylib arm64e  <30d179d62e1431d9a8cc998c8c77a480> /usr/lib/system/libsystem_trace.dylib
0x1bb61d000 - 0x1bb64efff CoreServicesInternal arm64e  <35185b81e5be3d1692921dadbb7c8175> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1bb8f6000 - 0x1bb996fff AppStoreDaemon arm64e  <378ebb572c6035f08fadd2d48262316e> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1bc36f000 - 0x1bc377fff GraphicsServices arm64e  <08556282f8e93938a0040c0edac970bd> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1bc54c000 - 0x1bc561fff PowerLog arm64e  <e6d2ecf434c8377db14d7ca4e30ddde9> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1bc562000 - 0x1bc58bfff DuetActivityScheduler arm64e  <5150d7d6bbf23c3b9fffc12c30b9a7fe> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1bde6e000 - 0x1be11afff Vision arm64e  <8a103d1b85053d42b42727287ecdaa63> /System/Library/Frameworks/Vision.framework/Vision
0x1be178000 - 0x1be1e6fff ProactiveSupport arm64e  <b3c9173ac99335d48520633cf450e8ff> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1be214000 - 0x1be233fff ApplePushService arm64e  <f3753141a9f933b68c0ed11853afd928> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1be234000 - 0x1be25dfff BoardServices arm64e  <7575f25e05b13848be93de718432b499> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1be25e000 - 0x1be26afff libswiftCloudKit.dylib arm64e  <48f49d76d86e3d10bffdc1173cb75508> /usr/lib/swift/libswiftCloudKit.dylib
0x1be3fb000 - 0x1be449fff OSAnalytics arm64e  <98d65861beeb31edb170cb9183c755f8> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1be44a000 - 0x1be4a9fff CoreBluetooth arm64e  <151b02f0228e3b95ba16a22186283c1b> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1be6d9000 - 0x1be70efff MobileInstallation arm64e  <7ee17a1045183e59be667571d6f09b96> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1be70f000 - 0x1be79dfff libTelephonyUtilDynamic.dylib arm64e  <2260ab37ec0b3142a16b56e2647643a0> /usr/lib/libTelephonyUtilDynamic.dylib
0x1be79e000 - 0x1be80dfff NanoRegistry arm64e  <13da5919765a3297bd124a689d9c9c29> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1be8f2000 - 0x1be910fff CoreMaterial arm64e  <16cd9897486236e6a71c3f258e3f93ae> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1be987000 - 0x1beb10fff libsqlite3.dylib arm64e  <a9012fa3fc0e31ac85f49c461ed61a97> /usr/lib/libsqlite3.dylib
0x1beb11000 - 0x1bebd7fff AVFCapture arm64e  <a4cc5da114dc32b69f04261babfeed00> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1bebd8000 - 0x1bef3afff CMCapture arm64e  <be1260cb1d7c3a6aa83b5f217745663d> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1bf099000 - 0x1bf2f8fff MobileSpotlightIndex arm64e  <8ba070166878351ca47e12c7e4645326> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1bf739000 - 0x1bf743fff libsystem_notify.dylib arm64e  <7a1b577f2d853b1dbc32b48b6895baee> /usr/lib/system/libsystem_notify.dylib
0x1bf744000 - 0x1bf789fff CryptoTokenKit arm64e  <91fa9baab209303d8f2e0234393271bc> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1bf7f7000 - 0x1bf86afff libcorecrypto.dylib arm64e  <e8f7626f8a8a3e65b83b2400dd8344d8> /usr/lib/system/libcorecrypto.dylib
0x1bf86b000 - 0x1bf88ffff UserManagement arm64e  <c98f5c3bee8333c5a917d582a1b58aee> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1bf96c000 - 0x1bf982fff libsystem_asl.dylib arm64e  <7efa85eaf0583cc197fa18fae89c68e0> /usr/lib/system/libsystem_asl.dylib
0x1bfc0c000 - 0x1bfc44fff DataAccessExpress arm64e  <80019264dc263365be582c5448ae788d> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1bfc45000 - 0x1bfc7cfff CoreServicesStore arm64e  <ff845045c63c3c91a1e0b3aaf6bc6377> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1bfc7d000 - 0x1bfca2fff CoreAnalytics arm64e  <0c0e7c67d78032bfb4de99420c581b53> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1bfca3000 - 0x1bfcaefff SymptomAnalytics arm64e  <e8714fdbb15d37caa99800aa7234b5fd> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1bfea1000 - 0x1bfeb1fff NanoPreferencesSync arm64e  <5c9b54cf26bf3ca2b7346fccfd00824d> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1c06e1000 - 0x1c070dfff IconServices arm64e  <bcb240780c12379d9aa0744d08c7a4ba> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1c11e3000 - 0x1c14aafff vImage arm64e  <8ecd3884aaf7311db420845ae0d38e07> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1c2485000 - 0x1c24defff ktrace arm64e  <3dc76c8d1c45322aa8d5a27f02c86519> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1c27fc000 - 0x1c280afff Celestial arm64e  <9b37d1919a30369e8317d258e6bfa253> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1c2902000 - 0x1c2a8afff WebKitLegacy arm64e  <38fa72395c3530f59cce8f9c351ba229> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1c2afe000 - 0x1c2b75fff ClassKit arm64e  <88926106576336c7b88a7e0bb0d87ba4> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1c2b76000 - 0x1c2bbdfff StoreKit arm64e  <ea16ffd75b5b3580a19001cc5f032bdb> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1c3af5000 - 0x1c3afffff IOMobileFramebuffer arm64e  <6d6340e4e6113d2ea673515074b37930> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1c4190000 - 0x1c41b0fff PrototypeTools arm64e  <00c63ea578d8332b89fa381b45433952> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1c41b1000 - 0x1c41defff PersistentConnection arm64e  <f3523bee1598394492bdcd6bce0045e9> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1c4675000 - 0x1c4686fff libswiftUniformTypeIdentifiers.dylib arm64e  <340ffd5102063fb09d791a1c6fc1c3e2> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
0x1c4c9f000 - 0x1c4cb5fff AppSSOCore arm64e  <d3df763ef6f43ee2a3641e2313f00622> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x1c4cc1000 - 0x1c4cd8fff CoreFollowUp arm64e  <7a24d9224d1c32e5b2101150eef4bc3f> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1c4cd9000 - 0x1c4d53fff Rapport arm64e  <d8b41715727d3e70bf46666e810e7a07> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1c511d000 - 0x1c5144fff LocationSupport arm64e  <8ec049def0de3650a2aaf7fbab409f55> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1c5145000 - 0x1c5179fff iCalendar arm64e  <8b55ad8bd36230eb83682a4d54324823> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1c517a000 - 0x1c51a5fff CoreAccessories arm64e  <4a487014cd403fc989dafe9ee6ef2947> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x1c52e2000 - 0x1c535ffff CVNLP arm64e  <dab652fc77643664bbfc03fc9d377cac> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x1c54b7000 - 0x1c54b9fff OSAServicesClient arm64e  <b53625dbf80e3844bc916ee44b0c6b03> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1c54bd000 - 0x1c5517fff ProtectedCloudStorage arm64e  <860390fc5d0c3f7c948af3d584cbea95> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1c5518000 - 0x1c5550fff C2 arm64e  <3fa5405a36e03efdb9c65577043488dd> /System/Library/PrivateFrameworks/C2.framework/C2
0x1c6000000 - 0x1c6044fff BiometricKit arm64e  <3c04b45f2f16305590fc1c3cccdeaa96> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1c608c000 - 0x1c6141fff CoreSymbolication arm64e  <3c0e18cf24ca3dc5a6c9c0f7f1107b9e> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1c6929000 - 0x1c693bfff IOSurface arm64e  <1335ae5e794d3f1285f78a31dd60dedd> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1c693c000 - 0x1c699efff MobileWiFi arm64e  <acf3f8039ed4359aaaef2e790a4e58fc> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1c6f64000 - 0x1c6f9ffff libGLImage.dylib arm64e  <bac88d59b9433669a42068ca0ebf61e1> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1c6fa0000 - 0x1c6fa7fff libsystem_symptoms.dylib arm64e  <24674a06f0723aa3a7f0b33556fab0fd> /usr/lib/system/libsystem_symptoms.dylib
0x1c6fef000 - 0x1c754ffff CoreAudio arm64e  <47815d1938cc3a7da3e0a219d5dca724> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1c7568000 - 0x1c7587fff IntentsCore arm64e  <7ddaa4b25a4038e1943960c56f42de64> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x1c76c3000 - 0x1c772bfff RenderBox arm64e  <dc2acb69480436f199d1cde31a3fb529> /System/Library/PrivateFrameworks/RenderBox.framework/RenderBox
0x1c7c5b000 - 0x1c7c6bfff CoreAUC arm64e  <5147918376b5398e83256b1c6f169f2f> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1c84a0000 - 0x1c84b1fff SettingsFoundation arm64e  <507f6a4a908b34aa9edacc2e793e3868> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1c9777000 - 0x1c9784fff MediaSafetyNet arm64e  <5be00a71a7713479bb8c6a55ae697c14> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1c9785000 - 0x1c97c2fff TimeSync arm64e  <1d838d72cc1e3ce48d525c94283785b3> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1c985a000 - 0x1c989ffff ExposureNotification arm64e  <8b21bb10644436d98c70111505392da6> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1c9f2c000 - 0x1c9f35fff CoreTime arm64e  <880008ad66523017b872b176c2597b76> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1ca90c000 - 0x1caa0cfff TextRecognition arm64e  <ab47c812918a338aab16e10a6ad26a74> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1cab22000 - 0x1cab2bfff ContextKitExtraction arm64e  <2a757e946f303f30b8e34ab8d0085788> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1cac09000 - 0x1cac0bfff libswiftObjectiveC.dylib arm64e  <40b9b3e993ff3884adfd026bb232fb10> /usr/lib/swift/libswiftObjectiveC.dylib
0x1cc216000 - 0x1cc29afff CoreDAV arm64e  <973b4a3dd77e3fffbf1040b19b48f831> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1cc482000 - 0x1cc491fff MobileIcons arm64e  <51923a3374a233dd961a4498a7cb7f42> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1cdbbf000 - 0x1cdbc9fff MallocStackLogging arm64e  <5029c09e7c073cae989c8e7ae3581d44> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1cdbe3000 - 0x1cdc12fff AttributeGraph arm64e  <28a80bba5743325b80290671986d9e4a> /System/Library/PrivateFrameworks/AttributeGraph.framework/AttributeGraph
0x1cde06000 - 0x1cde51fff MetadataUtilities arm64e  <1aec53879b77371092f1bad902ca2c98> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1ce58b000 - 0x1ce5eafff CoreLocationProtobuf arm64e  <66776ba19180331d804924fa6da0f10e> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1ce7ff000 - 0x1ce831fff Bom arm64e  <bb0a2970254432b3831e608bf2a204f0> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1ce867000 - 0x1ce86efff PushKit arm64e  <125e0837d6c43b83a972b86d473badd1> /System/Library/Frameworks/PushKit.framework/PushKit
0x1cea76000 - 0x1ceb06fff Quagga arm64e  <cf0a7e1ad8423b80b8ad9f0ea52d5a5a> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1ceb07000 - 0x1ceb0ffff StudyLog arm64e  <ecb99e9ab81c39f7950f720362ad2a1b> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1d1d63000 - 0x1d1d6efff AppleIDAuthSupport arm64e  <cd9d4db6e14337c2bc492398c8fcf462> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1d1d7e000 - 0x1d1d97fff LocalAuthentication arm64e  <e07c72e2d6cb36c4afe9108965c008f5> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1d1d98000 - 0x1d1d9efff IOAccelerator arm64e  <b534583668773b45acb567e5f776f687> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1d2648000 - 0x1d2679fff libsystem_kernel.dylib arm64e  <95c83da7b2ca3c43ba7f7088c04de757> /usr/lib/system/libsystem_kernel.dylib
0x1d28bd000 - 0x1d29c7fff ResponseKit arm64e  <1bd88fb40a1d3c3ca32e88b8a1d41988> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1d3049000 - 0x1d3056fff FontServices arm64e  <b6348b2396f3398d9c3db92649639aa1> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1d3207000 - 0x1d3213fff MediaAccessibility arm64e  <0e82cb0b9a4b3246ac108206f174f38c> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1d3813000 - 0x1d3821fff SetupAssistantSupport arm64e  <3fcc258c6bc33924861cf45f2a2e21dc> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1d3959000 - 0x1d397ffff NetAppsUtilities arm64e  <4c05b7d70a283b8c89fbfbaaac827619> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1d4bb7000 - 0x1d4bc7fff libdscsym.dylib arm64e  <8d0f7d22218437bf8f76791b62e4068d> /usr/lib/libdscsym.dylib
0x1d4bc8000 - 0x1d4bd9fff HangTracer arm64e  <963c4a68169139238c9b1169f8fbd90a> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1d4d97000 - 0x1d4e55fff SampleAnalysis arm64e  <9764986d2cf939f1acc8774aa0a998bf> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1d4e56000 - 0x1d4e86fff PlugInKit arm64e  <d25b10c145f638eb80a682d5d0d50a9e> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1d4f35000 - 0x1d4f36fff libSystem.B.dylib arm64e  <37501144205a386bb42936f2d10d0daf> /usr/lib/libSystem.B.dylib
0x1d525a000 - 0x1d52b2fff CalendarDaemon arm64e  <e2ee18b0e3203e428d217497b99dca7b> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1d53aa000 - 0x1d541afff libarchive.2.dylib arm64e  <215c1129314137e1802ee44891c52ebf> /usr/lib/libarchive.2.dylib
0x1d541b000 - 0x1d543ffff libtailspin.dylib arm64e  <5e852129ceb933b5a0da35337eca5648> /usr/lib/libtailspin.dylib
0x1d5440000 - 0x1d58f4fff libBNNS.dylib arm64e  <fdcf8537a890325997b98fd7378e8893> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1d58f5000 - 0x1d5937fff SharedUtils arm64e  <dc9f7ab2f0683d26b76f1245ee8da290> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1d5f53000 - 0x1d5f53fff AVFoundation arm64e  <1d427b5a1f71317ba376e066aab2fb78> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1d5f54000 - 0x1d5f54fff Accelerate arm64e  <971c6e788a583b2d823a67c8b6ae6a3e> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1d5f55000 - 0x1d61affff libBLAS.dylib arm64e  <1464c5ae73d93808bf18ead962ff93b1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1d61b0000 - 0x1d665afff libLAPACK.dylib arm64e  <da74cbf68d8e3b6baa200d0c607daf72> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1d665b000 - 0x1d666ffff libLinearAlgebra.dylib arm64e  <8257b4c340bc340cb98c2174abf25583> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1d6670000 - 0x1d6674fff libQuadrature.dylib arm64e  <7bbe6aa1587436469574eea587defbdb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1d6675000 - 0x1d66d7fff libSparse.dylib arm64e  <2612f9b0f85931f68f7cf3fe51069399> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1d66d8000 - 0x1d66e9fff libSparseBLAS.dylib arm64e  <88e99ed408f838ce91481adda2d75375> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1d66ea000 - 0x1d6742fff libvMisc.dylib arm64e  <51617fac7d47332d90fd0c9db90891b6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1d6743000 - 0x1d6743fff vecLib arm64e  <2631ae4f1c35380595c94cc1000f29bd> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1d69bd000 - 0x1d6a26fff CoreMIDI arm64e  <934ca0d7c6ee30d2bbc1ae4b450dd08b> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1d714b000 - 0x1d729dfff MLCompute arm64e  <cf34ff20a7b93f1c8071a18fcd770f39> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1d72e0000 - 0x1d7366fff MPSImage arm64e  <43662c4a92b53c3cb009bad12d7b82f0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1d7367000 - 0x1d738dfff MPSMatrix arm64e  <b7733e9cd4303b9a88c2424f57442335> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1d738e000 - 0x1d73ccfff MPSNDArray arm64e  <be33b81c02f0317ab73565c9048d9fc1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1d73cd000 - 0x1d7415fff MPSRayIntersector arm64e  <df0babdf4add3d0eb6f7df5c3fd6fe27> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1d7416000 - 0x1d7416fff MetalPerformanceShaders arm64e  <54579591af2c331bb854c3c1e3633ebc> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1d77b3000 - 0x1d77b3fff MobileCoreServices arm64e  <e2b7a93bfcfa3b34b44b6cf934eeeb7a> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1d83a0000 - 0x1d83a8fff OpenGLES arm64e  <d546d7af4fd633d5b3f7106c2e6e4fe2> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1d83a9000 - 0x1d83aafff libCVMSPluginSupport.dylib arm64e  <cfad3820925c3df880d322c609a23dcb> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1d83ab000 - 0x1d83b1fff libCoreFSCache.dylib arm64e  <243cc950c9b03b208fc64d824462a954> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1d83b2000 - 0x1d83b7fff libCoreVMClient.dylib arm64e  <088d8a21563e3990bf93560679406c19> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1d83b8000 - 0x1d83c1fff libGFXShared.dylib arm64e  <7a4f2f05b6ff3aaa9f2a6556d78c639e> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1d8653000 - 0x1d8691fff QuickLookThumbnailing arm64e  <98ba0ae54bf535b1a0e0346352c71734> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1d8fe0000 - 0x1d8fe0fff UIKit arm64e  <53b462928c8f32a59b1ddfa5cecd8cdc> /System/Library/Frameworks/UIKit.framework/UIKit
0x1d90b4000 - 0x1d9c8bfff libfaceCore.dylib arm64e  <73bc24802904342ba75b25a677a6b029> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x1da1f0000 - 0x1da1f3fff AFKUser arm64e  <6b48cf6527f0308aaff2dccd565ff2e0> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1da2b8000 - 0x1da53ffff ANECompiler arm64e  <762e76d7b9d73825abce7362a460b65e> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1da540000 - 0x1da554fff ANEServices arm64e  <614d750e6e4237d6b9e7f47d48f79391> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1da559000 - 0x1da616fff APFS arm64e  <a4c1e2252185306caeacfe5d20a7d149> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1da617000 - 0x1da61dfff ASEProcessing arm64e  <2824dda045cb3911a3df672086708f4c> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1dae4f000 - 0x1dae54fff AggregateDictionary arm64e  <ed017cc73e12313c88ab8281ab11e7c0> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1dafe2000 - 0x1db0bbfff AirPlaySync arm64e  <7b36eb5798e03db798c726cc79743b02> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1db1c7000 - 0x1db1e3fff AlgosScoreFramework arm64e  <b29de407a2993ab49f2a09461a6df3f7> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1db315000 - 0x1db487fff AppC3D arm64e  <5cf79dbcedd13f948e0523f11df44ee8> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x1db488000 - 0x1db4abfff AppConduit arm64e  <6aab29e7f7f73b4d83074a71bded81a0> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1db5b4000 - 0x1db5befff AppStoreOverlays arm64e  <a66502e3e90737ce823c5efe62df0439> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x1dc8cc000 - 0x1dc8dbfff AppleFSCompression arm64e  <1bf7f18f32ee30179b4a770467797085> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1dc8e8000 - 0x1dc90cfff AppleIDSSOAuthentication arm64e  <6ccad7bc4a67372aa0051bd94dfcafcc> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1dc90d000 - 0x1dc952fff AppleJPEG arm64e  <957dfaa0ff253c7095d18ea2331f98d0> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1dc9de000 - 0x1dc9f3fff AppleNeuralEngine arm64e  <8d289eaaf6e73f6e8ff9bb1b01a5f09f> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1dc9fd000 - 0x1dca21fff AppleSauce arm64e  <94b496c2f3c7398dbd8fd1049f137e1c> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1dcfd4000 - 0x1dcfe3fff BluetoothManager arm64e  <1047978493393a63850aa79c6704dccd> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1dd290000 - 0x1dd29afff CMCaptureCore arm64e  <45a6c05ee6c43367b42216ac3c73b817> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1dd2b5000 - 0x1dd2c4fff CPMS arm64e  <07a900f3278c3ffbb19548fc0829de50> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1dd5eb000 - 0x1dd5f6fff CaptiveNetwork arm64e  <95193bcdbc8b39b5aa6352d3a757c083> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1dd783000 - 0x1dd7a8fff CellularPlanManager arm64e  <17bbd4ccbb783e779ae367a02c1824f1> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1dd7d2000 - 0x1dd822fff ChunkingLibrary arm64e  <7934bd069f783c47a232c823919d92cf> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1ddd2b000 - 0x1ddd2efff ConstantClasses arm64e  <25ee00025fee30fcb5beaea1cee4ffb2> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1ddf83000 - 0x1de07afff CoreBrightness arm64e  <800e204f6a493e7a990259e8703b0ca6> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1de0e8000 - 0x1de0f7fff CoreDuetDaemonProtocol arm64e  <a855c046fc733a25b8451fcc42f8bd17> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1de0fa000 - 0x1de0fcfff CoreDuetDebugLogging arm64e  <54fe7981f39f3545ab9b2ffa411a6f3b> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1de10b000 - 0x1de11dfff CoreEmoji arm64e  <9300e50c70013f7397986f4aa7d63e97> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1de810000 - 0x1de818fff CorePhoneNumbers arm64e  <970ecc3c699733c4b01c320a82ed88d0> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1df244000 - 0x1df26efff CoreSVG arm64e  <c59085f22f2631a2815ccd2db93c6808> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1df48b000 - 0x1df4c9fff DataDetectorsNaturalLanguage arm64e  <a4e6bddabdeb37bdbbd508b179bff674> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1df527000 - 0x1df551fff DeviceIdentity arm64e  <cb2548061e4c3688a5b95d8a91713beb> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1df7e7000 - 0x1df823fff DocumentManager arm64e  <7aec55434d0a3521b97b89180fd21bae> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1df824000 - 0x1df844fff DocumentManagerCore arm64e  <93aa677d642935238bb9cf73e2e17efe> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1df8cf000 - 0x1df8d1fff DragUI arm64e  <906466c290e837d781a698af36e35e12> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1df901000 - 0x1df932fff EAP8021X arm64e  <06a82d19ecc23af986072672662d91a6> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1df962000 - 0x1df977fff Engram arm64e  <400f766d54c434c68602bda8e3bbc324> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1dfab8000 - 0x1dfabffff ExtensionFoundation arm64e  <8a637c247c3b391487bcda7b2aebe81e> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1dfc80000 - 0x1e0094fff FaceCore arm64e  <bfad744ed6fd35a2a17175912bc9ba85> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1e009d000 - 0x1e00a2fff FeatureFlagsSupport arm64e  <342253db28de36c2a6df9c12ff43b050> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1e024e000 - 0x1e0390fff libFontParser.dylib arm64e  <21337d8832303f86ad0d2282c76c083c> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1e0391000 - 0x1e0399fff libGSFont.dylib arm64e  <d858bf831ee3376aa15becdb7459334b> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1e039a000 - 0x1e03d7fff libGSFontCache.dylib arm64e  <ebac76b62f0b3e2c8035f06c1a3da2dc> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1e043e000 - 0x1e044bfff libhvf.dylib arm64e  <a5fbe63945cb3c049186fa5b79e5ad7e> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1e0473000 - 0x1e048bfff Futhark arm64e  <3e797fc1497c32108bb3a9fe520cd9e0> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1e110d000 - 0x1e112cfff GenerationalStorage arm64e  <8d29aaed47d9338eb29c344915e9b319> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1e112d000 - 0x1e113afff GraphVisualizer arm64e  <261e00be31a33d51a9ffd1d80158e9da> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1e1167000 - 0x1e1173fff HID arm64e  <c55a884675553f90908b3fbe51da8880> /System/Library/PrivateFrameworks/HID.framework/HID
0x1e1c08000 - 0x1e1c11fff IOKitten arm64e  <6509bfab074f36329b222160a9c4a0e8> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1e1c12000 - 0x1e1c14fff IOSurfaceAccelerator arm64e  <25f3c0e644c03f2a8fc52159c4a32d1b> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1e1c3f000 - 0x1e1c46fff IdleTimerServices arm64e  <9926fb360c5d370e962b57a5b5cb6f43> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1e1d1b000 - 0x1e1d28fff IntentsFoundation arm64e  <46dfb1f28ccf36359bc1c8a0d667160f> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1e1d43000 - 0x1e1d45fff InternationalTextSearch arm64e  <e6308cd93e9f313bb4c33d7add8cca5b> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1e1d46000 - 0x1e1d63fff IntlPreferences arm64e  <1a88bcbc2e413d99ba89417cba566a7a> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1e1fdb000 - 0x1e1fe2fff LinguisticData arm64e  <c378acc6375e3df382bffe144154a8d6> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1e2233000 - 0x1e2233fff Marco arm64e  <d3252e9c24593c898b55d1b45baa33d0> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1e2ca5000 - 0x1e2d77fff MetalTools arm64e  <b48f3bce02d83204b365a43cac56109c> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1e2e07000 - 0x1e2e1bfff MobileBluetooth arm64e  <3e71c5af21913d928b7e02d3f9aa7888> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1e2e9e000 - 0x1e2ea4fff MobileSystemServices arm64e  <a0fd91d4915e3ba0bbe243396de7a647> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1e325f000 - 0x1e3265fff Netrb arm64e  <ad4abbf43b643b84a3534ff8f90486ef> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1e3326000 - 0x1e3340fff NetworkStatistics arm64e  <01494ec57ab6381187f77faf882849ff> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1e341e000 - 0x1e345ffff OTSVG arm64e  <491ddca6cfd436d7b682fc8cc2ba03c6> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1e3ab4000 - 0x1e3ae0fff Pasteboard arm64e  <aeec592fdc7335b79db5ebbc750a783c> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1e3b12000 - 0x1e3b1efff PersonaKit arm64e  <77822e7a4cd43d7d90adcc16339624c3> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1e3b64000 - 0x1e3b64fff PhoneNumbers arm64e  <141f0efec16d3091b5ab3af797bd1636> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1e3d75000 - 0x1e3dc1fff PhysicsKit arm64e  <3b28e65a16cc3ad68b805b45d80e6bd2> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1e3e82000 - 0x1e3e8dfff PointerUIServices arm64e  <787c453f7b193efda94db30efd9e4d80> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1e5380000 - 0x1e538bfff RTCReporting arm64e  <fe31a4ca7f4b3ba2b7fa17fda9453ee0> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1e56da000 - 0x1e56ecfff RemoteTextInput arm64e  <93ed7cf25bbb3f72b3779ea6f22d4c3e> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1e7202000 - 0x1e720cfff SignpostCollection arm64e  <e7a991ca0d9930e493a740442d51b429> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1e720d000 - 0x1e720dfff SignpostMetrics arm64e  <36bf70dd8be6397a963db3b3e9a0482e> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1e720f000 - 0x1e7250fff SignpostSupport arm64e  <ab647fbecb023f5fbc80c14811f45331> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1e7d6c000 - 0x1e7d6cfff SoftLinking arm64e  <9d63f4cc6ab8307096d71823e34d7275> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1e826d000 - 0x1e82abfff StreamingZip arm64e  <4be794cca2973a0fb01696cedc2d4740> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1e82b3000 - 0x1e82bdfff SymptomDiagnosticReporter arm64e  <85263b47543435e7b5b8e3d0beecc495> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1e82ef000 - 0x1e830bfff SymptomPresentationFeed arm64e  <d065cf42437b32deab82d869af6c7b1e> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1e834b000 - 0x1e835bfff TCC arm64e  <62793f6548eb3781a6c6fbb2664ddc9e> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1e8c62000 - 0x1e8d16fff TextureIO arm64e  <dc08cfe28cc733f996f5f352b83596e1> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1e8f44000 - 0x1e8f4bfff URLFormatting arm64e  <64f89fa503863dcba8dea9754bd7e072> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1ea21c000 - 0x1ea21dfff WatchdogClient arm64e  <b14a35cf2bb33a02bcfb0fc9b223dbe0> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1ea502000 - 0x1eac3efff libwebrtc.dylib arm64e  <32d0d5303cf631e5a14773a69054a8d6> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1eb219000 - 0x1eb21cfff XCTTargetBootstrap arm64e  <87e5f6d1a5b43a4d986691ddd6949f8f> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1eb2a2000 - 0x1eb2c1fff caulk arm64e  <624d829753363ec9929611c120fb7775> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1ed836000 - 0x1ed83bfff kperf arm64e  <981f8f1742ae3eacaf29e42f50081e49> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1ed83c000 - 0x1ed844fff kperfdata arm64e  <ca9efc82ec6b3ac48241930904239a31> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1ed845000 - 0x1ed85bfff libEDR arm64e  <0dcb23211d723cffbcb110ce6979aab8> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1ed874000 - 0x1ed885fff perfdata arm64e  <495e4891424e3177a60d35fa49315791> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1ed886000 - 0x1ed8b7fff vCard arm64e  <4aa540e5b40f31208fbd80cc50412325> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1ee1e5000 - 0x1ee221fff libAWDSupport.dylib arm64e  <e8a4782d30743c9491abca915d7390ab> /usr/lib/libAWDSupport.dylib
0x1ee75c000 - 0x1ee76bfff libAudioStatistics.dylib arm64e  <c9b0f85a06e435e3b3a5f70572f7145c> /usr/lib/libAudioStatistics.dylib
0x1ee90d000 - 0x1ee940fff libCRFSuite.dylib arm64e  <bdfefba3521332aeb328814fbe6673de> /usr/lib/libCRFSuite.dylib
0x1ee941000 - 0x1ee942fff libCTGreenTeaLogger.dylib arm64e  <5876a9f48b1239dcb7a68e9b0b96cc85> /usr/lib/libCTGreenTeaLogger.dylib
0x1ee943000 - 0x1ee94dfff libChineseTokenizer.dylib arm64e  <bb7e5234df193083b861fa1de92a680a> /usr/lib/libChineseTokenizer.dylib
0x1eec04000 - 0x1eec0bfff libIOReport.dylib arm64e  <99378aec8db53f85b14d564784480650> /usr/lib/libIOReport.dylib
0x1eec87000 - 0x1eec8efff libMatch.1.dylib arm64e  <4b76b41ee65330b5ab4b053ed9331408> /usr/lib/libMatch.1.dylib
0x1eedab000 - 0x1eedacfff libThaiTokenizer.dylib arm64e  <2d141137198a38e8a23552764b89650d> /usr/lib/libThaiTokenizer.dylib
0x1ef022000 - 0x1ef024fff libapp_launch_measurement.dylib arm64e  <dd7f86ac570e35b7bc6059c9d9e68118> /usr/lib/libapp_launch_measurement.dylib
0x1ef025000 - 0x1ef03bfff libapple_nghttp2.dylib arm64e  <f63c55ede58a34b9bfeb47b0100e2ce1> /usr/lib/libapple_nghttp2.dylib
0x1ef03c000 - 0x1ef0cdfff libate.dylib arm64e  <0480072585a23b4faedfee55a0507a51> /usr/lib/libate.dylib
0x1ef15f000 - 0x1ef16ffff libbsm.0.dylib arm64e  <69a08060b3353bffb46ce624360d68cc> /usr/lib/libbsm.0.dylib
0x1ef170000 - 0x1ef17cfff libbz2.1.0.dylib arm64e  <5976e1ba75043223b6c779b559493ae3> /usr/lib/libbz2.1.0.dylib
0x1ef17d000 - 0x1ef17dfff libcharset.1.dylib arm64e  <df13e89bde7a319fbe48aaa4eeb3a06d> /usr/lib/libcharset.1.dylib
0x1ef17e000 - 0x1ef18ffff libcmph.dylib arm64e  <cebffdffd7d63e1a99117d84e7c5bf61> /usr/lib/libcmph.dylib
0x1ef190000 - 0x1ef1a7fff libcompression.dylib arm64e  <3dd8e20319103207bd0ed4012adc2e27> /usr/lib/libcompression.dylib
0x1ef1a8000 - 0x1ef1befff libcoretls.dylib arm64e  <412c627dbcd43363a5eb8adac64d5df8> /usr/lib/libcoretls.dylib
0x1ef1bf000 - 0x1ef1c0fff libcoretls_cfhelpers.dylib arm64e  <8c86770bd9a33edfb44a5e65a6e83121> /usr/lib/libcoretls_cfhelpers.dylib
0x1ef1e4000 - 0x1ef1ebfff libcupolicy.dylib arm64e  <bba43146d1cf38a9b8944d29e5681676> /usr/lib/libcupolicy.dylib
0x1ef1ec000 - 0x1ef1f3fff libdns_services.dylib arm64e  <7051d8e3117435fcaadf13e99c463df1> /usr/lib/libdns_services.dylib
0x1ef212000 - 0x1ef212fff libenergytrace.dylib arm64e  <cef8a8bac01d347393e320089cd973de> /usr/lib/libenergytrace.dylib
0x1ef213000 - 0x1ef22cfff libexpat.1.dylib arm64e  <8458b56730553db481512430799b2917> /usr/lib/libexpat.1.dylib
0x1ef257000 - 0x1ef25bfff libgermantok.dylib arm64e  <15c56423f081367a9b3e46402d005b9c> /usr/lib/libgermantok.dylib
0x1ef25c000 - 0x1ef261fff libheimdal-asn1.dylib arm64e  <9703f2434cb434f9b71b1d5ddd3a9b81> /usr/lib/libheimdal-asn1.dylib
0x1ef262000 - 0x1ef357fff libiconv.2.dylib arm64e  <7e67d18aad88314aba3f8fad76db01c2> /usr/lib/libiconv.2.dylib
0x1ef376000 - 0x1ef377fff liblangid.dylib arm64e  <d7b530c8695635b39a2ad9cc02cfd852> /usr/lib/liblangid.dylib
0x1ef378000 - 0x1ef383fff liblockdown.dylib arm64e  <d526de59f7cf32b2895d043c3e86fa52> /usr/lib/liblockdown.dylib
0x1ef384000 - 0x1ef39cfff liblzma.5.dylib arm64e  <941ac4cea9ef3920a3405459df591e1d> /usr/lib/liblzma.5.dylib
0x1ef3cb000 - 0x1ef420fff libmecab.dylib arm64e  <b278e000b687372da3c326f1b8a6ed45> /usr/lib/libmecab.dylib
0x1ef659000 - 0x1ef66cfff libmis.dylib arm64e  <38c42078d81d34ff9768847e136f5f35> /usr/lib/libmis.dylib
0x1ef66d000 - 0x1ef682fff libnetworkextension.dylib arm64e  <bc11992719a73d16a249777f852d4ffc> /usr/lib/libnetworkextension.dylib
0x1efa2d000 - 0x1efa67fff libpcap.A.dylib arm64e  <0b09f71d72a633bdaae06ba301e3a6bf> /usr/lib/libpcap.A.dylib
0x1efa68000 - 0x1efa76fff libperfcheck.dylib arm64e  <3209b947b0b63dfd8d7fa82db852e8f3> /usr/lib/libperfcheck.dylib
0x1efa7e000 - 0x1efa90fff libprequelite.dylib arm64e  <895b10fdf9bf3694a072dddea896ef9c> /usr/lib/libprequelite.dylib
0x1efa91000 - 0x1efaa3fff libprotobuf-lite.dylib arm64e  <e00cf97cb73335a7a7fe644741c836c7> /usr/lib/libprotobuf-lite.dylib
0x1efaa4000 - 0x1efb06fff libprotobuf.dylib arm64e  <d84817afdb2733b3b0800e0471280f5e> /usr/lib/libprotobuf.dylib
0x1efb67000 - 0x1efb7ffff libresolv.9.dylib arm64e  <dd07d5f9399e308092f98e494eab2d86> /usr/lib/libresolv.9.dylib
0x1efb80000 - 0x1efb82fff libsandbox.1.dylib arm64e  <69ad3945a8e339a19aae15ab81e2e931> /usr/lib/libsandbox.1.dylib
0x1efbcc000 - 0x1efbcffff libutil.dylib arm64e  <854f760a2ad6375e8582d190903cdef4> /usr/lib/libutil.dylib
0x1efbd0000 - 0x1efcbbfff libxml2.2.dylib arm64e  <7663cdaa843d3a63a6975d34e2045591> /usr/lib/libxml2.2.dylib
0x1efcea000 - 0x1efcfbfff libz.1.dylib arm64e  <f071e04855e63942a3bcb3fdb85fd324> /usr/lib/libz.1.dylib
0x1efd40000 - 0x1efd47fff libswiftAVFoundation.dylib arm64e  <345aca852fd53a2eaa00a8426ed76817> /usr/lib/swift/libswiftAVFoundation.dylib
0x1efd48000 - 0x1efdb4fff libswiftAccelerate.dylib arm64e  <a5e00c7fa16f32b2ba308cdb9bcd3bb5> /usr/lib/swift/libswiftAccelerate.dylib
0x1efdde000 - 0x1efde6fff libswiftCoreAudio.dylib arm64e  <abd4175a6d2a3772831feedaf4e0dfa1> /usr/lib/swift/libswiftCoreAudio.dylib
0x1efde7000 - 0x1efdebfff libswiftCoreData.dylib arm64e  <66b8ad99b1733ac487ac9daa6ff386a0> /usr/lib/swift/libswiftCoreData.dylib
0x1efdec000 - 0x1efdecfff libswiftCoreFoundation.dylib arm64e  <9265bb891f9032208a1425f57a2adf87> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1efded000 - 0x1efdedfff libswiftCoreImage.dylib arm64e  <9182520bf43735bf971e90e0adf779be> /usr/lib/swift/libswiftCoreImage.dylib
0x1efdee000 - 0x1efdf0fff libswiftCoreLocation.dylib arm64e  <9cbe847ed0503817866357a9f46dbda6> /usr/lib/swift/libswiftCoreLocation.dylib
0x1efdf1000 - 0x1efdfafff libswiftCoreMIDI.dylib arm64e  <3461123e55a6351ea96db77f71ac4347> /usr/lib/swift/libswiftCoreMIDI.dylib
0x1efdfb000 - 0x1efdfefff libswiftCoreML.dylib arm64e  <2f86108a1efa34f4be567f92fb935b4c> /usr/lib/swift/libswiftCoreML.dylib
0x1efdff000 - 0x1efe39fff libswiftCoreMedia.dylib arm64e  <a98b65bbd52c3045a6ba986c3f3a9b26> /usr/lib/swift/libswiftCoreMedia.dylib
0x1efe46000 - 0x1efe4ffff libswiftDarwin.dylib arm64e  <5807f42dfda437208ff708a42d33566e> /usr/lib/swift/libswiftDarwin.dylib
0x1efe56000 - 0x1efe60fff libswiftIntents.dylib arm64e  <3aa039af604031208498eedac9ce240f> /usr/lib/swift/libswiftIntents.dylib
0x1efe6e000 - 0x1efe72fff libswiftMetal.dylib arm64e  <fab6b0755f813d81887f35705feb85ed> /usr/lib/swift/libswiftMetal.dylib
0x1efee5000 - 0x1efee6fff libswiftQuartzCore.dylib arm64e  <6e6a8ea16ed93fee9b57fa016963f971> /usr/lib/swift/libswiftQuartzCore.dylib
0x1eff1f000 - 0x1eff20fff libswiftVision.dylib arm64e  <ff3baa1b6b6d3ea98cd75883ef8c52e0> /usr/lib/swift/libswiftVision.dylib
0x1eff26000 - 0x1eff38fff libswiftos.dylib arm64e  <679ca098d588319b804dfe96291dfdc2> /usr/lib/swift/libswiftos.dylib
0x1eff39000 - 0x1eff4cfff libswiftsimd.dylib arm64e  <effb0becaa283090a3ddd1bb65a4d708> /usr/lib/swift/libswiftsimd.dylib
0x1eff4d000 - 0x1eff52fff libcache.dylib arm64e  <e8008b66f5e93d40a485fc01e4005de8> /usr/lib/system/libcache.dylib
0x1eff53000 - 0x1eff60fff libcommonCrypto.dylib arm64e  <2642db07006d3e4da311aaa8a3765aa3> /usr/lib/system/libcommonCrypto.dylib
0x1eff61000 - 0x1eff64fff libcompiler_rt.dylib arm64e  <11006ab7252c34288b4bb752d35170b3> /usr/lib/system/libcompiler_rt.dylib
0x1eff65000 - 0x1eff6dfff libcopyfile.dylib arm64e  <c0ac35bc1fa6375fbc02457fc85bf2f1> /usr/lib/system/libcopyfile.dylib
0x1f0053000 - 0x1f0053fff liblaunch.dylib arm64e  <533ec8c5aade3debaad3ab3a13505298> /usr/lib/system/liblaunch.dylib
0x1f0054000 - 0x1f0059fff libmacho.dylib arm64e  <ff7ec7be2e073304a6b671f5443105f3> /usr/lib/system/libmacho.dylib
0x1f005a000 - 0x1f005cfff libremovefile.dylib arm64e  <57a846953c1c3fd088d1306786bcff80> /usr/lib/system/libremovefile.dylib
0x1f005d000 - 0x1f005efff libsystem_blocks.dylib arm64e  <460d7d6f783a3e588e34dec38eae1938> /usr/lib/system/libsystem_blocks.dylib
0x1f005f000 - 0x1f0061fff libsystem_collections.dylib arm64e  <6bbbbbef813d3fe498018ca5a772e7ad> /usr/lib/system/libsystem_collections.dylib
0x1f0062000 - 0x1f0066fff libsystem_configuration.dylib arm64e  <0c1135ceb3f73af280dc4c5f0683687e> /usr/lib/system/libsystem_configuration.dylib
0x1f0067000 - 0x1f0079fff libsystem_containermanager.dylib arm64e  <fcc1a0a9fef73d0aa26cf14c40c7018b> /usr/lib/system/libsystem_containermanager.dylib
0x1f007a000 - 0x1f007bfff libsystem_coreservices.dylib arm64e  <0a689c1f686e36438d53b96905739505> /usr/lib/system/libsystem_coreservices.dylib
0x1f007c000 - 0x1f0085fff libsystem_darwin.dylib arm64e  <79c4abecdb93344baf9177d91ddc7a64> /usr/lib/system/libsystem_darwin.dylib
0x1f0086000 - 0x1f008efff libsystem_dnssd.dylib arm64e  <0ba7db32bd5e3e05a500c78112b5f2c6> /usr/lib/system/libsystem_dnssd.dylib
0x1f008f000 - 0x1f0091fff libsystem_featureflags.dylib arm64e  <9276d11149903a068474c9051685b4d5> /usr/lib/system/libsystem_featureflags.dylib
0x1f0092000 - 0x1f00bffff libsystem_m.dylib arm64e  <14e5ee34a36e3891b4c2d42cdc33511e> /usr/lib/system/libsystem_m.dylib
0x1f00c0000 - 0x1f00c6fff libsystem_platform.dylib arm64e  <ad0293661e3032cd8e4ca025b49e513b> /usr/lib/system/libsystem_platform.dylib
0x1f00c7000 - 0x1f00c7fff libsystem_product_info_filter.dylib arm64e  <953dfc0db6423864b345dbde8efb5862> /usr/lib/system/libsystem_product_info_filter.dylib
0x1f00c8000 - 0x1f00d3fff libsystem_pthread.dylib arm64e  <85aa620c0b543f75b11f0d45cdd71628> /usr/lib/system/libsystem_pthread.dylib
0x1f00d4000 - 0x1f00d7fff libsystem_sandbox.dylib arm64e  <416cf773b03c39ba86787a7af263eed3> /usr/lib/system/libsystem_sandbox.dylib
0x1f00d8000 - 0x1f00e2fff libunwind.dylib arm64e  <65659b257a80323faf04023c255731b7> /usr/lib/system/libunwind.dylib
0x1f00e3000 - 0x1f0119fff libxpc.dylib arm64e  <3b74544bb441312d8a64dd5a3e60e74e> /usr/lib/system/libxpc.dylib
0x1f249d000 - 0x1f24affff SpotlightLinguistics arm64e  <78ccd543ceb03f9d9588df5188835a21> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics
paulb777 commented 3 years ago

Based on the discussion at https://stackoverflow.com/questions/46604380/pluginkit-pkservice-run-ios-keyboard-extension-error, this might be related to too much memory usage in an extension.

carloshwa commented 3 years ago

I don't think that is the case in my situation, since once I remove all Firebase libraries from my widget extension, I no longer get the crash.

paulb777 commented 3 years ago

The Firebase libraries, combined with the other libraries, might be enough to push the memory usage over the extension threshold.

Does it help to remove the Analytics library (from Firebase/Core) and only add Crashlytics?

Brett-Best commented 3 years ago

I’m also seeing a similar crash, this post on the developer forums may be relevant.

I have both the crash + analytics libraries included.

Here is a crash report downloaded in Xcode from Apple. Unsure why it’s not fully symbolicated, maybe due to the process name truncation 🤔

Incident Identifier: 24E776A0-A40E-463D-821B-5962C5D8A54E
Hardware Model:      iPhone8,1
Process:             medCompanion iOS Widget Extension [1295]
Path:                /private/var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/PlugIns/medCompanion iOS Widget Extension.appex/medCompanion iOS Widget Extension
Identifier:          au.com.medcompanion.app.extension-widget
Version:             40 (1.0.0)
AppVariant:          1:iPhone8,1:14
Beta:                YES
Code Type:           ARM-64 (Native)
Role:                unknown
Parent Process:      launchd [1]
Coalition:           au.com.medcompanion.app.extension-widget [605]

Date/Time:           2021-04-19 16:58:22.5909 +1000
Launch Time:         2021-04-19 16:58:21.6726 +1000
OS Version:          iPhone OS 14.4.2 (18D70)
Release Type:        User
Baseband Version:    8.40.01
Report Version:      104

Exception Type:  EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: Namespace RUNNINGBOARD, Code 0xdead10cc
Triggered by Thread:  0

Thread 0 name:
Thread 0 Crashed:
0   libsystem_kernel.dylib          0x00000001d749e644 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001d749da48 mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                  0x00000001ab6190fc __CFRunLoopServiceMachPort + 376 (CFRunLoop.c:2641)
3   CoreFoundation                  0x00000001ab613570 __CFRunLoopRun + 1176 (CFRunLoop.c:2974)
4   CoreFoundation                  0x00000001ab612ba0 CFRunLoopRunSpecific + 572 (CFRunLoop.c:3242)
5   Foundation                      0x00000001ac8327f8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228 (NSRunLoop.m:374)
6   Foundation                      0x00000001ac863964 -[NSRunLoop(NSRunLoop) run] + 88 (NSRunLoop.m:399)
7   libxpc.dylib                    0x00000001f3ea61c4 _xpc_objc_main + 684 (main.m:265)
8   libxpc.dylib                    0x00000001f3ea83bc xpc_main + 176 (init.c:1206)
9   Foundation                      0x00000001ac865b78 -[NSXPCListener resume] + 300 (NSXPCListener.m:448)
10  PlugInKit                       0x00000001d9e762a4 -[PKService run] + 396 (PKService.m:186)
11  PlugInKit                       0x00000001d9e75f14 +[PKService main] + 572 (PKService.m:115)
12  PlugInKit                       0x00000001d9e7669c +[PKService _defaultRun:arguments:] + 20 (PKService.m:233)
13  ExtensionKit                    0x00000001af97c958 EXExtensionMain + 80 (EXExtensionMain.m:23)
14  Foundation                      0x00000001ac9a11cc NSExtensionMain + 192 (NSExtensionMain.m:13)
15  libdyld.dylib                   0x00000001ab2f1568 start + 4

Thread 1 name:
Thread 1:
0   libsystem_kernel.dylib          0x00000001d74c432c statfs64 + 8
1   libsqlite3.dylib                0x00000001c46bc754 unixOpen + 392 (sqlite3.c:44498)
2   libsqlite3.dylib                0x00000001c46db460 sqlite3PagerSharedLock + 1940 (sqlite3.c:23869)
3   libsqlite3.dylib                0x00000001c46da56c sqlite3BtreeBeginTrans + 868 (sqlite3.c:74186)
4   libsqlite3.dylib                0x00000001c46f995c sqlite3VdbeExec + 3304 (sqlite3.c:95956)
5   libsqlite3.dylib                0x00000001c46f74f0 sqlite3_step + 312 (sqlite3.c:90602)
6   ...panion iOS Widget Extension  0x0000000104dc13c8 0x104d28000 + 627656
7   ...panion iOS Widget Extension  0x0000000104dc08e4 0x104d28000 + 624868
8   ...panion iOS Widget Extension  0x0000000104dbfba4 0x104d28000 + 621476
9   ...panion iOS Widget Extension  0x0000000104dc04ac 0x104d28000 + 623788
10  ...panion iOS Widget Extension  0x0000000104d5fca4 0x104d28000 + 228516
11  ...panion iOS Widget Extension  0x0000000104d5e678 0x104d28000 + 222840
12  ...panion iOS Widget Extension  0x0000000104d5454c 0x104d28000 + 181580
13  ...panion iOS Widget Extension  0x0000000104d8de80 0x104d28000 + 417408
14  ...panion iOS Widget Extension  0x0000000104d8d7f8 0x104d28000 + 415736
15  ...panion iOS Widget Extension  0x0000000104d8d004 0x104d28000 + 413700
16  ...panion iOS Widget Extension  0x0000000104d8cee4 0x104d28000 + 413412
17  ...panion iOS Widget Extension  0x0000000104db7edc 0x104d28000 + 589532
18  libdispatch.dylib               0x00000001ab2d1298 _dispatch_call_block_and_release + 24 (init.c:1454)
19  libdispatch.dylib               0x00000001ab2d2280 _dispatch_client_callout + 16 (object.m:559)
20  libdispatch.dylib               0x00000001ab27adcc _dispatch_lane_serial_drain$VARIANT$mp + 612 (inline_internal.h:2548)
21  libdispatch.dylib               0x00000001ab27b8a8 _dispatch_lane_invoke$VARIANT$mp + 424 (queue.c:3862)
22  libdispatch.dylib               0x00000001ab285338 _dispatch_workloop_worker_thread + 712 (queue.c:6601)
23  libsystem_pthread.dylib         0x00000001f3e7d5a4 _pthread_wqthread + 272 (pthread.c:2210)
24  libsystem_pthread.dylib         0x00000001f3e80874 start_wqthread + 8

Thread 2 name:
Thread 2:
0   libsystem_kernel.dylib          0x00000001d749e644 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001d749da48 mach_msg + 72 (mach_msg.c:103)
2   libdispatch.dylib               0x00000001ab28a84c _dispatch_mach_send_and_wait_for_reply + 528 (mach.c:812)
3   libdispatch.dylib               0x00000001ab28abe0 dispatch_mach_send_with_result_and_wait_for_reply$VARIANT$mp + 52 (mach.c:1998)
4   libxpc.dylib                    0x00000001f3e9d114 xpc_connection_send_message_with_reply_sync + 236 (connection.c:848)
5   CoreFoundation                  0x00000001ab6b4a18 __104-[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:]_block_invoke_2 + 36 (CFPrefsSearchListSource.m:1025)
6   CoreFoundation                  0x00000001ab58935c -[_CFXPreferences withConnectionForRole:performBlock:] + 44 (CFXPreferences.m:1385)
7   CoreFoundation                  0x00000001ab6b49cc __104-[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:]_block_invoke + 112 (CFPrefsSearchListSource.m:1024)
8   CoreFoundation                  0x00000001ab6b4840 CFPREFERENCES_IS_WAITING_FOR_SYSTEM_CFPREFSD + 92 (CFPrefsSearchListSource.m:947)
9   CoreFoundation                  0x00000001ab6b2c88 -[CFPrefsSearchListSource synchronouslySendDaemonMessage:andAgentMessage:andDirectMessage:replyHandler:] + 240 (CFPrefsSearchListSource.m:1044)
10  CoreFoundation                  0x00000001ab58d850 -[CFPrefsSearchListSource alreadylocked_generationCountFromListOfSources:count:] + 204 (CFPrefsSearchListSource.m:1077)
11  CoreFoundation                  0x00000001ab6b3680 -[CFPrefsSearchListSource alreadylocked_getDictionary:] + 444 (CFPrefsSearchListSource.m:1175)
12  CoreFoundation                  0x00000001ab584734 -[CFPrefsSearchListSource alreadylocked_copyValueForKey:] + 148 (CFPrefsSearchListSource.m:614)
13  CoreFoundation                  0x00000001ab584680 -[CFPrefsSource copyValueForKey:] + 56 (CFPrefsSource.m:876)
14  CoreFoundation                  0x00000001ab6f0eb0 __76-[_CFXPreferences copyAppValueForKey:identifier:container:configurationURL:]_block_invoke + 40 (CFXPreferences.m:1001)
15  CoreFoundation                  0x00000001ab6b6374 __108-[_CFXPreferences(SearchListAdditions) withSearchListForIdentifier:container:cloudConfigurationURL:perform:]_block_invoke + 356 (CFPrefsSearchListSource.m:1728)
16  CoreFoundation                  0x00000001ab6b5a60 normalizeQuintuplet + 348 (CFPrefsSearchListSource.m:73)
17  CoreFoundation                  0x00000001ab6b61e8 -[_CFXPreferences withSearchListForIdentifier:container:cloudConfigurationURL:perform:] + 124 (CFPrefsSearchListSource.m:1600)
18  CoreFoundation                  0x00000001ab583acc -[_CFXPreferences copyAppValueForKey:identifier:container:configurationURL:] + 140 (CFXPreferences.m:997)
19  CoreFoundation                  0x00000001ab6f3668 _CFPreferencesCopyAppValueWithContainerAndConfiguration + 124 (CFXPreferences.m:1846)
20  ...panion iOS Widget Extension  0x0000000104dc5a50 0x104d28000 + 645712
21  ...panion iOS Widget Extension  0x0000000104dc5ea0 0x104d28000 + 646816
22  ...panion iOS Widget Extension  0x0000000104d6afbc 0x104d28000 + 274364
23  ...panion iOS Widget Extension  0x0000000104d6be3c 0x104d28000 + 278076
24  ...panion iOS Widget Extension  0x0000000104d6bdb0 0x104d28000 + 277936
25  ...panion iOS Widget Extension  0x0000000104d6d320 0x104d28000 + 283424
26  libdispatch.dylib               0x00000001ab2d1298 _dispatch_call_block_and_release + 24 (init.c:1454)
27  libdispatch.dylib               0x00000001ab2d2280 _dispatch_client_callout + 16 (object.m:559)
28  libdispatch.dylib               0x00000001ab27adcc _dispatch_lane_serial_drain$VARIANT$mp + 612 (inline_internal.h:2548)
29  libdispatch.dylib               0x00000001ab27b8a8 _dispatch_lane_invoke$VARIANT$mp + 424 (queue.c:3862)
30  libdispatch.dylib               0x00000001ab285338 _dispatch_workloop_worker_thread + 712 (queue.c:6601)
31  libsystem_pthread.dylib         0x00000001f3e7d5a4 _pthread_wqthread + 272 (pthread.c:2210)
32  libsystem_pthread.dylib         0x00000001f3e80874 start_wqthread + 8

Thread 3:
0   libsystem_pthread.dylib         0x00000001f3e8086c start_wqthread + 0

Thread 4:
0   libsystem_pthread.dylib         0x00000001f3e8086c start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib         0x00000001f3e8086c start_wqthread + 0

Thread 6 name:
Thread 6:
0   libsystem_kernel.dylib          0x00000001d749e644 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001d749da48 mach_msg + 72 (mach_msg.c:103)
2   FirebaseCrashlytics             0x00000001051fc020 FIRCLSMachExceptionReadMessage + 56 (FIRCLSMachException.c:194)
3   FirebaseCrashlytics             0x00000001051fc020 FIRCLSMachExceptionServer + 104 (FIRCLSMachException.c:170)
4   libsystem_pthread.dylib         0x00000001f3e7bc9c _pthread_start + 288 (pthread.c:881)
5   libsystem_pthread.dylib         0x00000001f3e80880 thread_start + 8

Thread 7:
0   libsystem_pthread.dylib         0x00000001f3e8086c start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib         0x00000001f3e8086c start_wqthread + 0

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000010004005   x1: 0x0000000007000806   x2: 0x0000000000000000   x3: 0x0000000000000c00
    x4: 0x0000000000001e03   x5: 0x00000000ffffffff   x6: 0x0000000000000000   x7: 0x0000000280e70820
    x8: 0x00000000fffffbbf   x9: 0x0000000007000906  x10: 0x12e3bd60e6df00e4  x11: 0x000000b2f2421b76
   x12: 0x00000000016e3600  x13: 0x00000000000e1c4b  x14: 0x0000000000000100  x15: 0x0000010000000000
   x16: 0xffffffffffffffe1  x17: 0x0000010000000100  x18: 0x0000000000000000  x19: 0x0000000000000000
   x20: 0x00000000ffffffff  x21: 0x0000000000001e03  x22: 0x0000000000000c00  x23: 0x000000016b0d68f0
   x24: 0x0000000007000806  x25: 0x0000000000000000  x26: 0x0000000007000806  x27: 0x0000000000001e03
   x28: 0x000000016b0d6878   fp: 0x000000016b0d6780   lr: 0x00000001d749da48
    sp: 0x000000016b0d6730   pc: 0x00000001d749e644 cpsr: 0x60000000
   esr: 0x56000080  Address size fault

Binary Images:
0x104d28000 - 0x104dfbfff medCompanion iOS Widget Extension arm64  <239913812e0f3b56bbc7563afcab660a> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/PlugIns/medCompanion iOS Widget Extension.appex/medCompanion iOS Widget Extension
0x104ec8000 - 0x104fbffff Alamofire arm64  <3d245cbe41133f919796716778cd8b3d> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/Alamofire.framework/Alamofire
0x105010000 - 0x10503ffff AlamofireImage arm64  <bc05061a54fa3437aa6b1e4dd13f34ea> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/AlamofireImage.framework/AlamofireImage
0x10505c000 - 0x10507bfff CodableWrappers arm64  <7ca79825356a344280e4cf87f6543a43> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/CodableWrappers.framework/CodableWrappers
0x105098000 - 0x1050a7fff FBLPromises arm64  <3487b27ce45f3418bbfe413475339a5a> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/FBLPromises.framework/FBLPromises
0x1050b8000 - 0x1050bffff FirebaseCoreDiagnostics arm64  <61234b1386753addba1ade7c76f8068e> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics
0x1050d4000 - 0x10513ffff dyld arm64  <b92286197bbb32eeb90d689ac449aa60> /usr/lib/dyld
0x1051c0000 - 0x1051cffff FirebaseCore arm64  <db0f6ae159663920a9c7f3c3ed3c83b9> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/FirebaseCore.framework/FirebaseCore
0x1051e4000 - 0x10521ffff FirebaseCrashlytics arm64  <02a47d0ade253de1a5d75bc9ed7b0e1c> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/FirebaseCrashlytics.framework/FirebaseCrashlytics
0x105248000 - 0x10525ffff FirebaseInstallations arm64  <63ad45f38bbc33f1b571fec5f5403280> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/FirebaseInstallations.framework/FirebaseInstallations
0x105278000 - 0x105297fff GoogleDataTransport arm64  <98bda1932941384297c67017eff51100> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/GoogleDataTransport.framework/GoogleDataTransport
0x1052b0000 - 0x1052cbfff GoogleUtilities arm64  <62c17c30338b39b0913e94feba0a4b1d> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x1052e4000 - 0x10530ffff KeychainAccess arm64  <2daa37b42fd2371799a86ad5d90b7ca8> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/KeychainAccess.framework/KeychainAccess
0x105328000 - 0x10534bfff Moya arm64  <505ad02cb66a3f0e9a5cb3d40e417fe4> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/Moya.framework/Moya
0x105364000 - 0x1053affff PromiseKit arm64  <d4b64f170ac6349695a753d6a9d0ec0f> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/PromiseKit.framework/PromiseKit
0x1053d4000 - 0x1054bbfff PureSwiftUI arm64  <93561989a0b43cb896c62c38c56aa292> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/PureSwiftUI.framework/PureSwiftUI
0x1054fc000 - 0x10551bfff PureSwiftUITools arm64  <3dc22f519f213a8b8da7f6623edc8d2c> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/PureSwiftUITools.framework/PureSwiftUITools
0x105534000 - 0x1056f7fff SwiftUIX arm64  <fdcc171cdb1f30679c84df1627a17870> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/SwiftUIX.framework/SwiftUIX
0x1057a0000 - 0x1057a7fff nanopb arm64  <98d828323fab3f929cbb548218d4ff5c> /var/containers/Bundle/Application/D409EA07-220D-4C74-B577-F9BE07016C02/medCompanion iOS.app/Frameworks/nanopb.framework/nanopb
0x1057e0000 - 0x1057ebfff libobjc-trampolines.dylib arm64  <80646a348ec63d15a5642731a0a01eaa> /usr/lib/libobjc-trampolines.dylib
0x1ab271000 - 0x1ab2effff libdispatch.dylib arm64  <af27e74cbe4a3364bb27aed9916ce02d> /usr/lib/system/libdispatch.dylib
0x1ab2f0000 - 0x1ab326fff libdyld.dylib arm64  <0b475c783c123121b7f82b95b83daf44> /usr/lib/system/libdyld.dylib
0x1ab327000 - 0x1ab57efff libicucore.A.dylib arm64  <92f2f395bfe9387994a8c015489a3af4> /usr/lib/libicucore.A.dylib
0x1ab57f000 - 0x1ab928fff CoreFoundation arm64  <f3021642e3c033f89911dd303a6056d0> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1ab929000 - 0x1abac3fff CoreServices arm64  <21cf36fcc45436728228b93d58ff00c8> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1abac4000 - 0x1abb0cfff WirelessDiagnostics arm64  <c87b712e032536f9aabd356ce0854bf5> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1abb0d000 - 0x1abb86fff SystemConfiguration arm64  <25b9e2ed36593ef487cf2e7a3270883f> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1abb87000 - 0x1abc71fff CoreTelephony arm64  <2c92b898bf6a397eab4d409588151ca4> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1abc72000 - 0x1ac0f3fff CFNetwork arm64  <9d46b4f5cd9e31edba2d28f8bdc5e810> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1ac0f4000 - 0x1ac7b9fff libnetwork.dylib arm64  <bfa95fff721f35b3aff7a1e3aeea068b> /usr/lib/libnetwork.dylib
0x1ac7ba000 - 0x1ac82afff Accounts arm64  <1e2fba4c0dc03f4d89338072bfe04f16> /System/Library/Frameworks/Accounts.framework/Accounts
0x1ac82b000 - 0x1acac5fff Foundation arm64  <712a564e50583eacaf3a43bbd43d0d7e> /System/Library/Frameworks/Foundation.framework/Foundation
0x1acac6000 - 0x1ace2cfff ImageIO arm64  <7517393d394b3426a85f09eff1764832> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1ace2d000 - 0x1ace45fff libCGInterfaces.dylib arm64  <940a76a4a65032709a1c714594adb838> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1ace46000 - 0x1ad3d5fff CoreGraphics arm64  <57b3d61e4cd130dfb7b476d1ac5c4a16> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1ad3d6000 - 0x1ae79ffff UIKitCore arm64  <cc6e5ac7824835f68b422e25c93dcf0a> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1ae7a0000 - 0x1ae7bdfff libAccessibility.dylib arm64  <62a9b592f12437b5b040338f4d6e54a7> /usr/lib/libAccessibility.dylib
0x1ae7be000 - 0x1aea33fff QuartzCore arm64  <461501dd204f35169f5dbdd0ba19fda1> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1aea34000 - 0x1aea99fff BackBoardServices arm64  <ede04d70146a375ab026b0de23c64900> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1aea9a000 - 0x1aeb21fff TextInput arm64  <e039c6aadcf7351892c13176eae7626e> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1aeb22000 - 0x1aeb89fff libusrtcp.dylib arm64  <de34363495cf339c808d3d6a9c0c6fff> /usr/lib/libusrtcp.dylib
0x1aeb8a000 - 0x1aef29fff AppleMediaServices arm64  <8bdaee10df1f3b50ac4017ccd82da9f5> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1aef2a000 - 0x1af08dfff libswiftFoundation.dylib arm64  <a2d23659d9843f88b3152314a20bbe40> /usr/lib/swift/libswiftFoundation.dylib
0x1af08e000 - 0x1af43dfff libswiftCore.dylib arm64  <b2cf4e71ba9b36099dba8cb370367d8c> /usr/lib/swift/libswiftCore.dylib
0x1af43e000 - 0x1af455fff UIKitServices arm64  <cbf3581d49eb30c094cc56467af4e402> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1af456000 - 0x1af5a0fff Preferences arm64  <fb3b30abc4953fe6b1fe7269e67279e0> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1af5a1000 - 0x1af7affff ContactsUI arm64  <561b262943d73be299fc8eb069783183> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1af7b0000 - 0x1af969fff CoreText arm64  <6655bf5d06f232b2bf2356e7208c415d> /System/Library/Frameworks/CoreText.framework/CoreText
0x1af96a000 - 0x1af983fff ExtensionKit arm64  <68e3b55e8dae34f6bdf03f6e5bddbb28> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x1af984000 - 0x1af997fff ChronoServices arm64  <bf49939c6ffb3e56b47bcb7ef83ee6de> /System/Library/PrivateFrameworks/ChronoServices.framework/ChronoServices
0x1af998000 - 0x1afa15fff BaseBoard arm64  <835e9ff531943e978e9aa0d159f2f547> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1afa16000 - 0x1afc2bfff CoreDuet arm64  <747f915812903af3b819f7b83a49798b> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1afc2c000 - 0x1afd77fff Contacts arm64  <ccf0dc813dcf33cd9ac9734d165e26d7> /System/Library/Frameworks/Contacts.framework/Contacts
0x1afd78000 - 0x1b11e9fff GeoServices arm64  <2d9af4d7d362343a9293c51aa460338a> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1b11ea000 - 0x1b127cfff CoreLocation arm64  <45cea69167423034a070baf95767f548> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1b127d000 - 0x1b1419fff CloudKit arm64  <515356c956e1384ea39b0c01b5d0bee4> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1b141a000 - 0x1b1782fff CoreData arm64  <418ea9f61e9b3dd4bb1737c8fc35365a> /System/Library/Frameworks/CoreData.framework/CoreData
0x1b1783000 - 0x1b180ffff WidgetKit arm64  <ef817f4b53633b7e8047bcc19d667dd9> /System/Library/Frameworks/WidgetKit.framework/WidgetKit
0x1b1810000 - 0x1b2371fff SwiftUI arm64  <4f4dd7868797318babdce05543ca0118> /System/Library/Frameworks/SwiftUI.framework/SwiftUI
0x1b2372000 - 0x1b237cfff libswiftCoreGraphics.dylib arm64  <08e8e7a64362308aad2a4437cd7c27c0> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1b237d000 - 0x1b23bbfff AppSupport arm64  <1b30489e0af63febb04b645b0f9e60b4> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1b23bc000 - 0x1b24d9fff ManagedConfiguration arm64  <631f9e9983a53c21be7af91099ef8b80> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1b24da000 - 0x1b2546fff IMFoundation arm64  <9f009545d7a23a63b7ed3a11120266eb> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1b2547000 - 0x1b2649fff IDS arm64  <b7325747e4e2341f9afff0fc2b645584> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1b264a000 - 0x1b2788fff Security arm64  <8a534c875a613c3182a1a9a0a302a205> /System/Library/Frameworks/Security.framework/Security
0x1b2789000 - 0x1b2b86fff MediaPlayer arm64  <f6309cfae4cc38e9b85b7b7f96ca3a3d> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1b2b87000 - 0x1b2b9efff AudioSession arm64  <a0ee017de0b93f0c83959361e8a2b1f2> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x1b2b9f000 - 0x1b2d19fff AVFCore arm64  <1a7ee7dd3f5b38ee9f6e091afae55d42> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x1b2d1a000 - 0x1b3284fff Intents arm64  <b90c3d75d6f8348b98ebf6c36e005438> /System/Library/Frameworks/Intents.framework/Intents
0x1b32d1000 - 0x1b35d0fff CoreImage arm64  <0b613f10d8e33ccf97e4cc6c9c74c3a2> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1b35d1000 - 0x1b368bfff ColorSync arm64  <e9bc0a8306a63d6f81605257fa33b69a> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1b368c000 - 0x1b36c4fff CoreVideo arm64  <e26f74b884203134a417c900e4afd212> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1b36c5000 - 0x1b3deafff MediaToolbox arm64  <7f9b709ae3393200a588943837dede90> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1b3deb000 - 0x1b3eddfff CoreMedia arm64  <b4ac6b091d4934748d2806a8862da40a> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1b3ede000 - 0x1b4149fff AudioToolbox arm64  <7403032b46d63f9e838404339c7ef367> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1b414a000 - 0x1b4199fff CoreHaptics arm64  <e53f5a5f9f6337999d57c7c9471248f1> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1b419a000 - 0x1b41f6fff UserActivity arm64  <294d70edf445320894a9736ce00d1b31> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1b41f7000 - 0x1b42fafff UIFoundation arm64  <95d74bf6d60f3d0b939af6b614e4ac3f> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1b42fb000 - 0x1b4320fff libsystem_info.dylib arm64  <3d3b0c9a516331658eba2b97fa3e3090> /usr/lib/system/libsystem_info.dylib
0x1b4321000 - 0x1b439dfff libsystem_c.dylib arm64  <a07a482ae889392a8c66c328cf5320c9> /usr/lib/system/libsystem_c.dylib
0x1b439e000 - 0x1b43e6fff RunningBoardServices arm64  <ddd773981a773f39ac9cc36fa221d870> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1b43e7000 - 0x1b549bfff JavaScriptCore arm64  <5bd82887c23e3e37b0f21f9bf23321f5> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1b5a34000 - 0x1b5ab9fff ContactsFoundation arm64  <df4fbe44f4113496a14fe399634d91b1> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1b5aba000 - 0x1b5ce7fff HealthKit arm64  <f71bf5b3fabb316dbaa69d2ce625294f> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x1b5ce8000 - 0x1b5d09fff ProactiveEventTracker arm64  <2dbdc4b0d2d2394b995e79a2330c6747> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1b5d0a000 - 0x1b5d54fff Lexicon arm64  <eba3592c5d903cafa3ace5a726a75566> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1b5d55000 - 0x1b5dbdfff PersonalizationPortrait arm64  <ab891959fc5633c8a870dc08375b8133> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1b5dbe000 - 0x1b5e0afff CoreDuetContext arm64  <5974c36a40953694baa36b8110d34414> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1b5e0b000 - 0x1b5eb1fff IOKit arm64  <ab855ed1eb833c9eb5de293735aba7e9> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1b5eb2000 - 0x1b5ec1fff DataMigration arm64  <552910a7ae173403ba35a59209aa3ee6> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1b5ec2000 - 0x1b5f1afff SpringBoardServices arm64  <ab3e74131e2c3a22bf819dd981e92af7> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1b5f1b000 - 0x1b5f2cfff ContextKit arm64  <f20ff6dded66332aafc34718cdd4ffbc> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1b5f2d000 - 0x1b6193fff CoreMotion arm64  <a95bceffd01733c4aeeeeccb7b70343b> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1b6194000 - 0x1b62cafff EventKit arm64  <aa6c4c56721d354c9deb3dd66aafcbc0> /System/Library/Frameworks/EventKit.framework/EventKit
0x1b67eb000 - 0x1b6a64fff MediaRemote arm64  <e4aa2fb7ec183feda1303869684d6fa8> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1b6a65000 - 0x1b6bfdfff CoreUtils arm64  <44a8e8eefc9638959c6f8feca7273b3c> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1b6bfe000 - 0x1b6c13fff FamilyCircle arm64  <d1578ef150703dec8925e1e0ee330528> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1b6c14000 - 0x1b6c80fff CoreSpotlight arm64  <ba37870857b23498933918b8ad618b5d> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1b7066000 - 0x1b71fefff AssistantServices arm64  <a3df9f51ca773d24b2d7947e345f1422> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1b71ff000 - 0x1b72c0fff CoreUI arm64  <79ecf5d18f4a3c349f87d72dfbee8b84> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1b72c1000 - 0x1b730efff SafariSafeBrowsing arm64  <05a29890a6be3e5ebd131e9be1ed183c> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1b730f000 - 0x1b7cc1fff WebKit arm64  <b30197febb3e30b08a364c2084a74719> /System/Library/Frameworks/WebKit.framework/WebKit
0x1b7cc2000 - 0x1ba56afff WebCore arm64  <c5adbb516bc738bbad0f4a09ed2a41ec> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1ba56b000 - 0x1ba5c9fff libMobileGestalt.dylib arm64  <7ccc7cb306dc3abfb86172ba8fe12175> /usr/lib/libMobileGestalt.dylib
0x1ba5ca000 - 0x1ba5e5fff CommonUtilities arm64  <759200c8b57e3a46887bb474f4392784> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1ba5e6000 - 0x1ba74bfff IDSFoundation arm64  <d3637b85a6dd31708dfc54c39c71d6f1> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1ba74c000 - 0x1ba84afff IMSharedUtilities arm64  <6856689efa3832b19f2336bb30832dbe> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1ba84b000 - 0x1ba8ebfff CoreSuggestions arm64  <4d4f41ccb6a639d9a7cdb5c70cb4bbf2> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1ba8ec000 - 0x1ba985fff AddressBookLegacy arm64  <349428ab796b32beb90f311cb47d3129> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1ba986000 - 0x1ba9b6fff UserNotifications arm64  <53727fddc6043fa08871a6697500970d> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1ba9b7000 - 0x1baa38fff FrontBoardServices arm64  <e42fbc3b619c32aba2104a25f8b5373f> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1baa39000 - 0x1baa5bfff libsystem_malloc.dylib arm64  <8979fb06a3173c57afea2732627a08e5> /usr/lib/system/libsystem_malloc.dylib
0x1baa5c000 - 0x1bad15fff MapKit arm64  <5511a251589931c681b0d1d0ca5e434b> /System/Library/Frameworks/MapKit.framework/MapKit
0x1bad16000 - 0x1bb4e3fff VectorKit arm64  <eaacceea841e39efb900b5ec26b2ecb9> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1bb4e4000 - 0x1bb56dfff AuthKit arm64  <a9915ac1507c316ba1a3e34f758721f7> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1bb56e000 - 0x1bb5fcfff AppleAccount arm64  <242996fac30b32e2b851b415c50d63ea> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1bb5fd000 - 0x1bb702fff AVFAudio arm64  <b31e053142ae36e2814285398a9687ad> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1bb703000 - 0x1bb962fff AudioToolboxCore arm64  <c498629445da3d4da0651ae13ab9eba2> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1bb994000 - 0x1bbc2afff StoreServices arm64  <3c259718d1b036ac8d8d917acf0cca0f> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1bbc2b000 - 0x1bbda1fff Sharing arm64  <41eb92837591324aab739e0f14fa4172> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1bbda2000 - 0x1bbe42fff ShareSheet arm64  <75bdaae974073dfb89d3d4e21253f4a5> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1bbe43000 - 0x1bbf2afff CoreParsec arm64  <2f24b25b4c45393a840775bdd3133dec> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1bbf2b000 - 0x1bbf70fff PhotoFoundation arm64  <e2155bb66bc3343585e3e12b63f83747> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1bbf71000 - 0x1bc1a6fff Photos arm64  <5ed9a661819d3e87a25ef3e3628b0fc2> /System/Library/Frameworks/Photos.framework/Photos
0x1bc1a7000 - 0x1bc887fff PhotoLibraryServices arm64  <56fcbd6bd7ad3a05a6b70b73929cdae2> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1bc888000 - 0x1bc93ffff AssetsLibraryServices arm64  <da456e0d967231ad8834e5bef3e7a08f> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1bc940000 - 0x1bc98ffff MobileBackup arm64  <dd231c1dd126340f9cca670f38dce8c8> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1bc990000 - 0x1bc9a3fff MSUDataAccessor arm64  <7b35955407f6351c95226c24c1a941dd> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x1bc9a4000 - 0x1bc9c9fff MobileAsset arm64  <10e354c09e6b387ebece24aa36daa320> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1bc9ca000 - 0x1bc9d9fff libsystem_networkextension.dylib arm64  <cbedb2f58d9d3daaa677620746c058bf> /usr/lib/system/libsystem_networkextension.dylib
0x1bc9da000 - 0x1bcc17fff NetworkExtension arm64  <6f0b7bec69ad3e5dad05d06c24709f4c> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1bcc4c000 - 0x1bd00dfff CoreML arm64  <b6b01a27efc83e4db905e7915d3a3c05> /System/Library/Frameworks/CoreML.framework/CoreML
0x1bd00e000 - 0x1bd836fff Espresso arm64  <4c74ae79125931afa8c7e612c471d344> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1bd837000 - 0x1bd92ffff VideoToolbox arm64  <8bc9932004bb395695da4707de68cc3e> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1bd930000 - 0x1bd979fff OnBoardingKit arm64  <04a0704243503fed9c89b3b9f15a27c7> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x1bda6d000 - 0x1bda7cfff AXCoreUtilities arm64  <4e7719479e4b3a7ca1ad3e492d6a3c7a> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1be8ba000 - 0x1bea29fff Montreal arm64  <1858d0f1ff7d36fdb57e8d3992e5e40d> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1bea2a000 - 0x1beb36fff LanguageModeling arm64  <1db8707b18983b48a0525e7e7049919f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1beb37000 - 0x1beb3ffff InternationalSupport arm64  <466a73016cc730a8a3980d37b563e281> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1beb40000 - 0x1bed7cfff iTunesCloud arm64  <ec6e271ce2743b6592a6f1bda19c164b> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1bed7d000 - 0x1bedb9fff libswiftUIKit.dylib arm64  <3f00f112f3033159a8013b87fca9e894> /usr/lib/swift/libswiftUIKit.dylib
0x1beec7000 - 0x1bef69fff CalendarDatabase arm64  <ad233efa69373d4c960ebfa568339167> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1bef6a000 - 0x1befb2fff Notes arm64  <75209d6a457c3ba9be9716b2b685c9e8> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x1befb3000 - 0x1bf08afff LinkPresentation arm64  <848a91007edc3576a021d294f000f68e> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1bf08b000 - 0x1bf17cfff Combine arm64  <7eafe790735a3c7ca373a544d8f8bc4c> /System/Library/Frameworks/Combine.framework/Combine
0x1bf203000 - 0x1bf214fff UniformTypeIdentifiers arm64  <0d4ae481279b38be9efccc4c01ed8c00> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1bf215000 - 0x1bf291fff CloudDocs arm64  <0bd19be9432e3a83b3cc75747cfb333d> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1bf292000 - 0x1bf481fff Message arm64  <77d0f2f5d5c031b79cd53e59916d2854> /System/Library/PrivateFrameworks/Message.framework/Message
0x1bf482000 - 0x1bf4f9fff EmailFoundation arm64  <3546fff2f77b30dca3424e02c6c415ac> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x1bf77c000 - 0x1bf7b7fff MediaServices arm64  <7c9e21e5fee53a9c83f0833e36eb5500> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1bf7b8000 - 0x1bf941fff SearchFoundation arm64  <e8da530a718732f8a155277f5030dbdf> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1bf942000 - 0x1bf99afff WebBookmarks arm64  <26944ea47d293d959ec5b969059f2e9a> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1bfa16000 - 0x1bfa4bfff libobjc.A.dylib arm64  <316491e870633cd0993b96f8b8ac54d4> /usr/lib/libobjc.A.dylib
0x1bfa4c000 - 0x1bfaabfff LoggingSupport arm64  <23a8ad01b41e3766a91c8f85fb233a99> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1bfaac000 - 0x1bfb05fff libc++.1.dylib arm64  <0be75e2f3ed538c2839715f168ce0a24> /usr/lib/libc++.1.dylib
0x1bfb06000 - 0x1bfb1efff libc++abi.dylib arm64  <d5ca7f692cc13501aff22b5e6b74668e> /usr/lib/libc++abi.dylib
0x1bfb1f000 - 0x1bfb5dfff SetupAssistant arm64  <9bc49587dfbe3af790bd37aa297aef49> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1bfb5e000 - 0x1bfb77fff OctagonTrust arm64  <aff408e5aaa83193adae04e8dad631d7> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x1bfc90000 - 0x1bfcd0fff CoreAutoLayout arm64  <011f5ca5d31b3cdc83c2c7cb66064075> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1bfcd1000 - 0x1bfe29fff Network arm64  <f3cce4bd736d3a908705dc657249a3a9> /System/Library/Frameworks/Network.framework/Network
0x1bfe2a000 - 0x1bfe5efff MobileKeyBag arm64  <dc6e0009179231fd818209dd2b7d2309> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1c0086000 - 0x1c0099fff BaseBoardUI arm64  <a36ec87444ca309785a683fb2bd00c1f> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1c009a000 - 0x1c0134fff libvDSP.dylib arm64  <97ce479c5c9337f7a5deb208f15bb80a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1c0135000 - 0x1c0167fff libAudioToolboxUtility.dylib arm64  <8913e5a358c93ad2a8ed30f32ef60ff1> /usr/lib/libAudioToolboxUtility.dylib
0x1c0323000 - 0x1c03abfff CoreNLP arm64  <f87509aa92fc3814911285cfd89abd2b> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1c03ac000 - 0x1c04b8fff FileProvider arm64  <9fca752e2e8f3a52bef865acd263d21c> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1c04b9000 - 0x1c04c9fff BiomeStorage arm64  <2c59bbf36ec13d5d8c9648385ddb2551> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x1c04ca000 - 0x1c04e0fff libswiftDispatch.dylib arm64  <c28b364d3d33394d9ad021af299c5a53> /usr/lib/swift/libswiftDispatch.dylib
0x1c04e1000 - 0x1c0516fff DataDetectorsCore arm64  <3ee31e3c1bfa341999523dabd62c2c8b> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1c0517000 - 0x1c05a2fff Symbolication arm64  <ce4e42651b1d3069b44c65ef4a7681c7> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1c05a3000 - 0x1c05c0fff CrashReporterSupport arm64  <66920d9e89183f7f95f83ec09fe19b17> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1c061a000 - 0x1c06e3fff TelephonyUtilities arm64  <7eb755f9ae1131bab4f05f7a52f046cb> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1c071a000 - 0x1c0901fff MPSNeuralNetwork arm64  <2ddb7920ccce3fa89ab61e0604cfe34a> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1c0902000 - 0x1c0955fff MPSCore arm64  <0288a499f1c93e2da2c0eab4895596be> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1c0aa8000 - 0x1c0b10fff CalendarFoundation arm64  <b5b7223fd5a8366590b6c297b587fbb6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1c0b6f000 - 0x1c0c5cfff NLP arm64  <71486dbf3d053dbca7e02a91d351f6b2> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1c0c5d000 - 0x1c0c84fff AppSupportUI arm64  <d7297aca15c4322092624857a59102f1> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1c0c8d000 - 0x1c0ce0fff FTServices arm64  <768b840106d13ed694d29b4f01fd054a> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1c0ce1000 - 0x1c0d8dfff libboringssl.dylib arm64  <b0aebbb9a3823b7a8385ff81e39d30b9> /usr/lib/libboringssl.dylib
0x1c0d8e000 - 0x1c0da4fff ProtocolBuffer arm64  <2e5031f669533959b8d9033f1b73109f> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1c0da5000 - 0x1c0ea7fff AVKit arm64  <19a8e08aeb193af6a88f504dabdd57a2> /System/Library/Frameworks/AVKit.framework/AVKit
0x1c100b000 - 0x1c1019fff AssertionServices arm64  <d9ae3f1476a6308dbe748d10877867bc> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1c101a000 - 0x1c1041fff CloudServices arm64  <e33da063feb436ba9113527263f1e1f5> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x1c1094000 - 0x1c116dfff Metal arm64  <41df550eaeb23ad28370a0e6d8e51186> /System/Library/Frameworks/Metal.framework/Metal
0x1c116e000 - 0x1c12a6fff MediaExperience arm64  <2734505d74c530b7ab63f2a51113827b> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1c16a5000 - 0x1c16bbfff libsystem_trace.dylib arm64  <3b5f5d25a59c3d7e90bef8d6481d1ca9> /usr/lib/system/libsystem_trace.dylib
0x1c16bc000 - 0x1c16ecfff CoreServicesInternal arm64  <0219058001383d699625491e9d0270b4> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1c16ed000 - 0x1c1750fff SafariCore arm64  <b1b6d0aa362b3252b31551ab1831b499> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1c1751000 - 0x1c1976fff SafariShared arm64  <e73429cdd256371881cd9e395207e484> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1c1977000 - 0x1c1a0dfff AppStoreDaemon arm64  <6e5c3e0af207333198f464164a324fd0> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1c1df7000 - 0x1c1e3cfff ContactsAutocompleteUI arm64  <486e3635c5713fd2a149f377a0a9cc00> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x1c1e3d000 - 0x1c1f6ffff MessageUI arm64  <77d47332e80a3eb8bd40aa0b8f52e711> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x1c2296000 - 0x1c2330fff SAObjects arm64  <8312f76344813d059317ac544b767429> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1c2331000 - 0x1c2374fff VoiceServices arm64  <848ad3c04fc9303c8b6dbb4bcd78017c> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1c2375000 - 0x1c237dfff GraphicsServices arm64  <cd6a7e8664ba3ae9883bde938bf72ddc> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1c237e000 - 0x1c23d1fff DeviceManagement arm64  <61bf4e4f726f3c1fb40e3157e4433c4d> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1c23d2000 - 0x1c2539fff Translation arm64  <1f8ed449ea653058b2a58a7f67b8f0de> /System/Library/PrivateFrameworks/Translation.framework/Translation
0x1c253a000 - 0x1c254efff PowerLog arm64  <0abaa5ff17d53a0ca91cc0fcb1f80af4> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1c254f000 - 0x1c2576fff DuetActivityScheduler arm64  <50c073e701a6369f875dd154ec5707ce> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1c3c12000 - 0x1c3eb2fff Vision arm64  <a2709f110e1036d68f1f7caf9a5c817e> /System/Library/Frameworks/Vision.framework/Vision
0x1c3eb3000 - 0x1c3f0cfff DataAccess arm64  <6ca4ba1a2d0e31449c9dfd22e1fea0de> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x1c3f0d000 - 0x1c3f77fff ProactiveSupport arm64  <27fe1c6ca9ae33278e59fd7853deeb9b> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1c3fa3000 - 0x1c3fc0fff ApplePushService arm64  <db969d5ef09f38f2b5efe6ea10b6f53d> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1c3fc1000 - 0x1c3fe8fff BoardServices arm64  <64149608191932deadb6334d43352aba> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1c3fe9000 - 0x1c3ff4fff libswiftCloudKit.dylib arm64  <bdadbf71602d3c66a6c563bc315cb86a> /usr/lib/swift/libswiftCloudKit.dylib
0x1c4138000 - 0x1c4167fff libncurses.5.4.dylib arm64  <45c7427247ec38be8f88584d9c979828> /usr/lib/libncurses.5.4.dylib
0x1c4168000 - 0x1c41b5fff OSAnalytics arm64  <06cdb58103b037bd9623f2788c93bec0> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1c41b6000 - 0x1c4211fff CoreBluetooth arm64  <069814f8d9f43907a038a13a0fa694dd> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1c43df000 - 0x1c4422fff TemplateKit arm64  <d363b30eaf8f34e2a3b700730971b36b> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x1c4423000 - 0x1c4455fff MobileInstallation arm64  <ffbf6a24d93c374c95705163d9c10301> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1c4456000 - 0x1c44e4fff libTelephonyUtilDynamic.dylib arm64  <d3ceb02492f5309fa5904898682cb14d> /usr/lib/libTelephonyUtilDynamic.dylib
0x1c44e5000 - 0x1c454dfff NanoRegistry arm64  <bca7195fc86d3006bbf6267ed1daa1ab> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1c4629000 - 0x1c4646fff CoreMaterial arm64  <9004dec242eb3daaa32e9c8a672e3a2d> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1c46b7000 - 0x1c4839fff libsqlite3.dylib arm64  <b527dcac5745350191cf49fc9654e1a7> /usr/lib/libsqlite3.dylib
0x1c483a000 - 0x1c48f8fff AVFCapture arm64  <083b23eb2dc83813817b6f1a40c9ec24> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1c48f9000 - 0x1c4c41fff CMCapture arm64  <bd2c0fd0b1f9374f9d592b5266446eff> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1c4d8c000 - 0x1c4fe4fff MobileSpotlightIndex arm64  <aedbc0ccc55c3cef8a03071deeacca89> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1c4fe5000 - 0x1c5087fff Email arm64  <54c455b2c42d3ed1adce65ab0587d99e> /System/Library/PrivateFrameworks/Email.framework/Email
0x1c53f9000 - 0x1c5403fff libsystem_notify.dylib arm64  <70ff494d1cc33fcabadd1c308d560be4> /usr/lib/system/libsystem_notify.dylib
0x1c5404000 - 0x1c5446fff CryptoTokenKit arm64  <6b436ed2f863383d8a9c0e092ad509c8> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1c54ae000 - 0x1c5521fff libcorecrypto.dylib arm64  <71eb44aa30653ab783db3c46f4579aba> /usr/lib/system/libcorecrypto.dylib
0x1c5522000 - 0x1c5544fff UserManagement arm64  <d39a0e5f367e3e589bfd2581a678151f> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1c5615000 - 0x1c562bfff libsystem_asl.dylib arm64  <727b6ce7a069389bbe9bbabaa54a6a80> /usr/lib/system/libsystem_asl.dylib
0x1c562c000 - 0x1c564efff AppSSO arm64  <8be5c97d5ddc358684222de20a42baaf> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1c564f000 - 0x1c566cfff SharedWebCredentials arm64  <90cb83eaa4a2348cb711928e8ddf3036> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1c566d000 - 0x1c5841fff SafariServices arm64  <a21e239d21553d6bad658aef87a931f4> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1c5897000 - 0x1c58cdfff DataAccessExpress arm64  <844e2d8b48aa336f862d35d8ebafc52a> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1c58ce000 - 0x1c5904fff CoreServicesStore arm64  <3b63de3682393849a845078109be9bc8> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1c5905000 - 0x1c5929fff CoreAnalytics arm64  <d100cc918f123448878ee0530486ea6e> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1c592a000 - 0x1c5935fff SymptomAnalytics arm64  <f12bd910f3843b63a0b0fee4f62f157a> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1c5b11000 - 0x1c5b20fff NanoPreferencesSync arm64  <35588eb093e033f28619db72e46b13fa> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1c62e1000 - 0x1c630bfff IconServices arm64  <6817ef4a91f0384a9ef1fb083e565d6f> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1c6d68000 - 0x1c7003fff vImage arm64  <959df3bb96723cd7b5f9fb93a5c7623e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1c7bf1000 - 0x1c7dcafff IMCore arm64  <59ac957ba07638e58d9eed68a719e1d7> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1c7eba000 - 0x1c7ed1fff IAP arm64  <fb869b32356d3e4e833cc3417f04ef3f> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x1c7ed2000 - 0x1c7f27fff ktrace arm64  <be11e473ae0a3498bc8a896f919e03ff> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1c8210000 - 0x1c821dfff Celestial arm64  <878660a5b83a39059539e45b73904dbd> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1c82c2000 - 0x1c8306fff Pegasus arm64  <7c601315774a39099c2ccbd731dcf59c> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1c8307000 - 0x1c848afff WebKitLegacy arm64  <c376e15a66523294abee29906115d82f> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1c84f9000 - 0x1c856afff ClassKit arm64  <4b7cbe895a353a239e026ca1c29da47d> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1c856b000 - 0x1c85aefff StoreKit arm64  <581f5293fc4230ce9ad75645786ed5b0> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1c932d000 - 0x1c9337fff IOMobileFramebuffer arm64  <7b0b01095440339ea8627dce97bc123e> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1c9338000 - 0x1c93aafff ScreenTimeCore arm64  <8c212b471c3236309e72a93b27d1fc4e> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x1c9451000 - 0x1c95c5fff CloudPhotoLibrary arm64  <4bfe87f452a63274b30299ab6c2df3d1> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1c95c6000 - 0x1c9889fff MusicLibrary arm64  <a9a31928e6803e1d814bf53b14040e1d> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1c988a000 - 0x1c98eefff CallKit arm64  <8bef8304d42131ff97c6e5335fe009da> /System/Library/Frameworks/CallKit.framework/CallKit
0x1c998e000 - 0x1c99acfff PrototypeTools arm64  <6c5b57c08ade33fdbeac79b4e6bfc7ca> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1c99ad000 - 0x1c99d8fff PersistentConnection arm64  <c5618aedf8e03be188cb5a1a053668a1> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1c9ab0000 - 0x1c9ad4fff BiomeStreams arm64  <06e874ea41fc3f95bba708f51c9e83ae> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x1c9aef000 - 0x1c9d91fff PencilKit arm64  <7fae02eeed593542a2e4890a7be0f45e> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x1c9e39000 - 0x1c9e49fff libswiftUniformTypeIdentifiers.dylib arm64  <15848f8f8a353b49a58b0f0ede5d4838> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
0x1c9e4a000 - 0x1c9fb9fff CoreSpeech arm64  <a43b36cfb58938bfbc3928e46ef772a7> /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech
0x1c9fba000 - 0x1ca109fff IMDPersistence arm64  <1037775c79cc36d1b53fc2285f4193c6> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1ca333000 - 0x1ca3e6fff SafariSharedUI arm64  <637f1be951bb3b7786f4d0d70cefe7cf> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
0x1ca403000 - 0x1ca418fff AppSSOCore arm64  <8f2c18db08b43f958ea38be752319a76> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x1ca423000 - 0x1ca439fff CoreFollowUp arm64  <85c0e813b8893365b8521e93e85225ba> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1ca43a000 - 0x1ca4aefff Rapport arm64  <20a8df4a602e3447a7e7a891171115cb> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1ca58c000 - 0x1ca59dfff Categories arm64  <d73c2541bd5e352b85c6fcdc40634c2c> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1ca85d000 - 0x1ca884fff LocationSupport arm64  <6cd5daba139e3ae29ce10ebeddabb1f6> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1ca885000 - 0x1ca8b7fff iCalendar arm64  <c764fbd53b8b377fb21a89cfd69eeed6> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1ca8b8000 - 0x1ca8e1fff CoreAccessories arm64  <aac7f3b1ff073c1693188a35d1907f80> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x1ca8e2000 - 0x1ca9e4fff ConfigurationEngineModel arm64  <e7cc0bb8ef72335da7a88fccd48b24ca> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1ca9e5000 - 0x1caa0ffff CacheDelete arm64  <c4f894fc98c53fd58eb6554cea94bea0> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1caa10000 - 0x1caa89fff CVNLP arm64  <7525d5da6e8d3e169405897b8e4103b8> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x1cabd1000 - 0x1cabd3fff OSAServicesClient arm64  <be6b47816dfb3c40a033940f9593bf4e> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1cabd4000 - 0x1cabd6fff BiomeFoundation arm64  <25079b7b99843316ae2802923bd789a5> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x1cabd7000 - 0x1cac2ffff ProtectedCloudStorage arm64  <fde7d5b9f4743fa3ba9f9acf1bb4e138> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1cac30000 - 0x1cac66fff C2 arm64  <39450f97cb1b3c4cb3dc1e20446c3c7f> /System/Library/PrivateFrameworks/C2.framework/C2
0x1cac67000 - 0x1cacbbfff DifferentialPrivacy arm64  <ffd9cd16cf883542afe7f441d44b2bdc> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1cae84000 - 0x1cb64bfff EmbeddedAcousticRecognition arm64  <4ad6701ea9d63502b1041b2e5440777b> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
0x1cb64c000 - 0x1cb6c8fff SiriInstrumentation arm64  <6e650b2079de34ab9718072a70070f56> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1cb6c9000 - 0x1cb70afff BiometricKit arm64  <3d8fb7ac1b9234af91fd4bbfc2ea1cd4> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1cb74a000 - 0x1cb7f9fff CoreSymbolication arm64  <c6ef8c41fc6f392f8fc82a529fc43c13> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1cb867000 - 0x1cb912fff SpeakerRecognition arm64  <b96c00adab103e448b053cf8e09ca14e> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition
0x1cbf79000 - 0x1cbf7afff MessageSupport arm64  <a186da3a12343865b445d121bc1240c6> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x1cbf7b000 - 0x1cbf8cfff IOSurface arm64  <7fda963ffbea30cbb159fa2e6b31a4db> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1cbf8d000 - 0x1cbfedfff MobileWiFi arm64  <103854cf9c3731678ef32bd552daf091> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1cc380000 - 0x1cc39bfff DoNotDisturb arm64  <91b040144cbf3198bfcdf2623d4ca3ea> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x1cc402000 - 0x1cc4a8fff MMCS arm64  <63ab94a66408359bbb6e0210a107c989> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1cc518000 - 0x1cc551fff libGLImage.dylib arm64  <75799714ceba33b0bb27c252aad3bab5> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1cc552000 - 0x1cc559fff libsystem_symptoms.dylib arm64  <a8784ea9ecb939fabdac695877fc2b4b> /usr/lib/system/libsystem_symptoms.dylib
0x1cc59f000 - 0x1ccb4dfff CoreAudio arm64  <fa62c18234d03964b331be7d6d1ccb66> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1ccb4e000 - 0x1ccb63fff ContactsDonation arm64  <137ce321208e36f496f03f4880565687> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1ccb64000 - 0x1ccb81fff IntentsCore arm64  <a2691f04578731abbd33b2432f00dbba> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x1ccc20000 - 0x1ccc57fff ImageCaptureCore arm64  <28f0c53baf1c3399bd89629848e3033a> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1cccad000 - 0x1ccd12fff RenderBox arm64  <4d21ed49ba043fc5ab467b7f3854f9a2> /System/Library/PrivateFrameworks/RenderBox.framework/RenderBox
0x1ccdae000 - 0x1cceedfff Navigation arm64  <465a213174d13ba789c0c586fefd59a2> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1cceee000 - 0x1ccf09fff SafariFoundation arm64  <a8ba11c22b2b37308ffedb77d6412553> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1cd07f000 - 0x1cd092fff MaterialKit arm64  <7f839117aed9309ea953962e13dcd583> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1cd1f8000 - 0x1cd208fff CoreAUC arm64  <771693f7b44e33849049097763f88231> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1cda1f000 - 0x1cda2ffff SettingsFoundation arm64  <a313bc4b100a356ca9f4ce21342fdd22> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1ce3f1000 - 0x1ce44cfff ToneLibrary arm64  <a0fa2392750034bcb79f7e336d9181e0> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1cec5a000 - 0x1cec67fff MediaSafetyNet arm64  <cd283425ee4c3211bcb52517201e51b4> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1cec68000 - 0x1ceca3fff TimeSync arm64  <f8d3ba933f1f332ba9dbf285d0570f31> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1ced34000 - 0x1ced76fff ExposureNotification arm64  <2c02287b207b3c1fba903d6bdc1fdd5a> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1cf3d0000 - 0x1cf3d9fff CoreTime arm64  <c52a0364da873cde8c749272eec9229f> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1cfd48000 - 0x1cfe44fff TextRecognition arm64  <b0bfe6a7b64c31baa160cf479c3cbb5a> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1cfe45000 - 0x1cfe4efff ContextKitExtraction arm64  <b7440c0081233e78a888c8f18644d520> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1cff22000 - 0x1cff24fff libswiftObjectiveC.dylib arm64  <d7b80039db48325fa8af6cd98591a63e> /usr/lib/swift/libswiftObjectiveC.dylib
0x1cff25000 - 0x1d0162fff libmorphun.dylib arm64  <7aa2a29eb3553c678ddba93042b3fa44> /usr/lib/libmorphun.dylib
0x1d0773000 - 0x1d07dbfff EmailCore arm64  <78620d54521534c499f8eaa97cb2f0de> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x1d10af000 - 0x1d10f9fff MIME arm64  <6089d431584f356faa72624f0b7b6914> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x1d13c5000 - 0x1d13dafff MailServices arm64  <10fce77bbe213ac49e2de4235aa1174c> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1d1456000 - 0x1d14d7fff CoreDAV arm64  <0cd9f84f3127366f853b1598a093b0a0> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1d16a5000 - 0x1d16b3fff MobileIcons arm64  <81d53e0ca7143cf9b0ce9b4c760e6e58> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1d1a7e000 - 0x1d1b4efff ProofReader arm64  <001f5e21684037deb2a45f4b93da1fb6> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1d2d13000 - 0x1d2d1dfff MallocStackLogging arm64  <1e7b19595ad235ab8db3d24853f509d0> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1d2d33000 - 0x1d2d5efff AttributeGraph arm64  <0b77d9b7cb49365ab75f7b2b33147268> /System/Library/PrivateFrameworks/AttributeGraph.framework/AttributeGraph
0x1d2d80000 - 0x1d2f3efff EmailDaemon arm64  <5b5a4da8159b3cd2b876319e20d4081c> /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x1d2f3f000 - 0x1d2f89fff MetadataUtilities arm64  <cff738ccb48b3f9f8cb1b3e8ac54f670> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1d34d1000 - 0x1d3502fff MailSupport arm64  <820beb291d4e33f7b17a929f1c3ceed6> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1d3651000 - 0x1d36adfff CoreLocationProtobuf arm64  <f991f00c59a330a2b5cf85341dfcd1e0> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1d38b2000 - 0x1d38e4fff Bom arm64  <f784f41ea458324a8993f2e22980b8d0> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1d3919000 - 0x1d391ffff PushKit arm64  <629d513afd1d39948e9baa7bef62158c> /System/Library/Frameworks/PushKit.framework/PushKit
0x1d3920000 - 0x1d3989fff PhotosFormats arm64  <ef4afb529abb3d66802e206d6a3daf34> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1d3b15000 - 0x1d3ba6fff Quagga arm64  <4bc295814b4d3775ab2f096a900a0170> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1d3ba7000 - 0x1d3baefff StudyLog arm64  <f3949f772ab633519faf861338e6a54e> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1d4aed000 - 0x1d4b2cfff NaturalLanguage arm64  <4a771e952dde31648e9ab27d7c8b4cc2> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1d559b000 - 0x1d55b8fff MediaStream arm64  <d0661590c6c6325683b0bb2576cd100b> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1d6189000 - 0x1d61b0fff MediaConversionService arm64  <5db8a7243bba34738a66ca5798091e65> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1d62ff000 - 0x1d643bfff CoreHandwriting arm64  <5ea86d24cc6f3cf780aa1df6ff9e65a7> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1d6b90000 - 0x1d6b9bfff AppleIDAuthSupport arm64  <2a9bb26d66e233538e40004f17d7f566> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1d6baa000 - 0x1d6bc1fff LocalAuthentication arm64  <3927c90dbfea3d4ea7b8abf9efeb9c0e> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1d6c3d000 - 0x1d6c43fff IOAccelerator arm64  <621e849c8e2c3c6db49982f3b41e651b> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1d700b000 - 0x1d7015fff CloudPhotoServices arm64  <4cc48da9e2163cecadfd7228af33799c> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1d7057000 - 0x1d70ebfff iTunesStore arm64  <a571d426ae9f37c39fdba69420fa332a> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1d749a000 - 0x1d74cafff libsystem_kernel.dylib arm64  <782e667e18a23b98b53dbfc9a4a701b7> /usr/lib/system/libsystem_kernel.dylib
0x1d76f4000 - 0x1d77fbfff ResponseKit arm64  <318164e5c0113eef913bae9a7dd3d180> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1d77fc000 - 0x1d7834fff EmojiFoundation arm64  <5ebea1c67d793a9ca76baace4b337113> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1d7e27000 - 0x1d7e33fff FontServices arm64  <7509db1f15513bf0a08f26c1fdad7402> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1d7fcb000 - 0x1d7fd6fff MediaAccessibility arm64  <15d00e0f9516358fac1cd9da9765c7d9> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1d8017000 - 0x1d85e3fff SiriTTS arm64  <b9f3838de9153c14a9fbddafcf110d99> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1d85e4000 - 0x1d85f2fff SetupAssistantSupport arm64  <b0ddb02f39f03789bacf3da6034ad2f6> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1d86ee000 - 0x1d871efff VirtualGarage arm64  <b9919a44fd0b38b0a0336715345d7afa> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
0x1d871f000 - 0x1d8743fff NetAppsUtilities arm64  <2d1f24c101963e838a0db8123b76bdd4> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1d8744000 - 0x1d87a8fff Osprey arm64  <2965aea8e84836ec9c6a5e3d8295f8fe> /System/Library/PrivateFrameworks/Osprey.framework/Osprey
0x1d9bd6000 - 0x1d9be2fff libdscsym.dylib arm64  <9f5db760c8853a44a97d4e914ff29b7c> /usr/lib/libdscsym.dylib
0x1d9be3000 - 0x1d9bf4fff HangTracer arm64  <3d6174a975e235a7ac1b9f32c012fe6e> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1d9da4000 - 0x1d9e5cfff SampleAnalysis arm64  <86be1bbba79f302db6e00b2331913fb2> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1d9e5d000 - 0x1d9e8bfff PlugInKit arm64  <f80231d13a083e069f6bb83c1c9b3547> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1d9f32000 - 0x1d9f33fff libSystem.B.dylib arm64  <e5f9db66e4b23356a77a85581fc5a53b> /usr/lib/libSystem.B.dylib
0x1da227000 - 0x1da232fff MobileActivation arm64  <f1d03af8eb973944be35cfc68cb12b2c> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1da233000 - 0x1da28afff CalendarDaemon arm64  <e86ecc263cc239e8a782036383066e33> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1da37a000 - 0x1da3e8fff libarchive.2.dylib arm64  <18413d66784f300da3c4561400c71387> /usr/lib/libarchive.2.dylib
0x1da3e9000 - 0x1da40cfff libtailspin.dylib arm64  <f3533d550d103fabb9b10eec7dfa4e05> /usr/lib/libtailspin.dylib
0x1da40d000 - 0x1da834fff libBNNS.dylib arm64  <de119b9d804f31278cb31f7112bcb740> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1da835000 - 0x1da877fff SharedUtils arm64  <0768087abd883e2eb569b3c858ba4000> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1dab16000 - 0x1dab1bfff libsysdiagnose.dylib arm64  <5fe32bd1c0c737f6946d3e9267d940bd> /usr/lib/libsysdiagnose.dylib
0x1dab57000 - 0x1dac58fff CoreMediaStream arm64  <97c1201e38a4331c804329e00bdc540c> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1dae5c000 - 0x1dae5cfff AVFoundation arm64  <f8002ff211d03465b45f1fc2987a29f5> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1dae5d000 - 0x1dae5dfff Accelerate arm64  <bde1920e04663330981925f223384639> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1dae5e000 - 0x1daf0dfff libBLAS.dylib arm64  <a197cd4937c13706b68f671098eb8715> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1daf0e000 - 0x1db220fff libLAPACK.dylib arm64  <1d63ccdb56393c90b5becbbce6f34db2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1db221000 - 0x1db235fff libLinearAlgebra.dylib arm64  <13329232954f3fe089cf6e1cdd5d543a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1db236000 - 0x1db23afff libQuadrature.dylib arm64  <b77d93fee773384d9519b20a01b74c7d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1db23b000 - 0x1db29cfff libSparse.dylib arm64  <a7788c2ef698326e95b4ca8c7948f9c7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1db29d000 - 0x1db2aefff libSparseBLAS.dylib arm64  <f34b469a7df53ae69ab88169d68e2a9a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1db2af000 - 0x1db308fff libvMisc.dylib arm64  <8aec7afc1b8f3dcf9fee134ad2a3770e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1db309000 - 0x1db309fff vecLib arm64  <f355034bbf8a3c7fba37476c89a1c65a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1db465000 - 0x1db480fff AuthenticationServices arm64  <049f89281df632318ab71525f7e6f5ac> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1db56a000 - 0x1db5d4fff CoreMIDI arm64  <89e07f5a8b9e3479841f447393b39608> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1dbb09000 - 0x1dbb20fff ExternalAccessory arm64  <8d8ca6080d9f3813af1447b764d096a7> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
0x1dbb5d000 - 0x1dbb8afff GSS arm64  <fc457893cd623da4a622141e4eae22e1> /System/Library/Frameworks/GSS.framework/GSS
0x1dbceb000 - 0x1dbe37fff MLCompute arm64  <8ba25abc79f43458bc19aebb4d827148> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1dbe5d000 - 0x1dbe75fff MetalKit arm64  <9d23fe8a1af733ffa6f723aec3c82bae> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1dbe76000 - 0x1dbefbfff MPSImage arm64  <64d5604db9853f08a4e98114f95e492b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1dbefc000 - 0x1dbf22fff MPSMatrix arm64  <65e3036d69383594b264f532509489e9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1dbf23000 - 0x1dbf5dfff MPSNDArray arm64  <901774b8dc103b58806943c75ee787c9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1dbf5e000 - 0x1dbfa6fff MPSRayIntersector arm64  <b6d08ff4b2be3807b2078a621bcdacbe> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1dbfa7000 - 0x1dbfa7fff MetalPerformanceShaders arm64  <f6806faeb8cf3916a0378198ecdaa2ec> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1dc329000 - 0x1dc329fff MobileCoreServices arm64  <bfa0b6c247133fb184f5de951ae3fbba> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1dcf17000 - 0x1dcf1ffff OpenGLES arm64  <2d29ed359118362883d70bdf25a9e51e> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1dcf20000 - 0x1dcf21fff libCVMSPluginSupport.dylib arm64  <f66d35163e3e35c983ca87c4c8273fc9> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1dcf22000 - 0x1dcf28fff libCoreFSCache.dylib arm64  <6cbb64ef7d82358bbd575e7a81b01d15> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1dcf29000 - 0x1dcf2efff libCoreVMClient.dylib arm64  <e44e37af31953c17a2a761afcb749a0d> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1dcf2f000 - 0x1dcf37fff libGFXShared.dylib arm64  <4a8cb86b485d30d895b71b31037f27a9> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1dd0e4000 - 0x1dd1a5fff PDFKit arm64  <501dc012823331a9bb7f692b87fdc1ee> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1dd1b4000 - 0x1dd1effff QuickLookThumbnailing arm64  <6d444c79b7a23bde9a1dea12ce37059f> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1dd867000 - 0x1dd9adfff SoundAnalysis arm64  <f72d1984ce433af6be84c27d64eed928> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1dd9ae000 - 0x1dd9bdfff Speech arm64  <8e92e0d4ca8b3e709c073ee1d24794f7> /System/Library/Frameworks/Speech.framework/Speech
0x1ddadf000 - 0x1ddadffff UIKit arm64  <47bbaf689ec535c19be50cff5e4c117a> /System/Library/Frameworks/UIKit.framework/UIKit
0x1ddae8000 - 0x1ddbadfff VideoSubscriberAccount arm64  <e22e4b19b3693a2286af06a6ba9ea2b7> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1ddbae000 - 0x1de784fff libfaceCore.dylib arm64  <f2bcda7a1fbf344ba00ef4435eb0b0f2> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x1de79f000 - 0x1de79ffff VisionKit arm64  <869640e1565d389b8d9043facf1df947> /System/Library/Frameworks/VisionKit.framework/VisionKit
0x1ded24000 - 0x1ded27fff AFKUser arm64  <7d097be2f1903de8bc8a1232e31fe72e> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1dede7000 - 0x1df066fff ANECompiler arm64  <537d2cd0f1493152b7fbf3543a3f149d> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1df067000 - 0x1df07afff ANEServices arm64  <f5d90acd9dd93dd0b83d866123302eae> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1df07f000 - 0x1df13bfff APFS arm64  <40d24862c7d53be8add0ccd931a09d8d> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1df13c000 - 0x1df142fff ASEProcessing arm64  <14daea38c3cb3811aef5705c535f6ead> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1df92d000 - 0x1df932fff AggregateDictionary arm64  <160d27e0b8bf392890d79964209c1598> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1dfabb000 - 0x1dfb94fff AirPlaySync arm64  <19e9b2db396d33acaa0b7e41d566281f> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1dfc9b000 - 0x1dfcb6fff AlgosScoreFramework arm64  <87b80542e8c035aa96fcc05e0d823f54> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1dfddb000 - 0x1dff5bfff AppC3D arm64  <c8693892a62e33bbbda152f59d1902aa> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x1dff5c000 - 0x1dff7dfff AppConduit arm64  <48909dbef5db3cdaac09f001a737bd6a> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1e0074000 - 0x1e007efff AppStoreOverlays arm64  <08dee68335c63cbc94469b07daef9618> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x1e1119000 - 0x1e1128fff AppleFSCompression arm64  <66fd9b986a0f35a89548af635d08f82e> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1e1135000 - 0x1e1142fff AppleIDSSOAuthentication arm64  <7ee049db1242364c90efb23250268da9> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1e1143000 - 0x1e1187fff AppleJPEG arm64  <0ba0b8a9a23334f5b0826e2d3aba1a73> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1e1208000 - 0x1e121cfff AppleNeuralEngine arm64  <01c6a71b88763f18884d2f42eb782349> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1e1226000 - 0x1e1249fff AppleSauce arm64  <b9f5e84ad67b34f296e5e0600c6f1b68> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1e1278000 - 0x1e1295fff AssetCacheServices arm64  <630a6ff780573e37b1c40b49bff75eb1> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1e13f4000 - 0x1e1450fff AuthKitUI arm64  <c5077f2582fa3e449efdefa2883b51d2> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1e14df000 - 0x1e14f7fff BiomePubSub arm64  <668e723cb354396e8f3612d0c18540ed> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x1e1795000 - 0x1e17a4fff BluetoothManager arm64  <bdd5938989a73c77be07990f80e2815b> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1e1a32000 - 0x1e1a3cfff CMCaptureCore arm64  <4d06b990b5b03e7cad76affda59f88c8> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1e1a3d000 - 0x1e1a53fff CPAnalytics arm64  <06b137a7a4593f86950664f3047e56fb> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
0x1e1a56000 - 0x1e1a65fff CPMS arm64  <67f02bba4ea830908e4da26d63a0e2e1> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1e1a66000 - 0x1e1a75fff CTCarrierSpace arm64  <855dc5e94a0a3d4fbe5c03f7cf05819f> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1e1d79000 - 0x1e1d84fff CaptiveNetwork arm64  <c8de13a5aee7337e9428da1ec3d628ee> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1e1ea0000 - 0x1e1edafff Catalyst arm64  <fbea8fff07a73c6eba6237c91703af8e> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1e1eff000 - 0x1e1f20fff CellularPlanManager arm64  <0d28ad67792931c481a9764a4bfa7c10> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1e1f39000 - 0x1e1f41fff CertUI arm64  <ad753a0d62093a27855c858780a9699b> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1e1f4a000 - 0x1e1f98fff ChunkingLibrary arm64  <ab2bc3e0369c3774a0428430e906ea3a> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1e2375000 - 0x1e237cfff CommonAuth arm64  <2ee0f13c405d3e97ad85aea1ab3f8ede> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1e237d000 - 0x1e2381fff CommunicationsFilter arm64  <80ab757b9f723e999b0678da61fe1807> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1e2451000 - 0x1e2454fff ConstantClasses arm64  <1f00f281b08c30d6992cf2ee62aa8436> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1e245e000 - 0x1e249bfff ContactsAutocomplete arm64  <c421cfbeb04739fb9eb488097369d714> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1e24a1000 - 0x1e2515fff ContactsUICore arm64  <378f6625facc3756896d636a8728d8c5> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1e2690000 - 0x1e2784fff CoreBrightness arm64  <2532db24c7ab363184c06139be8c4221> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1e27ee000 - 0x1e27fdfff CoreDuetDaemonProtocol arm64  <59a2e9bb08353105a9b7b9a10dae962c> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1e2800000 - 0x1e2802fff CoreDuetDebugLogging arm64  <98e92a87390133ef9e58de5ceea05f6b> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1e2811000 - 0x1e2823fff CoreEmoji arm64  <b4e09d4d1f2d307d8f9040dd1d15b7a7> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1e2e26000 - 0x1e2e2afff CoreOptimization arm64  <1dfee9caaf883e3e80e4e8d593e8af57> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1e2e2b000 - 0x1e2ee4fff CorePDF arm64  <f7eb54927f2d31f6a5c3f869d7d27d2e> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1e2ee5000 - 0x1e2eedfff CorePhoneNumbers arm64  <3d0bf6c8aeed3a2f8a67ef6f007fd0f9> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1e2eee000 - 0x1e2f42fff CorePrediction arm64  <89b6e7cb94883316b72966c3844346c9> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1e3842000 - 0x1e384cfff CoreRecents arm64  <ff91dde1664a3f2fbf4d77e8919d1e77> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1e384d000 - 0x1e38b3fff CoreRecognition arm64  <7d7a262f706d3bcfb1c2f2e19c0304c6> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1e38b4000 - 0x1e38ccfff CoreSDB arm64  <c438a815678539a9b76bb0d5f6353480> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1e38cd000 - 0x1e38f5fff CoreSVG arm64  <5627aa5fc04b33b3964bd022911d935f> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1e3ab7000 - 0x1e3abbfff DAAPKit arm64  <a732da38fad53145b65edd18d6415d3d> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1e3ad9000 - 0x1e3ae6fff DCIMServices arm64  <92baf00a4ea63f95a951e790cbf3d588> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1e3afd000 - 0x1e3b39fff DataDetectorsNaturalLanguage arm64  <dae18bb9f72f313ab0eaf2ebde31f6da> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1e3b9c000 - 0x1e3bc9fff DeviceIdentity arm64  <6d1af53e8b693e288468631fbd00b950> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1e3cf1000 - 0x1e3d26fff DistributedEvaluation arm64  <aeef4965ad973451bf8c94708d82e467> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x1e3d7b000 - 0x1e3e46fff DocumentCamera arm64  <ac1d565588773a9197c477944b70116a> /System/Library/PrivateFrameworks/DocumentCamera.framework/DocumentCamera
0x1e3e47000 - 0x1e3e81fff DocumentManager arm64  <1771c51062f13f279ae6897e82c74e98> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1e3e82000 - 0x1e3ea0fff DocumentManagerCore arm64  <1fcbb774e3bf3f9aab928be0c8f8c0f7> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1e3f23000 - 0x1e3f25fff DragUI arm64  <3cc91d51bb12388798d573a258a3fe62> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1e3f54000 - 0x1e3f84fff EAP8021X arm64  <09e38332fc803a56a2d549515b513438> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1e3f9b000 - 0x1e3fa5fff EmailAddressing arm64  <ef35f20d61cd3d949357999bebb09288> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x1e3fb3000 - 0x1e3fc7fff Engram arm64  <4fc44ec8d76538a7975845ace2acb0f8> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1e4100000 - 0x1e4107fff ExtensionFoundation arm64  <3ebbdfefbba9305281c1500985d40a31> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1e4280000 - 0x1e4288fff FSEvents arm64  <0c0bfe19fd703bbfa5eab789d4fdc324> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1e4289000 - 0x1e42a8fff FTAWD arm64  <c0118c057b7f366da76de936b93e169b> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1e42a9000 - 0x1e42acfff FTClientServices arm64  <4386dd47da253189993f03ad9b926e74> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1e42ad000 - 0x1e46bffff FaceCore arm64  <a383e5cc791a35f79b37228880430bab> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1e46c8000 - 0x1e46cdfff FeatureFlagsSupport arm64  <32727b32730c30ac9b1cc7c66a65d115> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1e46ce000 - 0x1e46d8fff FeedbackLogger arm64  <772f313640183d4ab35fc4284095600b> /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
0x1e4864000 - 0x1e49a0fff libFontParser.dylib arm64  <b73b77070b9c3e1e932130c80b2865c4> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1e49a1000 - 0x1e49a9fff libGSFont.dylib arm64  <2ef6a22edd0f3841b9231adb6238eaaa> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1e49aa000 - 0x1e49e7fff libGSFontCache.dylib arm64  <78f92f58984e330ab9e833f45e117a1a> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1e4a4a000 - 0x1e4a57fff libhvf.dylib arm64  <043252185d81311bae37520f37b4c220> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1e4a7d000 - 0x1e4a94fff Futhark arm64  <a93084e4917432c8a1f5c54e8f18e99f> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1e56c1000 - 0x1e56dffff GenerationalStorage arm64  <4efd79617a053e558ec72998ce9f3b54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1e56e0000 - 0x1e56edfff GraphVisualizer arm64  <47e41fb3df39361780aa876f8c79992d> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1e5726000 - 0x1e5731fff HID arm64  <0f1120a7a4eb3be6b5967fee586fe8df> /System/Library/PrivateFrameworks/HID.framework/HID
0x1e59a7000 - 0x1e5a17fff Heimdal arm64  <fdccfc9db0d03f0f8f675964d4879102> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1e5d88000 - 0x1e5dfffff HomeSharing arm64  <13c57dc7802d3b6f8b521d72949fd44a> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1e5e59000 - 0x1e5e5efff IDSKVStore arm64  <b21ba21bda65363bbc22a1e56c8f123f> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1e617e000 - 0x1e6187fff IOKitten arm64  <a897be5491b5328a8ce30733e7aae3b1> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1e6188000 - 0x1e618afff IOSurfaceAccelerator arm64  <53b6e7225abe3aed8c511498043e9a83> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1e61b3000 - 0x1e61bafff IdleTimerServices arm64  <635fedb6cdd53dbc982fe7874475a0a4> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1e61c2000 - 0x1e61c7fff IncomingCallFilter arm64  <7471de879e583e8d97c00b47de700a2f> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1e6286000 - 0x1e6292fff IntentsFoundation arm64  <434df45e86903166b50db613ce4fc253> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1e62ac000 - 0x1e62affff InternationalTextSearch arm64  <f5f3c04464833759becb23a3c9017a2b> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1e62b0000 - 0x1e62ccfff IntlPreferences arm64  <c200865b4dab3fe1897f43b1a18a8e3e> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1e652e000 - 0x1e6534fff LinguisticData arm64  <6df0f7029cf83ab78e2974667fa344bb> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1e6582000 - 0x1e65bafff LocalAuthenticationPrivateUI arm64  <21c6f4c7dc7b38e49a4f2b9135b26663> /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
0x1e6778000 - 0x1e6778fff Marco arm64  <25e28d1a0ad03263b1430ae76108a01f> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1e6a66000 - 0x1e6d7dfff MediaLibraryCore arm64  <eb1d5a70724531379c21628c4d0a16e8> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1e6d7e000 - 0x1e6e0dfff MediaPlatform arm64  <90cb9e1048e034a48ecfff63ae5bd52a> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1e71f0000 - 0x1e72b8fff MetalTools arm64  <862bc9f3d56036708ba61f3e9968f691> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1e72da000 - 0x1e7332fff MetricsKit arm64  <059c8c1506ca351a8293db13493665ac> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1e7343000 - 0x1e7357fff MobileBluetooth arm64  <b8a53279dc9b37b68bcdbf1a3b83a8d4> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1e73d8000 - 0x1e73defff MobileSystemServices arm64  <750000f9b53b32aab0829926b3db8a72> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1e7771000 - 0x1e7777fff Netrb arm64  <29c4389d7cfd34e5b99703cefcd9dcc0> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1e7833000 - 0x1e784cfff NetworkStatistics arm64  <aa622e390c17326d809568719bae2e16> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1e7924000 - 0x1e7964fff OTSVG arm64  <d86e3d10ea8b398c9d4d3c1090ad4283> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1e7f6a000 - 0x1e7f6cfff ParsecSubscriptionServiceSupport arm64  <1ef13d46cfc23a9c87e20589d17e7de3> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1e7f71000 - 0x1e7f99fff Pasteboard arm64  <b1c5f78d24be3091bf6553489d59ca0a> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1e7fc8000 - 0x1e7fd3fff PersonaKit arm64  <6d5252a8d94733f3a05f088b1b93a3e2> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1e7fd4000 - 0x1e7fe0fff PersonaUI arm64  <5aebcdf6bd373520bebc5fd0b6891ae6> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1e8018000 - 0x1e8018fff PhoneNumbers arm64  <033646e6657b384da25bb574ad670d33> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1e81dc000 - 0x1e821afff PhotosImagingFoundation arm64  <ebdc24ea85c936fd8a419f2d97ea27ad> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1e821b000 - 0x1e8266fff PhysicsKit arm64  <e5dd8ff53ce6340387dda862db33072a> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1e831c000 - 0x1e8327fff PointerUIServices arm64  <52f228f35cfd393b8db1fe2dac17a76d> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1e9791000 - 0x1e979bfff RTCReporting arm64  <0cd8532917a73d30829400c610178428> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1e9ac7000 - 0x1e9ad8fff RemoteTextInput arm64  <1ac5e291220c336dbe1334e563edb33c> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1e9ad9000 - 0x1e9b3efff RemoteUI arm64  <6b4295b07a913ec394c30fb143ef2b68> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x1e9b75000 - 0x1e9b79fff RevealCore arm64  <a0d98468530d3d6082fa78608e0f65ac> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1e9b8f000 - 0x1e9f08fff SDAPI arm64  <ebbe539a47c63eb1bd18f3b1b6b1a475> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
0x1eb38f000 - 0x1eb398fff SignpostCollection arm64  <0c0d6de66e303f9eb166daccb6234d82> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1eb399000 - 0x1eb399fff SignpostMetrics arm64  <fc1c6c2fe12e35b180c4b3d19254f5c8> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1eb39b000 - 0x1eb3dafff SignpostSupport arm64  <8bed968fb1af3ababc53f1e70012017c> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1ebe2a000 - 0x1ebe2afff SoftLinking arm64  <c6f60c337d6a346887633bc0533fffe8> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1ec313000 - 0x1ec350fff StreamingZip arm64  <6fe0c0f46555332a9a757cc720fb19f2> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1ec358000 - 0x1ec362fff SymptomDiagnosticReporter arm64  <e9978768b054338e98036a6ae96fa632> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1ec392000 - 0x1ec3adfff SymptomPresentationFeed arm64  <0a07c9952a7a3e4d9c84dedf7388a5ab> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1ec3e9000 - 0x1ec3f8fff TCC arm64  <0d0d2d7395a93c9a8b373fd5213a4599> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1eccac000 - 0x1ecd5efff TextureIO arm64  <fcc0fb2034333a79a92eb71bf4e450c4> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1ecf79000 - 0x1ecf80fff URLFormatting arm64  <b1f9795ed4533685b7adf32e1669c9c9> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1ed571000 - 0x1ed59afff UsageTracking arm64  <1df1001449a63c03b96221ba35a6cd87> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1ee058000 - 0x1ee11afff VoiceTrigger arm64  <b70439db9d4c370a9463e806b0b8aef9> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger
0x1ee1dc000 - 0x1ee1ddfff WatchdogClient arm64  <ad902dfa3b0534f89ac361090eb939f8> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1ee4a3000 - 0x1eebccfff libwebrtc.dylib arm64  <2f61036ba2c13fbdbf7a598219d01655> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1eec46000 - 0x1eec5cfff WebUI arm64  <ff94f4b4ac6b34a8a5f4b56f37d06711> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1ef164000 - 0x1ef167fff XCTTargetBootstrap arm64  <9b53382f09623e469ec4309c770d8e9b> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1ef1e5000 - 0x1ef204fff caulk arm64  <29c23553b07138da822512e4c786fd0b> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1f163b000 - 0x1f1640fff kperf arm64  <a87b47b31c453edcbc06608aad4e1f2f> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1f1641000 - 0x1f1649fff kperfdata arm64  <29c8351426e8352286f38721ac110583> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1f164a000 - 0x1f1660fff libEDR arm64  <248a440c345c371eb4d96cee0454c5ed> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1f167c000 - 0x1f168cfff perfdata arm64  <6c420d6e89063f4d8b578abe010aadce> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1f168d000 - 0x1f16bbfff vCard arm64  <3c88448f18f53483875d27897aa1a0e5> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1f2028000 - 0x1f2061fff libAWDSupport.dylib arm64  <5d0c5a9028643e759ed595483b16d443> /usr/lib/libAWDSupport.dylib
0x1f2062000 - 0x1f2412fff libAWDSupportFramework.dylib arm64  <82fe0396e3e434059c648b692002028f> /usr/lib/libAWDSupportFramework.dylib
0x1f2590000 - 0x1f259ffff libAudioStatistics.dylib arm64  <4d9a4f00a6ea3b789692b1dc1daf0581> /usr/lib/libAudioStatistics.dylib
0x1f2740000 - 0x1f2772fff libCRFSuite.dylib arm64  <9941a443e4f838ae8681ead891f70bcd> /usr/lib/libCRFSuite.dylib
0x1f2773000 - 0x1f2774fff libCTGreenTeaLogger.dylib arm64  <9704e9662824353db456ba507dbe2918> /usr/lib/libCTGreenTeaLogger.dylib
0x1f2775000 - 0x1f277ffff libChineseTokenizer.dylib arm64  <39db8a7343503bffabf6ab549ece9f36> /usr/lib/libChineseTokenizer.dylib
0x1f2a1d000 - 0x1f2a24fff libIOReport.dylib arm64  <745c23f071253c0786f2aab106092cc0> /usr/lib/libIOReport.dylib
0x1f2a9b000 - 0x1f2aa2fff libMatch.1.dylib arm64  <22c1f3bf3d613b67836be8fad9e315f1> /usr/lib/libMatch.1.dylib
0x1f2bc1000 - 0x1f2bc6fff libThaiTokenizer.dylib arm64  <cc481b9eba013ea79b077e09a5326728> /usr/lib/libThaiTokenizer.dylib
0x1f2e30000 - 0x1f2e32fff libapp_launch_measurement.dylib arm64  <2dfc3dd9565a3b978c47548f95b07930> /usr/lib/libapp_launch_measurement.dylib
0x1f2e33000 - 0x1f2e49fff libapple_nghttp2.dylib arm64  <5d86842d169c33a89224b69e440a3c3b> /usr/lib/libapple_nghttp2.dylib
0x1f2e4a000 - 0x1f2edbfff libate.dylib arm64  <55c9e37f4ef53b538887395a557d66a2> /usr/lib/libate.dylib
0x1f2f6c000 - 0x1f2f7cfff libbsm.0.dylib arm64  <52fca02e09b9327aa20070b0aa390d6f> /usr/lib/libbsm.0.dylib
0x1f2f7d000 - 0x1f2f89fff libbz2.1.0.dylib arm64  <a4bef41eaf2d3096b10e03543215e590> /usr/lib/libbz2.1.0.dylib
0x1f2f8a000 - 0x1f2f8afff libcharset.1.dylib arm64  <d1407b956f813959adeb1916c10d0246> /usr/lib/libcharset.1.dylib
0x1f2f8b000 - 0x1f2f9cfff libcmph.dylib arm64  <cd8b8030074433459087efbcda7cf3c9> /usr/lib/libcmph.dylib
0x1f2f9d000 - 0x1f2fb4fff libcompression.dylib arm64  <b1091ad13282317ab94c5f10b27bc38b> /usr/lib/libcompression.dylib
0x1f2fb5000 - 0x1f2fcafff libcoretls.dylib arm64  <fd453c0f190235fa927f26074a321f94> /usr/lib/libcoretls.dylib
0x1f2fcb000 - 0x1f2fccfff libcoretls_cfhelpers.dylib arm64  <e6a8fbb7cc9a3765b3d5d221473ec61b> /usr/lib/libcoretls_cfhelpers.dylib
0x1f2ff0000 - 0x1f2ff6fff libcupolicy.dylib arm64  <c3a259ce6cd738ab8cb07006e453f368> /usr/lib/libcupolicy.dylib
0x1f2ff7000 - 0x1f2ffefff libdns_services.dylib arm64  <5cc5a34dda1d386d942f3e0c6f2646a2> /usr/lib/libdns_services.dylib
0x1f2fff000 - 0x1f301bfff libedit.3.dylib arm64  <272002fc1f6d3f378b34b0c563e21a7d> /usr/lib/libedit.3.dylib
0x1f301c000 - 0x1f301cfff libenergytrace.dylib arm64  <46735b4c5f63362d85a954ed4d7e2ec5> /usr/lib/libenergytrace.dylib
0x1f301d000 - 0x1f3034fff libexpat.1.dylib arm64  <12c25f34e3e23564a23d18c6e3436959> /usr/lib/libexpat.1.dylib
0x1f305f000 - 0x1f3063fff libgermantok.dylib arm64  <c9eb0c8a1ff83c4d8cd4cf4639dcefb2> /usr/lib/libgermantok.dylib
0x1f3064000 - 0x1f3069fff libheimdal-asn1.dylib arm64  <68eb7e8d5b5b3b699bb87be9bfcbfd73> /usr/lib/libheimdal-asn1.dylib
0x1f306a000 - 0x1f315bfff libiconv.2.dylib arm64  <fc828c3175243d09947fd18cc3e533dd> /usr/lib/libiconv.2.dylib
0x1f3179000 - 0x1f317afff liblangid.dylib arm64  <489b3d68c72e3f548460346addb44ab9> /usr/lib/liblangid.dylib
0x1f317b000 - 0x1f3186fff liblockdown.dylib arm64  <6d709be7308d3b6cb53407f33f38cae9> /usr/lib/liblockdown.dylib
0x1f3187000 - 0x1f319ffff liblzma.5.dylib arm64  <0b23d81e57c4385a9913f37227928f1f> /usr/lib/liblzma.5.dylib
0x1f31cd000 - 0x1f3220fff libmecab.dylib arm64  <6f0eca87b67d3174a210e4eb5cb07801> /usr/lib/libmecab.dylib
0x1f3221000 - 0x1f3449fff libmecabra.dylib arm64  <9f81192c475b33aba75f2841e528d4e6> /usr/lib/libmecabra.dylib
0x1f344a000 - 0x1f345cfff libmis.dylib arm64  <813ef02a17183c11a18754d6d6a9af8e> /usr/lib/libmis.dylib
0x1f345d000 - 0x1f3472fff libnetworkextension.dylib arm64  <97a62716f2b33820a6e29a3594671e3a> /usr/lib/libnetworkextension.dylib
0x1f3813000 - 0x1f3846fff libpcap.A.dylib arm64  <01703bd2e1ec36b0abcd18525e2ef324> /usr/lib/libpcap.A.dylib
0x1f3847000 - 0x1f3854fff libperfcheck.dylib arm64  <5dd71703dd22376f9dcbf6a7aadb9e3f> /usr/lib/libperfcheck.dylib
0x1f385c000 - 0x1f386dfff libprequelite.dylib arm64  <81b60574ae623d7b8171cebe82ca4714> /usr/lib/libprequelite.dylib
0x1f386e000 - 0x1f387ffff libprotobuf-lite.dylib arm64  <a527bca9c8bf3d5ba0c04a8ea7eb52c8> /usr/lib/libprotobuf-lite.dylib
0x1f3880000 - 0x1f38defff libprotobuf.dylib arm64  <140a54c11a673b7aa770b96d6481a403> /usr/lib/libprotobuf.dylib
0x1f38df000 - 0x1f393cfff libquic.dylib arm64  <3c75f156fce737eab66410843a642f99> /usr/lib/libquic.dylib
0x1f393d000 - 0x1f3954fff libresolv.9.dylib arm64  <9773b08718c33a99ac4b15845c8f298e> /usr/lib/libresolv.9.dylib
0x1f3955000 - 0x1f3957fff libsandbox.1.dylib arm64  <cdf2d744d04f39c28489f3d37dd3661c> /usr/lib/libsandbox.1.dylib
0x1f399f000 - 0x1f39a2fff libutil.dylib arm64  <70719b73b88237f4845bba0cfd47d0b8> /usr/lib/libutil.dylib
0x1f39a3000 - 0x1f3a88fff libxml2.2.dylib arm64  <9582604ace4f37ceaf1b82e09802c758> /usr/lib/libxml2.2.dylib
0x1f3a8d000 - 0x1f3ab5fff libxslt.1.dylib arm64  <50ab823ed7d63688babe70cc279bf1ab> /usr/lib/libxslt.1.dylib
0x1f3ab6000 - 0x1f3ac7fff libz.1.dylib arm64  <b092ede41efe3c449945692ce1ae0330> /usr/lib/libz.1.dylib
0x1f3b07000 - 0x1f3b0dfff libswiftAVFoundation.dylib arm64  <59296f4abb7c39a496df68cd37556478> /usr/lib/swift/libswiftAVFoundation.dylib
0x1f3b0e000 - 0x1f3b6dfff libswiftAccelerate.dylib arm64  <80f6d56b4bb331f495be6408e4b82517> /usr/lib/swift/libswiftAccelerate.dylib
0x1f3b92000 - 0x1f3b93fff libswiftContacts.dylib arm64  <84ea76497cb338ec8c0e0f0ce7477b9f> /usr/lib/swift/libswiftContacts.dylib
0x1f3b94000 - 0x1f3b9cfff libswiftCoreAudio.dylib arm64  <7337d17258f63c6388d32a6e6aa06620> /usr/lib/swift/libswiftCoreAudio.dylib
0x1f3b9d000 - 0x1f3ba1fff libswiftCoreData.dylib arm64  <f6e72f17fbfc34758e3f927c41e02d50> /usr/lib/swift/libswiftCoreData.dylib
0x1f3ba2000 - 0x1f3ba2fff libswiftCoreFoundation.dylib arm64  <79cb99343d7c30bf9dbbe25bc9d8270a> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1f3ba3000 - 0x1f3ba3fff libswiftCoreImage.dylib arm64  <fc7d180e65df33d8b3c0527f8ad39e2d> /usr/lib/swift/libswiftCoreImage.dylib
0x1f3ba4000 - 0x1f3ba6fff libswiftCoreLocation.dylib arm64  <292d6b08ae11310c808d0a0922f25b1e> /usr/lib/swift/libswiftCoreLocation.dylib
0x1f3ba7000 - 0x1f3bb0fff libswiftCoreMIDI.dylib arm64  <0238205826603768a02e859b55fb72ef> /usr/lib/swift/libswiftCoreMIDI.dylib
0x1f3bb1000 - 0x1f3bb4fff libswiftCoreML.dylib arm64  <3fa17eea9cf03f7483715c1b92240b3b> /usr/lib/swift/libswiftCoreML.dylib
0x1f3bb5000 - 0x1f3bebfff libswiftCoreMedia.dylib arm64  <493e5611bbfc3e288bcfcaba0677af1d> /usr/lib/swift/libswiftCoreMedia.dylib
0x1f3bf8000 - 0x1f3c01fff libswiftDarwin.dylib arm64  <b9f01b68bcb73ca496be2cf196aa3e46> /usr/lib/swift/libswiftDarwin.dylib
0x1f3c08000 - 0x1f3c12fff libswiftIntents.dylib arm64  <a84e4490e4d93c188a6224fc2e56aaca> /usr/lib/swift/libswiftIntents.dylib
0x1f3c20000 - 0x1f3c24fff libswiftMetal.dylib arm64  <8800810ffec838f1a0fb0d91c88e7fdf> /usr/lib/swift/libswiftMetal.dylib
0x1f3c8f000 - 0x1f3c90fff libswiftQuartzCore.dylib arm64  <fa500068125e3e08bdbf7ba7a44aa611> /usr/lib/swift/libswiftQuartzCore.dylib
0x1f3cc8000 - 0x1f3cc9fff libswiftVision.dylib arm64  <cc114ad310633fd7ad21a02f7fe01dc5> /usr/lib/swift/libswiftVision.dylib
0x1f3ccf000 - 0x1f3ce0fff libswiftos.dylib arm64  <9ed14d3ad3ac3645bdd30cbc60ff75b3> /usr/lib/swift/libswiftos.dylib
0x1f3ce1000 - 0x1f3cf3fff libswiftsimd.dylib arm64  <fff389b8a259345d9def124a09fe3a1c> /usr/lib/swift/libswiftsimd.dylib
0x1f3cf4000 - 0x1f3cf9fff libcache.dylib arm64  <30242f393dfc3ff0895dd44af38c0144> /usr/lib/system/libcache.dylib
0x1f3cfa000 - 0x1f3d06fff libcommonCrypto.dylib arm64  <2a0ee79a584035948139f436f5a54a6f> /usr/lib/system/libcommonCrypto.dylib
0x1f3d07000 - 0x1f3d0bfff libcompiler_rt.dylib arm64  <46cd45524d2f31e69b0254e7e576df05> /usr/lib/system/libcompiler_rt.dylib
0x1f3d0c000 - 0x1f3d14fff libcopyfile.dylib arm64  <acb48771dc88397aa68a726bf75940db> /usr/lib/system/libcopyfile.dylib
0x1f3dfa000 - 0x1f3dfafff liblaunch.dylib arm64  <ac7e574f727a3707a3324343b867bdd4> /usr/lib/system/liblaunch.dylib
0x1f3dfb000 - 0x1f3e00fff libmacho.dylib arm64  <128a2b0392743d6ba667ad41272431df> /usr/lib/system/libmacho.dylib
0x1f3e01000 - 0x1f3e03fff libremovefile.dylib arm64  <183025eaf37f382a807c0f093eb64763> /usr/lib/system/libremovefile.dylib
0x1f3e04000 - 0x1f3e05fff libsystem_blocks.dylib arm64  <f56d3126f752364e9279c1ffefd4caa9> /usr/lib/system/libsystem_blocks.dylib
0x1f3e06000 - 0x1f3e08fff libsystem_collections.dylib arm64  <a40362865b223915805e584bdf7e0340> /usr/lib/system/libsystem_collections.dylib
0x1f3e09000 - 0x1f3e0dfff libsystem_configuration.dylib arm64  <22243418a82c37ef8b87485b1729b7d4> /usr/lib/system/libsystem_configuration.dylib
0x1f3e0e000 - 0x1f3e20fff libsystem_containermanager.dylib arm64  <10a4edbfecdd36f7ae8f29014d50852c> /usr/lib/system/libsystem_containermanager.dylib
0x1f3e21000 - 0x1f3e22fff libsystem_coreservices.dylib arm64  <773e2e00690533499d66a10059933ded> /usr/lib/system/libsystem_coreservices.dylib
0x1f3e23000 - 0x1f3e2cfff libsystem_darwin.dylib arm64  <a453301a5572313fac30531deae896f8> /usr/lib/system/libsystem_darwin.dylib
0x1f3e2d000 - 0x1f3e35fff libsystem_dnssd.dylib arm64  <f18dcdedb893302eb8bb71c8a42741cc> /usr/lib/system/libsystem_dnssd.dylib
0x1f3e36000 - 0x1f3e38fff libsystem_featureflags.dylib arm64  <d00a671cf5623df68441f169da31255b> /usr/lib/system/libsystem_featureflags.dylib
0x1f3e39000 - 0x1f3e66fff libsystem_m.dylib arm64  <47a923f776ad3214bc1f34051c03b2ee> /usr/lib/system/libsystem_m.dylib
0x1f3e67000 - 0x1f3e71fff libsystem_platform.dylib arm64  <3a71914ac2a73514b519df319e7a6e02> /usr/lib/system/libsystem_platform.dylib
0x1f3e72000 - 0x1f3e72fff libsystem_product_info_filter.dylib arm64  <2e2a22f0761b3e62b35376926358512e> /usr/lib/system/libsystem_product_info_filter.dylib
0x1f3e73000 - 0x1f3e82fff libsystem_pthread.dylib arm64  <cd2075ff948b313a8a02e2ad1e676a74> /usr/lib/system/libsystem_pthread.dylib
0x1f3e83000 - 0x1f3e86fff libsystem_sandbox.dylib arm64  <638b844721573f9a88c922612525e4ca> /usr/lib/system/libsystem_sandbox.dylib
0x1f3e87000 - 0x1f3e90fff libunwind.dylib arm64  <07bd6c4f43053e0191dc30c05754da0c> /usr/lib/system/libunwind.dylib
0x1f3e91000 - 0x1f3ec3fff libxpc.dylib arm64  <9b754030d4b638148840d3dac9c54212> /usr/lib/system/libxpc.dylib
0x1f587e000 - 0x1f5890fff SpotlightLinguistics arm64  <8d5151c3bcb131158c230645e5af4066> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics

EOF
1oo7 commented 2 years ago

It's a deadlock. Termination reason: 0xdead10cc tells you right there.