public void didReceiveData(MCSession session, NSData data, MCPeerID peerID) {
//there we make userInfoData
//
DispatchQueue.getMainQueue().async(new Runnable() {
@Override
public void run() {
NSNotificationCenter.getDefaultCenter().postNotification(new NSString("didReceiveData"), null, userInfoData);
}
});
}
// Register observer in NSNotificationCenter
// NSNotificationCenter.getDefaultCenter().addObserver(this, Selector.register("updateDataWithNotification:"), new NSString("didReceiveData"), null);
//
// This method is called when device has received new data
@Method
private void updateDataWithNotification(NSNotification notification){
userInfoDict = notification.getUserInfo();
data = (NSData) userInfoDict.get(new NSString("data"));
strBytes = new String(data.getBytes());
// i'm not sure this Gdx.app.postRunnable is really needed
Gdx.app.postRunnable(new Runnable() {
@Override
public void run() {
SBGlobalMessanger.getInstance().readBluetoothMessage(BluetoothData.RC_MESSAGE, strBytes);
}
});
}
The questions are:
Where is the bug? And how can we fix it?
--
You received this message because you are subscribed to the Google Groups "RoboVM" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robovm+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
This is symbolicated crash log:Incident Identifier: 38E8DF12-85E8-4A03-9C4B-182600A46791CrashReporter Key: 6b3863390081c9e2e3c2d0b81dd048f35d6bf7eeHardware Model: iPad2,5Process: IOSLauncher [14044]Path: /private/var/mobile/Containers/Bundle/Application/F0E02522-EF71-4D45-AD40-D490B56C7D97/IOSLauncher.app/IOSLauncherIdentifier: com.byril.*****Version: 1 (1.0)Code Type: ARM (Native)Parent Process: debugserver [14043]Date/Time: 2015-03-26 12:44:16.673 +0300Launch Time: 2015-03-26 12:42:48.171 +0300OS Version: iOS 8.1.3 (12B466)Report Version: 105Exception Type: EXC_CRASH (SIGABRT)Exception Codes: 0x0000000000000000, 0x0000000000000000Triggered by Thread: 17Thread 0 name: main Dispatch queue: com.apple.main-threadThread 0:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 CoreFoundation 0x24bfa596 __CFRunLoopServiceMachPort + 1423 CoreFoundation 0x24bf8b5c __CFRunLoopRun + 10124 CoreFoundation 0x24b45b2c CFRunLoopRunSpecific + 4725 CoreFoundation 0x24b4593e CFRunLoopRunInMode + 1026 GraphicsServices 0x2befa04c GSEventRunModal + 1327 UIKit 0x28137f1c UIApplicationMain + 14368 IOSLauncher 0x008c8966 0x41000 + 89439749 IOSLauncher 0x008c7e8c 0x41000 + 894119610 IOSLauncher 0x008c7eca 0x41000 + 894125811 IOSLauncher 0x004556c2 0x41000 + 427795412 IOSLauncher 0x00b12444 0x41000 + 1134291613 IOSLauncher 0x00b0b1de 0x41000 + 1131363014 IOSLauncher 0x00b0ce5a 0x41000 + 1132092215 IOSLauncher 0x00b0ceb4 0x41000 + 1132101216 IOSLauncher 0x00b07150 0x41000 + 1129710417 IOSLauncher 0x00aff836 0x41000 + 1126610218 IOSLauncher 0x0026b734 0x41000 + 2271028Thread 1 name: Dispatch queue: com.apple.libdispatch-managerThread 1:0 libsystem_kernel.dylib 0x32e0c2c8 kevent64 + 241 libdispatch.dylib 0x32d2ee44 _dispatch_mgr_invoke + 2762 libdispatch.dylib 0x32d2eb76 _dispatch_mgr_thread$VARIANT$mp + 34Thread 2:0 libsystem_kernel.dylib 0x32e1fb38 __psynch_cvwait + 241 libsystem_pthread.dylib 0x32e9e3dc _pthread_cond_wait + 5162 libsystem_pthread.dylib 0x32e9f2ac pthread_cond_wait + 363 IOSLauncher 0x00b23838 0x41000 + 114135604 IOSLauncher 0x00b1d25c 0x41000 + 113874845 IOSLauncher 0x00b2239e 0x41000 + 114082866 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1367 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1148 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 3:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 libsystem_kernel.dylib 0x32e1be00 mach_msg_server + 3243 IOSLauncher 0x00b0123a 0x41000 + 112727624 IOSLauncher 0x00b22222 0x41000 + 114079065 IOSLauncher 0x00b1fd34 0x41000 + 113984526 IOSLauncher 0x00b23340 0x41000 + 114122887 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1368 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1149 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 4:0 libsystem_kernel.dylib 0x32e1fb38 __psynch_cvwait + 241 libsystem_pthread.dylib 0x32e9e3dc _pthread_cond_wait + 5162 libsystem_pthread.dylib 0x32e9f2ac pthread_cond_wait + 363 IOSLauncher 0x00b0e120 0x41000 + 113257284 IOSLauncher 0x00b0ded8 0x41000 + 113251445 IOSLauncher 0x0004919e 0x41000 + 331826 IOSLauncher 0x004afc80 0x41000 + 46480647 IOSLauncher 0x004afc34 0x41000 + 46479888 IOSLauncher 0x004a5d60 0x41000 + 46073289 IOSLauncher 0x004c2b46 0x41000 + 472557410 IOSLauncher 0x00b12444 0x41000 + 1134291611 IOSLauncher 0x00b0b1de 0x41000 + 1131363012 IOSLauncher 0x00b0afae 0x41000 + 1131307013 IOSLauncher 0x00b11d3a 0x41000 + 1134111414 IOSLauncher 0x00b22222 0x41000 + 1140790615 IOSLauncher 0x00b1fd34 0x41000 + 1139845216 IOSLauncher 0x00b23340 0x41000 + 1141228817 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 13618 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11419 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 5:0 libsystem_kernel.dylib 0x32e1fb38 __psynch_cvwait + 241 libsystem_pthread.dylib 0x32e9e3dc _pthread_cond_wait + 5162 libsystem_pthread.dylib 0x32e9f2ac pthread_cond_wait + 363 IOSLauncher 0x00b0e120 0x41000 + 113257284 IOSLauncher 0x00b0ded8 0x41000 + 113251445 IOSLauncher 0x0004919e 0x41000 + 331826 IOSLauncher 0x004afc80 0x41000 + 46480647 IOSLauncher 0x004afc54 0x41000 + 46480208 IOSLauncher 0x004caa16 0x41000 + 47580389 IOSLauncher 0x004cab90 0x41000 + 475841610 IOSLauncher 0x004ca966 0x41000 + 475786211 IOSLauncher 0x004a544a 0x41000 + 460500212 IOSLauncher 0x004c2b46 0x41000 + 472557413 IOSLauncher 0x00b12444 0x41000 + 1134291614 IOSLauncher 0x00b0b1de 0x41000 + 1131363015 IOSLauncher 0x00b0afae 0x41000 + 1131307016 IOSLauncher 0x00b11d3a 0x41000 + 1134111417 IOSLauncher 0x00b22222 0x41000 + 1140790618 IOSLauncher 0x00b1fd34 0x41000 + 1139845219 IOSLauncher 0x00b23340 0x41000 + 1141228820 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 13621 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11422 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 6:0 libsystem_kernel.dylib 0x32e1fb38 __psynch_cvwait + 241 libsystem_pthread.dylib 0x32e9e3dc _pthread_cond_wait + 5162 libsystem_pthread.dylib 0x32e9f2ac pthread_cond_wait + 363 IOSLauncher 0x00b0e120 0x41000 + 113257284 IOSLauncher 0x00b0ded8 0x41000 + 113251445 IOSLauncher 0x0004919e 0x41000 + 331826 IOSLauncher 0x004afc80 0x41000 + 46480647 IOSLauncher 0x004afc34 0x41000 + 46479888 IOSLauncher 0x004a58f0 0x41000 + 46061929 IOSLauncher 0x004a57be 0x41000 + 460588610 IOSLauncher 0x004c2b46 0x41000 + 472557411 IOSLauncher 0x00b12444 0x41000 + 1134291612 IOSLauncher 0x00b0b1de 0x41000 + 1131363013 IOSLauncher 0x00b0afae 0x41000 + 1131307014 IOSLauncher 0x00b11d3a 0x41000 + 1134111415 IOSLauncher 0x00b22222 0x41000 + 1140790616 IOSLauncher 0x00b1fd34 0x41000 + 1139845217 IOSLauncher 0x00b23340 0x41000 + 1141228818 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 13619 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11420 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 7 name: AVAudioSession Notify ThreadThread 7:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 CoreFoundation 0x24bfa596 __CFRunLoopServiceMachPort + 1423 CoreFoundation 0x24bf8b5c __CFRunLoopRun + 10124 CoreFoundation 0x24b45b2c CFRunLoopRunSpecific + 4725 CoreFoundation 0x24b4593e CFRunLoopRunInMode + 1026 libAVFAudio.dylib 0x238693e8 GenericRunLoopThread::Entry(void*) + 1287 libAVFAudio.dylib 0x2385b8e4 CAPThread::Entry(CAPThread*) + 1928 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1369 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11410 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 8 name: AURemoteIO::IOThreadThread 8:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 AudioToolbox 0x243b269e AURemoteIO::IOThread::Run() + 1023 AudioToolbox 0x243b5d58 AURemoteIO::IOThread::Entry(void*) + 44 AudioToolbox 0x242eaa02 CAPThread::Entry(CAPThread*) + 2065 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1366 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1147 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 9:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 CoreFoundation 0x24bfa596 __CFRunLoopServiceMachPort + 1423 CoreFoundation 0x24bf8b5c __CFRunLoopRun + 10124 CoreFoundation 0x24b45b2c CFRunLoopRunSpecific + 4725 CoreFoundation 0x24b8f4f6 CFRunLoopRun + 946 CoreMotion 0x2544cd1e 0x2540d000 + 2614067 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1368 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1149 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 10:0 libsystem_kernel.dylib 0x32e1fb38 __psynch_cvwait + 241 libsystem_pthread.dylib 0x32e9e3dc _pthread_cond_wait + 5162 libsystem_pthread.dylib 0x32e9f2ac pthread_cond_wait + 363 IOSLauncher 0x00b0e120 0x41000 + 113257284 IOSLauncher 0x00b0ded8 0x41000 + 113251445 IOSLauncher 0x0004919e 0x41000 + 331826 IOSLauncher 0x004afc80 0x41000 + 46480647 IOSLauncher 0x004c393c 0x41000 + 47291488 IOSLauncher 0x00aff5b2 0x41000 + 112654589 IOSLauncher 0x005ab224 0x41000 + 567760410 IOSLauncher 0x005ab25e 0x41000 + 567766211 IOSLauncher 0x005aa7ac 0x41000 + 567492412 IOSLauncher 0x0059db86 0x41000 + 562266213 IOSLauncher 0x005a43d0 0x41000 + 564936014 IOSLauncher 0x005a44ae 0x41000 + 564958215 IOSLauncher 0x005a60d0 0x41000 + 565678416 IOSLauncher 0x004c2b46 0x41000 + 472557417 IOSLauncher 0x00b12444 0x41000 + 1134291618 IOSLauncher 0x00b0b1de 0x41000 + 1131363019 IOSLauncher 0x00b0afae 0x41000 + 1131307020 IOSLauncher 0x00b11d3a 0x41000 + 1134111421 IOSLauncher 0x00b22222 0x41000 + 1140790622 IOSLauncher 0x00b1fd34 0x41000 + 1139845223 IOSLauncher 0x00b23340 0x41000 + 1141228824 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 13625 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11426 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 11 name: com.apple.coreaudio.AQClientThread 11:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 CoreFoundation 0x24bfa596 __CFRunLoopServiceMachPort + 1423 CoreFoundation 0x24bf8b5c __CFRunLoopRun + 10124 CoreFoundation 0x24b45b2c CFRunLoopRunSpecific + 4725 CoreFoundation 0x24b4593e CFRunLoopRunInMode + 1026 AudioToolbox 0x243027a0 GenericRunLoopThread::Entry(void*) + 1287 AudioToolbox 0x242eaa02 CAPThread::Entry(CAPThread*) + 2068 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1369 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11410 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 12 name: com.apple.gamekitservices.gcksession.recvprocThread 12:0 libsystem_kernel.dylib 0x32e2008c __select + 201 MultipeerConnectivity 0x26b4e8cc gckSessionRecvProc + 52522 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1363 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1144 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 13 name: com.apple.gamekitservices.gcksession.sendprocThread 13:0 libsystem_kernel.dylib 0x32e2008c __select + 201 MultipeerConnectivity 0x26b4ee68 gckSessionSendProc + 2682 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1363 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1144 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 14 name: com.apple.gamekitservices.eventcallback.eventcbprocThread 14:0 libsystem_kernel.dylib 0x32e1fb38 __psynch_cvwait + 241 libsystem_pthread.dylib 0x32e9e3dc _pthread_cond_wait + 5162 libsystem_pthread.dylib 0x32e9f2ac pthread_cond_wait + 363 MultipeerConnectivity 0x26b68a4c EventCBProc + 764 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1365 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1146 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 15 name: com.apple.CFSocket.privateThread 15:0 libsystem_kernel.dylib 0x32e2008c __select + 201 CoreFoundation 0x24bfed1e __CFSocketManager + 4862 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1363 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 1144 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 16 name: com.apple.NSURLConnectionLoaderThread 16:0 libsystem_kernel.dylib 0x32e0c518 mach_msg_trap + 201 libsystem_kernel.dylib 0x32e0c30c mach_msg + 362 CoreFoundation 0x24bfa596 __CFRunLoopServiceMachPort + 1423 CoreFoundation 0x24bf8b5c __CFRunLoopRun + 10124 CoreFoundation 0x24b45b2c CFRunLoopRunSpecific + 4725 CoreFoundation 0x24b4593e CFRunLoopRunInMode + 1026 CFNetwork 0x246fa78a +[NSURLConnection(Loader) _resourceLoadLoop:] + 4827 Foundation 0x25947936 __NSThread__main__ + 11148 libsystem_pthread.dylib 0x32e9ee64 _pthread_body + 1369 libsystem_pthread.dylib 0x32e9edd6 _pthread_start + 11410 libsystem_pthread.dylib 0x32e9cb80 thread_start + 4Thread 17 name: Dispatch queue: com.apple.MCSession.callbackQueueThread 17 Crashed:0 libsystem_kernel.dylib 0x32e1fdfc __pthread_kill + 81 libsystem_pthread.dylib 0x32e9fd0e pthread_kill + 582 libsystem_c.dylib 0x32dbf934 abort + 723 IOSLauncher 0x00b071de 0x41000 + 112972464 IOSLauncher 0x00b0dae4 0x41000 + 113241325 IOSLauncher 0x00b00780 0x41000 + 112700166 IOSLauncher 0x00ae1b68 0x41000 + 111440407 IOSLauncher 0x00ae1c7a 0x41000 + 111443148 IOSLauncher 0x00ae05a2 0x41000 + 111384669 IOSLauncher 0x00ae0286 0x41000 + 1113767010 IOSLauncher 0x00ae02b6 0x41000 + 1113771811 IOSLauncher 0x00ae213a 0x41000 + 1114553012 IOSLauncher 0x00ae2058 0x41000 + 1114530413 IOSLauncher 0x00ae209c 0x41000 + 1114537214 IOSLauncher 0x00ae3e6a 0x41000 + 1115300215 IOSLauncher 0x00ae3ec0 0x41000 + 1115308816 IOSLauncher 0x00829a00 0x41000 + 829286417 MultipeerConnectivity 0x26b3aa26 __58-[MCSession syncHandleNetworkEvent:pid:freeEventWhenDone:]_block_invoke617 + 11418 libdispatch.dylib 0x32d1f420 _dispatch_call_block_and_release + 819 libdispatch.dylib 0x32d295d4 _dispatch_queue_drain$VARIANT$mp + 94420 libdispatch.dylib 0x32d290a4 _dispatch_queue_invoke$VARIANT$mp + 8021 libdispatch.dylib 0x32d2b0d0 _dispatch_root_queue_drain + 32822 libdispatch.dylib 0x32d2c1f6 _dispatch_worker_thread3 + 10223 libsystem_pthread.dylib 0x32e9ce22 _pthread_wqthread + 66624 libsystem_pthread.dylib 0x32e9cb74 start_wqthread + 4Thread 18:0 libsystem_kernel.dylib 0x32e209cc __workq_kernreturn + 81 libsystem_pthread.dylib 0x32e9ce9c _pthread_wqthread + 7882 libsystem_pthread.dylib 0x32e9cb74 start_wqthread + 4Thread 17 crashed with ARM Thread State (32-bit):r0: 0x00000000 r1: 0x00000000 r2: 0x00000000 r3: 0x00000000r4: 0x00000006 r5: 0x06ba9000 r6: 0x00000000 r7: 0x06ba8ac0r8: 0x03fb5eb0 r9: 0x06ba9000 r10: 0x17ea7140 r11: 0x00000000ip: 0x00000148 sp: 0x06ba8ab4 lr: 0x32e9fd13 pc: 0x32e1fdfccpsr: 0x00000010Binary Images:0x41000 - 0x1618fff IOSLauncher armv7 <1fb26eb3851c32068e16bc5005bc17af> /var/mobile/Containers/Bundle/Application/F0E02522-EF71-4D45-AD40-D490B56C7D97/IOSLauncher.app/IOSLauncher0x1fe2c000 - 0x1fe4ffff dyld armv7 <4e5bac66e3d137b9aa8b1f5ee2cadd0b> /usr/lib/dyld0x235c3000 - 0x236d7fff IMGSGX543GLDriver armv7 <3431ee9e329c390d9505699b4141fcf8> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver0x236e3000 - 0x2384ffff AVFoundation armv7 <b1b9e3bf18b23e3cb7923bfe4a7fe497> /System/Library/Frameworks/AVFoundation.framework/AVFoundation0x23850000 - 0x238aefff libAVFAudio.dylib armv7 <5dc6f29e995d39c18712dec40a9ca7c6> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib0x238e9000 - 0x238e9fff Accelerate armv7 <79b84eb74f0234e4ac81d7c906641804> /System/Library/Frameworks/Accelerate.framework/Accelerate0x238fa000 - 0x23b13fff vImage armv7 <5ec259488c033a4f98b0f28ee14ecfc1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage0x23b14000 - 0x23bf1fff libBLAS.dylib armv7 <e5395e7ee45e353498dcb4e956bcf272> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib0x23bf2000 - 0x23eb5fff libLAPACK.dylib armv7 <689f4395215e3cef8bafa5f21e288cfe> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib0x23eb6000 - 0x23ec8fff libLinearAlgebra.dylib armv7 <b86c17150d2133b8baea239d17df5e28> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib0x23ec9000 - 0x23f3dfff libvDSP.dylib armv7 <bc358a699c2132a09e9150cfc2db34bb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib0x23f3e000 - 0x23f4ffff libvMisc.dylib armv7 <1a0561dd472b3c04ad84e0c48896173d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib0x23f50000 - 0x23f50fff vecLib armv7 <f4dbfd05244f30b2905a5dbf06f15fc8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib0x23f51000 - 0x23f77fff Accounts armv7 <90965bef7f403d9791b800e9307da469> /System/Library/Frameworks/Accounts.framework/Accounts0x23f79000 - 0x23fe9fff AddressBook armv7 <50e85e9355c934a8b86f69b59e3f1d2a> /System/Library/Frameworks/AddressBook.framework/AddressBook0x23fea000 - 0x2410efff AddressBookUI armv7 <0c6e45b5345535eebc00312bf0c01943> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI0x2410f000 - 0x24121fff AssetsLibrary armv7 <3fdf9d5c32413d2cbfb068705e102c4f> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary0x24122000 - 0x242a4fff AudioCodecs armv7 <bea7c885ba8a3d5999ce531df88bb7d6> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs0x242a5000 - 0x24516fff AudioToolbox armv7 <0e7d115e201731ae9002e3ac0e1cf723> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox0x2467e000 - 0x24806fff CFNetwork armv7 <91a44f5c23e4349e9532c46bcacf8793> /System/Library/Frameworks/CFNetwork.framework/CFNetwork0x24807000 - 0x24888fff CloudKit armv7 <3911d5e793ad3a6bb0a3218b99d6cdd6> /System/Library/Frameworks/CloudKit.framework/CloudKit0x24889000 - 0x248e7fff CoreAudio armv7 <5857be698f7b3a3d865b418b0a80dd95> /System/Library/Frameworks/CoreAudio.framework/CoreAudio0x24902000 - 0x2491ffff CoreBluetooth armv7 <d75ab8f476cd30daaf637c1b4cb2a7cc> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth0x24920000 - 0x24b2bfff CoreData armv7 <e179cf2529fc39ccb17bc43d6a1ad54e> /System/Library/Frameworks/CoreData.framework/CoreData0x24b2c000 - 0x24e5cfff CoreFoundation armv7 <8903e0338b7a3055a6da8d09d9dd819c> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation0x24e5d000 - 0x24f86fff CoreGraphics armv7 <3ece7760b9ad3e7fa1b33befa649bf97> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics0x24fc6000 - 0x24fc8fff libCGXType.A.dylib armv7 <88ab0b29c4953be98733827cea815486> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib0x251d7000 - 0x252e8fff CoreImage armv7 <5fa13521194435b0aa122590592bde9e> /System/Library/Frameworks/CoreImage.framework/CoreImage0x252e9000 - 0x25340fff CoreLocation armv7 <4bb2092b96923adf95a7c263091fb881> /System/Library/Frameworks/CoreLocation.framework/CoreLocation0x25372000 - 0x2540cfff CoreMedia armv7 <c50750b68b9f3dada82ca7a17229e544> /System/Library/Frameworks/CoreMedia.framework/CoreMedia0x2540d000 - 0x254ccfff CoreMotion armv7 <040286d5cb553e799d2b79899fb7e555> /System/Library/Frameworks/CoreMotion.framework/CoreMotion0x254cd000 - 0x2552bfff CoreTelephony armv7 <2c9a0ea2bc4631f09f0ad3482279ed2a> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony0x2552c000 - 0x255f3fff CoreText armv7 <a3b24e92ae2e33cda8f26dceb58bb900> /System/Library/Frameworks/CoreText.framework/CoreText0x255f4000 - 0x25609fff CoreVideo armv7 <6c8fef3be5df3be49e848caafb61f3d4> /System/Library/Frameworks/CoreVideo.framework/CoreVideo0x2560a000 - 0x25700fff EventKit armv7 <8ed440c37b143d16af37c7ffd318669d> /System/Library/Frameworks/EventKit.framework/EventKit0x25877000 - 0x25a79fff Foundation armv7 <03e4284e97fc3400945658d056252397> /System/Library/Frameworks/Foundation.framework/Foundation0x25a7a000 - 0x25aa5fff GLKit armv7 <273ccbce6e5335e497d37423fda3458e> /System/Library/Frameworks/GLKit.framework/GLKit0x25aa6000 - 0x25ac5fff GSS armv7 <0733a3155f563c9eae09a24372467be6> /System/Library/Frameworks/GSS.framework/GSS0x25b5a000 - 0x25bb0fff IOKit armv7 <57f43286391832bf833d098bd0b62595> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit0x25bb1000 - 0x25df3fff ImageIO armv7 <527ec726ec1d3ff9abadc82909f89d88> /System/Library/Frameworks/ImageIO.framework/ImageIO0x25df4000 - 0x2613dfff JavaScriptCore armv7 <027ba624c3c93621b29530d38913afe9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore0x26416000 - 0x2641efff MediaAccessibility armv7 <ac5de26eeeb93c8c8febc8360071cc5c> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility0x2641f000 - 0x265f8fff MediaPlayer armv7 <54c51720bfd23cc587f313c73ca1455a> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer0x265f9000 - 0x26974fff MediaToolbox armv7 <fa37a153e215342e9bc1e7532688068c> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox0x26975000 - 0x26a33fff MessageUI armv7 <f84be09d868c3a4f876466dce201ee21> /System/Library/Frameworks/MessageUI.framework/MessageUI0x26a34000 - 0x26aa0fff Metal armv7 <209361201b49352a848591a82e8a8c72> /System/Library/Frameworks/Metal.framework/Metal0x26aa1000 - 0x26b30fff MobileCoreServices armv7 <876a393103af3b7fbabaf467ce758ad7> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices0x26b31000 - 0x26b84fff MultipeerConnectivity armv7 <67df95a2212a32faa2974bbcc164d65d> /System/Library/Frameworks/MultipeerConnectivity.framework/MultipeerConnectivity0x26c25000 - 0x26c56fff OpenAL armv7 <e8f63258516339f0a710d433b87ebe21> /System/Library/Frameworks/OpenAL.framework/OpenAL0x27523000 - 0x275fafff GLEngine armv7 <24c72152aeff311d8c66b2aecef82499> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine0x275fb000 - 0x27603fff OpenGLES armv7 <0e7ab2b493eb3e51b541842bda102761> /System/Library/Frameworks/OpenGLES.framework/OpenGLES0x27605000 - 0x27605fff libCVMSPluginSupport.dylib armv7 <754a49b6b063344288d7163e81e6efcd> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib0x27606000 - 0x27608fff libCoreFSCache.dylib armv7 <387bf7c1911a3e749f83037d6655a0e9> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib0x27609000 - 0x2760cfff libCoreVMClient.dylib armv7 <9ac8ebec447238cab588905e8173abec> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib0x2760d000 - 0x27615fff libGFXShared.dylib armv7 <a8cdc3dc15ce36d5a98e86677be92474> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib0x27616000 - 0x27655fff libGLImage.dylib armv7 <fbe6d2e0bd513965aff8eb090786e6b3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib0x27656000 - 0x27790fff libGLProgrammability.dylib armv7 <b10f8e21d436364faee593f67f7e7590> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib0x27af5000 - 0x27c46fff QuartzCore armv7 <fb4d51b6117a343cbeedc0045821a7d3> /System/Library/Frameworks/QuartzCore.framework/QuartzCore0x27c47000 - 0x27c9afff QuickLook armv7 <e98f1038f2be34f8996edb4266ce0da9> /System/Library/Frameworks/QuickLook.framework/QuickLook0x27e87000 - 0x27ec7fff Security armv7 <7a4494b7060132e9bf85855b17f694c5> /System/Library/Frameworks/Security.framework/Security0x2806b000 - 0x280c7fff SystemConfiguration armv7 <054ebf2b18913f589c139e058bae2ec9> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration0x280ca000 - 0x2896dfff UIKit armv7 <b4a8dd52c78d384aab3b03c0bc9a7ff4> /System/Library/Frameworks/UIKit.framework/UIKit0x2896e000 - 0x289d5fff VideoToolbox armv7 <c5c531ac886c3ccdb103d77da4647eb0> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox0x289d6000 - 0x28bbcfff WebKit armv7 <bf906d7aa96b3918817d12318bf75b92> /System/Library/Frameworks/WebKit.framework/WebKit0x28eb8000 - 0x28ec3fff AOSNotification armv7 <0596c0572cbb33798fbb5abd839d750b> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification0x29018000 - 0x29064fff AccountsDaemon armv7 <1bdf9e93608e30eaa0f622d65e2b1e17> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon0x29065000 - 0x29086fff AccountsUI armv7 <f99c66167ba237b2bdadbd2a0ce7cf9a> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI0x29087000 - 0x2908bfff AggregateDictionary armv7 <bf6e9572174f3a09985abe1a3ed3d052> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary0x29251000 - 0x2927bfff AirPlaySupport armv7 <4b8674a25d3b3245a936308911807016> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport0x29474000 - 0x294b6fff AppSupport armv7 <451dd95cedd037b7b124522fdb2fb545> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport0x294b7000 - 0x294fefff AppleAccount armv7 <48a6b73143363685bef956ffe10f7127> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount0x295e6000 - 0x29623fff AppleJPEG armv7 <105c3957b1323c49a31e94c43f643b61> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG0x2962e000 - 0x29640fff ApplePushService armv7 <b88bd0d1314432dea65f7de3cae40178> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService0x29641000 - 0x29647fff AppleSRP armv7 <c320a73d635938c4998bcf2ec77997e4> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP0x2967c000 - 0x29685fff AssertionServices armv7 <23d8209940e13b43abf99cfc04a22682> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices0x29686000 - 0x2969efff AssetsLibraryServices armv7 <2807f6296e6f3b41b93bfb9b170a39ba> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices0x2969f000 - 0x296c3fff AssistantServices armv7 <59440c7a3b163e988f1892ec96281c37> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices0x296f3000 - 0x296f7fff BTLEAudioController armv7 <600bfbfc528a34378b0b976b908b49fc> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController0x296f8000 - 0x2970ffff BackBoardServices armv7 <691715d0d14a3a21871e86e4de703d4a> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices0x29712000 - 0x29747fff BaseBoard armv7 <d051b61623163e5db3572f35442b4fb8> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard0x29748000 - 0x2974efff BluetoothManager armv7 <8bcb2c2154d532dd9b2e715c8e9fbbe9> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager0x2974f000 - 0x29775fff Bom armv7 <ad0a4c0c0a9f320c90845a8af7ef6941> /System/Library/PrivateFrameworks/Bom.framework/Bom0x297f4000 - 0x297fbfff CacheDelete armv7 <af3da44fa94d39e28277fa210720b146> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete0x29840000 - 0x29869fff CalendarFoundation armv7 <0c198129b9343c0bbd34a2fab1e0a04c> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation0x29977000 - 0x2997ffff CaptiveNetwork armv7 <4bf8c2da6cae3b32b0d79da0063ea5b6> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork0x29980000 - 0x29aa2fff Celestial armv7 <6961fe4f31db3f7188c41215c700a922> /System/Library/PrivateFrameworks/Celestial.framework/Celestial0x29ab0000 - 0x29ac8fff CertInfo armv7 <e666b317be84333c9e764d4cc11f7f3e> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo0x29ac9000 - 0x29acefff CertUI armv7 <4b9c782eb37c39539dceb50ef8ce1031> /System/Library/PrivateFrameworks/CertUI.framework/CertUI0x29bf9000 - 0x29c1afff ChunkingLibrary armv7 <524a86c48bb23111b9806d7989dfb828> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary0x29fc8000 - 0x2a073fff CloudPhotoLibrary armv7 <7526c5dd5c4e301db4e88ea72be08c61> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary0x2a0c4000 - 0x2a0c6fff CommonAuth armv7 <e8c98f31f63833b499b095609caeae51> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth0x2a0c7000 - 0x2a0d7fff CommonUtilities armv7 <2c365dc9d8283a62b5d26bde20e908d3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities0x2a0d8000 - 0x2a0dcfff CommunicationsFilter armv7 <600820839b07343e88217f822fd87497> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter0x2a14d000 - 0x2a151fff ConstantClasses armv7 <e13a3f4544163ccf965efb936d22710c> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses0x2a152000 - 0x2a18afff ContentIndex armv7 <a3a89bf59db53a41830869428fba0b88> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex0x2a18b000 - 0x2a18efff CoreAUC armv7 <bd82bbb4214d31ba824f0d2796989976> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC0x2a1b3000 - 0x2a207fff CoreDAV armv7 <9acc66c8a9433c32a11ce98847bc7b99> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV0x2a208000 - 0x2a222fff CoreDuet armv7 <1d40d1f6e70f3f7e86226d6fd7c0e602> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet0x2a227000 - 0x2a236fff CoreDuetDaemonProtocol armv7 <34239fb5b6ea3d189876e419a43d5668> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol0x2a23d000 - 0x2a23ffff CoreDuetDebugLogging armv7 <66ad8a1fcae239bda7d26be708c086e3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging0x2a38d000 - 0x2a48dfff CoreMediaStream armv7 <4ca4d60df4293effb1462e5f55d86a37> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream0x2a48e000 - 0x2a529fff CorePDF armv7 <1056dea427c2372ebdb67e704aa016c8> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF0x2a58a000 - 0x2a594fff CoreRecents armv7 <ce286a2ba2d036bca4e7c3f641589c62> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents0x2a828000 - 0x2a8a8fff CoreUI armv7 <77a9630e0e7438c68debfb0be86f637d> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI0x2a8a9000 - 0x2a912fff CoreUtils armv7 <cdcc7ef279423623b15fad54d9c6d263> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils0x2a913000 - 0x2a918fff CrashReporterSupport armv7 <de0efd3cb7d43c1b8dc83d84b29f3ac2> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport0x2a919000 - 0x2a91ffff DAAPKit armv7 <7b4b751331be32fca24ed7fd30590add> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit0x2a920000 - 0x2a92afff DCIMServices armv7 <3bd10778e9813f4f9eba5e761e63b272> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices0x2a92b000 - 0x2a970fff DataAccess armv7 <f0d4fe5bfcf339aeb7aff606b4d677d2> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess0x2ab62000 - 0x2ab83fff DataAccessExpress armv7 <b62ccf0334e538d7a0701d97c651978e> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress0x2abc2000 - 0x2abc8fff DataMigration armv7 <0d2533e6d6953ca0a13dca0f1c56956d> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration0x2abd2000 - 0x2abd3fff DiagnosticLogCollection armv7 <0999a3d19f1c3bd191bb788578dfc4e8> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection0x2abd4000 - 0x2abeefff DictionaryServices armv7 <ac194a01d12138c2ae5863e9e6c7c3d3> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices0x2ac0d000 - 0x2ac2cfff EAP8021X armv7 <e22993e2b4d8335dba7e5058c024cf5e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X0x2ad2b000 - 0x2ad2dfff FTClientServices armv7 <6073dddab5673d709d4518b847d792d0> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices0x2ad2e000 - 0x2ad5efff FTServices armv7 <8b28c559431a3a94b928f61d026b6008> /System/Library/PrivateFrameworks/FTServices.framework/FTServices0x2ad5f000 - 0x2b182fff FaceCore armv7 <cd09c9e6ffaf38d786332ff7b24e91f3> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore0x2b1a7000 - 0x2b1a7fff FontServices armv7 <50407d56075e3b84aee4a18fe20a364a> /System/Library/PrivateFrameworks/FontServices.framework/FontServices0x2b1a8000 - 0x2b27cfff libFontParser.dylib armv7 <96206fba1a06364b9e454eeef94c0246> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib0x2b27d000 - 0x2b289fff libGSFontCache.dylib armv7 <18d22c3b851036efb9e4b8e17df422ac> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib0x2b36c000 - 0x2b387fff FrontBoardServices armv7 <fcee2874eaa4328aa6c39b4df1fbef89> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices0x2b8ed000 - 0x2b8f4fff libGPUSupportMercury.dylib armv7 <f35f4aac2acc3014a3333b070029d002> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib0x2bbb3000 - 0x2bbd7fff ICE armv7 <99e4bbde7d63339dae9e66d096f8218d> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE0x2bbd8000 - 0x2bbd8fff LegacyHandle armv7 <1e5727603604380db8aaf7db77522cf9> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle0x2bbd9000 - 0x2bbe1fff SimpleKeyExchange armv7 <b684769c766b3e4c89d71d0da9daec2a> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange0x2bbe2000 - 0x2bbedfff ViceroyTrace armv7 <db609164d9d639138d17f8ffe85c2a6c> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace0x2bbee000 - 0x2bbeffff snatmap armv7 <f9d32163e85d34e7a2c42a47387b0cec> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap0x2bc6c000 - 0x2bc82fff GenerationalStorage armv7 <3c6bb4fc1b663ec3bb79709587935963> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage0x2bc83000 - 0x2bef0fff GeoServices armv7 <b53000bf129b3017b80da4a8817db150> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices0x2bef1000 - 0x2bf01fff GraphicsServices armv7 <ee8b5d298a8236858aa4287ca6f2e0b2> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices0x2bfa3000 - 0x2bff2fff Heimdal armv7 <2e27fbc00a7c3545b30ab1cbe1e0c8a6> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal0x2c088000 - 0x2c107fff HomeSharing armv7 <b5d3eedf6e9e399a9c4cc55a34be2055> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing0x2c166000 - 0x2c1bcfff IDS armv7 <75c8d418d5b43c0ca8552c9be00a7cd4> /System/Library/PrivateFrameworks/IDS.framework/IDS0x2c1bd000 - 0x2c1dffff IDSFoundation armv7 <5b7681220a993228a4aa076c9d39de43> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation0x2c247000 - 0x2c2f6fff IMCore armv7 <e3827b9ed00436bdb454191ef5ef819e> /System/Library/PrivateFrameworks/IMCore.framework/IMCore0x2c390000 - 0x2c3f4fff IMFoundation armv7 <020b1ee36b5a3f7690cfc494a6e2dc2d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation0x2c3fc000 - 0x2c3fffff IOAccelerator armv7 <95a58671a732335a8575189efc80436c> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator0x2c402000 - 0x2c408fff IOMobileFramebuffer armv7 <2973ae53701d39aab64c7a93e9c1dcf6> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer0x2c409000 - 0x2c40efff IOSurface armv7 <4201a5dacbbf3c0f83e2aadb55ac3415> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface0x2c40f000 - 0x2c410fff IOSurfaceAccelerator armv7 <88b723f5bfe03571a396cc49741620ca> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator0x2c4ac000 - 0x2c4b2fff IntlPreferences armv7 <e15d44fb05c23b3fb6e3cfbd4b477e57> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences0x2c4b3000 - 0x2c4e9fff LanguageModeling armv7 <41bfc44ca9cf38edaf462a42fc5a0753> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling0x2c525000 - 0x2c561fff MIME armv7 <83e86791adb934b0923e133c2b237be6> /System/Library/PrivateFrameworks/MIME.framework/MIME0x2c562000 - 0x2c5bcfff MMCS armv7 <4f754952c03e3fde8675a62f67fc4327> /System/Library/PrivateFrameworks/MMCS.framework/MMCS0x2c605000 - 0x2c611fff MailServices armv7 <de34150464b639c39391b217044766d5> /System/Library/PrivateFrameworks/MailServices.framework/MailServices0x2c645000 - 0x2c6e6fff ManagedConfiguration armv7 <7591cc2fbf33310c93ebc7039d77cd89> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration0x2c6f0000 - 0x2c6f1fff Marco armv7 <fa5b05c7bf033ceb94486dce9e07c697> /System/Library/PrivateFrameworks/Marco.framework/Marco0x2c6f2000 - 0x2c769fff MediaControlSender armv7 <7ceca73f7ae13e908d4ec2cb6e4529a2> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender0x2c808000 - 0x2c81afff MediaRemote armv7 <9cd03aaa29d63f8a8957cfe7dd6f8184> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote0x2c81b000 - 0x2c82afff MediaServices armv7 <be9a8d82dc173515ae7d697333df31fb> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices0x2c82b000 - 0x2c843fff MediaStream armv7 <81c042c18c153823b276a0db6187222d> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream0x2c8ac000 - 0x2c989fff Message armv7 <31328b2d35c53051b95af159c04d52cb> /System/Library/PrivateFrameworks/Message.framework/Message0x2c98f000 - 0x2c991fff MessageSupport armv7 <d1f893f435263492b06a8e760e9c971a> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport0x2c9a3000 - 0x2c9b0fff MobileAsset armv7 <564968174a713055ab46ade7a21a6276> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset0x2c9d7000 - 0x2c9e0fff MobileBluetooth armv7 <65537c8b75e339f786bc768e786b7aa3> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth0x2c9fc000 - 0x2ca03fff MobileIcons armv7 <eaec71786ade3fd6b8020b685bc27f6d> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons0x2ca04000 - 0x2ca0bfff MobileInstallation armv7 <4a5db6edf05436e2a1a7093e9cb88a40> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation0x2ca0c000 - 0x2ca18fff MobileKeyBag armv7 <f38a6733f2d83899b00c4c70043796ef> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag0x2ca45000 - 0x2ca48fff MobileSystemServices armv7 <c5fdefa4cea23a0fbe856e052b1645fd> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices0x2ca6a000 - 0x2ca77fff MobileWiFi armv7 <c737cae9a2b83429b5e782040b4ea25b> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi0x2cab6000 - 0x2cc55fff MusicLibrary armv7 <13487d4ebcf232ceb319f52d435c0982> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary0x2ccef000 - 0x2ccf4fff Netrb armv7 <5f55aa01b0e830d1836eebe5f526c488> /System/Library/PrivateFrameworks/Netrb.framework/Netrb0x2ccf5000 - 0x2ccfbfff NetworkStatistics armv7 <ac0e65da55a13b7b83063ada9aa8c8ac> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics0x2ccfc000 - 0x2cd19fff Notes armv7 <c8271e69ca6a375cbbbdbd4e6e02b4d0> /System/Library/PrivateFrameworks/Notes.framework/Notes0x2cd1f000 - 0x2cd21fff OAuth armv7 <a37bdb65bcf536d685a023e9b9efe258> /System/Library/PrivateFrameworks/OAuth.framework/OAuth0x2d479000 - 0x2d4b5fff OpenCL armv7 <a5d8fcfcc6123ca3acfd5063c8b7fcc8> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL0x2d5a6000 - 0x2d5cdfff PersistentConnection armv7 <dfef66a09fe33166800f1c9e5e33ad7b> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection0x2d737000 - 0x2d9a4fff PhotoLibraryServices armv7 <997f5b864f5737b4abcb05246fbbc8c0> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices0x2d9a5000 - 0x2d9aefff PhotosFormats armv7 <ec5658da30b93d7d9ad3e1dfeb3715e3> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats0x2d9af000 - 0x2d9f9fff PhysicsKit armv7 <302982e6d8f63d4f967083b07f4792c6> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit0x2d9fa000 - 0x2da10fff PlugInKit armv7 <ec5cbbea9b26345e8b84d40b06cc5ce6> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit0x2da11000 - 0x2da18fff PowerLog armv7 <45594755e8e230e2a46d3bdf0cc87ae4> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog0x2dc16000 - 0x2dcbefff Preferences armv7 <d30768d1ea133321addd444b400335ba> /System/Library/PrivateFrameworks/Preferences.framework/Preferences0x2dcbf000 - 0x2dcfcfff PrintKit armv7 <b9774f70fe643d8ab9f00504f6b80c35> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit0x2dd01000 - 0x2dd95fff ProofReader armv7 <6ffc157680a13290bbcee35a9598aae7> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader0x2dd96000 - 0x2dda5fff ProtectedCloudStorage armv7 <cef08f56af2039b5aba84b2a5a1c18b0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage0x2dda6000 - 0x2ddb2fff ProtocolBuffer armv7 <a6b722673856304bb5d4a81d8a823c30> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer0x2dde5000 - 0x2de53fff Quagga armv7 <a30e9231f6653d0d81f895084e159dc1> /System/Library/PrivateFrameworks/Quagga.framework/Quagga0x2e066000 - 0x2e0f2fff SAObjects armv7 <8d5e63e487ce30e2b68c758674c4c3b9> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects0x2e25f000 - 0x2e279fff SpringBoardServices armv7 <1771b183cb8b375291bef90b42c28d8f> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices0x2e5e5000 - 0x2e6fdfff StoreServices armv7 <9b2783ba643238f3973d8098615239e3> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices0x2e7cf000 - 0x2e7d1fff TCC armv7 <4603e107a0da36afb0577925d23ad485> /System/Library/PrivateFrameworks/TCC.framework/TCC0x2e818000 - 0x2e855fff TelephonyUtilities armv7 <ade85ee5efa03510ba1cc6cfd94671ae> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities0x2f705000 - 0x2f72dfff TextInput armv7 <151f7c04832436b898fad64758e27a21> /System/Library/PrivateFrameworks/TextInput.framework/TextInput0x2f7e1000 - 0x2f8a6fff UIFoundation armv7 <77e408fd6bdd3ebd994f2e6701cbafdc> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation0x2f8c8000 - 0x2f8cbfff UserFS armv7 <eaa14007b6683b07ae6871e6f9969148> /System/Library/PrivateFrameworks/UserFS.framework/UserFS0x30044000 - 0x30062fff VoiceServices armv7 <b5c81289a0fb32deabbc414f7b122a48> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices0x300eb000 - 0x30111fff WebBookmarks armv7 <d1744b3978af3ebe8e88592347d1825e> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks0x30127000 - 0x30c98fff WebCore armv7 <94a7060df099385e8612a4072d8fe609> /System/Library/PrivateFrameworks/WebCore.framework/WebCore0x30c99000 - 0x30d57fff WebKitLegacy armv7 <b2602d2d933632838b3eaa17b5998611> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy0x30ebe000 - 0x30edffff WirelessDiagnostics armv7 <b9ce4f385d0536488733612e79e04233> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics0x30ef2000 - 0x30ef8fff XPCKit armv7 <faa56d80c61c3b05a2d0acfbbb4a9e94> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit0x30ef9000 - 0x30f01fff XPCObjects armv7 <508be1d1f4f43d4da7919d9be63b95d0> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects0x310eb000 - 0x3110ffff iCalendar armv7 <0185552de4c4320b90fab16549d906e0> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar0x31303000 - 0x3133efff iTunesStore armv7 <0222c9dbb81f3867bff1647d36f5332f> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore0x31838000 - 0x31847fff libAWDProtobufFacetimeiMessage.dylib armv7 <a885eee7f44a33549c962112cb7cb4c5> /usr/lib/libAWDProtobufFacetimeiMessage.dylib0x31925000 - 0x3192bfff libAWDSupportConfig.dylib armv7 <f1d80b7a8d0630f9b22c86b980f54f33> /usr/lib/libAWDSupportConfig.dylib0x3192c000 - 0x31a6cfff libAWDSupportFramework.dylib armv7 <2da6104a16f53af2842cf5972c17d92d> /usr/lib/libAWDSupportFramework.dylib0x31a6d000 - 0x31a6efff libAWDSupportInfo.dylib armv7 <e5afe5e0e8b430bf8e7884280d1ea898> /usr/lib/libAWDSupportInfo.dylib0x31a78000 - 0x31a80fff libAccessibility.dylib armv7 <1d0bc6b830c631ec822a10070d15e948> /usr/lib/libAccessibility.dylib0x31bb2000 - 0x31bc8fff libCRFSuite.dylib armv7 <746f523326833d11a24e2142871aeaca> /usr/lib/libCRFSuite.dylib0x31bfa000 - 0x31cfdfff libFosl_dynamic.dylib armv7 <5c61b56d9a8037d3b7c3615d42e33891> /usr/lib/libFosl_dynamic.dylib0x31d15000 - 0x31d16fff libMobileCheckpoint.dylib armv7 <0ccdbab6866a35639fe253b01869503e> /usr/lib/libMobileCheckpoint.dylib0x31d17000 - 0x31d2efff libMobileGestalt.dylib armv7 <32e6fa58051c39ae8ca286072513b577> /usr/lib/libMobileGestalt.dylib0x31d2f000 - 0x31d37fff libMobileGestaltExtensions.dylib armv7 <d30208f3ca233d2792817a51f7bad370> /usr/lib/libMobileGestaltExtensions.dylib0x31d54000 - 0x31d55fff System armv7 <c07ea74283f131e2bbddef51d285ecfc> /System/Library/Frameworks/System.framework/Versions/B/System0x31dc6000 - 0x31e0afff libTelephonyUtilDynamic.dylib armv7 <55ab7f3a82ce3296801bacc3d5d82a7a> /usr/lib/libTelephonyUtilDynamic.dylib0x31f1a000 - 0x31f3cfff libarchive.2.dylib armv7 <9c5747f3bde23eb9904f25f4d2a48482> /usr/lib/libarchive.2.dylib0x31f3d000 - 0x31f3dfff libassertion_extension.dylib armv7 <f29450b2eb6d397896adcf74d33beb24> /usr/lib/libassertion_extension.dylib0x31f6c000 - 0x31f78fff libbsm.0.dylib armv7 <fc5847733d0b3040a6f78db015002c29> /usr/lib/libbsm.0.dylib0x31f79000 - 0x31f82fff libbz2.1.0.dylib armv7 <43c20d2a3ae630b2b00af23b29c1cf4a> /usr/lib/libbz2.1.0.dylib0x31f83000 - 0x31fcdfff libc++.1.dylib armv7 <04463e09c37b388fb4f0d9b578ff27af> /usr/lib/libc++.1.dylib0x31fce000 - 0x31fe9fff libc++abi.dylib armv7 <201e1c5ea8a53c70aa976d54f4518c2e> /usr/lib/libc++abi.dylib0x31feb000 - 0x31ff8fff libcmph.dylib armv7 <bc6842a838a13b8e9837a3ddfba2edc9> /usr/lib/libcmph.dylib0x31ff9000 - 0x32001fff libcupolicy.dylib armv7 <a951b132d31d31a7b7fb1233dd8b8477> /usr/lib/libcupolicy.dylib0x32028000 - 0x32040fff libextension.dylib armv7 <ff613df2137d3c1888ed1615ed64e517> /usr/lib/libextension.dylib0x32171000 - 0x32174fff libheimdal-asn1.dylib armv7 <acd90eedb78532e9a34c45a95a8cffe7> /usr/lib/libheimdal-asn1.dylib0x32175000 - 0x32262fff libiconv.2.dylib armv7 <a0d4cae016673389ad357ea1033c1f4d> /usr/lib/libiconv.2.dylib0x32263000 - 0x323d1fff libicucore.A.dylib armv7 <538b3775a2e2314ea196e48929be2eeb> /usr/lib/libicucore.A.dylib0x323de000 - 0x323defff liblangid.dylib armv7 <3399f30bf7ea3551b32b052dc3a87aad> /usr/lib/liblangid.dylib0x323df000 - 0x323e9fff liblockdown.dylib armv7 <3bfa793f65d93897ac94a9b697303fcd> /usr/lib/liblockdown.dylib0x323ea000 - 0x323fffff liblzma.5.dylib armv7 <cdcc1c6fe5453492a9e172ec7eee84fb> /usr/lib/liblzma.5.dylib0x3277b000 - 0x3278ffff libmis.dylib armv7 <52bc0b0ba1843be58d928607c9bee017> /usr/lib/libmis.dylib0x327b8000 - 0x329b2fff libobjc.A.dylib armv7 <fcccdef901003a469d4b5263d611846a> /usr/lib/libobjc.A.dylib0x32a0e000 - 0x32a66fff libprotobuf.dylib armv7 <09d12b822cfb34ae84da36a1e094b38b> /usr/lib/libprotobuf.dylib0x32a67000 - 0x32a7dfff libresolv.9.dylib armv7 <f99e0bc1c4ba33ad99a3389faf59ba72> /usr/lib/libresolv.9.dylib0x32aa8000 - 0x32b4dfff libsqlite3.dylib armv7 <a81902eff78c39308cc8040889887d2e> /usr/lib/libsqlite3.dylib0x32b4e000 - 0x32b9afff libstdc++.6.dylib armv7 <5ec272842fb63595a91ca7d2ad14e52b> /usr/lib/libstdc++.6.dylib0x32b9b000 - 0x32bc2fff libtidy.A.dylib armv7 <abe9491c2435315fab7fa38577d67d15> /usr/lib/libtidy.A.dylib0x32bc3000 - 0x32bcbfff libtzupdate.dylib armv7 <89b89dbcd90c3f168195d17048483b72> /usr/lib/libtzupdate.dylib0x32bcf000 - 0x32c85fff libxml2.2.dylib armv7 <953ce5aaa1833fc098761e2888d38f14> /usr/lib/libxml2.2.dylib0x32c86000 - 0x32ca7fff libxslt.1.dylib armv7 <3373d602995e38a3b6a224205b0d1f1c> /usr/lib/libxslt.1.dylib0x32ca8000 - 0x32cb4fff libz.1.dylib armv7 <5a3030aa2bd43c3db1b41e49b65d8852> /usr/lib/libz.1.dylib0x32cb5000 - 0x32cb9fff libcache.dylib armv7 <6019d220fb3e3fa69a198f520232debe> /usr/lib/system/libcache.dylib0x32cba000 - 0x32cc3fff libcommonCrypto.dylib armv7 <637eac1fd01d32a890c94fa6f3743c2d> /usr/lib/system/libcommonCrypto.dylib0x32cc4000 - 0x32cc8fff libcompiler_rt.dylib armv7 <ffb897c303913d1db3285b5e8356e5d2> /usr/lib/system/libcompiler_rt.dylib0x32cc9000 - 0x32ccffff libcopyfile.dylib armv7 <fa6addf1824235a9a978f4e8f1d885ed> /usr/lib/system/libcopyfile.dylib0x32cd0000 - 0x32d1cfff libcorecrypto.dylib armv7 <bfe34a77d14d352f93e34a530dd68285> /usr/lib/system/libcorecrypto.dylib0x32d1d000 - 0x32d58fff libdispatch.dylib armv7 <d56533a0119f32fa8d7d07fedd50b93c> /usr/lib/system/libdispatch.dylib0x32d59000 - 0x32d5afff libdyld.dylib armv7 <41ecc8ae1c403fc79b3a327b6903d66a> /usr/lib/system/libdyld.dylib0x32d5b000 - 0x32d5bfff libkeymgr.dylib armv7 <45a6025e9a58300e94c36b4ed262c6cd> /usr/lib/system/libkeymgr.dylib0x32d5c000 - 0x32d5cfff liblaunch.dylib armv7 <c9e67ee4382c394c91e34df6674f2199> /usr/lib/system/liblaunch.dylib0x32d5d000 - 0x32d60fff libmacho.dylib armv7 <5f0fa3d21ae331739966a3ccc8020380> /usr/lib/system/libmacho.dylib0x32d61000 - 0x32d62fff libremovefile.dylib armv7 <01f437d328da35deab8aabf436d82e7a> /usr/lib/system/libremovefile.dylib0x32d63000 - 0x32d74fff libsystem_asl.dylib armv7 <46fb91bd43e737c7a8638967c6efe467> /usr/lib/system/libsystem_asl.dylib0x32d75000 - 0x32d75fff libsystem_blocks.dylib armv7 <783efecc85a832ac962bea5bc4d365d5> /usr/lib/system/libsystem_blocks.dylib0x32d76000 - 0x32dd8fff libsystem_c.dylib armv7 <3947b75201ac39f8abff8507372bc8c6> /usr/lib/system/libsystem_c.dylib0x32dd9000 - 0x32ddbfff libsystem_configuration.dylib armv7 <c8635900dafa339daa83039ee4c6f7dd> /usr/lib/system/libsystem_configuration.dylib0x32ddc000 - 0x32dddfff libsystem_coreservices.dylib armv7 <4e58541adedc3c798fe75b1945ed38cf> /usr/lib/system/libsystem_coreservices.dylib0x32dde000 - 0x32deafff libsystem_coretls.dylib armv7 <fb441163ce283f7eb8a0a05992804873> /usr/lib/system/libsystem_coretls.dylib0x32deb000 - 0x32df1fff libsystem_dnssd.dylib armv7 <0a86f809f51a3ca3906ccc81b4fa7ec1> /usr/lib/system/libsystem_dnssd.dylib0x32df2000 - 0x32e0afff libsystem_info.dylib armv7 <f79c213fe29e30a88c05e23d880fe479> /usr/lib/system/libsystem_info.dylib0x32e0b000 - 0x32e25fff libsystem_kernel.dylib armv7 <b74d67495e8d347f8596330c35031d20> /usr/lib/system/libsystem_kernel.dylib0x32e26000 - 0x32e46fff libsystem_m.dylib armv7 <9fc8e300457a3c888643dcd4e41d17ee> /usr/lib/system/libsystem_m.dylib0x32e47000 - 0x32e59fff libsystem_malloc.dylib armv7 <d0158624b3b6398682dd68fb5709d25c> /usr/lib/system/libsystem_malloc.dylib0x32e5a000 - 0x32e87fff libsystem_network.dylib armv7 <fc76f7b1505c3e5dbd6640eb1ba6a6d1> /usr/lib/system/libsystem_network.dylib0x32e88000 - 0x32e8dfff libsystem_networkextension.dylib armv7 <7054f91d882f3a0ba7512cac140c4508> /usr/lib/system/libsystem_networkextension.dylib0x32e8e000 - 0x32e95fff libsystem_notify.dylib armv7 <e23e38b2994238538926efe399f6a73a> /usr/lib/system/libsystem_notify.dylib0x32e96000 - 0x32e9bfff libsystem_platform.dylib armv7 <b04135119e133a9a8360ed9dd5e9c170> /usr/lib/system/libsystem_platform.dylib0x32e9c000 - 0x32ea2fff libsystem_pthread.dylib armv7 <9a16c49768bf33b8a49e8518130fc840> /usr/lib/system/libsystem_pthread.dylib0x32ea3000 - 0x32ea5fff libsystem_sandbox.dylib armv7 <2f5233e0357b31b290d60bae002bf397> /usr/lib/system/libsystem_sandbox.dylib0x32ea6000 - 0x32ea9fff libsystem_stats.dylib armv7 <fa1003dfd7c43294a378371a44d518ba> /usr/lib/system/libsystem_stats.dylib0x32eaa000 - 0x32eaffff libsystem_trace.dylib armv7 <e07faea11db63c47bc6c5862a62c926a> /usr/lib/system/libsystem_trace.dylib0x32eb0000 - 0x32eb0fff libunwind.dylib armv7 <057b81c42ccf3d9dbfa7fd9a35ee0dab> /usr/lib/system/libunwind.dylib0x32eb1000 - 0x32eccfff libxpc.dylib armv7 <63e5390ff1563bdcad59b826676ce6d0> /usr/lib/system/libxpc.dylib
...