Using iOS GPU with metal backend for model inference

Dear Altruists,

I want to run my PyTorch model in ios GPU and therefore following this post: https://pytorch.org/tutorials/prototype/ios_gpu_workflow.html. I have pulled branch v1.8.0 from pytorch git repo and built with the following command:

USE_PYTORCH_METAL=ON python setup.py install --cmake

Though the build was successful, I could not access CUDA devices from the torch (torch.cuda.is_available() returns False). Afterward, I exported my traced model with metal backend after loading in CPU with few warnings.

I built a custom LibTorch from source for ios inference with the following command:
IOS_ARCH=arm64 USE_PYTORCH_METAL=1 ./scripts/build_ios.sh

Now, while I’m trying to run inference in ios device, I’m getting the following error:

Undefined symbols for architecture arm64:
  "_OBJC_CLASS_$_MPSCNNSubtract", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNAdd", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSImageTranspose", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSImageDescriptor", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSImage+Tensor.mm.o)
  "_OBJC_CLASS_$_MPSCNNMultiply", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNLogSoftMax", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNNeuronHardSigmoid", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNPoolingAverage", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNPoolingMax", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNNeuronTanH", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNNeuronOp.mm.o)
  "_OBJC_CLASS_$_MPSCNNUpsamplingNearest", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNNeuronSigmoid", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNNeuronOp.mm.o)
  "_OBJC_CLASS_$_MPSCNNConvolutionDescriptor", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNConvOp.mm.o)
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSImage", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
      objc-class-ref in libtorch_cpu.a(MPSImage+Tensor.mm.o)
      l_OBJC_$_CATEGORY_MPSImage_$_Tensor in libtorch_cpu.a(MPSImage+Tensor.mm.o)
      l_OBJC_$_CATEGORY_MPSImage_$_Shaders in libtorch_cpu.a(MPSImage+Tensor.mm.o)
      objc-class-ref in libtorch_cpu.a(MPSImageWrapper.mm.o)
  "_OBJC_CLASS_$_MPSCNNConvolution", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNConvOp.mm.o)
  "_OBJC_CLASS_$_MPSCNNFullyConnected", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNOps.mm.o)
  "_OBJC_CLASS_$_MPSCNNNeuronReLU", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNNeuronOp.mm.o)
  "_OBJC_CLASS_$_MPSCNNDepthWiseConvolutionDescriptor", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSCNNConvOp.mm.o)
  "_OBJC_CLASS_$_MPSTemporaryImage", referenced from:
      objc-class-ref in libtorch_cpu.a(MPSImage+Tensor.mm.o)
  "_MPSSupportsMTLDevice", referenced from:
      -[MPSCNNContext available] in libtorch_cpu.a(MPSCNNContext.mm.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
  • Is it occurring due to the initial CUDA issue?
  • Is it mandatory to load the model in GPU for metal build?
    Or, anything else?

Hey, in your xcode, you need to link the Accelerate.framework and the MetalShaderPerformance.framework to your app.

1 Like

Thanks for the reply. It fixed the issue. Although the app was built successfully, it crashed when I tried inference in iPhone. I have attached the crash report here. Your suggestion will be of great help!

crash report - part #1

Incident Identifier: 0C7C2F12-B853-4EA6-80FC-C45A0245A836
CrashReporter Key:   87a1b199dd1c412961edbfe739d99284b4ccbee4
Hardware Model:      iPhone12,5
Process:             LibtorchTestGPU [30196]
Path:                /private/var/containers/Bundle/Application/1260B2AD-9EEF-4C06-B0F1-D44BDAF51721/LibtorchTestGPU.app/LibtorchTestGPU
Identifier:          com.sakib.LibtorchTestGPU
Version:             1 (1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.sakib.LibtorchTestGPU [46396]


Date/Time:           2021-05-11 12:37:56.0220 +0600
Launch Time:         2021-05-11 12:37:52.5225 +0600
OS Version:          iPhone OS 14.4 (18D52)
Release Type:        User
Baseband Version:    2.03.04
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  0

Application Specific Information:
abort() called

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib        	0x00000001b3cda414 __pthread_kill + 8
1   libsystem_pthread.dylib       	0x00000001d1834b50 pthread_kill + 272
2   libsystem_c.dylib             	0x000000018f1b3b74 abort + 104
3   libc++abi.dylib               	0x000000019aea6cf8 __cxxabiv1::__aligned_malloc_with_fallback+ 81144 (unsigned long) + 0
4   libc++abi.dylib               	0x000000019ae97e34 demangling_terminate_handler+ 20020 () + 284
5   libobjc.A.dylib               	0x000000019ada0f74 _objc_terminate+ 28532 () + 160
6   libc++abi.dylib               	0x000000019aea60e0 std::__terminate(void (*)+ 78048 ()) + 20
7   libc++abi.dylib               	0x000000019aea9150 __cxa_rethrow + 148
8   libobjc.A.dylib               	0x000000019ada0e1c objc_exception_rethrow + 44
9   CoreFoundation                	0x0000000185cfa308 CFRunLoopRunSpecific + 836
10  GraphicsServices              	0x000000019d8c6784 GSEventRunModal + 164
11  UIKitCore                     	0x000000018873aee8 -[UIApplication _run] + 1072
12  UIKitCore                     	0x000000018874075c UIApplicationMain + 168
13  LibtorchTestGPU               	0x00000001021fde08 0x1021ec000 + 73224
14  libdyld.dylib                 	0x00000001859ba6b0 start + 4

Thread 1:
0   libsystem_pthread.dylib       	0x00000001d183c764 start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib       	0x00000001d183c764 start_wqthread + 0

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

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

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

Thread 6 name:  com.apple.uikit.eventfetch-thread
Thread 6:
0   libsystem_kernel.dylib        	0x00000001b3cb62d0 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001b3cb5660 mach_msg + 76
2   CoreFoundation                	0x0000000185d00c30 __CFRunLoopServiceMachPort + 380
3   CoreFoundation                	0x0000000185cfac14 __CFRunLoopRun + 1216
4   CoreFoundation                	0x0000000185cfa21c CFRunLoopRunSpecific + 600
5   Foundation                    	0x0000000186fa9df0 -[NSRunLoop+ 36336 (NSRunLoop) runMode:beforeDate:] + 232
6   Foundation                    	0x0000000186fa9cbc -[NSRunLoop+ 36028 (NSRunLoop) runUntilDate:] + 92
7   UIKitCore                     	0x00000001887eec48 -[UIEventFetcher threadMain] + 516
8   Foundation                    	0x000000018711ba34 __NSThread__start__ + 864
9   libsystem_pthread.dylib       	0x00000001d1833cb0 _pthread_start + 320
10  libsystem_pthread.dylib       	0x00000001d183c778 thread_start + 8

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

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

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x000000016dc12e10   x5: 0x0000000000000020   x6: 0x0000000000000020   x7: 0x0000000000000540
    x8: 0x00000000000005b9   x9: 0x9c093d78a9eee49b  x10: 0x00000000000007fb  x11: 0x0000000000000004
   x12: 0x0000000000000001  x13: 0x0000000083034ffb  x14: 0x0000000083235000  x15: 0x000000000000006a
   x16: 0x0000000000000148  x17: 0x0000000103cb78c0  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000000000407  x21: 0x0000000103cb79a0  x22: 0x0000000000000001  x23: 0x0000000281e21ef0
   x24: 0x0000000000000000  x25: 0x0000000000000001  x26: 0x0000000eb1e31100  x27: 0x00000001e8be4000
   x28: 0x0000000000000001   fp: 0x000000016dc13320   lr: 0x00000001d1834b50
    sp: 0x000000016dc13300   pc: 0x00000001b3cda414 cpsr: 0x40000000
   esr: 0x56000080  Address size fault

Binary Images:
0x1021ec000 - 0x1036f7fff LibtorchTestGPU arm64  <5abf7b99052230dcba1dff0b8736f103> /var/containers/Bundle/Application/1260B2AD-9EEF-4C06-B0F1-D44BDAF51721/LibtorchTestGPU.app/LibtorchTestGPU
0x103b60000 - 0x103b6bfff libobjc-trampolines.dylib arm64e  <0be796322ebd3748ac5506ab8b4fc60d> /usr/lib/libobjc-trampolines.dylib
0x103c0c000 - 0x103c7bfff dyld arm64e  <1f4d7499ee603c5d9d542cd29e4e537c> /usr/lib/dyld
0x103eb0000 - 0x103ec3fff GAXClient arm64e  <1ee604bb475f34e19e13fd3893a3ec53> /System/Library/AccessibilityBundles/GAXClient.bundle/GAXClient
0x185976000 - 0x1859b8fff libdispatch.dylib arm64e  <b92757b104343e9ba3acb6da6b81945c> /usr/lib/system/libdispatch.dylib
0x1859b9000 - 0x1859f3fff libdyld.dylib arm64e  <21b19919133438bcb233896e929945e0> /usr/lib/system/libdyld.dylib
0x1859f4000 - 0x185c5ffff libicucore.A.dylib arm64e  <cb72d6a6ceef313b88e7842da8de15cc> /usr/lib/libicucore.A.dylib
0x185c60000 - 0x186019fff CoreFoundation arm64e  <727f2644eb4e3d57bc2ee6803ba92366> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x18601a000 - 0x1861c5fff CoreServices arm64e  <c46f42d698c9323b8cee8e04f50bce45> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x18620f000 - 0x18628bfff SystemConfiguration arm64e  <97ad4485538f3f389fcdb3fb4df441c3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x18628c000 - 0x186383fff CoreTelephony arm64e  <810c9ed7d97438e19ca18fac779bab84> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x186384000 - 0x18681bfff CFNetwork arm64e  <0ebb3119a8ce35da96245b5528802fc8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x18681c000 - 0x186f29fff libnetwork.dylib arm64e  <39506b46189e3e828f32ab8326fcc2c7> /usr/lib/libnetwork.dylib
0x186f2a000 - 0x186fa0fff Accounts arm64e  <8cc93a19e5983eeb8afb506477688616> /System/Library/Frameworks/Accounts.framework/Accounts
0x186fa1000 - 0x18725cfff Foundation arm64e  <7698bf3e0cf631c085e9562714f01276> /System/Library/Frameworks/Foundation.framework/Foundation
0x18725d000 - 0x1875bffff ImageIO arm64e  <9fc48c6739e1399bb4ad52db3b37f607> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1875c0000 - 0x1875d8fff libCGInterfaces.dylib arm64e  <febafe4bdfe43604b11cd7567f36c825> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1875d9000 - 0x187b71fff CoreGraphics arm64e  <f5b44b3793af3d1fb053789a8626498a> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x187b72000 - 0x18901ffff UIKitCore arm64e  <8518eae3832b3ff09fa59dbe3041f26c> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x189020000 - 0x189042fff libAccessibility.dylib arm64e  <f62ac3057abf36c3a35156d384047c97> /usr/lib/libAccessibility.dylib
0x189043000 - 0x1892c9fff QuartzCore arm64e  <8510f13908243686a9aa3e198539a021> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1892ca000 - 0x189335fff BackBoardServices arm64e  <7f77d33c3c1f3cca979ae1332798a25f> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x189336000 - 0x1893c3fff TextInput arm64e  <61a52060d5843d1ca4f1864b5fb5617c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x18942d000 - 0x1897fbfff AppleMediaServices arm64e  <dd75e0038deb3e07937d85951ba9c25a> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1897fc000 - 0x189978fff libswiftFoundation.dylib arm64e  <e1d532c2354331b2830a611eecc21277> /usr/lib/swift/libswiftFoundation.dylib
0x189979000 - 0x189daafff libswiftCore.dylib arm64e  <de79398bb4423166b6ca1650b7155d82> /usr/lib/swift/libswiftCore.dylib
0x189dab000 - 0x189dc3fff UIKitServices arm64e  <513a8906528a35739a45c91ea1817430> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x189dc4000 - 0x189f1dfff Preferences arm64e  <de0e5cc777cd3d9eab2581e5d07d85cb> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x18a146000 - 0x18a2fdfff CoreText arm64e  <58b7adf717bf3fb093fd084cb70cba54> /System/Library/Frameworks/CoreText.framework/CoreText
0x18a2fe000 - 0x18a318fff ExtensionKit arm64e  <ab582630eb713eaa93594d139804e0cb> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x18a32e000 - 0x18a3b2fff BaseBoard arm64e  <d0fa26f104f73d73aaa6337d19ac0677> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x18a3b3000 - 0x18a5defff CoreDuet arm64e  <f4cb4e21d1bf356d903f9ef48dc892b8> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x18a742000 - 0x18bc97fff GeoServices arm64e  <c8392d1038ae3d6a84861c27beb42409> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x18bc98000 - 0x18bd2dfff CoreLocation arm64e  <27c07cfbfe903a308300038163f75a62> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x18bd2e000 - 0x18bee0fff CloudKit arm64e  <91285302d0043991af90fe2b0f3727d0> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x18bee1000 - 0x18c25ffff CoreData arm64e  <e4983c77f15e3012bf00a3fc6f2eb012> /System/Library/Frameworks/CoreData.framework/CoreData
0x18cfcc000 - 0x18cfd6fff libswiftCoreGraphics.dylib arm64e  <05d0f019b7a430f5b754bd60ea5b8559> /usr/lib/swift/libswiftCoreGraphics.dylib
0x18cfd7000 - 0x18d016fff AppSupport arm64e  <c9ca542cc2653802be879628070dc0a4> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x18d017000 - 0x18d140fff ManagedConfiguration arm64e  <73f74ef2dd093981b1d0834e9906ea6e> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x18d141000 - 0x18d1b2fff IMFoundation arm64e  <07b9b450b39930cca73871bd618fea4b> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x18d1b3000 - 0x18d2c3fff IDS arm64e  <f269d2be875533f481fd40c9d96b34c3> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x18d2c4000 - 0x18d411fff Security arm64e  <248431aabfe8399dad0ea942783d0e4b> /System/Library/Frameworks/Security.framework/Security
0x18d836000 - 0x18d84efff AudioSession arm64e  <ec9f661dcafc3a16b372bb4a803636e8> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x18d84f000 - 0x18d9effff AVFCore arm64e  <0294540d081033fdbad051943cb01d86> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x18d9f0000 - 0x18df9cfff Intents arm64e  <397b9f43ab043a72bc5ca59dfddd48fa> /System/Library/Frameworks/Intents.framework/Intents
0x18dfec000 - 0x18e305fff CoreImage arm64e  <bbd5ff0b4792336fb8482f5c0c6c692c> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x18e306000 - 0x18e3c3fff ColorSync arm64e  <cc269c1b128030d29443c45d8cb5addb> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x18e3c4000 - 0x18e3fffff CoreVideo arm64e  <a41932f1812e3928b8188feef048018d> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x18e400000 - 0x18ebecfff MediaToolbox arm64e  <334f787e71c73676b9136c5f2a3436dc> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x18ebed000 - 0x18ecedfff CoreMedia arm64e  <063231877fe13d2d9c430fdad845e776> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x18ecee000 - 0x18ef59fff AudioToolbox arm64e  <62b836837f2237f89cd6aed24461df2c> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x18ef5a000 - 0x18efaafff CoreHaptics arm64e  <bbd7402fc1b33e1a9258307051360494> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x18f00c000 - 0x18f116fff UIFoundation arm64e  <9b241bd011ab38c2a1ac19f09ec6e1b1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x18f117000 - 0x18f13cfff libsystem_info.dylib arm64e  <4141392213e530b7907d6662a1eab27e> /usr/lib/system/libsystem_info.dylib
0x18f13d000 - 0x18f1bbfff libsystem_c.dylib arm64e  <961a8fb0de8a3567b4375d99cd549fae> /usr/lib/system/libsystem_c.dylib
0x18f1bc000 - 0x18f207fff RunningBoardServices arm64e  <697a1a06cadc3e7fa852a474d80108cb> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x18f208000 - 0x190342fff JavaScriptCore arm64e  <1b9a9eccfde13d02abe735d29542d02a> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x190c19000 - 0x190c63fff Lexicon arm64e  <0056c7867b0c3bf38f9aae60c44beb0e> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x190cd2000 - 0x190d22fff CoreDuetContext arm64e  <6c4bdd0f96c1332584aa8536f7849456> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x190d23000 - 0x190dcefff IOKit arm64e  <92c9b0a3c0473a55b17b4c81f6b4f054> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x190dcf000 - 0x190ddffff DataMigration arm64e  <051256fd02fd3d5381c55bef2910a0af> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x190de0000 - 0x190e3dfff SpringBoardServices arm64e  <c150acc3bd2a3fa181fa7e4d4deb9175> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x190e51000 - 0x1910c4fff CoreMotion arm64e  <dd8e0d47a8cd3194a28b3bb6dfc7253c> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x191766000 - 0x191a04fff MediaRemote arm64e  <6506f7f32da538a9ae8083629db3d55b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x191a05000 - 0x191badfff CoreUtils arm64e  <a95e26b7bc623727aebd37b8ade7dda9> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x191bc5000 - 0x191c35fff CoreSpotlight arm64e  <22dc7b9c417e35459569bcc9bb02cadb> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x192051000 - 0x192202fff AssistantServices arm64e  <d6d666641d023a1081a6b3eff1096155> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x192203000 - 0x1922c9fff CoreUI arm64e  <da638c18e6ee36a3ba87a6cecb3189eb> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x192d10000 - 0x195677fff WebCore arm64e  <a9759e560e3f3dddb7d3f88a3250823e> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x195678000 - 0x1956d7fff libMobileGestalt.dylib arm64e  <48e77331a983378c8eb4b7cc854f4a89> /usr/lib/libMobileGestalt.dylib
0x1956d8000 - 0x1956f4fff CommonUtilities arm64e  <58bd77e1ead836a181a6f1f736d9bec1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1956f5000 - 0x195863fff IDSFoundation arm64e  <4cd55ce403cf353c8fc9c4fd458dd071> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x195ab2000 - 0x195ae5fff UserNotifications arm64e  <afe58449cf0234a4bc234ded3712a3d5> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x195ae6000 - 0x195b72fff FrontBoardServices arm64e  <a15e664c54bb3ac39d7f0bba7f43ebfe> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x195b73000 - 0x195b96fff libsystem_malloc.dylib arm64e  <bbade3853af53399b1d6180c6d33df9c> /usr/lib/system/libsystem_malloc.dylib
0x196645000 - 0x1966d7fff AuthKit arm64e  <2be58b7a584e3226b5551de2b35f61a6> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x19676c000 - 0x19686efff AVFAudio arm64e  <f41c217c594d3800afaa6724fa74c6e4> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x19686f000 - 0x196adafff AudioToolboxCore arm64e  <d1cb61efad603bd3b0d2006e7f6c5476> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x196de4000 - 0x196f6dfff Sharing arm64e  <75601c205057351bb1ed9396c7d5ac2b> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x196f6e000 - 0x197015fff ShareSheet arm64e  <5c25c6ab8f5535958e684ab408e3aec9> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x197be8000 - 0x197bfcfff MSUDataAccessor arm64e  <9140891644fe38208059c1cae5afb001> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x197bfd000 - 0x197c23fff MobileAsset arm64e  <ef35474d2eb63dff9d0e5760ee7bac37> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x197c24000 - 0x197c33fff libsystem_networkextension.dylib arm64e  <72e9b04cefb3311398130faa22fd28af> /usr/lib/system/libsystem_networkextension.dylib
0x197c34000 - 0x197e85fff NetworkExtension arm64e  <7f3e9729ca2e39ada585c363f6a7a9dc> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x197ebd000 - 0x198289fff CoreML arm64e  <f9033ece3eeb35079edb4ea0a1384705> /System/Library/Frameworks/CoreML.framework/CoreML
0x19828a000 - 0x198a0ffff Espresso arm64e  <e69d4058a9403d9c8bfb8c79e13f84ff> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x198a10000 - 0x198b0dfff VideoToolbox arm64e  <a291cd84788c36a095d8a7e53275e4cd> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x198b0e000 - 0x198b5afff OnBoardingKit arm64e  <8f99950c3c9430e792f6f1283c1fe2de> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x198b5b000 - 0x198c58fff AccessibilityUtilities arm64e  <3c860b8b81683618836c6344420cfc3a> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x198c59000 - 0x198c6afff AXCoreUtilities arm64e  <85b866951b613087b7b25211a67e69ae> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x199cd7000 - 0x199decfff LanguageModeling arm64e  <e913087b54783c95a3f30764ec877c0d> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x199ded000 - 0x199df5fff InternationalSupport arm64e  <05ea5f19fb0b33a5b9f3ceea6808df34> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x19a382000 - 0x19a4a6fff Combine arm64e  <15b9213c595936be871f3f582776b8c4> /System/Library/Frameworks/Combine.framework/Combine
0x19a535000 - 0x19a546fff UniformTypeIdentifiers arm64e  <15720249377a3189b5acde89ce28022a> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x19aaeb000 - 0x19ab29fff MediaServices arm64e  <415230c3259e36d78f62e8f1a9ce73e5> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x19ad9a000 - 0x19add0fff libobjc.A.dylib arm64e  <fea23cff02cf34268a4f893396ce92ff> /usr/lib/libobjc.A.dylib
0x19add1000 - 0x19ae33fff LoggingSupport arm64e  <0877d599d2bd33008d700d1f8abca399> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x19ae34000 - 0x19ae92fff libc++.1.dylib arm64e  <4a0b48d835483ad794c55e54ab10b6fa> /usr/lib/libc++.1.dylib
0x19ae93000 - 0x19aeacfff libc++abi.dylib arm64e  <2c28dce19a893752bcfc907e99183a63> /usr/lib/libc++abi.dylib
0x19b03c000 - 0x19b07ffff CoreAutoLayout arm64e  <942d516f2be635879821a450f305f686> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x19b080000 - 0x19b1defff Network arm64e  <9d7e4a86670f3742b6c188f150e74705> /System/Library/Frameworks/Network.framework/Network
0x19b1df000 - 0x19b215fff MobileKeyBag arm64e  <d1d35c92ad763198947c7c3c37dd1e3e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x19b46e000 - 0x19b520fff libvDSP.dylib arm64e  <981103e3468c336db8c5a574394ff73e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x19b521000 - 0x19b554fff libAudioToolboxUtility.dylib arm64e  <c901706dd96638d78a98e632d0103d36> /usr/lib/libAudioToolboxUtility.dylib
0x19b732000 - 0x19b7befff CoreNLP arm64e  <de7392a4528937b297a4d5c557697c25> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x19b7bf000 - 0x19b8d9fff FileProvider arm64e  <d9607b48e828313d88733480c22fbc28> /System/Library/Frameworks/FileProvider.framework/FileProvider

crash report - part #2

0x19b8eb000 - 0x19b903fff libswiftDispatch.dylib arm64e  <b6f59dfcf9bb31f8b0d5836177ba9668> /usr/lib/swift/libswiftDispatch.dylib
0x19b93b000 - 0x19b9cbfff Symbolication arm64e  <c15bd42b1d303aaf8b543d64f2433b5c> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x19b9cc000 - 0x19b9e9fff CrashReporterSupport arm64e  <3f0cb4bfb6f3385db83720e08fba9808> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x19bb55000 - 0x19bd43fff MPSNeuralNetwork arm64e  <333d91ab35473c47a5edf7be06a3deae> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x19bd44000 - 0x19bd9afff MPSCore arm64e  <b24eee3857a23fef906e34cc3a5a5386> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x19c1ef000 - 0x19c206fff ProtocolBuffer arm64e  <b53be2dce7853a81a741712c7219bd9b> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x19c488000 - 0x19c497fff AssertionServices arm64e  <6c4a8e5fe94534898cc33f75e1215b11> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x19c514000 - 0x19c5f4fff Metal arm64e  <b19644ec655d330fb5022316136a7b66> /System/Library/Frameworks/Metal.framework/Metal
0x19c5f5000 - 0x19c749fff MediaExperience arm64e  <4cae8c9c6156321788986d02541aaf56> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x19cb57000 - 0x19cb6dfff libsystem_trace.dylib arm64e  <3520924c65a7351dadbea07268a9bca7> /usr/lib/system/libsystem_trace.dylib
0x19cb6e000 - 0x19cb9ffff CoreServicesInternal arm64e  <5770501d3ece333d98d56da4d48fd9a5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x19d7d8000 - 0x19d87bfff SAObjects arm64e  <0e51de0329ee3389a4880eee96514db6> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x19d87c000 - 0x19d8c2fff VoiceServices arm64e  <ffd17ff082083822a8fa6907ffe784f5> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x19d8c3000 - 0x19d8cbfff GraphicsServices arm64e  <1959c615fa0830de8461884a5bbc8037> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x19daa1000 - 0x19dab6fff PowerLog arm64e  <e78464dca9813a359e5e19e567103906> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x19dab7000 - 0x19dae0fff DuetActivityScheduler arm64e  <6052f6a592943092afe626b8be3e70ed> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x19f794000 - 0x19f7b3fff ApplePushService arm64e  <ba619145be4532f689c5efe49a389479> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x19f7b4000 - 0x19f7ddfff BoardServices arm64e  <66c745c0795a341aa2c9b01043957b83> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x19f94c000 - 0x19f97cfff libncurses.5.4.dylib arm64e  <bd62f070cac63f8cba10b643ae9bdfe1> /usr/lib/libncurses.5.4.dylib
0x19f97d000 - 0x19f9ccfff OSAnalytics arm64e  <b1704e43a44338febb79d6e81b51a2d2> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x19f9cd000 - 0x19fa2cfff CoreBluetooth arm64e  <07157e457e543ae4ad87685503c2db42> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x19fc5d000 - 0x19fc92fff MobileInstallation arm64e  <35568a91b3b536acbdefa885f098b7d0> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x19fc93000 - 0x19fd21fff libTelephonyUtilDynamic.dylib arm64e  <e604b2167dae34e5892b42791848d0f3> /usr/lib/libTelephonyUtilDynamic.dylib
0x19fd22000 - 0x19fd91fff NanoRegistry arm64e  <0485700048f43d22b3423d2a7d8d7c16> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x19fe76000 - 0x19fe94fff CoreMaterial arm64e  <58b98f6de8df3813bb3416c568c45f9c> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x19ff0b000 - 0x1a0094fff libsqlite3.dylib arm64e  <2963f7ee43003bb69529587d5302a657> /usr/lib/libsqlite3.dylib
0x1a0095000 - 0x1a015bfff AVFCapture arm64e  <69a24b6680d23b65a9a90ccf8fec7e69> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1a015c000 - 0x1a04befff CMCapture arm64e  <771999efb9ed3182a75311c8d38c44e4> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1a0946000 - 0x1a098dfff AccessibilityUIUtilities arm64e  <ed47f85e326531819a077840da88cf45> /System/Library/PrivateFrameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x1a0cbe000 - 0x1a0cc8fff libsystem_notify.dylib arm64e  <cb00557eecb73b8ebee94de4a0b862aa> /usr/lib/system/libsystem_notify.dylib
0x1a0cc9000 - 0x1a0d0efff CryptoTokenKit arm64e  <af5eb1345e713c4aafa2b556abe82367> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1a0d7c000 - 0x1a0df0fff libcorecrypto.dylib arm64e  <7282f135d28937129081a2b32fdb3622> /usr/lib/system/libcorecrypto.dylib
0x1a0df1000 - 0x1a0e15fff UserManagement arm64e  <01f1ad278171339aa98d91876ef213d0> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1a0ef2000 - 0x1a0f08fff libsystem_asl.dylib arm64e  <6861da31b33a393eadeaa36da03ba670> /usr/lib/system/libsystem_asl.dylib
0x1a11cb000 - 0x1a1202fff CoreServicesStore arm64e  <7f13794ebc913959a201e01a396aa228> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1a1203000 - 0x1a1228fff CoreAnalytics arm64e  <0e3b705972c939ad9a5ca9b487f5c475> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1a1229000 - 0x1a1234fff SymptomAnalytics arm64e  <99e19311b5263984a27fd8976a1d70d3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1a1427000 - 0x1a1437fff NanoPreferencesSync arm64e  <04761bb803ce3b63aeec6a61cc549b85> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1a1c6e000 - 0x1a1c9afff IconServices arm64e  <d947a9247e9e309fa9eff038d7918f52> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1a2772000 - 0x1a2a39fff vImage arm64e  <235be66e7bb831bba92d486371ffc572> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1a3a37000 - 0x1a3a90fff ktrace arm64e  <0fd4ace25e6c3e0ca5e18b2aa5f4457f> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1a3a91000 - 0x1a3a93fff libAXSafeCategoryBundle.dylib arm64e  <ea03feef906a3abfbf605405d6033677> /usr/lib/libAXSafeCategoryBundle.dylib
0x1a3dae000 - 0x1a3dbcfff Celestial arm64e  <1637b47d575e35c19f0a61f21530746b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1a3eb4000 - 0x1a403cfff WebKitLegacy arm64e  <e2e6d532c92535a88a195438ec912e29> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1a50ce000 - 0x1a50d8fff IOMobileFramebuffer arm64e  <75b827a40b7e31278af975faf62e320b> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1a56ff000 - 0x1a576cfff AXRuntime arm64e  <59a0ea35db8b3b5096a37417306c84b8> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x1a576d000 - 0x1a578dfff PrototypeTools arm64e  <ca03807ff927380f9d8798ff437319c6> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1a578e000 - 0x1a57bbfff PersistentConnection arm64e  <2c14c002f3ea300f8b45706af2444601> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1a6266000 - 0x1a6282fff TextToSpeech arm64e  <b12ecf6f01703d36a5a6b3656b5994fa> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1a62bd000 - 0x1a6337fff Rapport arm64e  <389c3d98cdc83416bc1fcc79d99002f8> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1a6701000 - 0x1a6728fff LocationSupport arm64e  <0c0eb39ec3583a85bf0d32b53ba29782> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1a675e000 - 0x1a6789fff CoreAccessories arm64e  <aef72f8cdcd030ffbe2664c6c524f066> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x1a6a9b000 - 0x1a6a9dfff OSAServicesClient arm64e  <dec50288c55c378bb424658704258c77> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1a6aa1000 - 0x1a6afbfff ProtectedCloudStorage arm64e  <18d26651ea76381fad99579a036da0e3> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1a6afc000 - 0x1a6b34fff C2 arm64e  <f8b7dc6192b03c8ea012f71dc32e24c9> /System/Library/PrivateFrameworks/C2.framework/C2
0x1a7568000 - 0x1a75e7fff SiriInstrumentation arm64e  <1a459674e7bd3c6ab8069cd93a56d034> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1a75e8000 - 0x1a762cfff BiometricKit arm64e  <84245e1657b93e089d937cc9a3c8e83d> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1a7674000 - 0x1a7729fff CoreSymbolication arm64e  <4a497d5f199b3a17b912d711e97154d7> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1a7f11000 - 0x1a7f23fff IOSurface arm64e  <2bb4143452ee3bd7822950b3840218b6> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1a7f24000 - 0x1a7f86fff MobileWiFi arm64e  <cb04e63128a23661a0c5ab073cf2dbf4> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1a857a000 - 0x1a85b5fff libGLImage.dylib arm64e  <5e1452bc1b723ea9bbee08acd20195f3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1a85b6000 - 0x1a85bdfff libsystem_symptoms.dylib arm64e  <ee0315ac9aab3bd4ab86ede010db097a> /usr/lib/system/libsystem_symptoms.dylib
0x1a8605000 - 0x1a8b66fff CoreAudio arm64e  <35f706386c053b64b34f60e273b2a83c> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1a9274000 - 0x1a9284fff CoreAUC arm64e  <a3045e052c2733a89ad0fdaca05abf4a> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1a9abb000 - 0x1a9accfff SettingsFoundation arm64e  <811cb2e1f0d53fc1af2a1a3f71eb1db7> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1aa23b000 - 0x1aa460fff RawCamera arm64e  <9a42969f13af3707af77a973d8dab18d> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1aad92000 - 0x1aad9ffff MediaSafetyNet arm64e  <54121c6dbfb9370ca7134c3d2139a992> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1aada0000 - 0x1aadddfff TimeSync arm64e  <79da117bf4763bb3901a21e4ae54c148> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1aae76000 - 0x1aaebcfff ExposureNotification arm64e  <fc21a8518042312daec8b25f592825e3> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1ab549000 - 0x1ab552fff CoreTime arm64e  <cc7f0c252783371a9e4871e61476bc79> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1ac143000 - 0x1ac14cfff ContextKitExtraction arm64e  <3b1d92e5f4ac37e8887e97798a3bee96> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1ac22a000 - 0x1ac22cfff libswiftObjectiveC.dylib arm64e  <6d0b9153875939f48ebfc48dfdc4d77c> /usr/lib/swift/libswiftObjectiveC.dylib
0x1adab9000 - 0x1adac8fff MobileIcons arm64e  <e8c4f97c59483d7f9f59b26835929137> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1af19e000 - 0x1af1f9fff AccessibilitySharedSupport arm64e  <fc000a22d5813cbf862e202e4b6cab8e> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x1af1fa000 - 0x1af204fff MallocStackLogging arm64e  <66bfc8d3c6f335519ce3f213ab98480e> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1af441000 - 0x1af48cfff MetadataUtilities arm64e  <a3943301ae45335f8443281c7f346621> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1afbdf000 - 0x1afc3efff CoreLocationProtobuf arm64e  <29e0b3b8c4d133e1a16975c207af057f> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1afe53000 - 0x1afe85fff Bom arm64e  <68852959ebe03756837b46f2c1f767ec> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1afebb000 - 0x1afec2fff PushKit arm64e  <ea9b2ff9825f30a29dc38fe3e70fd6de> /System/Library/Frameworks/PushKit.framework/PushKit
0x1b00c9000 - 0x1b0159fff Quagga arm64e  <e6bf111821bb3f7abb33d6341b2ed140> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1b015a000 - 0x1b0162fff StudyLog arm64e  <15e63b6cec933fa882889d0cefd8a9ef> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1b23e5000 - 0x1b23f4fff libAXSpeechManager.dylib arm64e  <855d54291cab35d2b1d5fe5036d23fea> /usr/lib/libAXSpeechManager.dylib
0x1b33c7000 - 0x1b33d2fff AppleIDAuthSupport arm64e  <dd29948306213f7a969ad30268933ae0> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1b33e2000 - 0x1b33fbfff LocalAuthentication arm64e  <a99dfb53f24d3af59e419be0d7d32ec8> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1b33fc000 - 0x1b3402fff IOAccelerator arm64e  <a52c34191fec367088c065bfff85305d> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1b3cb2000 - 0x1b3ce3fff libsystem_kernel.dylib arm64e  <b373b97b671e301ca6b7c9f92e17dca0> /usr/lib/system/libsystem_kernel.dylib
0x1b46b4000 - 0x1b46c1fff FontServices arm64e  <b081806bbcba335480622196cb0c05dd> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1b4877000 - 0x1b4883fff MediaAccessibility arm64e  <babd3b53c8f63359aa5a98e3bfec3f34> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1b48c6000 - 0x1b4e82fff SiriTTS arm64e  <d89264983c0f3d73940103abd22bb399> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1b4fc9000 - 0x1b4feffff NetAppsUtilities arm64e  <eec3862499d432a3b13b4292b1aafc6a> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1b6227000 - 0x1b6237fff libdscsym.dylib arm64e  <1fc227cb8893384b8453555702030bb5> /usr/lib/libdscsym.dylib
0x1b6238000 - 0x1b6249fff HangTracer arm64e  <148caf8207a83d1a87b0a476cc755f35> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1b6407000 - 0x1b64c5fff SampleAnalysis arm64e  <38e052d99e2032ce84bfa5e7d96c12aa> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1b64c6000 - 0x1b64f6fff PlugInKit arm64e  <1b06f4b4a9c33af8875c49f515e38d78> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1b65a6000 - 0x1b65a7fff libSystem.B.dylib arm64e  <7d42c8382a04372e9fccdc7a95ef88f4> /usr/lib/libSystem.B.dylib
0x1b68be000 - 0x1b68cafff MobileActivation arm64e  <8b7d8a2e5934388c93ed41de5cb99df4> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1b6a1b000 - 0x1b6a8bfff libarchive.2.dylib arm64e  <d766b73088553bd28ba75b2d926ffbea> /usr/lib/libarchive.2.dylib
0x1b6a8c000 - 0x1b6ab0fff libtailspin.dylib arm64e  <98055fb0cc033819bc074fb958f6e656> /usr/lib/libtailspin.dylib
0x1b6ab1000 - 0x1b6f66fff libBNNS.dylib arm64e  <13ec7750493a31bcad11234e3950686d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1b6f67000 - 0x1b6faafff SharedUtils arm64e  <ef436f1da823338a9dce86f9deacc906> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1b75c7000 - 0x1b75c7fff AVFoundation arm64e  <1dcd460171643d2ca077cc511181b1ec> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1b75c8000 - 0x1b75c8fff Accelerate arm64e  <b2f811f636d9398b9e2a080408efed72> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1b75c9000 - 0x1b7823fff libBLAS.dylib arm64e  <effe16b216183f3aa06ce58527e217f3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1b7824000 - 0x1b7ccefff libLAPACK.dylib arm64e  <6eea1e2a662630508a2e8b690016e7e0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1b7ccf000 - 0x1b7ce3fff libLinearAlgebra.dylib arm64e  <64203c23bfb735adb6823d4fd877c7d6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1b7ce4000 - 0x1b7ce8fff libQuadrature.dylib arm64e  <ffc2799051a93d79b60ccf610debaaf4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1b7ce9000 - 0x1b7d4bfff libSparse.dylib arm64e  <7244ae07ad933247aa101be5ba810cd7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1b7d4c000 - 0x1b7d5dfff libSparseBLAS.dylib arm64e  <2351d0bc0e6b33068c41c4e1be339920> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1b7d5e000 - 0x1b7db6fff libvMisc.dylib arm64e  <d7f6e639d9e33e0eb5c653903f95ebac> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1b7db7000 - 0x1b7db7fff vecLib arm64e  <6cec3ecd6c1a3f2f97ae525ff2046274> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1b7db8000 - 0x1b7dbbfff Accessibility arm64e  <1994de9b5c6f3f40b2485f066f2fb512> /System/Library/Frameworks/Accessibility.framework/Accessibility
0x1b8031000 - 0x1b809afff CoreMIDI arm64e  <9411ca7963a431d7835a511ff2e3fcd3> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1b87bf000 - 0x1b8912fff MLCompute arm64e  <238c5cacb32d3a82b319be8226d72517> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1b8955000 - 0x1b89dbfff MPSImage arm64e  <dddc7ccf8dc635b991a65062b979b2a2> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1b89dc000 - 0x1b8a02fff MPSMatrix arm64e  <19c8ce40ea28340eb5e61151589d9a5b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1b8a03000 - 0x1b8a41fff MPSNDArray arm64e  <33d53f36a2aa3e39a9cb6f7ac2723edc> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1b8a42000 - 0x1b8a8afff MPSRayIntersector arm64e  <826f7ecb42153845b6c81434e31d05b8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1b8a8b000 - 0x1b8a8bfff MetalPerformanceShaders arm64e  <c3e2c89e6c6b35a79c4acc3c0c8f817a> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1b8e28000 - 0x1b8e28fff MobileCoreServices arm64e  <013cab54d0ec301a82151c17a2a44899> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1b9a26000 - 0x1b9a2efff OpenGLES arm64e  <fa5413d895ef3dada5eed752ca32bb1f> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1b9a2f000 - 0x1b9a30fff libCVMSPluginSupport.dylib arm64e  <1ca789cb22ac36e1858b241da4c8dcb7> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1b9a31000 - 0x1b9a37fff libCoreFSCache.dylib arm64e  <2411f21fea7c3656a0990c3ae36e88e8> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1b9a38000 - 0x1b9a3dfff libCoreVMClient.dylib arm64e  <04bd5aee36673163b188185a5d4f02a3> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1b9a3e000 - 0x1b9a47fff libGFXShared.dylib arm64e  <59b568645cb53655a427478652ed8e27> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1ba66b000 - 0x1ba66bfff UIKit arm64e  <d6833c925bf638189ede3bb4092a0919> /System/Library/Frameworks/UIKit.framework/UIKit
0x1bb87e000 - 0x1bb881fff AFKUser arm64e  <3f4d68e133773dd2ba45c82c59125f30> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1bb946000 - 0x1bbbcdfff ANECompiler arm64e  <e0e71c2d708d3b4898f9fd7ab1522d88> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1bbbce000 - 0x1bbbe2fff ANEServices arm64e  <892263bf8972321bafd567ad02a18d1b> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1bbbe7000 - 0x1bbca5fff APFS arm64e  <7edafa643f783bd2a5e33a4a561da182> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1bbca6000 - 0x1bbcacfff ASEProcessing arm64e  <a9a265754d843c00bf34f91021d26ab0> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1bc4e0000 - 0x1bc4e5fff AggregateDictionary arm64e  <abc24f86a76c3527b95a42e60388a17c> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1bc673000 - 0x1bc74cfff AirPlaySync arm64e  <ca9355ec78d8371f860be5e39afddcd9> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1bc858000 - 0x1bc874fff AlgosScoreFramework arm64e  <5c7187b493873ec2aaec38217477c23e> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1bc9a6000 - 0x1bcb36fff AppC3D arm64e  <cdce6e81f022306c8d5d3b56d537fe08> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x1bcb37000 - 0x1bcb5afff AppConduit arm64e  <215852febc063104af8826a31fa23dd9> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1bdf7e000 - 0x1bdf8dfff AppleFSCompression arm64e  <34598412dc53349892b4f249fa996350> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1bdf9a000 - 0x1bdfbefff AppleIDSSOAuthentication arm64e  <bc67411f8fa53b03a28846dcc538eadb> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1bdfbf000 - 0x1be004fff AppleJPEG arm64e  <5fa8e99c227f39879149a9fa5275b651> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1be091000 - 0x1be0a6fff AppleNeuralEngine arm64e  <bd55f5d004113928b0ac4f36af21ade7> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1be0b0000 - 0x1be0d4fff AppleSauce arm64e  <5c480b789dfb3fe5ba264691c1f88a8d> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1be68b000 - 0x1be69afff BluetoothManager arm64e  <42fc1b4fd49831b58684b707a38436da> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1be739000 - 0x1be74afff BrailleTranslation arm64e  <fc5351919dde35c492c21267311b9981> /System/Library/PrivateFrameworks/BrailleTranslation.framework/BrailleTranslation
0x1be947000 - 0x1be951fff CMCaptureCore arm64e  <203549efeb873319bfec7749818fb59b> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1be96c000 - 0x1be97bfff CPMS arm64e  <2a9d048276f339afa95beb6ab9557604> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1beca2000 - 0x1becadfff CaptiveNetwork arm64e  <438ae3c09d773cd6b3fc8172b7e68a28> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1bee89000 - 0x1beed9fff ChunkingLibrary arm64e  <c9e1f078a60b391bbd5f740c04a1cc10> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1bf3e6000 - 0x1bf3e9fff ConstantClasses arm64e  <b49b804354873a78b69c730673ae8755> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1bf63e000 - 0x1bf735fff CoreBrightness arm64e  <8779d983de8d39a898b05f1357369de9> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1bf7a3000 - 0x1bf7b2fff CoreDuetDaemonProtocol arm64e  <bb16b5419c7c399c9eedbcd82ce34ac0> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1bf7b5000 - 0x1bf7b7fff CoreDuetDebugLogging arm64e  <08c1ced4b6d23b6a9206feae90d408a3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1bf7c6000 - 0x1bf7d8fff CoreEmoji arm64e  <64bb59468c9d3706b0c84f94eda95fa6> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1bfecc000 - 0x1bfed4fff CorePhoneNumbers arm64e  <a099b15f9ea132f190e6436e5686ee79> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1c0900000 - 0x1c092afff CoreSVG arm64e  <012037e7a6183373b8097fa32264a57e> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1c0be3000 - 0x1c0c0dfff DeviceIdentity arm64e  <63ef4b0617b138e19c4d4416228b78c4> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1c0ea3000 - 0x1c0edffff DocumentManager arm64e  <c54186de7fa437358a07880d6d4e6d64> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1c0ee0000 - 0x1c0f00fff DocumentManagerCore arm64e  <8081d2b7b5643eb3bc63c7f910bca3c6> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1c0f8b000 - 0x1c0f8dfff DragUI arm64e  <886c83486d80388ca9ae580581ff1e3d> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1c0fbd000 - 0x1c0feefff EAP8021X arm64e  <930411b09df032d98d485232739c903e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1c101e000 - 0x1c1033fff Engram arm64e  <23de13adf86432c29fe535af865666b0> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1c1174000 - 0x1c117bfff ExtensionFoundation arm64e  <bcb6582e13123c20bb8c2ebbfe35e2ee> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1c133c000 - 0x1c1750fff FaceCore arm64e  <d3dd1092cc2e3b13b40f94917908b67d> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1c1759000 - 0x1c175efff FeatureFlagsSupport arm64e  <6a50b1c3c520398b8c9a5ffb1d326e75> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1c190a000 - 0x1c1a4cfff libFontParser.dylib arm64e  <bada6320e5c73542bc4d538145eb0761> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1c1a4d000 - 0x1c1a55fff libGSFont.dylib arm64e  <b44455d72bd63b3e81afc92bdc0734e9> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1c1a56000 - 0x1c1a93fff libGSFontCache.dylib arm64e  <8971ad0fd4d53bc59dc550cf1f2b5eeb> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1c1af9000 - 0x1c1b06fff libhvf.dylib arm64e  <b0db005b204e337988d25394ba7bbed9> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1c26e5000 - 0x1c26e5fff libmetal_timestamp.dylib arm64e  <fe39c5cab41a3c828937020f615235a2> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
0x1c27c8000 - 0x1c27e7fff GenerationalStorage arm64e  <7fd0e4a64ec0376094fa7fc92b8c6ae3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1c27e8000 - 0x1c27f5fff GraphVisualizer arm64e  <f930b8e63f773432bb078bbc15423bd2> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1c2822000 - 0x1c282efff HID arm64e  <997e4d59f29c3718ae5900013b2f93c5> /System/Library/PrivateFrameworks/HID.framework/HID
0x1c32b2000 - 0x1c32d1fff IOGPU arm64e  <3d3aed8398f9389ba41bec7a5ea77a83> /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU
0x1c32d3000 - 0x1c32dcfff IOKitten arm64e  <9ad896dbcfe8393cb7a210b951d9089c> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1c32dd000 - 0x1c32dffff IOSurfaceAccelerator arm64e  <bf23e49eebad3a078d4df3a00a4c179b> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1c330a000 - 0x1c3311fff IdleTimerServices arm64e  <7c3d6a90eef83db9b955f7bb61ead2f8> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1c33e6000 - 0x1c33f3fff IntentsFoundation arm64e  <20d10bef741433eda59cc0307c653aeb> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation

crash report - part #3

0x1c3411000 - 0x1c342efff IntlPreferences arm64e  <f43bdccb09cd329fa79a1c90d8e69611> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1c36a7000 - 0x1c36aefff LinguisticData arm64e  <312c5d7f90d3320f8aeb09937d161525> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1c3900000 - 0x1c3900fff Marco arm64e  <d722f0f6d47b378fadbd8fdffe495e31> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1c4376000 - 0x1c4448fff MetalTools arm64e  <f44fdf455af739738fe6f0c24b8964f2> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1c44d9000 - 0x1c44edfff MobileBluetooth arm64e  <db1a48222a053f558a673506a0dacc38> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1c4570000 - 0x1c4576fff MobileSystemServices arm64e  <6ba8ebc692dd38d180f292d4269cd1f1> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1c492f000 - 0x1c4935fff Netrb arm64e  <260396c402443b028b7448f550e02c17> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1c49f6000 - 0x1c4a10fff NetworkStatistics arm64e  <617ea04ac1db345aab671fdb52aa7b17> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1c4aee000 - 0x1c4b2ffff OTSVG arm64e  <00d86fb69cf635faab22b8b6fa7cda34> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1c5184000 - 0x1c51b0fff Pasteboard arm64e  <fff33f3abde4393ea6fb3f392c166b49> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1c5235000 - 0x1c5235fff PhoneNumbers arm64e  <c5a401f23bfa3388877be39bf699e2c5> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1c5446000 - 0x1c5492fff PhysicsKit arm64e  <e22fdd58fdd6302b9f66a17729fd3061> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1c5553000 - 0x1c555efff PointerUIServices arm64e  <c71697e82d1d30779cab7c42e76e82f1> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1c6dab000 - 0x1c6dbdfff RemoteTextInput arm64e  <4957abae6a4e3edd953919ce547c19d7> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1c7383000 - 0x1c73b8fff ScreenReaderCore arm64e  <33a9d8fc74463f2b819213dc4250a3d4> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x1c73b9000 - 0x1c7400fff ScreenReaderOutput arm64e  <b4310f8b9a56377197d6effb6406801c> /System/Library/PrivateFrameworks/ScreenReaderOutput.framework/ScreenReaderOutput
0x1c892a000 - 0x1c8934fff SignpostCollection arm64e  <0e1a2eef68dd3fe5aeaa1d3759c46362> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1c8935000 - 0x1c8935fff SignpostMetrics arm64e  <81374dd6fb9c3fb8b64db78fc1ddd1bc> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1c8937000 - 0x1c8978fff SignpostSupport arm64e  <62f534a6875435c5b919c1ff754031a8> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1c94a9000 - 0x1c94a9fff SoftLinking arm64e  <2039e1311e783ef6b012310bc4de4222> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1c99aa000 - 0x1c99e8fff StreamingZip arm64e  <2aeb745662cf308d9074f0a44f0680fd> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1c99f0000 - 0x1c99fafff SymptomDiagnosticReporter arm64e  <77f539309c7931b389d6e7d4f9203187> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1c9a2c000 - 0x1c9a48fff SymptomPresentationFeed arm64e  <c82e7df56dcf3eb5aad8769d4d8e0a74> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1c9a88000 - 0x1c9a98fff TCC arm64e  <5eb3e57592fe366093d4ee98625696e1> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1ca39f000 - 0x1ca453fff TextureIO arm64e  <39b83f8ef7013ac99b77e9994ec66025> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1ca681000 - 0x1ca688fff URLFormatting arm64e  <359aa25a10a2333290b93cb58f491102> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1cb79f000 - 0x1cb7ddfff VoiceOverServices arm64e  <70265b6f77d53d7d958ef2a769f62e9d> /System/Library/PrivateFrameworks/VoiceOverServices.framework/VoiceOverServices
0x1cb977000 - 0x1cb978fff WatchdogClient arm64e  <d2e9111e5dc83579be818f4c8b9dde30> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1cbc5d000 - 0x1cc399fff libwebrtc.dylib arm64e  <aa754ea82e973bb382d20b9728efcd8e> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1cc975000 - 0x1cc978fff XCTTargetBootstrap arm64e  <81e7f051ea293b32aa8db6b31043c1b1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1cc9fe000 - 0x1cca1dfff caulk arm64e  <b170cf9d18cf360cb6783d1fa8545de0> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1cef92000 - 0x1cef97fff kperf arm64e  <00833ee7334a357397d803fc54a7e96a> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1cef98000 - 0x1cefa0fff kperfdata arm64e  <5fd952a747393327b7a964c9c3bfa46d> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1cefa1000 - 0x1cefb7fff libEDR arm64e  <36804b020c1c3bab8fed5f225920287a> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1cefd0000 - 0x1cefe1fff perfdata arm64e  <c692a64284a03d519388df48cde59922> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1cf942000 - 0x1cf97efff libAWDSupport.dylib arm64e  <efa3c25aae0538d6a1eac37c389ef4f2> /usr/lib/libAWDSupport.dylib
0x1cfebd000 - 0x1cfeccfff libAudioStatistics.dylib arm64e  <d43dc9402a6c3daa9994658116e61065> /usr/lib/libAudioStatistics.dylib
0x1d0072000 - 0x1d00a5fff libCRFSuite.dylib arm64e  <2ae9058b25ce31468ab4f02615f16d47> /usr/lib/libCRFSuite.dylib
0x1d00a6000 - 0x1d00a7fff libCTGreenTeaLogger.dylib arm64e  <216ec5a25c553a51abc186cfb4a0b607> /usr/lib/libCTGreenTeaLogger.dylib
0x1d00a8000 - 0x1d00b2fff libChineseTokenizer.dylib arm64e  <dd9080fb42473af6a1be351790a0920c> /usr/lib/libChineseTokenizer.dylib
0x1d0369000 - 0x1d0370fff libIOReport.dylib arm64e  <4da98ad919f939e4b6d7db4d956aba56> /usr/lib/libIOReport.dylib
0x1d03ec000 - 0x1d03f3fff libMatch.1.dylib arm64e  <4e79655369f33fbf9e66c74da713576d> /usr/lib/libMatch.1.dylib
0x1d0510000 - 0x1d0511fff libThaiTokenizer.dylib arm64e  <79a2d59378b13e2d868fc11ab23b4d6c> /usr/lib/libThaiTokenizer.dylib
0x1d0787000 - 0x1d0789fff libapp_launch_measurement.dylib arm64e  <c9185c8b5e8c3dcc87f4d4e8211bfcc9> /usr/lib/libapp_launch_measurement.dylib
0x1d078a000 - 0x1d07a0fff libapple_nghttp2.dylib arm64e  <aa7df81a69c13795a30386bf158fdd61> /usr/lib/libapple_nghttp2.dylib
0x1d07a1000 - 0x1d0832fff libate.dylib arm64e  <191d61e4155c3b16a602d59611c1653e> /usr/lib/libate.dylib
0x1d08c4000 - 0x1d08d4fff libbsm.0.dylib arm64e  <67259e0c8b2a3ff3a21be629e0f686ac> /usr/lib/libbsm.0.dylib
0x1d08d5000 - 0x1d08e1fff libbz2.1.0.dylib arm64e  <1ece9cb83cd633c79f28a480997339dc> /usr/lib/libbz2.1.0.dylib
0x1d08e2000 - 0x1d08e2fff libcharset.1.dylib arm64e  <b28f9d663d723a4198566fd8d095045a> /usr/lib/libcharset.1.dylib
0x1d08e3000 - 0x1d08f4fff libcmph.dylib arm64e  <e74d75feb9aa3351ace0b11b0048a262> /usr/lib/libcmph.dylib
0x1d08f5000 - 0x1d090cfff libcompression.dylib arm64e  <0f27f2f9302f37978c084cd6cec38432> /usr/lib/libcompression.dylib
0x1d090d000 - 0x1d0923fff libcoretls.dylib arm64e  <82b845672c153d149c2e5f7d52829fcc> /usr/lib/libcoretls.dylib
0x1d0924000 - 0x1d0925fff libcoretls_cfhelpers.dylib arm64e  <2fc084f0e6cb38ccb3441c80ad1393d7> /usr/lib/libcoretls_cfhelpers.dylib
0x1d0949000 - 0x1d0950fff libcupolicy.dylib arm64e  <7b39fce102fa3f45892ffdb80f422f4f> /usr/lib/libcupolicy.dylib
0x1d0951000 - 0x1d0958fff libdns_services.dylib arm64e  <4cac384f00653034afbbcf8288b0bfd1> /usr/lib/libdns_services.dylib
0x1d0959000 - 0x1d0976fff libedit.3.dylib arm64e  <bd69ef25a910316b8a598936b813b638> /usr/lib/libedit.3.dylib
0x1d0977000 - 0x1d0977fff libenergytrace.dylib arm64e  <cbea27377f49368ab116286ed2f32786> /usr/lib/libenergytrace.dylib
0x1d0978000 - 0x1d0991fff libexpat.1.dylib arm64e  <db63f6bc6fda397792284f85556f7818> /usr/lib/libexpat.1.dylib
0x1d09bb000 - 0x1d09bffff libgermantok.dylib arm64e  <585ec8a40b0e32e88dba53f35a07c70f> /usr/lib/libgermantok.dylib
0x1d09c0000 - 0x1d09c5fff libheimdal-asn1.dylib arm64e  <ff93656c73c637e083a88a38141ca58c> /usr/lib/libheimdal-asn1.dylib
0x1d09c6000 - 0x1d0abbfff libiconv.2.dylib arm64e  <03e7a7e4dde835508741edd69270af5f> /usr/lib/libiconv.2.dylib
0x1d0ada000 - 0x1d0adbfff liblangid.dylib arm64e  <1255de5ea4983685bb6973604d732267> /usr/lib/liblangid.dylib
0x1d0adc000 - 0x1d0ae7fff liblockdown.dylib arm64e  <23c07c0fc5093e37bfd7a0e276ea3d98> /usr/lib/liblockdown.dylib
0x1d0ae8000 - 0x1d0b00fff liblzma.5.dylib arm64e  <9046f47632bb38bba83c47f76e71d306> /usr/lib/liblzma.5.dylib
0x1d0b2f000 - 0x1d0b84fff libmecab.dylib arm64e  <1248e78f670a3e80a0dd39837cf782d7> /usr/lib/libmecab.dylib
0x1d0dbd000 - 0x1d0dd0fff libmis.dylib arm64e  <b5dd4a39682634028ad0a01b9c3fa881> /usr/lib/libmis.dylib
0x1d0dd1000 - 0x1d0de6fff libnetworkextension.dylib arm64e  <b499b779618f3a8782a283017000304a> /usr/lib/libnetworkextension.dylib
0x1d1191000 - 0x1d11cbfff libpcap.A.dylib arm64e  <989fc8a318983af69064be81e007c38d> /usr/lib/libpcap.A.dylib
0x1d11cc000 - 0x1d11dafff libperfcheck.dylib arm64e  <f03916c9f26d3073ad528e15e1a2d7f6> /usr/lib/libperfcheck.dylib
0x1d11e2000 - 0x1d11f4fff libprequelite.dylib arm64e  <1849a2dc033a3aaa8d60fcf4b10b499c> /usr/lib/libprequelite.dylib
0x1d11f5000 - 0x1d1207fff libprotobuf-lite.dylib arm64e  <53f0e1389e0530bc9131dd569d28ecad> /usr/lib/libprotobuf-lite.dylib
0x1d1208000 - 0x1d126afff libprotobuf.dylib arm64e  <d81292f3b0bb3852b0b247bd8cbc24a6> /usr/lib/libprotobuf.dylib
0x1d12cb000 - 0x1d12e3fff libresolv.9.dylib arm64e  <51b76938e8c13d458dd30429749fef91> /usr/lib/libresolv.9.dylib
0x1d12e4000 - 0x1d12e6fff libsandbox.1.dylib arm64e  <09633f29d77035d9893f2a49dde7ca48> /usr/lib/libsandbox.1.dylib
0x1d1330000 - 0x1d1333fff libutil.dylib arm64e  <d77e2807eed438349e164bb8d9e1edcc> /usr/lib/libutil.dylib
0x1d1334000 - 0x1d141ffff libxml2.2.dylib arm64e  <55df15ddfd323d458d67b61f9d0f9463> /usr/lib/libxml2.2.dylib
0x1d144e000 - 0x1d145ffff libz.1.dylib arm64e  <9e35153333503f8bb9b567ec5881c5ef> /usr/lib/libz.1.dylib
0x1d1552000 - 0x1d1552fff libswiftCoreFoundation.dylib arm64e  <8eb23177992d3ae683a427f98761d366> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1d15ac000 - 0x1d15b5fff libswiftDarwin.dylib arm64e  <53a5784711cb3c77a42392362dfa2dbb> /usr/lib/swift/libswiftDarwin.dylib
0x1d16b5000 - 0x1d16bafff libcache.dylib arm64e  <7567dfaa324e306aa66fc2dda88b033b> /usr/lib/system/libcache.dylib
0x1d16bb000 - 0x1d16c8fff libcommonCrypto.dylib arm64e  <25abfbdfed4431f7a628bd742e231f31> /usr/lib/system/libcommonCrypto.dylib
0x1d16c9000 - 0x1d16ccfff libcompiler_rt.dylib arm64e  <d33e74102bae373585edeb219279aa43> /usr/lib/system/libcompiler_rt.dylib
0x1d16cd000 - 0x1d16d5fff libcopyfile.dylib arm64e  <fae70da0ebad33f293ac496dcbe46fea> /usr/lib/system/libcopyfile.dylib
0x1d17bd000 - 0x1d17bdfff liblaunch.dylib arm64e  <2484228087bc30c68b69739b80187b10> /usr/lib/system/liblaunch.dylib
0x1d17be000 - 0x1d17c3fff libmacho.dylib arm64e  <4228e603576133778acefc84d49a4d2f> /usr/lib/system/libmacho.dylib
0x1d17c4000 - 0x1d17c6fff libremovefile.dylib arm64e  <904853f042653abe93730a3ecdf39678> /usr/lib/system/libremovefile.dylib
0x1d17c7000 - 0x1d17c8fff libsystem_blocks.dylib arm64e  <f285e167aaa73ab7a092085ca4d1a0c5> /usr/lib/system/libsystem_blocks.dylib
0x1d17c9000 - 0x1d17cbfff libsystem_collections.dylib arm64e  <ea85747378323fa18286e5b16bc56a4e> /usr/lib/system/libsystem_collections.dylib
0x1d17cc000 - 0x1d17d0fff libsystem_configuration.dylib arm64e  <230a7783b6ac3c7fba6991bdfa91823d> /usr/lib/system/libsystem_configuration.dylib
0x1d17d1000 - 0x1d17e3fff libsystem_containermanager.dylib arm64e  <01ba22f7abce3319860fb76d10a0d6d9> /usr/lib/system/libsystem_containermanager.dylib
0x1d17e4000 - 0x1d17e5fff libsystem_coreservices.dylib arm64e  <f83a3238b8303072ab9113587ed26129> /usr/lib/system/libsystem_coreservices.dylib
0x1d17e6000 - 0x1d17effff libsystem_darwin.dylib arm64e  <63485fa6fe9235b783a00554e0194eba> /usr/lib/system/libsystem_darwin.dylib
0x1d17f0000 - 0x1d17f8fff libsystem_dnssd.dylib arm64e  <591126c3ffdb3df8afb3cb5f5c3e79a0> /usr/lib/system/libsystem_dnssd.dylib
0x1d17f9000 - 0x1d17fbfff libsystem_featureflags.dylib arm64e  <a5ca1f870aef3eee876e0c077d7638ee> /usr/lib/system/libsystem_featureflags.dylib
0x1d17fc000 - 0x1d1829fff libsystem_m.dylib arm64e  <c9e29eee8f90377795c625952802e491> /usr/lib/system/libsystem_m.dylib
0x1d182a000 - 0x1d1830fff libsystem_platform.dylib arm64e  <88fa2f54074d32c49f4879eb67e67b7b> /usr/lib/system/libsystem_platform.dylib
0x1d1831000 - 0x1d1831fff libsystem_product_info_filter.dylib arm64e  <563ac8a6230f305bbada77870fec6204> /usr/lib/system/libsystem_product_info_filter.dylib
0x1d1832000 - 0x1d183dfff libsystem_pthread.dylib arm64e  <c939a2abd3b13b0a83c57ce2f4f339a9> /usr/lib/system/libsystem_pthread.dylib
0x1d183e000 - 0x1d1841fff libsystem_sandbox.dylib arm64e  <d7ea594452b73c8882c4726694052a14> /usr/lib/system/libsystem_sandbox.dylib
0x1d1842000 - 0x1d184cfff libunwind.dylib arm64e  <d08ac1cff13c37cf93066cc664058cf0> /usr/lib/system/libunwind.dylib
0x1d184d000 - 0x1d1883fff libxpc.dylib arm64e  <cc048c8e1cad36c88a9615966103bd3a> /usr/lib/system/libxpc.dylib
0x1d1926000 - 0x1d1941fff AccessibilitySettingsLoader arm64e  <c327603ed0da3823a025ac2d6bbe9608> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x1d2bfa000 - 0x1d2f14fff AGXMetalA13 arm64e  <d84f2694f6fd3da09387138d680cb6d5> /System/Library/Extensions/AGXMetalA13.bundle/AGXMetalA13

EOF