Posts

Post not yet marked as solved
7 Replies
After some tossing, I finally reproduce this problem in the debug state. I hope that the same problem is collected with the third party sdk. This the crash code:MAX_AUDIOINSTANCES = 24AudioEngineImpl::~AudioEngineImpl(){ CCLOG("AudioEngineImpl::~AudioEngineImpl"); if (_scheduler != nullptr) { _scheduler->unschedule(CC_SCHEDULE_SELECTOR(AudioEngineImpl::update), this); } if (s_ALContext) { alDeleteSources(MAX_AUDIOINSTANCES, _alSources); _audioCaches.clear(); alcMakeContextCurrent(nullptr); alcDestroyContext(s_ALContext); } if (s_ALDevice) { alcCloseDevice(s_ALDevice); }#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS [s_AudioEngineSessionHandler release];#endif s_instance = nullptr;} I am not quite sure how the openal function "alDeleteSources" is implemented on ios. But after calling the function "alDeleteSources", it caused gcd main qeue overcommit. Will the first parameter represent a few calls to dispatch_aync?What if I don't call it when the program exits?Or is there a better solution? Another question, what is the meaning of the log file with the suffix "session", it is generated in the same place as the crash log.It looks like this: "log-sessions-2019-07-23-105742.session"
Post not yet marked as solved
7 Replies
Sorry, I could have described it more clearly.This is the case, our ios game will have a high probability of generating a crash log every time the player exits. And every crash happens on another thread, and the addresses displayed are not the same.Below is the crash log# Date: 2019-07-19T08:55:00Z# OS Version: 12.3.1 (16F203)# Device: iPhone 8# RAM Free: 5.1%# Disk Free: 48.2%#8. Crashed: com.apple.root.default-qos0 Axxxxx-mobile 0x1030c0015 cocostudio::LoadingBarReader::setPropsFromBinary(cocos2d::ui::Widget*, cocostudio::CocoLoader*, cocostudio::stExpCocoNode*) + 43182489811 libdispatch.dylib 0x232d357d4 _dispatch_client_callout + 162 libdispatch.dylib 0x232d0c89c _dispatch_queue_override_invoke + 6683 libdispatch.dylib 0x232d189d4 _dispatch_root_queue_drain + 3404 libdispatch.dylib 0x232d19248 _dispatch_worker_thread2 + 1165 libsystem_pthread.dylib 0x232f151b4 _pthread_wqthread + 4646 libsystem_pthread.dylib 0x232f17cd4 start_wqthread + 4#0. com.apple.main-thread0 Axxxxx-mobile 0x102ff4ed8 release_unused_segments + 43174171761 Axxxxx-mobile 0x102ff35b0 lj_alloc_f + 43174107362 Axxxxx-mobile 0x102ff35b0 lj_alloc_f + 43174107363 Axxxxx-mobile 0x102fca634 gc_sweep + 43172429324 Axxxxx-mobile 0x102fca548 lj_gc_freeall + 43172426965 Axxxxx-mobile 0x102fd26c4 close_state + 43172758446 Axxxxx-mobile 0x102e44f54 cocos2d::LuaStack::~LuaStack() + 43156478287 Axxxxx-mobile 0x102e44f88 cocos2d::LuaStack::~LuaStack() + 43156478808 Axxxxx-mobile 0x102e4257c cocos2d::LuaEngine::~LuaEngine() + 43156371169 Axxxxx-mobile 0x102e425a8 cocos2d::LuaEngine::~LuaEngine() + 431563716010 Axxxxx-mobile 0x103348258 cocos2d::ScriptEngineManager::destroyInstance() + 432090376811 Axxxxx-mobile 0x103041ac4 cocos2d::ApplicationProtocol::~ApplicationProtocol() + 431773152412 libsystem_c.dylib 0x232decbb4 __cxa_finalize_ranges + 38413 libsystem_c.dylib 0x232decec4 exit + 2414 UIKitCore 0x25fc02d2c -[UIApplication terminateWithSuccess] + 46615 UIKitCore 0x25f4bedb4 __98-[__UICanvasLifecycleMonitor_Compatability deactivateEventsOnly:withContext:forceExit:completion:]_block_invoke.261 + 34416 UIKitCore 0x25fc06dec _runAfterCACommitDeferredBlocks + 29617 UIKitCore 0x25fbf593c _cleanUpAfterCAFlushAndRunDeferredBlocks + 35218 UIKitCore 0x25fc227ac _afterCACommitHandler + 11619 CoreFoundation 0x2332865f8 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 3220 CoreFoundation 0x233281320 __CFRunLoopDoObservers + 41221 CoreFoundation 0x23328189c __CFRunLoopRun + 122822 CoreFoundation 0x2332810b0 CFRunLoopRunSpecific + 43623 GraphicsServices 0x23548179c GSEventRunModal + 10424 UIKitCore 0x25fbfb978 UIApplicationMain + 21225 Axxxxx-mobile 0x102108e0c main + 13 (main.m:13)26 libdyld.dylib 0x232d468e0 start + 4#1. Thread0 libsystem_kernel.dylib 0x232e92b74 __workq_kernreturn + 81 libsystem_pthread.dylib 0x232f15138 _pthread_wqthread + 3402 libsystem_pthread.dylib 0x232f17cd4 start_wqthread + 4#2. com.apple.uikit.eventfetch-thread0 libsystem_kernel.dylib 0x232e870f4 mach_msg_trap + 81 libsystem_kernel.dylib 0x232e865a0 mach_msg + 722 CoreFoundation 0x233286a10 __CFRunLoopServiceMachPort + 2363 CoreFoundation 0x233281920 __CFRunLoopRun + 13604 CoreFoundation 0x2332810b0 CFRunLoopRunSpecific + 4365 Foundation 0x233c4efac -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 3006 Foundation 0x233c4ee3c -[NSRunLoop(NSRunLoop) runUntilDate:] + 967 UIKitCore 0x25fce1494 -[UIEventFetcher threadMain] + 1368 Foundation 0x233d7b6a4 __NSThread__start__ + 9849 libsystem_pthread.dylib 0x232f142c0 _pthread_body + 12810 libsystem_pthread.dylib 0x232f14220 _pthread_start + 4411 libsystem_pthread.dylib 0x232f17cdc thread_start + 4#3. Thread0 libsystem_pthread.dylib 0x232f17cd0 start_wqthread + 190#4. Thread0 libsystem_kernel.dylib 0x232e92b74 __workq_kernreturn + 81 libsystem_pthread.dylib 0x232f15138 _pthread_wqthread + 3402 libsystem_pthread.dylib 0x232f17cd4 start_wqthread + 4#5. com.twitter.crashlytics.ios.MachExceptionServer0 Axxxxx-mobile 0x10251e8d0 CLSProcessRecordAllThreads + 43060533281 Axxxxx-mobile 0x10251e8d0 CLSProcessRecordAllThreads + 43060533282 Axxxxx-mobile 0x10251e78c CLSProcessRecordAllThreads + 43060530043 Axxxxx-mobile 0x10250dc7c CLSHandler + 43059846364 Axxxxx-mobile 0x102508c90 CLSMachExceptionServer + 43059641765 libsystem_pthread.dylib 0x232f142c0 _pthread_body + 1286 libsystem_pthread.dylib 0x232f14220 _pthread_start + 447 libsystem_pthread.dylib 0x232f17cdc thread_start + 4#6. com.apple.NSURLConnectionLoader0 libsystem_kernel.dylib 0x232e870f4 mach_msg_trap + 81 libsystem_kernel.dylib 0x232e865a0 mach_msg + 722 CoreFoundation 0x233286a10 __CFRunLoopServiceMachPort + 2363 CoreFoundation 0x233281920 __CFRunLoopRun + 13604 CoreFoundation 0x2332810b0 CFRunLoopRunSpecific + 4365 CFNetwork 0x23389a74c -[__CoreSchedulingSetRunnable runForever] + 2166 Foundation 0x233d7b6a4 __NSThread__start__ + 9847 libsystem_pthread.dylib 0x232f142c0 _pthread_body + 1288 libsystem_pthread.dylib 0x232f14220 _pthread_start + 449 libsystem_pthread.dylib 0x232f17cdc thread_start + 4#7. Thread0 libsystem_kernel.dylib 0x232e92b74 __workq_kernreturn + 81 libsystem_pthread.dylib 0x232f15138 _pthread_wqthread + 3402 libsystem_pthread.dylib 0x232f17cd4 start_wqthread + 4#8. Crashed: com.apple.root.default-qos0 Axxxxx-mobile 0x1030c0015 cocostudio::LoadingBarReader::setPropsFromBinary(cocos2d::ui::Widget*, cocostudio::CocoLoader*, cocostudio::stExpCocoNode*) + 43182489811 libdispatch.dylib 0x232d357d4 _dispatch_client_callout + 162 libdispatch.dylib 0x232d0c89c _dispatch_queue_override_invoke + 6683 libdispatch.dylib 0x232d189d4 _dispatch_root_queue_drain + 3404 libdispatch.dylib 0x232d19248 _dispatch_worker_thread2 + 1165 libsystem_pthread.dylib 0x232f151b4 _pthread_wqthread + 4646 libsystem_pthread.dylib 0x232f17cd4 start_wqthread + 4#9. Thread0 libsystem_kernel.dylib 0x232e92b74 __workq_kernreturn + 81 libsystem_pthread.dylib 0x232f151f8 _pthread_wqthread + 5322 libsystem_pthread.dylib 0x232f17cd4 start_wqthread + 4#10. Thread0 libsystem_kernel.dylib 0x232e91ee4 __psynch_cvwait + 81 libsystem_pthread.dylib 0x232f114a4 _pthread_cond_wait$VARIANT$armv81 + 6282 libc++.1.dylib 0x232469090 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 243 Axxxxx-mobile 0x1031e56a8 cocos2d::TextureCache::loadImage() + 43194507924 Axxxxx-mobile 0x1031e758c void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (cocos2d::TextureCache::*)(), cocos2d::TextureCache*> >(void*) + 43194587005 libsystem_pthread.dylib 0x232f142c0 _pthread_body + 1286 libsystem_pthread.dylib 0x232f14220 _pthread_start + 447 libsystem_pthread.dylib 0x232f17cdc thread_start + 4#11. AVAudioSession Notify Thread0 libsystem_kernel.dylib 0x232e870f4 mach_msg_trap + 81 libsystem_kernel.dylib 0x232e865a0 mach_msg + 722 CoreFoundation 0x233286a10 __CFRunLoopServiceMachPort + 2363 CoreFoundation 0x233281920 __CFRunLoopRun + 13604 CoreFoundation 0x2332810b0 CFRunLoopRunSpecific + 4365 AVFAudio 0x239169334 GenericRunLoopThread::Entry(void*) + 1566 AVFAudio 0x239193c60 CAPThread::Entry(CAPThread*) + 887 libsystem_pthread.dylib 0x232f142c0 _pthread_body + 1288 libsystem_pthread.dylib 0x232f14220 _pthread_start + 449 libsystem_pthread.dylib 0x232f17cdc thread_start + 4#12. Thread0 libsystem_kernel.dylib 0x232e91ee4 __psynch_cvwait + 81 libsystem_pthread.dylib 0x232f114a4 _pthread_cond_wait$VARIANT$armv81 + 6282 libc++.1.dylib 0x232469128 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 963 Axxxxx-mobile 0x103370294 std::__1::cv_status std::__1::condition_variable::wait_for<long long, std::__1::ratio<1l, 1000l> >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> > const&) + 43210676684 Axxxxx-mobile 0x10337012c cocos2d::experimental::AudioPlayer::rotateBufferThread(int) + 43210673085 Axxxxx-mobile 0x103370448 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (cocos2d::experimental::AudioPlayer::*)(int), cocos2d::experimental::AudioPlayer*, unsigned int> >(void*) + 43210681046 libsystem_pthread.dylib 0x232f142c0 _pthread_body + 1287 libsystem_pthread.dylib 0x232f14220 _pthread_start + 448 libsystem_pthread.dylib 0x232f17cdc thread_start + 4But our game logic has not called this function, and the next crash may be another function (address).
Post not yet marked as solved
7 Replies
This is a crash log generated locally by a device when exits game:Date/Time: 2019-07-07 17:23:34.4208 +0800Launch Time: 2019-07-07 17:21:53.4996 +0800OS Version: iPhone OS 11.2.6 (15D100)Baseband Version: n/aReport Version: 104Exception Type: EXC_BAD_ACCESS (SIGBUS)Exception Subtype: KERN_PROTECTION_FAILURE at 0x00000001c482c920VM Region Info: 0x1c482c920 is in 0x1c0000000-0x1c8000000; bytes after start: 75680032 bytes before end: 58537695 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL unused shlib __TEXT 00000001b9bd8000-00000001ba5a0000 [ 9.8M] r--/r-- SM=COW ... this process GAP OF 0x5a60000 BYTES MALLOC_NANO 00000001c0000000-00000001c8000000 [128.0M] rw-/rwx SM=COW MALLOC_NANO (reserved) 00000001c8000000-00000001d0000000 [128.0M] rw-/rwx SM=NUL ...(unallocated)Termination Signal: Bus error: 10Termination Reason: Namespace SIGNAL, Code 0xaTerminating Process: exc handler [0]Triggered by Thread: 7Filtered syslog:None foundThread 0 name: Dispatch queue: com.apple.main-threadThread 0:0 libsystem_kernel.dylib 0x0000000180e9f568 mach_msg_trap + 81 libsystem_kernel.dylib 0x0000000180e9f3e0 mach_msg + 722 AudioToolbox 0x0000000184fd199c AURIOCallbackSender_TerminateOwnIOThread + 1283 AudioToolbox 0x0000000184e3b024 AURemoteIO::Stop+ 782372 () + 4644 AudioToolbox 0x00000001851e0148 AUMethodStop+ 4604232 (void*) + 725 AudioToolbox 0x000000018507e434 AudioUnitGraph::Stop+ 3154996 () + 3406 OpenAL 0x0000000197c74440 OALDevice::DisconnectContext+ 25664 (OALContext*) + 1647 OpenAL 0x0000000197c70e34 OALContext::DisconnectMixerFromDevice+ 11828 () + 288 OpenAL 0x0000000197c74fe0 alcMakeContextCurrent + 5249 Axxxxx-mobile 0x0000000101c99b9c cocos2d::experimental::AudioEngineImpl::~AudioEngineImpl+ 16866204 () + 9610 Axxxxx-mobile 0x0000000101c99e94 cocos2d::experimental::AudioEngineImpl::~AudioEngineImpl+ 16866964 () + 1211 Axxxxx-mobile 0x0000000101f21b1c cocos2d::experimental::AudioEngine::end+ 19520284 () + 6012 Axxxxx-mobile 0x0000000100c88988 AppDelegate::~AppDelegate() + 18824 (AppDelegate.cpp:44)13 libsystem_c.dylib 0x0000000180e2fbbc __cxa_finalize_ranges + 38414 libsystem_c.dylib 0x0000000180dd90a0 exit + 2415 UIKit 0x000000018a9ecf2c -[UIApplication applicationWillTerminate] + 016 UIKit 0x000000018ae67938 __98-[__UICanvasLifecycleMonitor_Compatability deactivateEventsOnly:withContext:forceExit:completion:]_block_invoke.271 + 34417 UIKit 0x000000018abd3aa8 _runAfterCACommitDeferredBlocks + 29218 UIKit 0x000000018abc6e5c _cleanUpAfterCAFlushAndRunDeferredBlocks + 28819 UIKit 0x000000018a958464 _afterCACommitHandler + 13220 CoreFoundation 0x0000000181352cdc __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 3221 CoreFoundation 0x0000000181350694 __CFRunLoopDoObservers + 41222 CoreFoundation 0x0000000181350c50 __CFRunLoopRun + 129223 CoreFoundation 0x0000000181270c58 CFRunLoopRunSpecific + 43624 GraphicsServices 0x000000018311cf84 GSEventRunModal + 10025 UIKit 0x000000018a9c95c4 UIApplicationMain + 23626 Axxxxx-mobile 0x0000000100c88e0c main + 19980 (main.m:13)27 libdyld.dylib 0x0000000180d9056c start + 4Thread 1 name: com.apple.uikit.eventfetch-threadThread 1:0 libsystem_kernel.dylib 0x0000000180e9f568 mach_msg_trap + 81 libsystem_kernel.dylib 0x0000000180e9f3e0 mach_msg + 722 CoreFoundation 0x0000000181353108 __CFRunLoopServiceMachPort + 1963 CoreFoundation 0x0000000181350cd4 __CFRunLoopRun + 14244 CoreFoundation 0x0000000181270c58 CFRunLoopRunSpecific + 4365 Foundation 0x0000000181ca5594 -[NSRunLoop+ 50580 (NSRunLoop) runMode:beforeDate:] + 3046 Foundation 0x0000000181cc49ac -[NSRunLoop+ 178604 (NSRunLoop) runUntilDate:] + 967 UIKit 0x000000018b5337a8 -[UIEventFetcher threadMain] + 1368 Foundation 0x0000000181da70f4 __NSThread__start__ + 9969 libsystem_pthread.dylib 0x0000000180fd42b4 _pthread_body + 30810 libsystem_pthread.dylib 0x0000000180fd4180 _pthread_body + 011 libsystem_pthread.dylib 0x0000000180fd2b74 thread_start + 4Thread 2 name: com.apple.NSURLConnectionLoaderThread 2:0 libsystem_kernel.dylib 0x0000000180e9f568 mach_msg_trap + 81 libsystem_kernel.dylib 0x0000000180e9f3e0 mach_msg + 722 CoreFoundation 0x0000000181353108 __CFRunLoopServiceMachPort + 1963 CoreFoundation 0x0000000181350cd4 __CFRunLoopRun + 14244 CoreFoundation 0x0000000181270c58 CFRunLoopRunSpecific + 4365 CFNetwork 0x0000000181b5fb08 -[__CoreSchedulingSetRunnable runForever] + 7806 Foundation 0x0000000181da70f4 __NSThread__start__ + 9967 libsystem_pthread.dylib 0x0000000180fd42b4 _pthread_body + 3088 libsystem_pthread.dylib 0x0000000180fd4180 _pthread_body + 09 libsystem_pthread.dylib 0x0000000180fd2b74 thread_start + 4Thread 3:0 libsystem_kernel.dylib 0x0000000180ec00f0 __psynch_cvwait + 81 libsystem_pthread.dylib 0x0000000180fd6ce4 _pthread_cond_wait$VARIANT$mp + 6402 libc++.1.dylib 0x0000000180576ea4 std::__1::condition_variable::wait+ 32420 (std::__1::unique_lock<std::__1::mutex>&) + 243 Axxxxx-mobile 0x0000000101db6808 cocos2d::TextureCache::loadImage+ 18032648 () + 3964 Axxxxx-mobile 0x0000000101db86ec void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (cocos2d::TextureCache::*)(), cocos2d::TextureCache*> >+ 18040556 (void*) + 645 libsystem_pthread.dylib 0x0000000180fd42b4 _pthread_body + 3086 libsystem_pthread.dylib 0x0000000180fd4180 _pthread_body + 07 libsystem_pthread.dylib 0x0000000180fd2b74 thread_start + 4Thread 4 name: AVAudioSession Notify ThreadThread 4:0 libsystem_kernel.dylib 0x0000000180e9f568 mach_msg_trap + 81 libsystem_kernel.dylib 0x0000000180e9f3e0 mach_msg + 722 CoreFoundation 0x0000000181353108 __CFRunLoopServiceMachPort + 1963 CoreFoundation 0x0000000181350cd4 __CFRunLoopRun + 14244 CoreFoundation 0x0000000181270c58 CFRunLoopRunSpecific + 4365 AVFAudio 0x0000000186bd9cd4 GenericRunLoopThread::Entry+ 564436 (void*) + 1646 AVFAudio 0x0000000186c04740 CAPThread::Entry+ 739136 (CAPThread*) + 847 libsystem_pthread.dylib 0x0000000180fd42b4 _pthread_body + 3088 libsystem_pthread.dylib 0x0000000180fd4180 _pthread_body + 09 libsystem_pthread.dylib 0x0000000180fd2b74 thread_start + 4Thread 5 name: AURemoteIO::IOThreadThread 5:0 libsystem_kernel.dylib 0x0000000180e9f568 mach_msg_trap + 81 libsystem_kernel.dylib 0x0000000180e9f3e0 mach_msg + 722 AudioToolbox 0x0000000184e3c220 AURemoteIO::IOThread::Run+ 786976 () + 2643 AudioToolbox 0x0000000184e407b8 AURemoteIO::IOThread::Entry+ 804792 (void*) + 1604 AudioToolbox 0x00000001851c6f50 CAPThread::Entry+ 4501328 (CAPThread*) + 845 libsystem_pthread.dylib 0x0000000180fd42b4 _pthread_body + 3086 libsystem_pthread.dylib 0x0000000180fd4180 _pthread_body + 07 libsystem_pthread.dylib 0x0000000180fd2b74 thread_start + 4Thread 6:0 libsystem_kernel.dylib 0x0000000180ec00f0 __psynch_cvwait + 81 libsystem_pthread.dylib 0x0000000180fd6ce4 _pthread_cond_wait$VARIANT$mp + 6402 libc++.1.dylib 0x0000000180576f34 std::__1::condition_variable::__do_timed_wait+ 32564 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 963 Axxxxx-mobile 0x0000000101f413f4 std::__1::cv_status std::__1::condition_variable::wait_for<long long, std::__1::ratio<1l, 1000l> >+ 19649524 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> > const&) + 1604 Axxxxx-mobile 0x0000000101f4128c cocos2d::experimental::AudioPlayer::rotateBufferThread+ 19649164 (int) + 5765 Axxxxx-mobile 0x0000000101f415a8 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (cocos2d::experimental::AudioPlayer::*)(int), cocos2d::experimental::AudioPlayer*, unsigned int> >+ 19649960 (void*) + 686 libsystem_pthread.dylib 0x0000000180fd42b4 _pthread_body + 3087 libsystem_pthread.dylib 0x0000000180fd4180 _pthread_body + 08 libsystem_pthread.dylib 0x0000000180fd2b74 thread_start + 4Thread 7 name: Dispatch queue: com.apple.root.default-qosThread 7 Crashed:0 ??? 0x00000001c482c920 0 + 75918728001 libdispatch.dylib 0x0000000180d2aa14 _dispatch_client_callout + 162 libdispatch.dylib 0x0000000180d31bc8 _dispatch_queue_override_invoke$VARIANT$mp + 7163 libdispatch.dylib 0x0000000180d37cf4 _dispatch_root_queue_drain + 6004 libdispatch.dylib 0x0000000180d37a38 _dispatch_worker_thread3 + 1205 libsystem_pthread.dylib 0x0000000180fd306c _pthread_wqthread + 12686 libsystem_pthread.dylib 0x0000000180fd2b6c start_wqthread + 4Thread 8:0 libsystem_pthread.dylib 0x0000000180fd2b68 start_wqthread + 0Thread 9:0 libsystem_pthread.dylib 0x0000000180fd2b68 start_wqthread + 0Thread 7 crashed with ARM Thread State (64-bit): x0: 0x0000000000000960 x1: 0x0000000000001016 x2: 0x0000000000000000 x3: 0x00000001c482c920 x4: 0x0000000000060019 x5: 0x0000000000000000 x6: 0x0000000000000000 x7: 0x0000000000000000 x8: 0x0000000000000960 x9: 0x00000001c482d040 x10: 0x0000000000000070 x11: 0x00000000240004ff x12: 0x00000000000010ff x13: 0x0000000000000100 x14: 0x0000000002ffffff x15: 0x0000000000000000 x16: 0x0000000000000000 x17: 0x0000000000000000 x18: 0xfffffff00dc9925c x19: 0x00000001c0273a80 x20: 0x00000001c067ec40 x21: 0x0000000000000000 x22: 0x0000000000000000 x23: 0x00000001b220bd80 x24: 0x000000016f28f0e0 x25: 0x0000000000000000 x26: 0x00000000200005ff x27: 0x0000000000000014 x28: 0x00000001b09ada40 fp: 0x000000016f28eda0 lr: 0x0000000180d2aa54 sp: 0x000000016f28ed90 pc: 0x00000001c482c920 cpsr: 0x80000000Binary Images:0x100c84000 - 0x10277ffff Axxxxx-mobile arm64 <c4fecf26d80c3e228e725090a02fa011> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Axxxxx-mobile0x103060000 - 0x103077fff Bolts arm64 <39cc14819a653c1297fbbb1611146064> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/Bolts.framework/Bolts0x1030a0000 - 0x10310ffff FBSDKCoreKit arm64 <60104f89ed9b31619f6ca6e23b129a85> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit0x1031c8000 - 0x1031e3fff FBSDKLoginKit arm64 <49451c0dd29a3650b5c8b6e2479c56fa> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/FBSDKLoginKit.framework/FBSDKLoginKit0x103210000 - 0x10321bfff nanopb arm64 <fd2d7caa32eb3bb3b03ec161d8f9ed7f> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/nanopb.framework/nanopb0x10322c000 - 0x103293fff FBSDKShareKit arm64 <e03b06a4d5ff35ebbcdd605491ecc446> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/FBSDKShareKit.framework/FBSDKShareKit0x103314000 - 0x10332bfff GoogleUtilities arm64 <709c4d2d49d835239428c5cd2c401e80> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/GoogleUtilities.framework/GoogleUtilities0x103358000 - 0x103397fff dyld arm64 <477a8a1f098b3a80860d656a3f4918ea> /usr/lib/dyld0x1033f4000 - 0x10344bfff Protobuf arm64 <e8734fa849eb3a978e53d07230319e46> /var/containers/Bundle/Application/B99FCAEC-2C77-409A-95F3-3F7BD0736997/Axxxxx-mobile.app/Frameworks/Protobuf.framework/Protobuf0x18056d000 - 0x18056efff libSystem.B.dylib arm64 <a9f67ca8b7963c699078236267472fb0> /usr/lib/libSystem.B.dylib0x18056f000 - 0x1805c8fff libc++.1.dylib arm64 <aee157a049663aa88c4e928768cfd553> /usr/lib/libc++.1.dylib0x1805c9000 - 0x1805e9fff libc++abi.dylib arm64 <b4f54419327f3bfea747549b84dad328> /usr/lib/libc++abi.dylib0x1805ec000 - 0x180ca7fff libobjc.A.dylib arm64 <3a9d464322eb3285bc88fabf7cec20ed> /usr/lib/libobjc.A.dylib0x180ca8000 - 0x180cacfff libcache.dylib arm64 <474a695498903419b648b834067fac4e> /usr/lib/system/libcache.dylib0x180cad000 - 0x180cb8fff libcommonCrypto.dylib arm64 <f3a95fbdb7a037879160ae9e0ee14c37> /usr/lib/system/libcommonCrypto.dylib0x180cb9000 - 0x180cbcfff libcompiler_rt.dylib arm64 <502de73c3e0c3ba78280e6164fe5728c> /usr/lib/system/libcompiler_rt.dylib0x180cbd000 - 0x180cc4fff libcopyfile.dylib arm64 <b8c962560a1b3b639d562541d32f5960> /usr/lib/system/libcopyfile.dylib0x180cc5000 - 0x180d28fff libcorecrypto.dylib arm64 <db41a416fa083812bcafad6b888b152e> /usr/lib/system/libcorecrypto.dylib0x180d29000 - 0x180d8efff libdispatch.dylib arm64 <37135142d2043b5492d7a49be678b9ae> /usr/lib/system/libdispatch.dylib0x180d8f000 - 0x180da9fff libdyld.dylib arm64 <4f57dfca63a93930a57d2cea89307b01> /usr/lib/system/libdyld.dylib0x180daa000 - 0x180daafff liblaunch.dylib arm64 <ca90373a022d3c38ac7ecd736c13bf9b> /usr/lib/system/liblaunch.dylib0x180dab000 - 0x180db0fff libmacho.dylib arm64 <25640409947b3e20b1135068c80d8609> /usr/lib/system/libmacho.dylib0x180db1000 - 0x180db2fff libremovefile.dylib arm64 <848fca02e8d930fd8659eb188d9bcedd> /usr/lib/system/libremovefile.dylib0x180db3000 - 0x180dcafff libsystem_asl.dylib arm64 <255a36a954553a278ef2c8711ab62532> /usr/lib/system/libsystem_asl.dylib0x180dcb000 - 0x180dcbfff libsystem_blocks.dylib arm64 <cbdfd75e23c43610991dc81d325587ea> /usr/lib/system/libsystem_blocks.dylib0x180dcc000 - 0x180e49fff libsystem_c.dylib arm64 <2c43d27314963feb8966491ea64cf5a9> /usr/lib/system/libsystem_c.dylib0x180e4a000 - 0x180e4efff libsystem_configuration.dylib arm64 <897ce699a6d73797810d7fe5ceef37d7> /usr/lib/system/libsystem_configuration.dylib0x180e4f000 - 0x180e54fff libsystem_containermanager.dylib arm64 <ae270ac5b9613cfcb5a6ada4520b8a8b> /usr/lib/system/libsystem_containermanager.dylib0x180e55000 - 0x180e56fff libsystem_coreservices.dylib arm64 <c897206125f13042a7f62767de020ae9> /usr/lib/system/libsystem_coreservices.dylib0x180e57000 - 0x180e58fff libsystem_darwin.dylib arm64 <fc17590f3b6f3e2280aa164fe705e624> /usr/lib/system/libsystem_darwin.dylib0x180e59000 - 0x180e5ffff libsystem_dnssd.dylib arm64 <2fdef17227d13f49929b104ec635667c> /usr/lib/system/libsystem_dnssd.dylib0x180e60000 - 0x180e9dfff libsystem_info.dylib arm64 <c20c44a2d57b330f9931ba840195ee45> /usr/lib/system/libsystem_info.dylib0x180e9e000 - 0x180ec6fff libsystem_kernel.dylib arm64 <6ca465bb9c013f9ab3fb24dd16418142> /usr/lib/system/libsystem_kernel.dylib0x180ec7000 - 0x180ef4fff libsystem_m.dylib arm64 <a75c726ec49b3f48b83593be165afcfa> /usr/lib/system/libsystem_m.dylib0x180ef5000 - 0x180f0ffff libsystem_malloc.dylib arm64 <cce71425b3483c5fa3718246e8e27ed2> /usr/lib/system/libsystem_malloc.dylib0x180f10000 - 0x180fb0fff libsystem_network.dylib arm64 <cac262c32d6938abb9075481187087c4> /usr/lib/system/libsystem_network.dylib0x180fb1000 - 0x180fbcfff libsystem_networkextension.dylib arm64 <40f740c2ec9b37cebe6043eecbd1927d> /usr/lib/system/libsystem_networkextension.dylib0x180fbd000 - 0x180fc7fff libsystem_notify.dylib arm64 <c204b6b2ef2d38669fb985bc64f26a6b> /usr/lib/system/libsystem_notify.dylib0x180fc8000 - 0x180fd1fff libsystem_platform.dylib arm64 <1fd32dd6f1da3029ae0fe5875eaceb94> /usr/lib/system/libsystem_platform.dylib0x180fd2000 - 0x180fe1fff libsystem_pthread.dylib arm64 <2f9b440f88eb3cedb786b4b98586d78f> /usr/lib/system/libsystem_pthread.dylib0x180fe2000 - 0x180fe5fff libsystem_sandbox.dylib arm64 <001e1a85480c3b07b93861fe7e69843b> /usr/lib/system/libsystem_sandbox.dylib0x180fe6000 - 0x180fedfff libsystem_symptoms.dylib arm64 <56e7c311193139968b729073897fbdc6> /usr/lib/system/libsystem_symptoms.dylib0x180fee000 - 0x181001fff libsystem_trace.dylib arm64 <8b98d3487b6e3b72863670eb57c3b4ff> /usr/lib/system/libsystem_trace.dylib0x181002000 - 0x181007fff libunwind.dylib arm64 <a9da0d0735093dc38005623608c0f71e> /usr/lib/system/libunwind.dylib0x181008000 - 0x181008fff libvminterpose.dylib arm64 <c1577063af17384b8091f9923960a1f1> /usr/lib/system/libvminterpose.dylib0x181009000 - 0x181033fff libxpc.dylib arm64 <1732d812fa793d159965e668759a42df> /usr/lib/system/libxpc.dylib0x181034000 - 0x181255fff libicucore.A.dylib arm64 <32c272e1e9f735aba4c16a17580f13e3> /usr/lib/libicucore.A.dylib0x181256000 - 0x181267fff libz.1.dylib arm64 <c402ff63470b34df8634f2078cd151e1> /usr/lib/libz.1.dylib0x181268000 - 0x1815fdfff CoreFoundation arm64 <846f4b1542383c98991c1314902e3d72> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation0x1815fe000 - 0x18160efff libbsm.0.dylib arm64 <b7a56e43a852351d8a2dab94c7fc04e6> /usr/lib/libbsm.0.dylib0x18160f000 - 0x18160ffff libenergytrace.dylib arm64 <6adeca3b70ed33dda70a16353c5ef6ce> /usr/lib/libenergytrace.dylib0x181610000 - 0x181695fff IOKit arm64 <938f5f32ece43551a651b777bd44d431> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit0x181696000 - 0x18177ffff libxml2.2.dylib arm64 <33530216f58333d993d4acb846c63aac> /usr/lib/libxml2.2.dylib0x181780000 - 0x18178dfff libbz2.1.0.dylib arm64 <35c6ddde076638589f755656ac0058ce> /usr/lib/libbz2.1.0.dylib0x18178e000 - 0x1817a6fff liblzma.5.dylib arm64 <7d5815f117103d15a67fd30b3375b11b> /usr/lib/liblzma.5.dylib0x1817a7000 - 0x181904fff libsqlite3.dylib arm64 <eac933b033d43444ae182e2d7de6137f> /usr/lib/libsqlite3.dylib0x181905000 - 0x18192bfff libMobileGestalt.dylib arm64 <dc43249a916a3294a98ae31871591dd9> /usr/lib/libMobileGestalt.dylib0x18192c000 - 0x181c98fff CFNetwork arm64 <1b8095865d8a3b84a9cbe0d5d0354fc1> /System/Library/Frameworks/CFNetwork.framework/CFNetwork0x181c99000 - 0x181f94fff Foundation arm64 <dad046ce90513de69c6ca86d7184b7c2> /System/Library/Frameworks/Foundation.framework/Foundation0x181f95000 - 0x182083fff Security arm64 <11c28a235f0d34a483d4c0c6d3a72617> /System/Library/Frameworks/Security.framework/Security0x182084000 - 0x1820f0fff SystemConfiguration arm64 <e4021e13feec30af8e612a49060b1ad1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration0x1820f1000 - 0x182127fff libCRFSuite.dylib arm64 <faed949ffe90353091a2916aef415302> /usr/lib/libCRFSuite.dylib0x182128000 - 0x182128fff libapple_crypto.dylib arm64 <7b69ce788b6f3bd581d76b857760c614> /usr/lib/libapple_crypto.dylib0x182129000 - 0x18213ffff libapple_nghttp2.dylib arm64 <ff88135792b639679509b309f0c0cad9> /usr/lib/libapple_nghttp2.dylib0x182140000 - 0x182169fff libarchive.2.dylib arm64 <957aea53942d3afc91420044f6ae5112> /usr/lib/libarchive.2.dylib0x18216a000 - 0x18221bfff libboringssl.dylib arm64 <a515a4c41d7337dd85ed1db0cb3d1a09> /usr/lib/libboringssl.dylib0x18221c000 - 0x182233fff libcoretls.dylib arm64 <c2287d06413f32c2aee0e6c3313d98c7> /usr/lib/libcoretls.dylib0x182234000 - 0x182235fff libcoretls_cfhelpers.dylib arm64 <79276edd953836b698947c5db28c83ad> /usr/lib/libcoretls_cfhelpers.dylib0x182236000 - 0x182237fff liblangid.dylib arm64 <11d94ede5ab1300a820d96e3374f53fa> /usr/lib/liblangid.dylib0x182238000 - 0x18230bfff libnetwork.dylib arm64 <e4a37ecffec3327bb37e3fd427c92b87> /usr/lib/libnetwork.dylib0x18230c000 - 0x18233efff libpcap.A.dylib arm64 <419a8dd2325a326c81b4b02d849ce562> /usr/lib/libpcap.A.dylib0x18233f000 - 0x182373fff libusrtcp.dylib arm64 <227ec64866e53676828e76f89c1e4928> /usr/lib/libusrtcp.dylib0x182374000 - 0x18237dfff IOSurface arm64 <76764bfa34e8365e8263c8ec57868e70> /System/Library/Frameworks/IOSurface.framework/IOSurface0x18237e000 - 0x182423fff libBLAS.dylib arm64 <05ecdd31f9573a069c0e8b3d610bbc3f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib0x182424000 - 0x182753fff libLAPACK.dylib arm64 <3e55f73c8a4c329d8bb7f5e58ed687c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib0x182754000 - 0x1829c0fff vImage arm64 <7fabce5d1fe83c38aa998440146eb09b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage0x1829c1000 - 0x1829d2fff libSparseBLAS.dylib arm64 <88335b280db13b3d812ee89998bc363c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib0x1829d3000 - 0x1829f7fff libvMisc.dylib arm64 <20da313fe2343db189a04c72928eb120> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib0x1829f8000 - 0x182a22fff libBNNS.dylib arm64 <19481dd658fb3f949cc1874250cfead5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib0x182a23000 - 0x182a38fff libLinearAlgebra.dylib arm64 <0f6e8d5a7dd8384ebb8a873c2caa7ad7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib0x182a39000 - 0x182a3dfff libQuadrature.dylib arm64 <124a57c41e3e3956b46e10d49ddf8fe1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib0x182a3e000 - 0x182a94fff libSparse.dylib arm64 <c7def66b4a4c3f29b55fcbdcf881e3f2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib0x182a95000 - 0x182b0dfff libvDSP.dylib arm64 <4bf846f47a0e309db93bbbc791720463> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib0x182b0e000 - 0x182b0efff vecLib arm64 <86cdd48d842334dd831b1fc0e2b0270f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib0x182b0f000 - 0x182b0ffff Accelerate arm64 <01d515c3376c332799f14694934ed70b> /System/Library/Frameworks/Accelerate.framework/Accelerate0x182b10000 - 0x182b25fff libcompression.dylib arm64 <b1a3a8c4b3a6301da874dc2af4a50920> /usr/lib/libcompression.dylib0x182b26000 - 0x18306afff CoreGraphics arm64 <1d111fedd821351f8d22fe4f2840719a> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics0x18306b000 - 0x183070fff IOAccelerator arm64 <ff13ef43a6f73cdaa52ce9abae404d3c> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator0x183071000 - 0x183076fff libCoreFSCache.dylib arm64 <ac1882646b0c3cccb69dfc5246995396> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib0x183077000 - 0x183111fff Metal arm64 <5810b5432e4c34cf9f254b60f64e5e89> /System/Library/Frameworks/Metal.framework/Metal0x183112000 - 0x183125fff GraphicsServices arm64 <208776c1b0a73cb4827546b47cdfca63> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices0x183126000 - 0x18327efff MobileCoreServices arm64 <ceed55b6a3083c1b93152daff0cc2ab5> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices0x18327f000 - 0x183281fff IOSurfaceAccelerator arm64 <4feb745bfd323a0da4357d5fc65f54b2> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator0x183282000 - 0x1832c3fff AppleJPEG arm64 <823dea35af383cf987bdd6d2b653d41f> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG0x1832c4000 - 0x183874fff ImageIO arm64 <090201d1811b3083b64c89e1c9694585> /System/Library/Frameworks/ImageIO.framework/ImageIO0x183875000 - 0x1838d9fff BaseBoard arm64 <5c05976a04053b179505341ce299f130> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard0x1838da000 - 0x1838f1fff AssertionServices arm64 <eac3dcdc35103304b3dc72ce0c8a0a07> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices0x1838f2000 - 0x1838fafff CorePhoneNumbers arm64 <3f42ae84ea833c52b8cd522108d259b2> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers0x1838fb000 - 0x18393ffff AppSupport arm64 <ac0c26eabc2e3737b4b0f6e524f9c54f> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport0x183940000 - 0x183958fff CrashReporterSupport arm64 <28a3b2eac04b3ec482639475186d309c> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport0x183959000 - 0x18395efff AggregateDictionary arm64 <60d5c87dbe3e3c48a3e0b91ae2cad9e7> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary0x18395f000 - 0x1839e0fff libTelephonyUtilDynamic.dylib arm64 <46d5ede9f7fe338c97671721fbad60cc> /usr/lib/libTelephonyUtilDynamic.dylib0x1839e1000 - 0x183a00fff ProtocolBuffer arm64 <8963290d47123204921f70ae9bb9612a> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer0x183a01000 - 0x183a2cfff MobileKeyBag arm64 <d8ce3418ab5b3832906e77aa9e3c9aad> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag0x183a2d000 - 0x183a61fff BackBoardServices arm64 <2b30bebf7da7379db6b6538ca533fd6b> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices0x183a62000 - 0x183abdfff FrontBoardServices arm64 <5bff8665f950326a8ad86be07a66a48a> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices0x183abe000 - 0x183afafff SpringBoardServices arm64 <415fae0b30393d0d92bf23dc22de21c4> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices0x183afb000 - 0x183b09fff PowerLog arm64 <83c23c8e972438b79e688c4d455b1b5e> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog0x183b0a000 - 0x183b27fff CommonUtilities arm64 <dcd92acd9a14345e9b63801706e4a82e> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities0x183b28000 - 0x183b33fff liblockdown.dylib arm64 <2fec7d5a759c32f293936f78220c1fc4> /usr/lib/liblockdown.dylib0x183b34000 - 0x183e36fff CoreData arm64 <b972e9f8b7de3a568acb4ed8216f0b76> /System/Library/Frameworks/CoreData.framework/CoreData0x183e37000 - 0x183e3dfff TCC arm64 <06384f9076eb3e06a7d2a883d6007b3d> /System/Library/PrivateFrameworks/TCC.framework/TCC0x183e3e000 - 0x183e45fff libcupolicy.dylib arm64 <e6b23e36e1a335ad974f6b35ba2b033b> /usr/lib/libcupolicy.dylib0x183e46000 - 0x183ed2fff CoreTelephony arm64 <e63112dd995a333ca54d3f6d60ae18c7> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony0x183ed3000 - 0x183f29fff Accounts arm64 <3f8159d915823051a17536c6b21e81a9> /System/Library/Frameworks/Accounts.framework/Accounts0x183f2a000 - 0x183f53fff AppleSauce arm64 <4b81009f219e3f3794d3ff93ddcd0547> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce0x183f54000 - 0x183f5cfff DataMigration arm64 <e98907cbf67e35ca998fab8c64f92eea> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration0x183f5d000 - 0x183f63fff Netrb arm64 <9f8ebcf99af53a7087add608b6fb9c2a> /System/Library/PrivateFrameworks/Netrb.framework/Netrb0x183f64000 - 0x183f97fff PersistentConnection arm64 <c00b010864ca32d78dadbf487d8fb9f7> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection0x183f98000 - 0x183fa9fff libmis.dylib arm64 <1885af6da98d3997abff70b062548010> /usr/lib/libmis.dylib0x183faa000 - 0x1840aafff ManagedConfiguration arm64 <b37e31dfe0b4340f86d707d09f210545> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration0x1840ab000 - 0x1840b0fff libReverseProxyDevice.dylib arm64 <d6cfe7cabd433fe5a8bd77fba606479a> /usr/lib/libReverseProxyDevice.dylib0x1840b1000 - 0x1840c2fff libamsupport.dylib arm64 <48a69db1f895324d8debac434913a4e5> /usr/lib/libamsupport.dylib0x1840c3000 - 0x1840c8fff libCoreVMClient.dylib arm64 <017bacb6b7e83fdda154764e0492358a> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib0x1840c9000 - 0x1840cafff libCVMSPluginSupport.dylib arm64 <79591b228c133dc7a93fcdb529f5c1c9> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib0x1840cb000 - 0x1840cefff libutil.dylib arm64 <b82455fcf10c34ddbe0871d7e6998071> /usr/lib/libutil.dylib0x1840cf000 - 0x184110fff libGLImage.dylib arm64 <9ac83085267733acb9bc652dd70dcc2d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib0x184111000 - 0x184181fff APFS arm64 <a56b1bb534613a6da50d098073bfe7a7> /System/Library/PrivateFrameworks/APFS.framework/APFS0x184182000 - 0x1841b3fff MediaKit arm64 <3b199804d91e3afcb08a2698062cff65> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit0x1841b4000 - 0x1841ccfff libSERestoreInfo.dylib arm64 <25abfa4121b03a25b5422fa6ba16b695> /usr/lib/updaters/libSERestoreInfo.dylib0x1841d1000 - 0x18420dfff DiskImages arm64 <c78798bf47263e8d8ba1403fa9753a41> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages0x18420e000 - 0x184218fff libGFXShared.dylib arm64 <425823fa3f663785af7e7e72e74a2eee> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib0x184219000 - 0x18425ffff libauthinstall.dylib arm64 <51c4aba4fa7f376dbee944ee466f56c1> /usr/lib/libauthinstall.dylib0x184260000 - 0x184268fff IOMobileFramebuffer arm64 <e77d0723d9ca3bd49aed5354023ac013> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer0x184269000 - 0x184274fff OpenGLES arm64 <e2869e8b79a63c9ca81291d5a6714ef6> /System/Library/Frameworks/OpenGLES.framework/OpenGLES0x184275000 - 0x1842fcfff ColorSync arm64 <174c246784a4333db343d29ca59affcb> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync0x1842fd000 - 0x184327fff CoreVideo arm64 <69c63a3d198a34de9f343ad8e8181059> /System/Library/Frameworks/CoreVideo.framework/CoreVideo0x184328000 - 0x184329fff libCTGreenTeaLogger.dylib arm64 <e5ad1c68080134edaf25ccea03e08a52> /usr/lib/libCTGreenTeaLogger.dylib0x18432a000 - 0x18448cfff CoreAudio arm64 <7ad95e096a253ff58b74a03e3f252a4e> /System/Library/Frameworks/CoreAudio.framework/CoreAudio0x18448d000 - 0x1844bbfff CoreAnalytics arm64 <be12a86b5538303fadce7fb5cac04ff5> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics0x1844bc000 - 0x1844bffff UserFS arm64 <52342f6a8e273c7391e327deb2ab82e4> /System/Library/PrivateFrameworks/UserFS.framework/UserFS0x1844c0000 - 0x184633fff CoreMedia arm64 <ac554e80365734d88d03dc363716a637> /System/Library/Frameworks/CoreMedia.framework/CoreMedia0x184634000 - 0x184646fff libprotobuf-lite.dylib arm64 <2ed5fd0c82f8337b96e17a7b1846b878> /usr/lib/libprotobuf-lite.dylib0x184647000 - 0x1846abfff libprotobuf.dylib arm64 <0a967243387e32aeb31a8b5ceeac3718> /usr/lib/libprotobuf.dylib0x1846ac000 - 0x184989fff libAWDSupportFramework.dylib arm64 <db0f4644d45938e39bdace7ecc5c6eeb> /usr/lib/libAWDSupportFramework.dylib0x18498a000 - 0x1849d0fff WirelessDiagnostics arm64 <903eca346b9a357eb9d6939c5a2da02d> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics0x1849d1000 - 0x184a89fff ************ arm64 <d18b9ae1333e3227806dea21be49a8d2> /System/Library/Frameworks/************.framework/************0x184a8a000 - 0x184b95fff libFontParser.dylib arm64 <d502b1402ada3abfb17dd35e3b6ccfd3> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib0x184b96000 - 0x184b97fff FontServices arm64 <0c499009fcb931d18cf6bfdc1af51684> /System/Library/PrivateFrameworks/FontServices.framework/FontServices0x184b98000 - 0x184ce7fff CoreText arm64 <3cb200fd11ab3102b01a9aab2730a871> /System/Library/Frameworks/CoreText.framework/CoreText0x184ce8000 - 0x184cf7fff IntlPreferences arm64 <407354c5c0f03388a2e8ef921d092bf2> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences0x184cf8000 - 0x184d00fff RTCReporting arm64 <2710371c2d763bde99c5e3ce763cebf9> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting0x184d01000 - 0x184d6ffff CoreBrightness arm64 <ac737e260dda338687d75091a549cbe7> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness0x184d70000 - 0x184d7bfff libAudioStatistics.dylib arm64 <f144e9f449f0366d903c07dc7042e1bb> /usr/lib/libAudioStatistics.dylib0x184d7c000 - 0x1852ccfff AudioToolbox arm64 <32fc6cb60ab531a892ee7db6030dcee9> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox0x1852cd000 - 0x1854fdfff QuartzCore arm64 <0e7efded7b69323094142d876969c3ff> /System/Library/Frameworks/QuartzCore.framework/QuartzCore0x1854fe000 - 0x185509fff MediaAccessibility arm64 <c08f2d8d22ad32e696bbfe19c1f00132> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility0x18550a000 - 0x1855fcfff libiconv.2.dylib arm64 <28fec549f7f6396483fb3b04c800adcb> /usr/lib/libiconv.2.dylib0x1855fd000 - 0x185619fff NetworkStatistics arm64 <67dd3f90fc933567af5f336e36a3f69a> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics0x18561a000 - 0x18562ffff MPSCore arm64 <2b8da25dee323cb0871eb5839266c6b1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore0x185630000 - 0x185694fff MPSImage arm64 <c54b04d27c9639958942abdf2b0aa21a> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage0x185695000 - 0x1856b5fff MPSMatrix arm64 <7f20afd02853372eaeac3604ab798ca9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix0x1856b6000 - 0x1856c4fff CoreAUC arm64 <24c1f952294f3d769d3b2d3d3df002f9> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC0x1856c5000 - 0x185d4afff MediaToolbox arm64 <a6ee11cab3b83741ba23824098c0765d> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox0x185d4b000 - 0x185e11fff MPSNeuralNetwork arm64 <e9b49812899e39b98e4f16b1e4929859> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork0x185e12000 - 0x185e12fff MetalPerformanceShaders arm64 <968c8d8650a6345e99c11a24d4908a14> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders0x185e13000 - 0x186246fff FaceCore arm64 <ce35d4571e5032258ca94f23e53a1a16> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore0x186247000 - 0x186254fff GraphVisualizer arm64 <9731b1a2362e35e5b47495a6f4a49d31> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer0x186255000 - 0x1863fafff libFosl_dynamic.dylib arm64 <8dade3ca46eb36ba918cabaae25e7279> /usr/lib/libFosl_dynamic.dylib0x1863fb000 - 0x186660fff CoreImage arm64 <708015be329e31eabd93df07dec18a17> /System/Library/Frameworks/CoreImage.framework/CoreImage0x186661000 - 0x18684ffff CoreMotion arm64 <168555a078273fb090092d49d26d931a> /System/Library/Frameworks/CoreMotion.framework/CoreMotion0x186850000 - 0x18687efff CoreBluetooth arm64 <98a36c47a17f3e10ac4fbf0b64ba5e96> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth0x18687f000 - 0x1868a1fff PlugInKit arm64 <9a0fc8c71da23cbaac48ef7266d3b164> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit0x1868a2000 - 0x186accfff ********* arm64 <b7db9c6fd6c93fd9b6e11e7b453d9a8d> /System/Library/PrivateFrameworks/*********.framework/*********0x186acd000 - 0x186b4ffff Quagga arm64 <311b83d6d2f338d586facf10f1a90cd2> /System/Library/PrivateFrameworks/Quagga.framework/Quagga0x186b50000 - 0x186c49fff AVFAudio arm64 <96ab57ad22ea36f5ad3c8718c1ab8764> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio0x186c4a000 - 0x186e38fff AVFoundation arm64 <48a63876248b347bb20e36798bc04115> /System/Library/Frameworks/AVFoundation.framework/AVFoundation0x186e39000 - 0x186e5cfff CacheDelete arm64 <4376983fcac03a6f9a5a2e244d96a699> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete0x186e5d000 - 0x186e82fff StreamingZip arm64 <dacb59888b7f31a39e95cf0ea3a741ef> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip0x186e83000 - 0x186e94fff CoreEmoji arm64 <0fed33cbda37338b9a43e1ef58c8e0f2> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji0x186e95000 - 0x186ee3fff CoreLocationProtobuf arm64 <0bda60fa58b13f409cd272342665fd89> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf0x186ee4000 - 0x186eebfff SymptomDiagnosticReporter arm64 <c1f54dbc49c53abbbe651644b610c4b0> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter0x186eec000 - 0x1877edfff GeoServices arm64 <764874763fc63346a6d438c2a8328fab> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices0x1877ee000 - 0x187805fff MobileAsset arm64 <4c1572513f59389e84081a755103547b> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset0x187806000 - 0x187847fff Lexicon arm64 <3de08451c03d3ad082074fd27e7647d4> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon0x187848000 - 0x187858fff libcmph.dylib arm64 <8b492aa79dc5318481752d5cba68e84b> /usr/lib/libcmph.dylib0x187859000 - 0x187975fff LanguageModeling arm64 <a0b0121d2e253a4993a81f1052d1aa2c> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling0x187976000 - 0x18798dfff libmarisa.dylib arm64 <948c4447eef032a2bd7fdb0d5860359c> /usr/lib/libmarisa.dylib0x18798e000 - 0x187a28fff CoreLocation arm64 <c081a6fe64d532408da8f7a9d5e0e9da> /System/Library/Frameworks/CoreLocation.framework/CoreLocation0x187a29000 - 0x187a29fff PhoneNumbers arm64 <a379685eef203ca7b1aa057fd8218ddb> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers0x187a2a000 - 0x187a35fff libChineseTokenizer.dylib arm64 <54b3896b7e3c37d7a2aa5cd17ea3b4fd> /usr/lib/libChineseTokenizer.dylib0x187a36000 - 0x187ae3fff libmecab_em.dylib arm64 <0a7c2fd4dd613449a0bdae35e1c05621> /usr/lib/libmecab_em.dylib0x187ae4000 - 0x187ae5fff libThaiTokenizer.dylib arm64 <05630da4695731c2a45c765e3f71b1fe> /usr/lib/libThaiTokenizer.dylib0x187ae6000 - 0x187aeafff libgermantok.dylib arm64 <b61ca93824353a36954523113f1be1a4> /usr/lib/libgermantok.dylib0x187aeb000 - 0x187b43fff CoreNLP arm64 <631fdf115f0c3047a3ca6dd7b28c073b> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP0x187b44000 - 0x187d02fff MobileSpotlightIndex arm64 <cd13d8305e4230e6b001ff9d173470c3> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex0x187d03000 - 0x187d62fff CoreSpotlight arm64 <148c4e10173239958c0dae8cec599705> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight0x187d6f000 - 0x1887a4fff JavaScriptCore arm64 <e5e2cd24ee8e39a5908c7512a93dbc4f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore0x1887a5000 - 0x1887aafff libheimdal-asn1.dylib arm64 <1dc1aa4421fe3ddea53a07080c5058c6> /usr/lib/libheimdal-asn1.dylib0x1887ab000 - 0x188825fff libate.dylib arm64 <bb4173dd632f3d9baf425608ec3ad1a7> /usr/lib/libate.dylib0x188826000 - 0x1888c8fff TextureIO arm64 <d5473c10ba4c31f29814c5940d66f041> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO0x1888c9000 - 0x188993fff CoreUI arm64 <8e5892440df03a3f9342ba386f3c8012> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI0x188994000 - 0x18899dfff MobileIcons arm64 <8d72c789b63c3d9eb0236814a909a473> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons0x18899e000 - 0x1889acfff AppleFSCompression arm64 <4de4a2cdeb6c36ada948d82593c0f5f2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression0x1889ad000 - 0x188a06fff TextInput arm64 <5e1c89ec1e1c310caa79b707ee359048> /System/Library/PrivateFrameworks/TextInput.framework/TextInput0x188a30000 - 0x188a65fff DataDetectorsCore arm64 <84e1f8c243cc340d8208038f40366bbe> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore0x188a66000 - 0x188afbfff FileProvider arm64 <81d2b19a8fe03251acd4b816dfd08908> /System/Library/Frameworks/FileProvider.framework/FileProvider0x188cd5000 - 0x188ce9fff libAccessibility.dylib arm64 <04185c7e9c1e340da5c2bccb2ca2b1af> /usr/lib/libAccessibility.dylib0x188cea000 - 0x189142fff libwebrtc.dylib arm64 <9c780252d56939d1bc15e93523a790a2> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib0x189143000 - 0x1891a3fff ContactsFoundation arm64 <3424e3697ab4310fa1d425d04888768e> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation0x1891a4000 - 0x18a5c1fff WebCore arm64 <efe4ff69a90238958ea8d3cfe946c772> /System/Library/PrivateFrameworks/WebCore.framework/WebCore0x18a5c2000 - 0x18a735fff WebKitLegacy arm64 <3806037d085136809a33f0fd56b200e2> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy0x18a736000 - 0x18a75efff DataAccessExpress arm64 <14e9e1270dca3e0c90bf867c08dbc188> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress0x18a75f000 - 0x18a7f7fff AddressBookLegacy arm64 <fe457d495a9635fb95e1a6634647e058> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy0x18a7f8000 - 0x18a84ffff ProtectedCloudStorage arm64 <b1c62916dfa63e219fa7b3fe96680790> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage0x18a850000 - 0x18a87cfff UserNotifications arm64 <1acc9bc755ae33708ad7a5eeadf6b8ec> /System/Library/Frameworks/UserNotifications.framework/UserNotifications0x18a87d000 - 0x18a888fff AppleIDAuthSupport arm64 <ecb924f2b727397ead08fd2c129b872c> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport0x18a889000 - 0x18a8d7fff AuthKit arm64 <b6db54b7c02433bd953d11d17cff6724> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit0x18a902000 - 0x18a955fff DocumentManager arm64 <6753460517ce35f1a33d34fe9819ca81> /System/Library/Frameworks/UIKit.framework/Frameworks/DocumentManager.framework/DocumentManager0x18a956000 - 0x18b9dbfff UIKit arm64 <1ae0c6d9279b3ac4a7e10bf3a63a0692> /System/Library/Frameworks/UIKit.framework/UIKit0x18b9dc000 - 0x18b9edfff DocumentManagerCore arm64 <051e2c78e43f3700af20321c6e289322> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore0x18b9ee000 - 0x18b9f2fff HangTracer arm64 <f66e4e75e8073b9290d9723d324edb88> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer0x18b9f3000 - 0x18ba45fff PhysicsKit arm64 <469bfd49cb5636da8a84d78ba983642c> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit0x18ba46000 - 0x18ba48fff StudyLog arm64 <9b3ba7d0a1dd3b1da0b003c214cfc816> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog0x18ba49000 - 0x18bb29fff UIFoundation arm64 <fa727d25bd7432f3afe426784ff9cdd1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation0x18bb2a000 - 0x18bc36fff CloudKit arm64 <386b94a754bf31489efb35138c200122> /System/Library/Frameworks/CloudKit.framework/CloudKit0x18bc37000 - 0x18bc37fff IntentsFoundation arm64 <5efb8e90072f34a490bd2329291d416b> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation0x18bc38000 - 0x18bd01fff Network arm64 <64b464c46498305a8f6d0522bf0e112b> /System/Library/PrivateFrameworks/Network.framework/Network0x18bd02000 - 0x18bf0cfff Intents arm64 <5964d059def33218a84a588e74da3b47> /System/Library/Frameworks/Intents.framework/Intents0x18bf0d000 - 0x18bf28fff libresolv.9.dylib arm64 <1243b6c2a9b93b79898311cb8d37d87a> /usr/lib/libresolv.9.dylib0x18bf29000 - 0x18bf2bfff CoreDuetDebugLogging arm64 <2fe962b39bad35db8e01cb063b4801fa> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging0x18bf2c000 - 0x18bf60fff libtidy.A.dylib arm64 <f8dae748d73237b985dd34f9ef9f953f> /usr/lib/libtidy.A.dylib0x18bf61000 - 0x18c08bfff CoreDuet arm64 <61357701c05f3f518a28040df994ab13> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet0x18c08c000 - 0x18c0aafff CoreDuetContext arm64 <2330b26c7ae03b6ca8b867f1f3d0564f> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext0x18c0ab000 - 0x18c0bffff CoreDuetDaemonProtocol arm64 <ae9ef5d9815c38449f169224df9eaca0> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol0x18c0c0000 - 0x18c12bfff IMFoundation arm64 <d3353950621838d490f40b99c9b3938d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation0x18c12c000 - 0x18c15afff vCard arm64 <b0a50e4baac93faa8dcdeb7d37e521d1> /System/Library/PrivateFrameworks/vCard.framework/vCard0x18c15b000 - 0x18c266fff Contacts arm64 <4e8acc9e76de3e49a6264964058223e4> /System/Library/Frameworks/Contacts.framework/Contacts0x18c267000 - 0x18c268fff DiagnosticLogCollection arm64 <868f71f0b2aa3e77ae0fbc881da8824b> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection0x18c269000 - 0x18c26afff Marco arm64 <a5bf7b237fe03c74827f71f4e3906931> /System/Library/PrivateFrameworks/Marco.framework/Marco0x18c26b000 - 0x18c271fff MessageProtection arm64 <27ac5b0a0ff6361a840ddb5a7dfadefc> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection0x18c272000 - 0x18c579fff StoreServices arm64 <8f777fee8a9530fc9c4b43684ad4d234> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices0x18c57a000 - 0x18c592fff Engram arm64 <59677e690b3a3387929dad283df7f85e> /System/Library/PrivateFrameworks/Engram.framework/Engram0x18c593000 - 0x18c686fff IDSFoundation arm64 <1bedc7b637f73fc1bbc4701d35b0e6a6> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation0x18c687000 - 0x18c692fff CaptiveNetwork arm64 <df3851b5c19c309aaa816d5d18786725> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork0x18c693000 - 0x18c6c1fff EAP8021X arm64 <07ed8ba71dfd3b37a89f087bd86aae77> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X0x18c6c2000 - 0x18c6fcfff MobileWiFi arm64 <195c28c5b8063e41a86bf3d69c2d4326> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi0x18c6fd000 - 0x18c6fffff OAuth arm64 <ec25f1595c163219b07d21a1ebdb902a> /System/Library/PrivateFrameworks/OAuth.framework/OAuth0x18c700000 - 0x18c702fff CommonAuth arm64 <35c1af3f71213eaeb19292fda822e67a> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth0x18c703000 - 0x18c771fff Heimdal arm64 <e5b00f9b8da530ff8873847e51fb7d5e> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal0x18c772000 - 0x18c79bfff GSS arm64 <49ce418d6af83ca6ad95622c72ba2a3e> /System/Library/Frameworks/GSS.framework/GSS0x18c79c000 - 0x18c7b3fff ApplePushService arm64 <c846a36a730e38ce995323de7421321f> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService0x18c7b4000 - 0x18c84cfff AccountsDaemon arm64 <895c85d305053712b0d7406f7eafe014> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon0x18c84d000 - 0x18c86bfff AppleIDSSOAuthentication arm64 <a2ad71e90a133bbbaeab3ab0d1ff4ff7> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication0x18c86c000 - 0x18c8defff AppleAccount arm64 <e6e0016bf2433e37b360703136de0b53> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount0x18c8df000 - 0x18c9f2fff CoreUtils arm64 <60f3ca25f0a5369893147fc45c863105> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils0x18c9f3000 - 0x18cb0cfff IDS arm64 <87745652d06236e4b5ab2a5547274ea4> /System/Library/PrivateFrameworks/IDS.framework/IDS0x18cb0d000 - 0x18cb2dfff MediaServices arm64 <43a188034dc734aeae2112574dd02a51> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices0x18cb2e000 - 0x18cc9ffff MediaRemote arm64 <81f3123ab73a30d59bb3c970b556fdf0> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote0x18cca0000 - 0x18ccb6fff UserManagement arm64 <fa80a3eee8ed3df3a9b0621a317b41b5> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement0x18ccb7000 - 0x18ccc6fff MobileBluetooth arm64 <e54850c6cbc8368ba17be75ff6b142eb> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth0x18ccc7000 - 0x18ccf7fff Bom arm64 <f6a7d9df0b4e3146b98f9120475509e1> /System/Library/PrivateFrameworks/Bom.framework/Bom0x18ccf8000 - 0x18ccfcfff CommunicationsFilter arm64 <82593e02d99a3ef1896d2738be3e57c3> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter0x18ccfd000 - 0x18cd22fff FTAWD arm64 <31d0b593bae93294a0892eeb620357fc> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD0x18cd23000 - 0x18cd76fff FTServices arm64 <bec1a484c3983c82981ea97a591c4801> /System/Library/PrivateFrameworks/FTServices.framework/FTServices0x18cd77000 - 0x18cdc9fff WirelessProximity arm64 <07985b1d817d3ee9b154fee7cddf2e4b> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity0x18cdca000 - 0x18cddefff ProactiveEventTracker arm64 <a071408501013cbc952df6d84316432b> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker0x18cddf000 - 0x18ce30fff ChunkingLibrary arm64 <e85704a007ca308caa3ebe9ba2bc48cd> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary0x18ce31000 - 0x18ce3dfff libnetworkextension.dylib arm64 <5588ba0ea8953ab09cfcc7c302e7e5e1> /usr/lib/libnetworkextension.dylib0x18ce3e000 - 0x18ce62fff AddressBook arm64 <c67be88af2c130e2888699eb75f60d7e> /System/Library/Frameworks/AddressBook.framework/AddressBook0x18dc3b000 - 0x18ddd0fff NetworkExtension arm64 <e5e705b8ca49395eb7de42183bb1be6a> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension0x18ddd1000 - 0x18e1d4fff SiriTTS arm64 <062af948ed7936c2831d34c36c079414> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS0x18e1d5000 - 0x18e22efff SAObjects arm64 <9706f5e1d7f73729b8b255f2eaf351e2> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects0x18e22f000 - 0x18e26cfff VoiceServices arm64 <558b4d8d4d8f376189e36ee321eaf3d6> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices0x18e26d000 - 0x18e29dfff GLKit arm64 <01849b737ba73695ae5e77dc0585bd19> /System/Library/Frameworks/GLKit.framework/GLKit0x18e29e000 - 0x18e382fff AssistantServices arm64 <985a426d4a5233c589d5dff111d579cc> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices0x18e383000 - 0x18e38afff AssetCacheServices arm64 <62e20f91e12536a4bd1822aa9a2cf83e> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices0x18e38b000 - 0x18e445fff NetworkServiceProxy arm64 <16bed150dad93f18ae29fe03ce26db85> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy0x18e446000 - 0x18e53bfff MMCS arm64 <67c800f5201938409716ecd862a6ae9c> /System/Library/PrivateFrameworks/MMCS.framework/MMCS0x18e549000 - 0x18e5bafff CoreDAV arm64 <83d8d67b705b3f389214a64a92e50c21> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV0x18e5bb000 - 0x18e5effff iCalendar arm64 <ec0449d2ec0a36a6a8b8bc5331b14e4a> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar0x18e5f0000 - 0x18e5fefff PersonaKit arm64 <f336994ea7ed3ca8855b616e5b9e4141> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit0x18e5ff000 - 0x18e659fff CalendarFoundation arm64 <6169b3dc52f13a0eb9379e959c6f2747> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation0x18e65a000 - 0x18e687fff PhotosFormats arm64 <a866d1c5ee7f3c15b7059a5d868cdff8> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats0x18e688000 - 0x18e724fff CalendarDatabase arm64 <a83bae9485573988b43c843fe015f1f7> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase0x18e725000 - 0x18e776fff CalendarDaemon arm64 <722d8cbc8d4f34bc923e6a1f68f45c23> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon0x18e777000 - 0x18e895fff CloudPhotoLibrary arm64 <bcaf1aa4549c3b53b4e58de43292ca08> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary0x18e896000 - 0x18e97afff EventKit arm64 <9fd5748eb4ff3d72b6668bb052222c4c> /System/Library/Frameworks/EventKit.framework/EventKit0x18e97b000 - 0x18e9a5fff AssetsLibraryServices arm64 <4724292bf9ce39bab1b420083200bb54> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices0x18e9a6000 - 0x18e9dafff ACTFramework arm64 <44708ab553533895a7e953bc8557c321> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework0x18e9db000 - 0x18e9fbfff DCIMServices arm64 <b4a2a6ad3d98322da1cfffcb5adb6827> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices0x18e9fc000 - 0x18eb36fff CoreMediaStream arm64 <b7573151e7ba37d9ac85911f07c992df> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream0x18eb37000 - 0x18eb3efff XPCKit arm64 <376bb5e8b8eb3d0db701fa235f66cb1d> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit0x18eb3f000 - 0x18ec25fff CameraKit arm64 <af9dbfd66388349dbe615066cbc9c483> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit0x18ec26000 - 0x18ec3efff CloudPhotoServices arm64 <b52afa1f77e73f048edc7dbdb05730ab> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices0x18ec3f000 - 0x18ec4afff CoreRecents arm64 <35e62ee8420a3f7fac7853fbc1b4c329> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents0x18ec4b000 - 0x18ec69fff MediaStream arm64 <6983e33567583f819065482362660feb> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream0x18ec6a000 - 0x18f08cfff PhotoLibraryServices arm64 <03194e4851e437cda84dab1219698bf4> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices0x18f08d000 - 0x18f0c3fff PrototypeTools arm64 <c5509c116b8e30d88c82d924e8ce55dd> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools0x18f150000 - 0x18f27dfff SearchFoundation arm64 <940716936eb6336e89d8cbc3f41f78e2> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation0x18f27e000 - 0x18f284fff IncomingCallFilter arm64 <383478fc575c31b9a9e7733f3a8b9b46> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter0x18f285000 - 0x18f32efff iTunesStore arm64 <ebdbf7abaab03d96a751f4b5a6a87ffe> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore0x18f4a2000 - 0x18f4a9fff CoreTime arm64 <1ddd88ec3124365ab14bd0744851320c> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime0x18f4aa000 - 0x18f613fff CVML arm64 <d0831e0b63bb3828818f921f0ccaf0f5> /System/Library/PrivateFrameworks/CVML.framework/CVML0x18f614000 - 0x18f660fff CoreAppleCVA arm64 <3ad3808fe0273644aebce67f4ebb601c> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA0x18f661000 - 0x18f697fff DifferentialPrivacy arm64 <e5401d4c1cc43427874f3ec39f1fdd0c> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy0x18f698000 - 0x18f7fffff AppleCVA arm64 <9a5caa6d2c02355281c7484ba53034b4> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA0x18f800000 - 0x18f89bfff Montreal arm64 <b8d91ba98e9a3e3a802e9b2fdc9d14c9> /System/Library/PrivateFrameworks/Montreal.framework/Montreal0x18f89c000 - 0x18fa79fff Espresso arm64 <014c5753265a3665baf7f4cd55a148cc> /System/Library/PrivateFrameworks/Espresso.framework/Espresso0x18fa7a000 - 0x18fa7dfff MobileSystemServices arm64 <0d09764c70b23f0fbaa6567f99cd877c> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices0x18fa7e000 - 0x18fbd0fff Photos arm64 <c48a671e0f433ec1a50003d29bd76ba2> /System/Library/Frameworks/Photos.framework/Photos0x18fbdd000 - 0x18fda6fff CoreML arm64 <b630bba175ae3c72936918f0fe48ff2b> /System/Library/Frameworks/CoreML.framework/CoreML0x18fda7000 - 0x18fdabfff CoreOptimization arm64 <6e61942f08953dd79fd44cc9d4d744f1> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization0x18fdac000 - 0x18fde9fff SafariCore arm64 <710c3ef835613a4693a7cdbee6665507> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore0x18fdea000 - 0x18fe44fff CorePrediction arm64 <e9db8bd625803d5cadb30d12724983af> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction0x18fe45000 - 0x18ff42fff Navigation arm64 <31971185e9343c3caa8a84038d94c6a6> /System/Library/PrivateFrameworks/Navigation.framework/Navigation0x18ff43000 - 0x18ff5bfff ContactsDonation arm64 <a389f11adf4f337b910b48ea4ce88dfe> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation0x18ff5c000 - 0x18ff88fff Futhark arm64 <31e1eb4d39223710ac3eaf6365bd5c64> /System/Library/PrivateFrameworks/Futhark.framework/Futhark0x18ffcc000 - 0x190020fff ToneLibrary arm64 <f6096840077b35aba4f85b905fec8835> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary0x190021000 - 0x190033fff BaseBoardUI arm64 <c65d4685d68d3dd5b9cc66280768bd35> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI0x190034000 - 0x19008cfff ContactsUICore arm64 <112ec20ccb4433389bfe6bcef271d0e9> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore0x19008d000 - 0x1901f1fff ContactsUI arm64 <5ff96c88672f3f7daaef338c138610dd> /System/Library/Frameworks/ContactsUI.framework/ContactsUI0x1901f2000 - 0x1902cefff CorePDF arm64 <27f58f27493a30c3ad6b2f8f2b5b464e> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF0x1902cf000 - 0x19052ffff Vision arm64 <671010031a393fe4850d561b3c42427f> /System/Library/Frameworks/Vision.framework/Vision0x190530000 - 0x1908e6fff WebKit arm64 <c24dc092d27d324cb755db1d25110d33> /System/Library/Frameworks/WebKit.framework/WebKit0x1908e7000 - 0x1909a0fff BulletinBoard arm64 <37b377c45fc23cd7888a6da5140ef0af> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard0x1909a1000 - 0x1909a6fff ConstantClasses arm64 <ba66372594cb3a2b8db141e6eb25ce2e> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses0x1909a7000 - 0x1909affff CertUI arm64 <bac1e32a984233d18b4dc765f2c5c712> /System/Library/PrivateFrameworks/CertUI.framework/CertUI0x190a99000 - 0x190b35fff MediaPlatform arm64 <53f6bfef587a3976a95c60020ef0923f> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform0x190b36000 - 0x190b95fff WebBookmarks arm64 <c47781cf948d3314bd1a66eb1a120623> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks0x190b96000 - 0x190b9cfff DAAPKit arm64 <1489e0c7529436419e775108edc2851e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit0x190c8f000 - 0x190f67fff MediaLibraryCore arm64 <e9e31e56a9d931b480077cdf3c26ea1b> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore0x190f68000 - 0x190f68fff AdSupport arm64 <52aeb59762cc30399d7dd506a9739686> /System/Library/Frameworks/AdSupport.framework/AdSupport0x190f69000 - 0x1911e7fff MusicLibrary arm64 <50d67ee3398f34cda8475d25d029208c> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary0x1911e8000 - 0x191870fff VectorKit arm64 <79e1fdcd393736129c3e506e5f67ac2b> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit0x191871000 - 0x191aaefff MapKit arm64 <92009c98b1d03bac9cf0aa027001c0d4> /System/Library/Frameworks/MapKit.framework/MapKit0x191aaf000 - 0x191c27fff iTunesCloud arm64 <2c3ab1a02a4932488d2b9b9e3f8eed74> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud0x191c28000 - 0x191cc8fff HomeSharing arm64 <df6385b5922a3f10a0b2ae1940201dc3> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing0x191e38000 - 0x192294fff MediaPlayer arm64 <3f2813565c393f5e9b22e1e68740a5cd> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer0x1922bb000 - 0x1922c1fff EmailAddressing arm64 <a4ed08880b213c40a1432420c6570fba> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing0x1922c2000 - 0x1922c4fff MessageSupport arm64 <40b233623a0d3463b2b762ab80dfb250> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport0x1922c5000 - 0x1922c7fff InternationalTextSearch arm64 <8b25215ff1b5370daaf074a449d7408e> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch0x1922c8000 - 0x192323fff MIME arm64 <0c5c8fd7041c3d92bf6857ff48fe41d1> /System/Library/PrivateFrameworks/MIME.framework/MIME0x192324000 - 0x192353fff ProactiveSupport arm64 <25820ab287a3365e8ab599e3d952837c> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport0x192354000 - 0x19238cfff Notes arm64 <376b967ea0e2363a9c37b6c801fe0a8c> /System/Library/PrivateFrameworks/Notes.framework/Notes0x19238d000 - 0x192441fff TelephonyUtilities arm64 <a72e2e6971e43a9bad5147c0b9d867be> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities0x192442000 - 0x19247cfff CalendarUIKit arm64 <252b784e202c3c7eaa0780ae59571b00> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit0x192495000 - 0x1924f0fff DataAccess arm64 <1ba6ac5279cd3605b4c912fb99687d6e> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess0x1924f1000 - 0x192504fff AssetsLibrary arm64 <c7ae30f9006b398bacc0a8ba8c02bb1d> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary0x192505000 - 0x1926e3fff EventKitUI arm64 <b29a3bb5278f3b41886fc3b0ed036ab4> /System/Library/Frameworks/EventKitUI.framework/EventKitUI0x1927d0000 - 0x1927d6fff SearchToSharePredictions arm64 <06ee3054c9603bd5a8817d8af8d3ade9> /System/Library/PrivateFrameworks/SearchToSharePredictions.framework/SearchToSharePredictions0x1927d7000 - 0x192878fff Social arm64 <bcd6acd245643a579fc372a3931754e7> /System/Library/Frameworks/Social.framework/Social0x192921000 - 0x192990fff CoreSuggestions arm64 <17ab99306f78359c993f080762fa5666> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions0x192991000 - 0x1929a1fff MailServices arm64 <12b4274533e937a18feec291c9eedeb5> /System/Library/PrivateFrameworks/MailServices.framework/MailServices0x1929a2000 - 0x192a37fff CoreRecognition arm64 <e044f03b38233bb38791a318c43ee3f4> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition0x192a38000 - 0x192a53fff MailSupport arm64 <0456e2e00da63691a1bb7f575b3ab935> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport0x192a54000 - 0x192ba3fff Message arm64 <60c58b8941e93f92b02852c9123e22d9> /System/Library/PrivateFrameworks/Message.framework/Message0x192dc7000 - 0x192e69fff CoreParsec arm64 <21f1192974ca34e09cf3e6c07fd52437> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec0x192e9a000 - 0x192ecafff SharedUtils arm64 <414d1282f99d33b28d99c0556eba0f29> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils0x192ecb000 - 0x192f06fff ContactsAutocomplete arm64 <0e9507a02bbb3ee999a9c967427a7974> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete0x192f07000 - 0x192fccfff VideoSubscriberAccount arm64 <868d89dd6615348f99bce20aa7ac2b84> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount0x192fcd000 - 0x192ffefff Pegasus arm64 <25e5d23e222036adaea75410b37f3135> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus0x192fff000 - 0x19307ffff AVKit arm64 <9e4de62b71da3e4cb27018e835e7e8c7> /System/Library/Frameworks/AVKit.framework/AVKit0x1930a4000 - 0x1930a7fff FTClientServices arm64 <52cd266e15763e84b4c5d74dc39340bf> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices0x1930a8000 - 0x1930bbfff SharedWebCredentials arm64 <237be9a9c3f434db9d99cffa80988ef6> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials0x1930bc000 - 0x1930bcfff MobileObliteration arm64 <c9b2892e85ee33319395aa9b5323945b> /System/Library/PrivateFrameworks/MobileObliteration.framework/MobileObliteration0x1930bd000 - 0x1930c0fff SafariFoundation arm64 <a527d213514c3928af94e6f7835b6b68> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation0x193248000 - 0x19325efff LocalAuthentication arm64 <f4fbef3714bb3132880a95cbcd9bd5e1> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication0x19325f000 - 0x193261fff ParsecSubscriptionServiceSupport arm64 <4ff789900eda3015b204f7fa777538e1> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport0x193262000 - 0x193309fff SpringBoardFoundation arm64 <50d538ad674e3ef5a58d008e01c3ee58> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation0x19330a000 - 0x193322fff CoreInterest arm64 <9d0f673841e63c69a932e393ffcfd18b> /System/Library/PrivateFrameworks/CoreInterest.framework/CoreInterest0x193323000 - 0x193584fff SafariShared arm64 <bb7c724adaba35d39cead7c9c3845ed1> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared0x193585000 - 0x1935bffff WebUI arm64 <7839526bd541366cac59d18bb84de836> /System/Library/PrivateFrameworks/WebUI.framework/WebUI0x193643000 - 0x19364cfff MobileStorage arm64 <20f06866a42a358893db330135f71ee2> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage0x19364d000 - 0x19368ffff ContentIndex arm64 <554c377745a23719aadb84480313d5f2> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex0x193690000 - 0x193983fff ImageCapture arm64 <c196e45f643a30e9842ce6b36e36a633> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture0x193b56000 - 0x193b6cfff iPhotoMigrationSupport arm64 <da3747edef28349ebb105c9c05aeed96> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport0x193b6d000 - 0x193b7ffff DiagnosticExtensions arm64 <f37c4622b060340abeaca6d9bf176079> /System/Library/PrivateFrameworks/DiagnosticExtensions.framework/DiagnosticExtensions0x193e87000 - 0x193f1efff PhotoLibrary arm64 <d3017fdf799f332789ff8f4746e4274b> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary0x193f1f000 - 0x19426ffff PhotosUICore arm64 <6078fe8180c33c42a1e954058f8a8737> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore0x194270000 - 0x1942a5fff TelephonyUI arm64 <3bac171aa42a38e6a3c3c99e83cd3694> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI0x19433e000 - 0x1943c8fff PhotoEditSupport arm64 <739ae73c95973434b59ccf39bdd84ba8> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport0x1943c9000 - 0x1943dcfff SiriTasks arm64 <09cbdcac8dcc34129d65752c7b3b0c18> /System/Library/PrivateFrameworks/SiriTasks.framework/SiriTasks0x1943dd000 - 0x1947f9fff PhotosUI arm64 <a21dcc8a4c6239e0bb55e97cc1dda8e3> /System/Library/Frameworks/PhotosUI.framework/PhotosUI0x1947fa000 - 0x194800fff ProgressUI arm64 <399a5b361825315c93827d09b7c12db2> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI0x194903000 - 0x194930fff StoreKit arm64 <85d4c4657bf73c58aca45417feb3f16a> /System/Library/Frameworks/StoreKit.framework/StoreKit0x194931000 - 0x194987fff SpringBoardUIServices arm64 <313efb680523379aab05d6e12604dce6> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices0x194ac2000 - 0x194adcfff MetalKit arm64 <293c79a715cb37bdb521750ac5d2fabd> /System/Library/Frameworks/MetalKit.framework/MetalKit0x19517c000 - 0x195184fff AddressBookUI arm64 <c0ac87cc19a03afd8172900362841eb9> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI0x195a9e000 - 0x195ae4fff Pasteboard arm64 <714f17a8180f3722ad353064ce69fb4d> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard0x195cfb000 - 0x195d41fff SafariSafeBrowsing arm64 <1126219f83f73b51b5e493a2a7b39e08> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing0x195d60000 - 0x195e67fff SafariServices arm64 <e8ce13545a5f3ec39cf8c5c7669c1b13> /System/Library/Frameworks/SafariServices.framework/SafariServices0x1961e4000 - 0x1962defff MessageUI arm64 <5cf82853f3e338bdae85a4ebcc06eb47> /System/Library/Frameworks/MessageUI.framework/MessageUI0x197c6e000 - 0x197ca4fff OpenAL arm64 <58a57fab5d1b31b4b30bb45ab2258ac8> /System/Library/Frameworks/OpenAL.framework/OpenAL0x19a171000 - 0x19a195fff AppSupportUI arm64 <d465070e320632b9aba69892508f26e2> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI0x19aae7000 - 0x19aaeefff iAdServices arm64 <3fe471d0658938adb4ee63d5d9a17fa9> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices0x19aaef000 - 0x19ab3efff iAd arm64 <03f88b61ef003e7282c1e194597767f6> /System/Library/Frameworks/iAd.framework/iAd0x19aecc000 - 0x19b020fff libGLProgrammability.dylib arm64 <b85d769e7a893f5c8677411b84ef79dc> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib0x19c248000 - 0x19c24bfff AGXCompilerConnection arm64 <67d1623d4db739f09c6164b2ea1e4d60> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection0x19c843000 - 0x19c84cfff libGPUSupportMercury.dylib arm64 <aa8218dae517330494aac03b9c3f8a82> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib0x19d28b000 - 0x19d2a6fff GameController arm64 <3bdf930522593c5b9432188bd46445e5> /System/Library/Frameworks/GameController.framework/GameController0x1a09ff000 - 0x1a0a84fff AGXGLDriver arm64 <4de62278dc193b1ab2af25fb800cfef5> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver0x1a0d07000 - 0x1a0d1bfff libCGInterfaces.dylib arm64 <fa21578480423183907f3bd84e809893> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib0x1a0d1c000 - 0x1a1161fff AudioCodecs arm64 <eb9a1c858e8b3864bfdb74219a29b3f1> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs0x1a1a21000 - 0x1a1b03fff GLEngine arm64 <98e6e56d8c823f63aa4e8fc9ac375d8a> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine0x1a1b50000 - 0x1a1b90fff WatchConnectivity arm64 <69566404c8353249b967b5fb5a3359a6> /System/Library/Frameworks/WatchConnectivity.framework/WatchConnectivity0x1a315a000 - 0x1a3181fff CoreServicesInternal arm64 <0927f80bd9de335e9ce3eb812e695e6a> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal0x1a3754000 - 0x1a3765fff libGSFontCache.dylib arm64 <50b74f1d848d3bb693fedc5ec5abcdd4> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib0x1a3766000 - 0x1a3798fff libTrueTypeScaler.dylib arm64 <368042c6615c3311b21a920e048e67f9> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib0x1a4f2f000 - 0x1a4f32fff InternationalSupport arm64 <ee6d1235952e38c5a2cceb4377192f5b> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport0x1a7802000 - 0x1a780dfff libMobileGestaltExtensions.dylib arm64 <8dc7ea68273b34aea3b4c9af9d23ee71> /usr/lib/libMobileGestaltExtensions.dylib0x1a8a0d000 - 0x1a8a3efff libclosured.dylib arm64 <aefc8840686d30a88277d7efcb70abaf> /usr/lib/closure/libclosured.dylibEOF