iOS 8 BUG - media.capturePhoto and media.selectPhoto crash on device

Hi,

its me again. By the last daily build my media.* library is not working anymore! This is my code:
 

local function SceltaSource( event ) if "clicked" == event.action then local i = event.index if 1 == i then print("CAMERA") if ( media.hasSource( media.Camera ) ) then print(count .. " = count") count = count + 1 print(count .. " = count") ---- CRASH HERE media.capturePhoto( { listener = onPhotoComplete, destination = { baseDir = system.DocumentsDirectory, filename = preference.getValue("idUser")..count..".jpg", type = "image" } } ) else native.showAlert( "Corona", "This device does not have a camera.", { "OK" } ) end elseif 2 == i then print("LIBRERIA") if media.hasSource( media.SavedPhotosAlbum ) then count = count + 1 -- CRASH HERE media.selectPhoto( { mediaSource = media.SavedPhotosAlbum, listener = onPhotoComplete, destination = { baseDir = system.DocumentsDirectory, filename = preference.getValue("idUser").. count ..".jpg", type = "image" } } ) else native.showAlert( "Corona", "This device does not have a photo library.", { "OK" } ) end else print("ANULLA do nothing") end end return true end onphotoBtnRelease = function(event) local phase = event.phase if phase == "ended" then native.showAlert( "Photo", "Modifica Foto profilo",{ "Scatta","Libreria", "Annulla"}, SceltaSource ) end return true -- indicates successful touch end photoBtn = widget.newButton{ baseDir = system.DocumentsDirectory, defaultFile = preference.getValue("idUser")..count..".jpg", width = 120, height = 120, onEvent = onphotoBtnRelease } photoBtn.x = display.contentWidth\*0.175 photoBtn.y = display.contentHeight\*0.225 group:insert( photoBtn )

On the emulator and ios Simulator of xCode its working without any problem, but on my device (iPhone5s iOS 8.1.2) and one my friend one (iPhone 8.1.1) it crash where I write in the code with that log (from the device of my friend, in mine is the same error): 

And this is the crash log:

Incident Identifier: DFDA1AA9-CD45-47DC-AD81-F7C155CC2C0A CrashReporter Key: 0ace867bc1348108bee0649f5d1e1416c1c14561 Hardware Model: iPhone6,2 Process: Wherewolf [232] Path: /private/var/mobile/Containers/Bundle/Application/480D2C17-D000-481D-ADF7-9A3825EDE0EB/Wherewolf.app/Wherewolf Identifier: wherewolfID Version: 2014.12.220930 (1.0) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2014-12-22 09:50:27.393 +0100 Launch Time: 2014-12-22 09:50:18.507 +0100 OS Version: iOS 8.1.2 (12B440) Report Version: 105 Exception Type: EXC\_BAD\_ACCESS (SIGBUS) Exception Subtype: EXC\_ARM\_DA\_ALIGN at 0x0000000000000001 Triggered by Thread: 0 Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 CoreFoundation 0x29190975 CFRetain + 9 1 CoreFoundation 0x291ae525 +[\_\_NSArrayI \_\_new:::] + 57 2 CoreFoundation 0x291abb19 -[\_\_NSPlaceholderArray initWithObjects:count:] + 133 3 CoreFoundation 0x291dfb57 +[NSArray arrayWithObjects:] + 271 4 Wherewolf 0x000bb60d 0xa6000 + 87565 5 UIKit 0x2c97b4b3 -[UIApplication setStatusBarOrientation:animationParameters:notifySpringBoardAndFence:] + 235 6 UIKit 0x2c9dd3bd \_\_78-[UIWindow \_rotateWindowToOrientation:updateStatusBar:duration:skipCallbacks:]\_block\_invoke + 265 7 UIKit 0x2cc1f90d \_\_58-[\_UIWindowRotationAnimationController animateTransition:]\_block\_invoke + 33 8 UIKit 0x2cc1f8d1 -[\_UIWindowRotationAnimationController animateTransition:] + 413 9 UIKit 0x2c9dc2c9 -[UIWindow \_rotateToBounds:withAnimator:transitionContext:] + 757 10 UIKit 0x2c9dd1bd -[UIWindow \_rotateWindowToOrientation:updateStatusBar:duration:skipCallbacks:] + 1437 11 UIKit 0x2c9dd677 -[UIWindow \_setRotatableClient:toOrientation:applyTransformToWindow:updateStatusBar:duration:force:isRotating:] + 535 12 UIKit 0x2c7c803f -[UIWindow \_setRotatableClient:toOrientation:updateStatusBar:duration:force:isRotating:] + 95 13 UIKit 0x2c7c7fd7 -[UIWindow \_setRotatableClient:toOrientation:updateStatusBar:duration:force:] + 43 14 UIKit 0x2c7c7ea7 -[UIWindow \_setRotatableViewOrientation:updateStatusBar:duration:force:] + 115 15 UIKit 0x2c7c7e27 -[UIWindow \_setRotatableViewOrientation:duration:force:] + 39 16 UIKit 0x2cdab2cb -[\_UIFullscreenPresentationController \_adjustOrientationIfNecessaryInWindow:forViewController:preservingViewController:] + 515 17 UIKit 0x2ca1d555 -[UIPresentationController \_presentWithAnimationController:interactionController:target:didEndSelector:] + 693 18 UIKit 0x2ca33ad9 -[UIViewController \_presentViewController:modalSourceViewController:presentationController:animationController:interactionController:completion:] + 821 19 UIKit 0x2ca34a77 -[UIViewController \_presentViewController:withAnimationController:completion:] + 2855 20 UIKit 0x2ca36583 \_\_62-[UIViewController presentViewController:animated:completion:]\_block\_invoke + 255 21 UIKit 0x2c832adb -[UIViewController presentViewController:animated:completion:] + 191 22 UIKit 0x2ca36717 -[UIViewController presentModalViewController:animated:] + 27 23 Wherewolf 0x000ae777 0xa6000 + 34679 24 Wherewolf 0x000c42b9 0xa6000 + 123577 25 Wherewolf 0x0013ac2b 0xa6000 + 609323 26 Wherewolf 0x001193c1 0xa6000 + 472001 27 Wherewolf 0x00126205 0xa6000 + 524805 28 Wherewolf 0x0011959b 0xa6000 + 472475 29 Wherewolf 0x00127085 0xa6000 + 528517 30 Wherewolf 0x001197c9 0xa6000 + 473033 31 Wherewolf 0x00112f69 0xa6000 + 446313 32 Wherewolf 0x0013972f 0xa6000 + 603951 33 Wherewolf 0x0013c7dd 0xa6000 + 616413 34 Wherewolf 0x000d47eb 0xa6000 + 190443 35 UIKit 0x2cadb8c7 -[UIAlertView \_prepareToDismissForTappedIndex:] + 167 36 UIKit 0x2cadb4bf \_\_35-[UIAlertView \_prepareAlertActions]\_block\_invoke50 + 31 37 UIKit 0x2cad5cd3 -[UIAlertController \_dismissAnimated:triggeringAction:triggeredByPopoverDimmingView:] + 63 38 UIKit 0x2cad5c8b -[UIAlertController \_dismissAnimated:triggeringAction:] + 27 39 UIKit 0x2cbb9247 -[\_UIAlertControllerActionView touchesEnded:withEvent:] + 159 40 UIKit 0x2c7830e3 -[UIWindow \_sendTouchesForEvent:] + 519 41 UIKit 0x2c77c9ad -[UIWindow sendEvent:] + 541 42 UIKit 0x2c753159 -[UIApplication sendEvent:] + 193 43 UIKit 0x2c9c6ab5 \_UIApplicationHandleEventFromQueueEvent + 13885 44 UIKit 0x2c751bb5 \_UIApplicationHandleEventQueue + 1293 45 CoreFoundation 0x29256d55 \_\_CFRUNLOOP\_IS\_CALLING\_OUT\_TO\_A\_SOURCE0\_PERFORM\_FUNCTION\_\_ + 13 46 CoreFoundation 0x29256163 \_\_CFRunLoopDoSources0 + 215 47 CoreFoundation 0x292547c9 \_\_CFRunLoopRun + 769 48 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 49 CoreFoundation 0x291a21cf CFRunLoopRunInMode + 103 50 GraphicsServices 0x305600a5 GSEventRunModal + 133 51 UIKit 0x2c7b1f9d UIApplicationMain + 1437 52 Wherewolf 0x000adb5f 0xa6000 + 31583 53 libdyld.dylib 0x36ff7aad start + 1 Thread 1 name: Dispatch queue: com.apple.libdispatch-manager Thread 1: 0 libsystem\_kernel.dylib 0x370aa2a0 kevent64 + 24 1 libdispatch.dylib 0x36fe39fd \_dispatch\_mgr\_invoke + 277 2 libdispatch.dylib 0x36fd920f \_dispatch\_mgr\_thread + 35 Thread 2: 0 libsystem\_kernel.dylib 0x370be9cc \_\_workq\_kernreturn + 8 1 libsystem\_pthread.dylib 0x37138ea9 \_pthread\_wqthread + 789 2 libsystem\_pthread.dylib 0x37138b80 start\_wqthread + 4 Thread 3: 0 libsystem\_kernel.dylib 0x370be9cc \_\_workq\_kernreturn + 8 1 libsystem\_pthread.dylib 0x37138ea9 \_pthread\_wqthread + 789 2 libsystem\_pthread.dylib 0x37138b80 start\_wqthread + 4 Thread 4: 0 libsystem\_kernel.dylib 0x370be9cc \_\_workq\_kernreturn + 8 1 libsystem\_pthread.dylib 0x37138ea9 \_pthread\_wqthread + 789 2 libsystem\_pthread.dylib 0x37138b80 start\_wqthread + 4 Thread 5 name: com.apple.NSURLConnectionLoader Thread 5: 0 libsystem\_kernel.dylib 0x370aa4f0 mach\_msg\_trap + 20 1 libsystem\_kernel.dylib 0x370aa2e5 mach\_msg + 37 2 CoreFoundation 0x29256317 \_\_CFRunLoopServiceMachPort + 143 3 CoreFoundation 0x292548bd \_\_CFRunLoopRun + 1013 4 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 5 CoreFoundation 0x291a21cf CFRunLoopRunInMode + 103 6 CFNetwork 0x28d57953 +[NSURLConnection(Loader) \_resourceLoadLoop:] + 483 7 Foundation 0x29fa0b57 \_\_NSThread\_\_main\_\_ + 1115 8 libsystem\_pthread.dylib 0x3713ae91 \_pthread\_body + 137 9 libsystem\_pthread.dylib 0x3713ae03 \_pthread\_start + 115 10 libsystem\_pthread.dylib 0x37138b8c thread\_start + 4 Thread 6 name: com.apple.CFSocket.private Thread 6: 0 libsystem\_kernel.dylib 0x370be08c \_\_select + 20 1 CoreFoundation 0x2925aae3 \_\_CFSocketManager + 495 2 libsystem\_pthread.dylib 0x3713ae91 \_pthread\_body + 137 3 libsystem\_pthread.dylib 0x3713ae03 \_pthread\_start + 115 4 libsystem\_pthread.dylib 0x37138b8c thread\_start + 4 Thread 7: 0 libsystem\_kernel.dylib 0x370aa4f0 mach\_msg\_trap + 20 1 libsystem\_kernel.dylib 0x370aa2e5 mach\_msg + 37 2 CoreFoundation 0x29256317 \_\_CFRunLoopServiceMachPort + 143 3 CoreFoundation 0x292548bd \_\_CFRunLoopRun + 1013 4 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 5 CoreFoundation 0x291eb0e7 CFRunLoopRun + 95 6 CoreMotion 0x29aa5e9b 0x29a66000 + 261787 7 libsystem\_pthread.dylib 0x3713ae91 \_pthread\_body + 137 8 libsystem\_pthread.dylib 0x3713ae03 \_pthread\_start + 115 9 libsystem\_pthread.dylib 0x37138b8c thread\_start + 4 Thread 8: 0 libsystem\_kernel.dylib 0x370be9cc \_\_workq\_kernreturn + 8 1 libsystem\_pthread.dylib 0x37138ea9 \_pthread\_wqthread + 789 2 libsystem\_pthread.dylib 0x37138b80 start\_wqthread + 4 Thread 9: 0 libsystem\_kernel.dylib 0x370be9cc \_\_workq\_kernreturn + 8 1 libsystem\_pthread.dylib 0x37138ea9 \_pthread\_wqthread + 789 2 libsystem\_pthread.dylib 0x37138b80 start\_wqthread + 4 Thread 0 crashed with ARM Thread State (32-bit): r0: 0x00000001 r1: 0x00000000 r2: 0x154540b8 r3: 0xeb2a72e0 r4: 0x00000001 r5: 0x00000001 r6: 0x14e10bd8 r7: 0x004593dc r8: 0x14e10bd0 r9: 0x14d58d20 r10: 0x00000000 r11: 0x00459420 ip: 0x3949f2b0 sp: 0x004593d4 lr: 0x291ae529 pc: 0x29190974 cpsr: 0x20000030 Binary Images: 0xa6000 - 0x2f5fff Wherewolf armv7 \<cef2e54a7c073932a06452299244f4d4\> /var/mobile/Containers/Bundle/Application/480D2C17-D000-481D-ADF7-9A3825EDE0EB/Wherewolf.app/Wherewolf 0x1fe0b000 - 0x1fe2efff dyld armv7s \<8ffd813a380c333bbd4a25e1dbe05715\> /usr/lib/dyld 0x27c9f000 - 0x27d16fff AGXGLDriver armv7s \<1286d9ca15c2319d8e1b56f991585d60\> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver 0x27d26000 - 0x27e92fff AVFoundation armv7s \<23a20af23f733b39b5c87059c080f9f7\> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x27e93000 - 0x27ef1fff libAVFAudio.dylib armv7s \<e3f677adf77d37baa08716b5d334486f\> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib 0x27ef2000 - 0x27f2afff AVKit armv7s \<03e0e851a3a0354d8de52085feeaa332\> /System/Library/Frameworks/AVKit.framework/AVKit 0x27f2b000 - 0x27f2bfff Accelerate armv7s \<3c10ee15d8363fa58b719f2abca91b06\> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x27f3c000 - 0x28157fff vImage armv7s \<3358de09601333a2881365e5c74c681e\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x28158000 - 0x2823efff libBLAS.dylib armv7s \<b46b7fd3985f371ca26b10f268965e63\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x2823f000 - 0x28503fff libLAPACK.dylib armv7s \<eb228c255d9e349391cd6b227a9d2744\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x28504000 - 0x28515fff libLinearAlgebra.dylib armv7s \<d2e989bc1bad320b918c37d3642db4b6\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x28516000 - 0x28592fff libvDSP.dylib armv7s \<07cf0625bd813336920eb5b62f99be06\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x28593000 - 0x285a5fff libvMisc.dylib armv7s \<28f38990063234318631d0d03eced5f1\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x285a6000 - 0x285a6fff vecLib armv7s \<108b763f155130828fa123813e3ff5f5\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x285a7000 - 0x285cdfff Accounts armv7s \<a5204dc40d2b3dd0b8603ecf491977c2\> /System/Library/Frameworks/Accounts.framework/Accounts 0x285ce000 - 0x285cefff AdSupport armv7s \<7d5801dc36bd37fd85c94196efd32155\> /System/Library/Frameworks/AdSupport.framework/AdSupport 0x285cf000 - 0x2863ffff AddressBook armv7s \<5d6a592fa31e3de09340c5a67cfbe7f3\> /System/Library/Frameworks/AddressBook.framework/AddressBook 0x28640000 - 0x28764fff AddressBookUI armv7s \<e3ac3ad5b4ad386eac974860b6930983\> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI 0x28765000 - 0x28777fff AssetsLibrary armv7s \<344c67df52fb32af9f0e85193171b4ed\> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 0x288fd000 - 0x28b70fff AudioToolbox armv7s \<5d4f5b76b7ab37018df0216d9cb42056\> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x28cdb000 - 0x28e63fff CFNetwork armv7s \<97db33718ab838fd9f03530d4ba2cd07\> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x28e64000 - 0x28ee5fff CloudKit armv7s \<a1fd0fc121e234198e795f8a2a45ccdf\> /System/Library/Frameworks/CloudKit.framework/CloudKit 0x28ee6000 - 0x28f45fff CoreAudio armv7s \<acf1796d96be308e83c2630ffca280fb\> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x28f60000 - 0x28f7dfff CoreBluetooth armv7s \<74a3a2f1940435bca2ae88fb5353a3fb\> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x28f7e000 - 0x29189fff CoreData armv7s \<7ee78feaa6fb3d41af493ca96efffe7d\> /System/Library/Frameworks/CoreData.framework/CoreData 0x2918a000 - 0x294b7fff CoreFoundation armv7s \<5b54383b963a36369b45eaa35c3940be\> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x294b8000 - 0x295e2fff CoreGraphics armv7s \<7f8833bf31b33242b32bb893c5832f42\> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x29622000 - 0x29624fff libCGXType.A.dylib armv7s \<668474876a3a3eccbf40f73991769b42\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib 0x29625000 - 0x2962ffff libCMSBuiltin.A.dylib armv7s \<f5dee40a6ddf3d98b74647b7a64b5ea6\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib 0x29817000 - 0x29832fff libRIP.A.dylib armv7s \<1a68309bd2c3338b8e465de6e6353d9b\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib 0x29833000 - 0x29941fff CoreImage armv7s \<f5015bd2f3b6316ab9c185ae9d3eed9b\> /System/Library/Frameworks/CoreImage.framework/CoreImage 0x29942000 - 0x29999fff CoreLocation armv7s \<a016ba0e465e3342985038c4171da8a2\> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x299cb000 - 0x29a65fff CoreMedia armv7s \<847dcb4360e73e389e98a442cdab8432\> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x29a66000 - 0x29b25fff CoreMotion armv7s \<f4b59554f6cd34a1a32bcc132a110e37\> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x29b26000 - 0x29b84fff CoreTelephony armv7s \<fcb254101e31326f8edd32a9568143fd\> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x29b85000 - 0x29c4cfff CoreText armv7s \<ebb20deee2663a29ab574d093e5838ab\> /System/Library/Frameworks/CoreText.framework/CoreText 0x29c4d000 - 0x29c62fff CoreVideo armv7s \<3755b5d4d1a23154a9bb3e497ececab9\> /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x29c63000 - 0x29d59fff EventKit armv7s \<8bb311d23ac03b45b04977c1edcc24a0\> /System/Library/Frameworks/EventKit.framework/EventKit 0x29ed0000 - 0x2a0d2fff Foundation armv7s \<6763b485b3b530f5ae7a6b8732110736\> /System/Library/Frameworks/Foundation.framework/Foundation 0x2a0d3000 - 0x2a0fefff GLKit armv7s \<9782e1b0ea3c30f6bb711eefc2f62dbe\> /System/Library/Frameworks/GLKit.framework/GLKit 0x2a0ff000 - 0x2a11efff GSS armv7s \<6d8ee1257c6339e0b41c43c5e066636e\> /System/Library/Frameworks/GSS.framework/GSS 0x2a12d000 - 0x2a12dfff GameKit armv7s \<81f471e687fe3176bc3a54b527fd8848\> /System/Library/Frameworks/GameKit.framework/GameKit 0x2a1b2000 - 0x2a208fff IOKit armv7s \<a4acf0d246b53114817cfd7a01fe5c0a\> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x2a209000 - 0x2a44bfff ImageIO armv7s \<570ff30dcbb637feae32333345369946\> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x2a44c000 - 0x2a79afff JavaScriptCore armv7s \<d4e399cede5d380aab72d5aa15e5aa7d\> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x2a978000 - 0x2aa76fff MapKit armv7s \<54e5afb60ffc3fefa1e28268ecb394ed\> /System/Library/Frameworks/MapKit.framework/MapKit 0x2aa77000 - 0x2aa7ffff MediaAccessibility armv7s \<fe6d956fb92c34418fcd7e714126a786\> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x2aa80000 - 0x2ac59fff MediaPlayer armv7s \<eadc2ef9f6713a3fa9135b7ff4b5615e\> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x2ac5a000 - 0x2afd4fff MediaToolbox armv7s \<d2ce45241f333566a3654e36f3e6f7f9\> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x2afd5000 - 0x2b093fff MessageUI armv7s \<3af810d8e9233bd7903e5c3b8057fe88\> /System/Library/Frameworks/MessageUI.framework/MessageUI 0x2b094000 - 0x2b100fff Metal armv7s \<a384b266648830f0af79c6701b4fe29a\> /System/Library/Frameworks/Metal.framework/Metal 0x2b101000 - 0x2b190fff MobileCoreServices armv7s \<efc1ca21eb923da1bec2db95f7f2ef85\> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x2b285000 - 0x2b2b6fff OpenAL armv7s \<4ff72cda821834f8b0830c35eb65be59\> /System/Library/Frameworks/OpenAL.framework/OpenAL 0x2bb94000 - 0x2bc6bfff GLEngine armv7s \<78bae040e7f93e999c99b83b82ce21f0\> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine 0x2bc6c000 - 0x2bc74fff OpenGLES armv7s \<d9b66d56701b3de8bf8e91d63db07328\> /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x2bc76000 - 0x2bc76fff libCVMSPluginSupport.dylib armv7s \<2d945076afe83141af65c510e33a05ec\> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x2bc77000 - 0x2bc79fff libCoreFSCache.dylib armv7s \<ecc01c4cd2aa3cfabe2cb655e944d675\> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x2bc7a000 - 0x2bc7dfff libCoreVMClient.dylib armv7s \<f9bbda54797d3b119f02b904b5b616b8\> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x2bc7e000 - 0x2bc86fff libGFXShared.dylib armv7s \<38da2ef7476f3e06a684c7d23e32b5d6\> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x2bc87000 - 0x2bcc9fff libGLImage.dylib armv7s \<226b647182f731399ce2ffa4ac908466\> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x2bcca000 - 0x2be05fff libGLProgrammability.dylib armv7s \<ed640a445eaf3206a43975b9db330fb2\> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib 0x2bed1000 - 0x2bf44fff Photos armv7s \<d3bdfc9b48ec32b29edafe4f66162cba\> /System/Library/Frameworks/Photos.framework/Photos 0x2bf45000 - 0x2c168fff PhotosUI armv7s \<a7b709da40a5372fa7d7567db7756f02\> /System/Library/Frameworks/PhotosUI.framework/PhotosUI 0x2c16c000 - 0x2c2befff QuartzCore armv7s \<d981d03747623398a3c7e252ad058785\> /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x2c2bf000 - 0x2c312fff QuickLook armv7s \<318bf310635a37edb9f1124050a05e2c\> /System/Library/Frameworks/QuickLook.framework/QuickLook 0x2c501000 - 0x2c541fff Security armv7s \<34011e368d3137919066d6213dc94f32\> /System/Library/Frameworks/Security.framework/Security 0x2c542000 - 0x2c5bafff Social armv7s \<7000906e82d9397d998c4f0b63018e61\> /System/Library/Frameworks/Social.framework/Social 0x2c6cf000 - 0x2c6e4fff StoreKit armv7s \<52672ade371532b793bd8799f1c28aa1\> /System/Library/Frameworks/StoreKit.framework/StoreKit 0x2c6e5000 - 0x2c741fff SystemConfiguration armv7s \<f40e0ecca37c3f8cb107976317fa6250\> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x2c742000 - 0x2c743fff Twitter armv7s \<ca9f51b21b1d3312867ed0a50dcec3e3\> /System/Library/Frameworks/Twitter.framework/Twitter 0x2c744000 - 0x2cfe6fff UIKit armv7s \<94d79df43f8a3b519b7fbf2ca102b4ea\> /System/Library/Frameworks/UIKit.framework/UIKit 0x2cfe7000 - 0x2d04efff VideoToolbox armv7s \<686a2e23c1aa38e8a6d717efccf6e06d\> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x2d04f000 - 0x2d234fff WebKit armv7s \<936e95a9c2a4308abd088fae9e8902b2\> /System/Library/Frameworks/WebKit.framework/WebKit 0x2d235000 - 0x2d269fff iAd armv7s \<a1e5c99d32d73bf6b5fdd9e58712a707\> /System/Library/Frameworks/iAd.framework/iAd 0x2d4e3000 - 0x2d507fff ACTFramework armv7s \<3fbcb03af1f63840afa25e11ea3600b0\> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework 0x2d508000 - 0x2d50afff AGXCompilerConnection armv7s \<b9face43e8523648ae7c56c6ad7f38d3\> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection 0x2d50b000 - 0x2d510fff AITTarget armv7s \<9bf437dece273f48ad616227d9a188d7\> /System/Library/PrivateFrameworks/AITTarget.framework/AITTarget 0x2d515000 - 0x2d520fff AOSNotification armv7s \<1f80daa07a603b748da563f4b4877377\> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification 0x2d675000 - 0x2d6c1fff AccountsDaemon armv7s \<22d177290ac53e9d9e3cf9e3a05f093c\> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x2d6c2000 - 0x2d6e3fff AccountsUI armv7s \<2ddef05340b03573a659bc09c46abcef\> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI 0x2d6e4000 - 0x2d6e8fff AggregateDictionary armv7s \<ea95067fba273e28af6e30fde0960dff\> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x2d8b1000 - 0x2d8dcfff AirPlaySupport armv7s \<d8cf05600f933f09adab43544a5d69c6\> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport 0x2dad6000 - 0x2db14fff AppSupport armv7s \<a0e37cef8bbe3c85a186dcc49b049df6\> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x2db15000 - 0x2db5cfff AppleAccount armv7s \<6812345ae0953266a59389104bfa5ee8\> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x2db5d000 - 0x2db96fff AppleAccountUI armv7s \<16ddf73d8ef5302c9ff0a4e0e6b824a7\> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI 0x2dc44000 - 0x2dc81fff AppleJPEG armv7s \<2931e6f7c6883b67ab38d35019beb8c6\> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x2dc8c000 - 0x2dc9efff ApplePushService armv7s \<69c350865a9038388efef935f7a3af72\> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x2dc9f000 - 0x2dca5fff AppleSRP armv7s \<96b159f9b8073ce88263a6c5cc12aa37\> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP 0x2dcda000 - 0x2dce3fff AssertionServices armv7s \<36d88e0e130c3b00a2af465f68ee9b15\> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x2dce4000 - 0x2dcfcfff AssetsLibraryServices armv7s \<a8fc50ad6d583e68b7afa65f593939e8\> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices 0x2dcfd000 - 0x2dd21fff AssistantServices armv7s \<517da34c200e3f5994dc658e6c2fe779\> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x2dd51000 - 0x2dd55fff BTLEAudioController armv7s \<56dfdebd435d3c4db1f51210bea02cc1\> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController 0x2dd56000 - 0x2dd6dfff BackBoardServices armv7s \<bb2f2c12666731999305ef38cdb0b35f\> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x2dd70000 - 0x2dda5fff BaseBoard armv7s \<3275621768f630499ca5650aa1bd2d95\> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x2dda6000 - 0x2ddacfff BluetoothManager armv7s \<76a6027a8697349f9f65e73eaf891e64\> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x2ddad000 - 0x2ddd3fff Bom armv7s \<c3e5f89d1b1b33c198b34b37c234a25a\> /System/Library/PrivateFrameworks/Bom.framework/Bom 0x2dde7000 - 0x2de4cfff BulletinBoard armv7s \<39edeca0683638a1812a50f13b2beb1a\> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 0x2de52000 - 0x2de59fff CacheDelete armv7s \<0fe1afc2b91d3a6395ad67213d076fe3\> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x2de9e000 - 0x2dec7fff CalendarFoundation armv7s \<4ef3f46218c932da8f673a9787bf67aa\> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation 0x2df02000 - 0x2dfd3fff CameraKit armv7s \<798dc3d5499d3fdab9da3ec928676a14\> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit 0x2dfd4000 - 0x2dfdcfff CaptiveNetwork armv7s \<c58c19fe49cd357193c4a71b9ad24b52\> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x2dfdd000 - 0x2e0fffff Celestial armv7s \<c094b42aa2643a7585d56fb8d24e225f\> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x2e10d000 - 0x2e125fff CertInfo armv7s \<bb383f0159153a8ab1ebb908dffa040d\> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo 0x2e126000 - 0x2e12bfff CertUI armv7s \<a7ef5556a0873e7baf86cc4b2070b4d9\> /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x2e256000 - 0x2e277fff ChunkingLibrary armv7s \<2163efa9d14737bdba691222f5ec13da\> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x2e626000 - 0x2e6d1fff CloudPhotoLibrary armv7s \<a41a25db00e435e3ba60bc959abc7d78\> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary 0x2e722000 - 0x2e724fff CommonAuth armv7s \<5c051d4c81253f47985d617214acc764\> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x2e725000 - 0x2e735fff CommonUtilities armv7s \<ec2b306470223b07b5467eccd21d33cc\> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x2e736000 - 0x2e73afff CommunicationsFilter armv7s \<8c45cc73ac0b3909bf052f4ecde8baf4\> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x2e7ab000 - 0x2e7affff ConstantClasses armv7s \<f08de9d363ab35daa747fa7aff0fcc93\> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x2e7b0000 - 0x2e7e8fff ContentIndex armv7s \<643dcd65f5d0337b94c21de3335473db\> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex 0x2e7e9000 - 0x2e7ecfff CoreAUC armv7s \<50d681c11a053a6ca8d3215a9e2eb0cd\> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x2e811000 - 0x2e865fff CoreDAV armv7s \<649ac16c8df133ad99bc149d48828105\> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x2e866000 - 0x2e880fff CoreDuet armv7s \<926c3f2de63535b79413ab87348c5947\> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x2e885000 - 0x2e894fff CoreDuetDaemonProtocol armv7s \<29ef1cfcd6733621a9f9059551fce81c\> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x2e89b000 - 0x2e89dfff CoreDuetDebugLogging armv7s \<764c46da29ab3d04a291406561289bc7\> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x2e9ec000 - 0x2eaecfff CoreMediaStream armv7s \<db07a7b14b543a10bd358f1bf4245a66\> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x2eaed000 - 0x2eb88fff CorePDF armv7s \<71246dd3f2e139c190f39ed5dd8e5023\> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x2ebe9000 - 0x2ebf3fff CoreRecents armv7s \<2e4e93bedf0238599e03f70363bf71c2\> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x2ec6b000 - 0x2ec89fff CoreServicesInternal armv7s \<f121bb7b5fe03d658b22ab3642f2257f\> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x2ee81000 - 0x2ee86fff CoreTime armv7s \<a83961984c593d238441f3f55fd8b968\> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x2ee87000 - 0x2ef07fff CoreUI armv7s \<e9105bec702b3c03b239db35b4a2e50b\> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x2ef08000 - 0x2ef72fff CoreUtils armv7s \<4761f6a5d18a36b0b6282f3c7895a9f7\> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x2ef73000 - 0x2ef78fff CrashReporterSupport armv7s \<18b15425e5ed3ff28c994f99d1ee7565\> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x2ef79000 - 0x2ef7ffff DAAPKit armv7s \<8da2892b295938149f61c96e4321b44e\> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit 0x2ef80000 - 0x2ef8afff DCIMServices armv7s \<a7b9b19949bb32c9bba9a611e02ce019\> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices 0x2ef8b000 - 0x2efd0fff DataAccess armv7s \<b9189af789f63aec8243b4ca3ac01e50\> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess 0x2f1c2000 - 0x2f1e3fff DataAccessExpress armv7s \<c9b406347afd31ea845ffa8b10bfe638\> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x2f221000 - 0x2f227fff DataMigration armv7s \<d72331f6c5033c4f9dcf147951d884fe\> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x2f231000 - 0x2f232fff DiagnosticLogCollection armv7s \<e8459bc8a9083c67903d2a866f014f20\> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x2f233000 - 0x2f24dfff DictionaryServices armv7s \<fea98879f6fe3eedb0caff8bc1c74c19\> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices 0x2f26c000 - 0x2f28bfff EAP8021X armv7s \<c8efe116c7e93e538baa288d667e56b9\> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x2f38b000 - 0x2f38dfff FTClientServices armv7s \<1c2236ab5e9e3ef4aa1e4c353c87fed6\> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x2f38e000 - 0x2f3befff FTServices armv7s \<7380e354916d383cbb915cd4f2fa3856\> /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x2f3bf000 - 0x2f7e2fff FaceCore armv7s \<f3d741379dab3097a5d5f7dc7746450b\> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x2f7f5000 - 0x2f800fff FindMyDevice armv7s \<9ad460b7e4ab3d13871a95406dd90a1f\> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice 0x2f807000 - 0x2f807fff FontServices armv7s \<9a72c3a7dce03e4da4a9141ca2dd6afe\> /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x2f808000 - 0x2f8dcfff libFontParser.dylib armv7s \<298078d166f334daac64f0a8fc082740\> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x2f8dd000 - 0x2f8e9fff libGSFontCache.dylib armv7s \<86e2db581f2632bbbcf73f7d7dd82b25\> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x2f9cc000 - 0x2f9e7fff FrontBoardServices armv7s \<a9c1b4d32242349ba2e841a9365bb4d6\> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x2ff50000 - 0x2ff57fff libGPUSupportMercury.dylib armv7s \<3b7ce33618eb30758545636f2c9bab5b\> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib 0x2ff58000 - 0x2ffe1fff GameCenterFoundation armv7s \<a0787e79def336e48215f62f71d5b079\> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation 0x3007d000 - 0x300c7fff GameCenterUI armv7s \<791be3cf4d3f35d3959ddcb87c61a081\> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI 0x300c8000 - 0x30204fff AVConference armv7s \<a18d952265313d7f88b34e7b1f8d1a19\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference 0x30217000 - 0x3023cfff ICE armv7s \<c95b0fbd256a3c658ad54fad8b9773a7\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE 0x3023d000 - 0x3023dfff LegacyHandle armv7s \<3872eac944b839eca2fb0a526ebbc8f3\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle 0x3023e000 - 0x30246fff SimpleKeyExchange armv7s \<b15b43e96d753463b03925b7b0b6c15f\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange 0x30247000 - 0x30252fff ViceroyTrace armv7s \<b254791c7f5e327b9a94f143bbfe2cc2\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace 0x30253000 - 0x30254fff snatmap armv7s \<202cb136223035b38c57398896017ef8\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap 0x30255000 - 0x302d0fff GameKitServices armv7s \<6b134ad4ce3d3548bf55ef0af5d3e4f3\> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices 0x302d1000 - 0x302e7fff GenerationalStorage armv7s \<fd0d9502e8b930c0a83fb9f55b8f5bc0\> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x302e8000 - 0x30556fff GeoServices armv7s \<cd5710c5b90e3cc7a31a885017926a8c\> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x30557000 - 0x30567fff GraphicsServices armv7s \<807dd07abf423685a095efc23cf878e6\> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x30604000 - 0x30653fff Heimdal armv7s \<58a72b3de54e34979932537c644b7a13\> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x306e9000 - 0x30769fff HomeSharing armv7s \<37e0ffe3208a3411969286443a982a47\> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x307c8000 - 0x3081efff IDS armv7s \<962f25e28f4538fb9f0f79f5ce052784\> /System/Library/PrivateFrameworks/IDS.framework/IDS 0x3081f000 - 0x30844fff IDSFoundation armv7s \<71fcf26834ee3cd889fcabd6ba2d334b\> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x308ac000 - 0x3095bfff IMCore armv7s \<edd61ecfe4c73fc1aac03efe699b835d\> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x309f5000 - 0x30a59fff IMFoundation armv7s \<9adf83a51b0c343fbc8f6ae83c20c48e\> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x30a61000 - 0x30a64fff IOAccelerator armv7s \<00ddf61f19b433e69c512e02a58d0cfb\> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x30a67000 - 0x30a6dfff IOMobileFramebuffer armv7s \<7802a882e8083e6b9009c738250284a8\> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x30a6e000 - 0x30a73fff IOSurface armv7s \<8f9e1eaef9e83344ad4f902ba102b27c\> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface 0x30a74000 - 0x30a75fff IOSurfaceAccelerator armv7s \<ba79f1c8cddd3d04bcec3ca169cc33ab\> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x30abe000 - 0x30b0afff ImageCapture armv7s \<715487665d0334c5bcaeae31b6dd8d6a\> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture 0x30b0b000 - 0x30b10fff IncomingCallFilter armv7s \<2a7b0ddce2b43f1ea867b86cd3c149fb\> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x30b11000 - 0x30b17fff IntlPreferences armv7s \<8956cc5bc6a5356382efce9a3e4cf272\> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x30b18000 - 0x30b4efff LanguageModeling armv7s \<617f48d1df753057b1ff2cb2b2591d92\> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x30bad000 - 0x30bbbfff LegacyGameKit armv7s \<2df4b75e91623e0d9729200b8270a854\> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit 0x30bc9000 - 0x30c05fff MIME armv7s \<821fbb5da7833c74ac059139f7338134\> /System/Library/PrivateFrameworks/MIME.framework/MIME 0x30c06000 - 0x30c60fff MMCS armv7s \<390d630ff90035249509ba443c4c7e67\> /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x30ca9000 - 0x30cb5fff MailServices armv7s \<f501cb8373dc3e1ebdbd730a30ff43cb\> /System/Library/PrivateFrameworks/MailServices.framework/MailServices 0x30ce9000 - 0x30d89fff ManagedConfiguration armv7s \<50edbe379e7f3a9e83243b6a5372859f\> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x30d94000 - 0x30d95fff Marco armv7s \<09420526cff03e688f97faf606b96de8\> /System/Library/PrivateFrameworks/Marco.framework/Marco 0x30d96000 - 0x30e0efff MediaControlSender armv7s \<20b518e1cdff3d9986f6a91a84af2bf9\> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender 0x30ead000 - 0x30ebffff MediaRemote armv7s \<dfddd830f9c034e289d51d656eb82628\> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x30ec0000 - 0x30ecffff MediaServices armv7s \<ba8bb55e7d6f3951b0adb798ba51f98b\> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x30ed0000 - 0x30ee8fff MediaStream armv7s \<b270235223e23daeaa5ad6acd442f6aa\> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x30ee9000 - 0x30f41fff IMAP armv7s \<938fbb7d1126365e83ce762afdb7e9db\> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP 0x30f4d000 - 0x3102afff Message armv7s \<1dce99c17ce3358aa773e10f776b174d\> /System/Library/PrivateFrameworks/Message.framework/Message 0x31030000 - 0x31032fff MessageSupport armv7s \<8bf824d77f553c2b8a2e98295eb37d98\> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport 0x31044000 - 0x31051fff MobileAsset armv7s \<8847bd961f1e35e3b1cc963f17895b5b\> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x31055000 - 0x31077fff MobileBackup armv7s \<16d3546419373fc186be60090542118b\> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x31078000 - 0x31081fff MobileBluetooth armv7s \<cb9d17030ddb3679b2193d52f7648083\> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x3108c000 - 0x3109cfff MobileDeviceLink armv7s \<871918a36839374a8940bea79d5bd16e\> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x3109d000 - 0x310a4fff MobileIcons armv7s \<8e7cdc636e953a588be271a423b03efe\> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x310a5000 - 0x310acfff MobileInstallation armv7s \<a9f2d7b7aea63a7ca813b247b95ef720\> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x310ad000 - 0x310b9fff MobileKeyBag armv7s \<e4fc8c5d19473a7cbf6ae7ee4c8685a3\> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x310e6000 - 0x310e9fff MobileSystemServices armv7s \<6fa5a3df99f739e58e459b30cebeaf34\> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x3110b000 - 0x31118fff MobileWiFi armv7s \<886de9dcb26e3c0989e59406ce04b8cc\> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x31157000 - 0x312f7fff MusicLibrary armv7s \<7426a16d669e3261b3d7183b5dacf589\> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x31390000 - 0x31395fff Netrb armv7s \<ca8684d1f44a31398abae040a385d3a1\> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x31396000 - 0x3139cfff NetworkStatistics armv7s \<47347e706754339aa423c08cb5197a18\> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x3139d000 - 0x313bafff Notes armv7s \<74b03c7ed26133009f5a984f0aaf7037\> /System/Library/PrivateFrameworks/Notes.framework/Notes 0x313bb000 - 0x313bffff NotificationsUI armv7s \<9241a56b20cc3ff0831013c9217b09cf\> /System/Library/PrivateFrameworks/NotificationsUI.framework/NotificationsUI 0x313c0000 - 0x313c2fff OAuth armv7s \<7b2d1b1ae32b356aacf24ae8ebf4304a\> /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x31b1d000 - 0x31b59fff OpenCL armv7s \<e8059b12720532f8863300a5bf142bf4\> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL 0x31c4b000 - 0x31c72fff PersistentConnection armv7s \<a2ce4a23e4323ba9ade4407ce9b792d7\> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x31c7c000 - 0x31cfcfff PhotoEditSupport armv7s \<ff4305f528f532168842b273014ede59\> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport 0x31cfd000 - 0x31ddcfff PhotoLibrary armv7s \<27622d58836f3a0da887908e6b21cf36\> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary 0x31ddd000 - 0x32047fff PhotoLibraryServices armv7s \<633fee7b12fc30f382fae7c7e27a19b3\> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices 0x32048000 - 0x32051fff PhotosFormats armv7s \<ae8bc9da18d538a79e341c4435fd7e7c\> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats 0x32052000 - 0x3209cfff PhysicsKit armv7s \<9f71e08bcc233c779fac8e6eeebdeaa4\> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x3209d000 - 0x320b3fff PlugInKit armv7s \<8644b7f9f6803423ab22ab1c54623d18\> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x320b4000 - 0x320bbfff PowerLog armv7s \<ba28696e76f73078a96b0eda0e35a4d2\> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x322b9000 - 0x32361fff Preferences armv7s \<47b04fea8df43028960a2cbec1d259fc\> /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x32362000 - 0x3239ffff PrintKit armv7s \<1b458ab8943b3482b940cf1ad77a30fd\> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit 0x323a0000 - 0x323a3fff ProgressUI armv7s \<fe228c61ba2930bbb01b77d36a74c788\> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI 0x323a4000 - 0x32438fff ProofReader armv7s \<8b4604af458d314f8e6804905289198f\> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x32439000 - 0x32448fff ProtectedCloudStorage armv7s \<8e87f115ece83de1be412b9650bdddcc\> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x32449000 - 0x32455fff ProtocolBuffer armv7s \<2190f9afee593716aea383b31dda60cf\> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x32456000 - 0x32487fff PrototypeTools armv7s \<d146657585f13e2d956f4da61c179a9f\> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x32488000 - 0x324f7fff Quagga armv7s \<17a48ce11d7635f2a45608f76c4ab3b2\> /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x32656000 - 0x32691fff RemoteUI armv7s \<576661b887a93f2297fe75ad9ba4a37c\> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI 0x3270a000 - 0x32796fff SAObjects armv7s \<80d7196f58b3332b9fd188a51c34f602\> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x32940000 - 0x32972fff SpringBoardFoundation armv7s \<a6a9badc122b3f92a8b96f012dbf0d25\> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation 0x32973000 - 0x3298dfff SpringBoardServices armv7s \<fe229a8f18d1308c87e7876cf1a76b26\> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x3298e000 - 0x329a0fff SpringBoardUI armv7s \<2637f3238e1539cb927cd7766902d328\> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI 0x329a1000 - 0x329c4fff SpringBoardUIServices armv7s \<6b1d4907280537e0bffbcc7b4e75a9e6\> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices 0x32cf9000 - 0x32e12fff StoreServices armv7s \<b9b70b9d54c23949911d2bdd140ff844\> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x32ee3000 - 0x32ee5fff TCC armv7s \<9e7af4ada9a3336abe1b382dd6d53fb7\> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x32ee6000 - 0x32f2bfff TelephonyUI armv7s \<988c26edc6c33f1da2e59f6161517be4\> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI 0x32f2c000 - 0x32f69fff TelephonyUtilities armv7s \<c6a859a44b6e31deb2c57a0d950159b2\> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x33b2d000 - 0x33b55fff TextInput armv7s \<701e5ac6c13c3ac183ea89e54536772c\> /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x33b99000 - 0x33baffff ToneLibrary armv7s \<1c71afda17fa379a94f1b94ed0c7dada\> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x33c09000 - 0x33ccbfff UIFoundation armv7s \<858f32be87783367a89a2b7e129b8952\> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x33ce8000 - 0x33cebfff UserFS armv7s \<cf10fe6f6db23fadaefc104e93657562\> /System/Library/PrivateFrameworks/UserFS.framework/UserFS 0x33d04000 - 0x3424bfff VectorKit armv7s \<0d9bfb7befce3136b21e40c94574294c\> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x3424c000 - 0x34370fff VideoProcessing armv7s \<276a072bcde7384ca1771fa459453e04\> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing 0x34471000 - 0x3448ffff VoiceServices armv7s \<aa1472c70e3733ffa2248a7b958a4489\> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x34519000 - 0x3453ffff WebBookmarks armv7s \<8871fd988fff3793b0fb377497cfe31b\> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x34555000 - 0x350d4fff WebCore armv7s \<67a8356d4f313e4198757228d021c9fd\> /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x350d5000 - 0x35193fff WebKitLegacy armv7s \<f0cf0db107023b4594f08244df23d4cb\> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x352f9000 - 0x352f9fff WirelessCoexManager armv7s \<1c22472daa5d3893b2a7c5459d4b48c5\> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager 0x352fa000 - 0x3531bfff WirelessDiagnostics armv7s \<5075a3652c2636da99e358bc7097c82f\> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x3532e000 - 0x35334fff XPCKit armv7s \<12925358d4923c7fb0affbc34b79a470\> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit 0x35335000 - 0x3533dfff XPCObjects armv7s \<e2394741dd3333338d1c15a983b769a3\> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects 0x35522000 - 0x35527fff iAdServices armv7s \<8dc589e40d9b360bbeb9b7caa698bf42\> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices 0x35528000 - 0x3554cfff iCalendar armv7s \<f76c5b909b023e979cb8e3afab36016a\> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x35558000 - 0x3556bfff iPhotoMigrationSupport armv7s \<01858c0e661733aa87929e25a7c99d8d\> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport 0x3556c000 - 0x355a7fff iTunesStore armv7s \<ec68650298b1300aa829b3407759c13b\> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x35adf000 - 0x35aeefff libAWDProtobufFacetimeiMessage.dylib armv7s \<de8f29ea2ade376893506da44b7fa2c2\> /usr/lib/libAWDProtobufFacetimeiMessage.dylib 0x35bcc000 - 0x35bd2fff libAWDSupportConfig.dylib armv7s \<769860df4fbd37568b2767adc99e0953\> /usr/lib/libAWDSupportConfig.dylib 0x35bd3000 - 0x35d14fff libAWDSupportFramework.dylib armv7s \<0ceab6b2c48b329ca287cae60d2794a5\> /usr/lib/libAWDSupportFramework.dylib 0x35d15000 - 0x35d16fff libAWDSupportInfo.dylib armv7s \<48deae4935c93faf9487e16cd528fbd6\> /usr/lib/libAWDSupportInfo.dylib 0x35d20000 - 0x35d28fff libAccessibility.dylib armv7s \<565775eb36823dc2b2248a5a8d9a2be3\> /usr/lib/libAccessibility.dylib 0x35f7c000 - 0x35f92fff libCRFSuite.dylib armv7s \<e4534db5eb4d3f078ddb2cb62fd8073b\> /usr/lib/libCRFSuite.dylib 0x35fc4000 - 0x360c8fff libFosl\_dynamic.dylib armv7s \<9639376d833a3b24b4f7167bdf22a70f\> /usr/lib/libFosl\_dynamic.dylib 0x360e0000 - 0x360e1fff libMobileCheckpoint.dylib armv7s \<7fc030a7576f30c1bbf70080b5963b21\> /usr/lib/libMobileCheckpoint.dylib 0x360e2000 - 0x360f9fff libMobileGestalt.dylib armv7s \<5ccfd8d8aba13c54b78d603f316e755c\> /usr/lib/libMobileGestalt.dylib 0x360fa000 - 0x36102fff libMobileGestaltExtensions.dylib armv7s \<abb853ee5cfa34c59f9e2757f9d98a57\> /usr/lib/libMobileGestaltExtensions.dylib 0x3611f000 - 0x36120fff libSystem.B.dylib armv7s \<c7ada6fbe9a53d4197826cac16e62c03\> /usr/lib/libSystem.B.dylib 0x36191000 - 0x361d5fff libTelephonyUtilDynamic.dylib armv7s \<581e3f889083319eaa70746f31edc766\> /usr/lib/libTelephonyUtilDynamic.dylib 0x362e5000 - 0x36307fff libarchive.2.dylib armv7s \<792c5bc64510315987f1aa4a372aa6f1\> /usr/lib/libarchive.2.dylib 0x36308000 - 0x36308fff libassertion\_extension.dylib armv7s \<6a63713be9c33cd78fa2bd03211ce434\> /usr/lib/libassertion\_extension.dylib 0x36337000 - 0x36343fff libbsm.0.dylib armv7s \<6e0989fbae0a3d08855ed402ed0b3ec0\> /usr/lib/libbsm.0.dylib 0x36344000 - 0x3634dfff libbz2.1.0.dylib armv7s \<a2f10a1138b93aafa9afe26bd6e1ee48\> /usr/lib/libbz2.1.0.dylib 0x3634e000 - 0x36398fff libc++.1.dylib armv7s \<dd79b1e22f583393b9c2b1763224dbd4\> /usr/lib/libc++.1.dylib 0x36399000 - 0x363b4fff libc++abi.dylib armv7s \<174873ad6dbb39bab97eab06da2d3098\> /usr/lib/libc++abi.dylib 0x363b6000 - 0x363c3fff libcmph.dylib armv7s \<bb3fc6a6155e36fcb49d395717f7d3f4\> /usr/lib/libcmph.dylib 0x363f3000 - 0x3640bfff libextension.dylib armv7s \<a95c14b6593e31bca3b5dd619a2fd896\> /usr/lib/libextension.dylib 0x3642a000 - 0x3642dfff libheimdal-asn1.dylib armv7s \<2ce45d01e91b33fb8146a57394c85ded\> /usr/lib/libheimdal-asn1.dylib 0x3642e000 - 0x3651bfff libiconv.2.dylib armv7s \<58eb4155c7b0357b833c49ea04d3bdc1\> /usr/lib/libiconv.2.dylib 0x3651c000 - 0x3668afff libicucore.A.dylib armv7s \<e0938b0f43c336099be58eae9587cfa7\> /usr/lib/libicucore.A.dylib 0x36697000 - 0x36697fff liblangid.dylib armv7s \<bb40f8ac13c0315a9d10feecc233bf75\> /usr/lib/liblangid.dylib 0x36698000 - 0x366a2fff liblockdown.dylib armv7s \<5238bf4a0815339ea59625cc1ff666aa\> /usr/lib/liblockdown.dylib 0x366a3000 - 0x366b8fff liblzma.5.dylib armv7s \<ffcd1c45b6fb3fdb8264a8673e9049b2\> /usr/lib/liblzma.5.dylib 0x36a32000 - 0x36a46fff libmis.dylib armv7s \<d12e6275fe133b8b9fa891bf1881c936\> /usr/lib/libmis.dylib 0x36a71000 - 0x36c6bfff libobjc.A.dylib armv7s \<2f24d570e8253da29e77c4104a66ffff\> /usr/lib/libobjc.A.dylib 0x36cc7000 - 0x36d1ffff libprotobuf.dylib armv7s \<71c85db137353e17b8a266ae73a1bdda\> /usr/lib/libprotobuf.dylib 0x36d20000 - 0x36d36fff libresolv.9.dylib armv7s \<d93a4f7847a43b9c931dd9f42398d889\> /usr/lib/libresolv.9.dylib 0x36d61000 - 0x36e07fff libsqlite3.dylib armv7s \<3f8122a2ef1a3ac6a576b5f77e3b485b\> /usr/lib/libsqlite3.dylib 0x36e08000 - 0x36e54fff libstdc++.6.dylib armv7s \<4644d4ed8bef3d2fb9b613da6972d010\> /usr/lib/libstdc++.6.dylib 0x36e55000 - 0x36e7bfff libtidy.A.dylib armv7s \<2637f8b2b9b339ad98b40939155b904e\> /usr/lib/libtidy.A.dylib 0x36e7c000 - 0x36e84fff libtzupdate.dylib armv7s \<cc59d1cd15f33b1a8d40966fe0ee5d94\> /usr/lib/libtzupdate.dylib 0x36e88000 - 0x36f3efff libxml2.2.dylib armv7s \<1ceb60da13db36a495e91fd985c5d6f9\> /usr/lib/libxml2.2.dylib 0x36f3f000 - 0x36f60fff libxslt.1.dylib armv7s \<7dd0493e5d1e32dd80542e22a0ee118f\> /usr/lib/libxslt.1.dylib 0x36f61000 - 0x36f6dfff libz.1.dylib armv7s \<fd35952ab6623a8484e1573481685182\> /usr/lib/libz.1.dylib 0x36f6e000 - 0x36f72fff libcache.dylib armv7s \<f3c6b77f893a39c2b7df1f1ecf41d06f\> /usr/lib/system/libcache.dylib 0x36f73000 - 0x36f7cfff libcommonCrypto.dylib armv7s \<0a15a7c1f73d302da2cd7e4e2acfeed2\> /usr/lib/system/libcommonCrypto.dylib 0x36f7d000 - 0x36f81fff libcompiler\_rt.dylib armv7s \<d91d7ecc118d3a1c99881923af73f7c6\> /usr/lib/system/libcompiler\_rt.dylib 0x36f82000 - 0x36f88fff libcopyfile.dylib armv7s \<c953910ab8d23efeb8b90cff82bff8d4\> /usr/lib/system/libcopyfile.dylib 0x36f89000 - 0x36fd5fff libcorecrypto.dylib armv7s \<6dce6a7c47a933ccba76429c3ef0f3f4\> /usr/lib/system/libcorecrypto.dylib 0x36fd6000 - 0x36ff5fff libdispatch.dylib armv7s \<a5361c5ac5153f018479723123b27118\> /usr/lib/system/libdispatch.dylib 0x36ff6000 - 0x36ff7fff libdyld.dylib armv7s \<abf0be77659a3f3a8e5538115d8797d8\> /usr/lib/system/libdyld.dylib 0x36ff8000 - 0x36ff8fff libkeymgr.dylib armv7s \<6858de0933f535b2b8c03033a7ad58c4\> /usr/lib/system/libkeymgr.dylib 0x36ff9000 - 0x36ff9fff liblaunch.dylib armv7s \<2358a0a01e893ffb8b45c950c7dab2c8\> /usr/lib/system/liblaunch.dylib 0x36ffa000 - 0x36ffdfff libmacho.dylib armv7s \<09c925ce076b39a7974c8001e775c815\> /usr/lib/system/libmacho.dylib 0x36ffe000 - 0x36ffffff libremovefile.dylib armv7s \<7f08307630a638aab800041abeb06720\> /usr/lib/system/libremovefile.dylib 0x37000000 - 0x37011fff libsystem\_asl.dylib armv7s \<d26d22e53561376ea2e8d5f0a56bdc19\> /usr/lib/system/libsystem\_asl.dylib 0x37012000 - 0x37012fff libsystem\_blocks.dylib armv7s \<3d575aee5d8c306187d695801c94d400\> /usr/lib/system/libsystem\_blocks.dylib 0x37013000 - 0x37076fff libsystem\_c.dylib armv7s \<415dbd55796d3413819f59ee8acebda2\> /usr/lib/system/libsystem\_c.dylib 0x37077000 - 0x37079fff libsystem\_configuration.dylib armv7s \<22243b8824ea3e3b86ce85a2d9e21f3b\> /usr/lib/system/libsystem\_configuration.dylib 0x3707a000 - 0x3707bfff libsystem\_coreservices.dylib armv7s \<f1690e04a8923f06b042472fcd8a2210\> /usr/lib/system/libsystem\_coreservices.dylib 0x3707c000 - 0x37088fff libsystem\_coretls.dylib armv7s \<d1a9bfd5baa134d8b17745ad81804b95\> /usr/lib/system/libsystem\_coretls.dylib 0x37089000 - 0x3708ffff libsystem\_dnssd.dylib armv7s \<28cfa66349643550ad2e24ac3069e377\> /usr/lib/system/libsystem\_dnssd.dylib 0x37090000 - 0x370a8fff libsystem\_info.dylib armv7s \<a93d1391edb63969b454c858bb8cc703\> /usr/lib/system/libsystem\_info.dylib 0x370a9000 - 0x370c3fff libsystem\_kernel.dylib armv7s \<45e3ed93e1a33ac9852af0288ce245dd\> /usr/lib/system/libsystem\_kernel.dylib 0x370c4000 - 0x370e3fff libsystem\_m.dylib armv7s \<f791d0269b5a3bc096e6a485c5aa5b07\> /usr/lib/system/libsystem\_m.dylib 0x370e4000 - 0x370f6fff libsystem\_malloc.dylib armv7s \<4e9efa8dc6553875a5f86408e609c98b\> /usr/lib/system/libsystem\_malloc.dylib 0x370f7000 - 0x37124fff libsystem\_network.dylib armv7s \<1167f78e6cab3ac486123f44bd0df0b1\> /usr/lib/system/libsystem\_network.dylib 0x37125000 - 0x3712afff libsystem\_networkextension.dylib armv7s \<a2863a93bdc336418872c0799d243391\> /usr/lib/system/libsystem\_networkextension.dylib 0x3712b000 - 0x37132fff libsystem\_notify.dylib armv7s \<042ef512d24a36028b5c4bf6879946bd\> /usr/lib/system/libsystem\_notify.dylib 0x37133000 - 0x37137fff libsystem\_platform.dylib armv7s \<ce04793612513649b79fc416b36fe49b\> /usr/lib/system/libsystem\_platform.dylib 0x37138000 - 0x3713efff libsystem\_pthread.dylib armv7s \<f0f1af3aede7377c97f267bbbe418fc0\> /usr/lib/system/libsystem\_pthread.dylib 0x3713f000 - 0x37141fff libsystem\_sandbox.dylib armv7s \<63f8b7071a7c329ca4867414c984648b\> /usr/lib/system/libsystem\_sandbox.dylib 0x37142000 - 0x37145fff libsystem\_stats.dylib armv7s \<584d89930b6332769ddcbb2f4cf98fd7\> /usr/lib/system/libsystem\_stats.dylib 0x37146000 - 0x3714bfff libsystem\_trace.dylib armv7s \<140f164e68ef337cb646fcad5330dab0\> /usr/lib/system/libsystem\_trace.dylib 0x3714c000 - 0x3714cfff libunwind.dylib armv7s \<30325f86e7963864ac1f6aa575608725\> /usr/lib/system/libunwind.dylib 0x3714d000 - 0x37168fff libxpc.dylib armv7s \<e83f44ac48af3662929efb7538661bb3\> /usr/lib/system/libxpc.dylib

The fact is that in my iPad (iOS 8.1.2) all its working perfectly.

In my build settings there is that in my plist after some searching:

CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS7LandscapeOnlyWorkaround = true, CoronaUseIOS6LandscapeOnlyWorkaround = true,

I tried to add (hope that it exist as nowhere was write) a similar thing for ios8 but still not work. Now i call for my girlfriend and i look up if is working in her device with iOS 7.1.2 and i make you know.

How I resolve that problem?

Regards,

Girolamo

UPDATE In my girlfriend phone crash too.

Hi,

its me again. By the last daily build my media.* library is not working anymore! This is my code:
 

local function SceltaSource( event ) if “clicked” == event.action then local i = event.index if 1 == i then print(“CAMERA”) if ( media.hasSource( media.Camera ) ) then print(count … " = count") count = count + 1 print(count … " = count") ---- CRASH HERE media.capturePhoto( { listener = onPhotoComplete, destination = { baseDir = system.DocumentsDirectory, filename = preference.getValue(“idUser”)…count…".jpg", type = “image” } } ) else native.showAlert( “Corona”, “This device does not have a camera.”, { “OK” } ) end elseif 2 == i then print(“LIBRERIA”) if media.hasSource( media.SavedPhotosAlbum ) then count = count + 1 – CRASH HERE media.selectPhoto( { mediaSource = media.SavedPhotosAlbum, listener = onPhotoComplete, destination = { baseDir = system.DocumentsDirectory, filename = preference.getValue(“idUser”)… count …".jpg", type = “image” } } ) else native.showAlert( “Corona”, “This device does not have a photo library.”, { “OK” } ) end else print(“ANULLA do nothing”) end end return true end onphotoBtnRelease = function(event) local phase = event.phase if phase == “ended” then native.showAlert( “Photo”, “Modifica Foto profilo”,{ “Scatta”,“Libreria”, “Annulla”}, SceltaSource ) end return true – indicates successful touch end photoBtn = widget.newButton{ baseDir = system.DocumentsDirectory, defaultFile = preference.getValue(“idUser”)…count…".jpg", width = 120, height = 120, onEvent = onphotoBtnRelease } photoBtn.x = display.contentWidth*0.175 photoBtn.y = display.contentHeight*0.225 group:insert( photoBtn )

On the emulator and ios Simulator of xCode its working without any problem, but on my device (iPhone5s iOS 8.1.2) and one my friend one (iPhone 8.1.1) it crash where I write in the code with that log (from the device of my friend, in mine is the same error): 

attachicon.gifSchermata 2014-12-22 alle 10.34.42.png

And this is the crash log:

Incident Identifier: DFDA1AA9-CD45-47DC-AD81-F7C155CC2C0A CrashReporter Key: 0ace867bc1348108bee0649f5d1e1416c1c14561 Hardware Model: iPhone6,2 Process: Wherewolf [232] Path: /private/var/mobile/Containers/Bundle/Application/480D2C17-D000-481D-ADF7-9A3825EDE0EB/Wherewolf.app/Wherewolf Identifier: wherewolfID Version: 2014.12.220930 (1.0) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2014-12-22 09:50:27.393 +0100 Launch Time: 2014-12-22 09:50:18.507 +0100 OS Version: iOS 8.1.2 (12B440) Report Version: 105 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Subtype: EXC_ARM_DA_ALIGN at 0x0000000000000001 Triggered by Thread: 0 Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 CoreFoundation 0x29190975 CFRetain + 9 1 CoreFoundation 0x291ae525 +[__NSArrayI __new:::] + 57 2 CoreFoundation 0x291abb19 -[__NSPlaceholderArray initWithObjects:count:] + 133 3 CoreFoundation 0x291dfb57 +[NSArray arrayWithObjects:] + 271 4 Wherewolf 0x000bb60d 0xa6000 + 87565 5 UIKit 0x2c97b4b3 -[UIApplication setStatusBarOrientation:animationParameters:notifySpringBoardAndFence:] + 235 6 UIKit 0x2c9dd3bd __78-[UIWindow _rotateWindowToOrientation:updateStatusBar:duration:skipCallbacks:]_block_invoke + 265 7 UIKit 0x2cc1f90d __58-[_UIWindowRotationAnimationController animateTransition:]_block_invoke + 33 8 UIKit 0x2cc1f8d1 -[_UIWindowRotationAnimationController animateTransition:] + 413 9 UIKit 0x2c9dc2c9 -[UIWindow _rotateToBounds:withAnimator:transitionContext:] + 757 10 UIKit 0x2c9dd1bd -[UIWindow _rotateWindowToOrientation:updateStatusBar:duration:skipCallbacks:] + 1437 11 UIKit 0x2c9dd677 -[UIWindow _setRotatableClient:toOrientation:applyTransformToWindow:updateStatusBar:duration:force:isRotating:] + 535 12 UIKit 0x2c7c803f -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:isRotating:] + 95 13 UIKit 0x2c7c7fd7 -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:] + 43 14 UIKit 0x2c7c7ea7 -[UIWindow _setRotatableViewOrientation:updateStatusBar:duration:force:] + 115 15 UIKit 0x2c7c7e27 -[UIWindow _setRotatableViewOrientation:duration:force:] + 39 16 UIKit 0x2cdab2cb -[_UIFullscreenPresentationController _adjustOrientationIfNecessaryInWindow:forViewController:preservingViewController:] + 515 17 UIKit 0x2ca1d555 -[UIPresentationController _presentWithAnimationController:interactionController:target:didEndSelector:] + 693 18 UIKit 0x2ca33ad9 -[UIViewController _presentViewController:modalSourceViewController:presentationController:animationController:interactionController:completion:] + 821 19 UIKit 0x2ca34a77 -[UIViewController _presentViewController:withAnimationController:completion:] + 2855 20 UIKit 0x2ca36583 __62-[UIViewController presentViewController:animated:completion:]_block_invoke + 255 21 UIKit 0x2c832adb -[UIViewController presentViewController:animated:completion:] + 191 22 UIKit 0x2ca36717 -[UIViewController presentModalViewController:animated:] + 27 23 Wherewolf 0x000ae777 0xa6000 + 34679 24 Wherewolf 0x000c42b9 0xa6000 + 123577 25 Wherewolf 0x0013ac2b 0xa6000 + 609323 26 Wherewolf 0x001193c1 0xa6000 + 472001 27 Wherewolf 0x00126205 0xa6000 + 524805 28 Wherewolf 0x0011959b 0xa6000 + 472475 29 Wherewolf 0x00127085 0xa6000 + 528517 30 Wherewolf 0x001197c9 0xa6000 + 473033 31 Wherewolf 0x00112f69 0xa6000 + 446313 32 Wherewolf 0x0013972f 0xa6000 + 603951 33 Wherewolf 0x0013c7dd 0xa6000 + 616413 34 Wherewolf 0x000d47eb 0xa6000 + 190443 35 UIKit 0x2cadb8c7 -[UIAlertView _prepareToDismissForTappedIndex:] + 167 36 UIKit 0x2cadb4bf __35-[UIAlertView _prepareAlertActions]_block_invoke50 + 31 37 UIKit 0x2cad5cd3 -[UIAlertController _dismissAnimated:triggeringAction:triggeredByPopoverDimmingView:] + 63 38 UIKit 0x2cad5c8b -[UIAlertController _dismissAnimated:triggeringAction:] + 27 39 UIKit 0x2cbb9247 -[_UIAlertControllerActionView touchesEnded:withEvent:] + 159 40 UIKit 0x2c7830e3 -[UIWindow _sendTouchesForEvent:] + 519 41 UIKit 0x2c77c9ad -[UIWindow sendEvent:] + 541 42 UIKit 0x2c753159 -[UIApplication sendEvent:] + 193 43 UIKit 0x2c9c6ab5 _UIApplicationHandleEventFromQueueEvent + 13885 44 UIKit 0x2c751bb5 _UIApplicationHandleEventQueue + 1293 45 CoreFoundation 0x29256d55 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 13 46 CoreFoundation 0x29256163 __CFRunLoopDoSources0 + 215 47 CoreFoundation 0x292547c9 __CFRunLoopRun + 769 48 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 49 CoreFoundation 0x291a21cf CFRunLoopRunInMode + 103 50 GraphicsServices 0x305600a5 GSEventRunModal + 133 51 UIKit 0x2c7b1f9d UIApplicationMain + 1437 52 Wherewolf 0x000adb5f 0xa6000 + 31583 53 libdyld.dylib 0x36ff7aad start + 1 Thread 1 name: Dispatch queue: com.apple.libdispatch-manager Thread 1: 0 libsystem_kernel.dylib 0x370aa2a0 kevent64 + 24 1 libdispatch.dylib 0x36fe39fd _dispatch_mgr_invoke + 277 2 libdispatch.dylib 0x36fd920f _dispatch_mgr_thread + 35 Thread 2: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 3: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 4: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 5 name: com.apple.NSURLConnectionLoader Thread 5: 0 libsystem_kernel.dylib 0x370aa4f0 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x370aa2e5 mach_msg + 37 2 CoreFoundation 0x29256317 __CFRunLoopServiceMachPort + 143 3 CoreFoundation 0x292548bd __CFRunLoopRun + 1013 4 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 5 CoreFoundation 0x291a21cf CFRunLoopRunInMode + 103 6 CFNetwork 0x28d57953 +[NSURLConnection(Loader) _resourceLoadLoop:] + 483 7 Foundation 0x29fa0b57 __NSThread__main__ + 1115 8 libsystem_pthread.dylib 0x3713ae91 _pthread_body + 137 9 libsystem_pthread.dylib 0x3713ae03 _pthread_start + 115 10 libsystem_pthread.dylib 0x37138b8c thread_start + 4 Thread 6 name: com.apple.CFSocket.private Thread 6: 0 libsystem_kernel.dylib 0x370be08c __select + 20 1 CoreFoundation 0x2925aae3 __CFSocketManager + 495 2 libsystem_pthread.dylib 0x3713ae91 _pthread_body + 137 3 libsystem_pthread.dylib 0x3713ae03 _pthread_start + 115 4 libsystem_pthread.dylib 0x37138b8c thread_start + 4 Thread 7: 0 libsystem_kernel.dylib 0x370aa4f0 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x370aa2e5 mach_msg + 37 2 CoreFoundation 0x29256317 __CFRunLoopServiceMachPort + 143 3 CoreFoundation 0x292548bd __CFRunLoopRun + 1013 4 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 5 CoreFoundation 0x291eb0e7 CFRunLoopRun + 95 6 CoreMotion 0x29aa5e9b 0x29a66000 + 261787 7 libsystem_pthread.dylib 0x3713ae91 _pthread_body + 137 8 libsystem_pthread.dylib 0x3713ae03 _pthread_start + 115 9 libsystem_pthread.dylib 0x37138b8c thread_start + 4 Thread 8: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 9: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 0 crashed with ARM Thread State (32-bit): r0: 0x00000001 r1: 0x00000000 r2: 0x154540b8 r3: 0xeb2a72e0 r4: 0x00000001 r5: 0x00000001 r6: 0x14e10bd8 r7: 0x004593dc r8: 0x14e10bd0 r9: 0x14d58d20 r10: 0x00000000 r11: 0x00459420 ip: 0x3949f2b0 sp: 0x004593d4 lr: 0x291ae529 pc: 0x29190974 cpsr: 0x20000030 Binary Images: 0xa6000 - 0x2f5fff Wherewolf armv7 <cef2e54a7c073932a06452299244f4d4> /var/mobile/Containers/Bundle/Application/480D2C17-D000-481D-ADF7-9A3825EDE0EB/Wherewolf.app/Wherewolf 0x1fe0b000 - 0x1fe2efff dyld armv7s <8ffd813a380c333bbd4a25e1dbe05715> /usr/lib/dyld 0x27c9f000 - 0x27d16fff AGXGLDriver armv7s <1286d9ca15c2319d8e1b56f991585d60> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver 0x27d26000 - 0x27e92fff AVFoundation armv7s <23a20af23f733b39b5c87059c080f9f7> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x27e93000 - 0x27ef1fff libAVFAudio.dylib armv7s <e3f677adf77d37baa08716b5d334486f> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib 0x27ef2000 - 0x27f2afff AVKit armv7s <03e0e851a3a0354d8de52085feeaa332> /System/Library/Frameworks/AVKit.framework/AVKit 0x27f2b000 - 0x27f2bfff Accelerate armv7s <3c10ee15d8363fa58b719f2abca91b06> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x27f3c000 - 0x28157fff vImage armv7s <3358de09601333a2881365e5c74c681e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x28158000 - 0x2823efff libBLAS.dylib armv7s <b46b7fd3985f371ca26b10f268965e63> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x2823f000 - 0x28503fff libLAPACK.dylib armv7s <eb228c255d9e349391cd6b227a9d2744> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x28504000 - 0x28515fff libLinearAlgebra.dylib armv7s <d2e989bc1bad320b918c37d3642db4b6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x28516000 - 0x28592fff libvDSP.dylib armv7s <07cf0625bd813336920eb5b62f99be06> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x28593000 - 0x285a5fff libvMisc.dylib armv7s <28f38990063234318631d0d03eced5f1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x285a6000 - 0x285a6fff vecLib armv7s <108b763f155130828fa123813e3ff5f5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x285a7000 - 0x285cdfff Accounts armv7s <a5204dc40d2b3dd0b8603ecf491977c2> /System/Library/Frameworks/Accounts.framework/Accounts 0x285ce000 - 0x285cefff AdSupport armv7s <7d5801dc36bd37fd85c94196efd32155> /System/Library/Frameworks/AdSupport.framework/AdSupport 0x285cf000 - 0x2863ffff AddressBook armv7s <5d6a592fa31e3de09340c5a67cfbe7f3> /System/Library/Frameworks/AddressBook.framework/AddressBook 0x28640000 - 0x28764fff AddressBookUI armv7s <e3ac3ad5b4ad386eac974860b6930983> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI 0x28765000 - 0x28777fff AssetsLibrary armv7s <344c67df52fb32af9f0e85193171b4ed> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 0x288fd000 - 0x28b70fff AudioToolbox armv7s <5d4f5b76b7ab37018df0216d9cb42056> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x28cdb000 - 0x28e63fff CFNetwork armv7s <97db33718ab838fd9f03530d4ba2cd07> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x28e64000 - 0x28ee5fff CloudKit armv7s <a1fd0fc121e234198e795f8a2a45ccdf> /System/Library/Frameworks/CloudKit.framework/CloudKit 0x28ee6000 - 0x28f45fff CoreAudio armv7s <acf1796d96be308e83c2630ffca280fb> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x28f60000 - 0x28f7dfff CoreBluetooth armv7s <74a3a2f1940435bca2ae88fb5353a3fb> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x28f7e000 - 0x29189fff CoreData armv7s <7ee78feaa6fb3d41af493ca96efffe7d> /System/Library/Frameworks/CoreData.framework/CoreData 0x2918a000 - 0x294b7fff CoreFoundation armv7s <5b54383b963a36369b45eaa35c3940be> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x294b8000 - 0x295e2fff CoreGraphics armv7s <7f8833bf31b33242b32bb893c5832f42> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x29622000 - 0x29624fff libCGXType.A.dylib armv7s <668474876a3a3eccbf40f73991769b42> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib 0x29625000 - 0x2962ffff libCMSBuiltin.A.dylib armv7s <f5dee40a6ddf3d98b74647b7a64b5ea6> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib 0x29817000 - 0x29832fff libRIP.A.dylib armv7s <1a68309bd2c3338b8e465de6e6353d9b> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib 0x29833000 - 0x29941fff CoreImage armv7s <f5015bd2f3b6316ab9c185ae9d3eed9b> /System/Library/Frameworks/CoreImage.framework/CoreImage 0x29942000 - 0x29999fff CoreLocation armv7s <a016ba0e465e3342985038c4171da8a2> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x299cb000 - 0x29a65fff CoreMedia armv7s <847dcb4360e73e389e98a442cdab8432> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x29a66000 - 0x29b25fff CoreMotion armv7s <f4b59554f6cd34a1a32bcc132a110e37> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x29b26000 - 0x29b84fff CoreTelephony armv7s <fcb254101e31326f8edd32a9568143fd> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x29b85000 - 0x29c4cfff CoreText armv7s <ebb20deee2663a29ab574d093e5838ab> /System/Library/Frameworks/CoreText.framework/CoreText 0x29c4d000 - 0x29c62fff CoreVideo armv7s <3755b5d4d1a23154a9bb3e497ececab9> /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x29c63000 - 0x29d59fff EventKit armv7s <8bb311d23ac03b45b04977c1edcc24a0> /System/Library/Frameworks/EventKit.framework/EventKit 0x29ed0000 - 0x2a0d2fff Foundation armv7s <6763b485b3b530f5ae7a6b8732110736> /System/Library/Frameworks/Foundation.framework/Foundation 0x2a0d3000 - 0x2a0fefff GLKit armv7s <9782e1b0ea3c30f6bb711eefc2f62dbe> /System/Library/Frameworks/GLKit.framework/GLKit 0x2a0ff000 - 0x2a11efff GSS armv7s <6d8ee1257c6339e0b41c43c5e066636e> /System/Library/Frameworks/GSS.framework/GSS 0x2a12d000 - 0x2a12dfff GameKit armv7s <81f471e687fe3176bc3a54b527fd8848> /System/Library/Frameworks/GameKit.framework/GameKit 0x2a1b2000 - 0x2a208fff IOKit armv7s <a4acf0d246b53114817cfd7a01fe5c0a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x2a209000 - 0x2a44bfff ImageIO armv7s <570ff30dcbb637feae32333345369946> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x2a44c000 - 0x2a79afff JavaScriptCore armv7s <d4e399cede5d380aab72d5aa15e5aa7d> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x2a978000 - 0x2aa76fff MapKit armv7s <54e5afb60ffc3fefa1e28268ecb394ed> /System/Library/Frameworks/MapKit.framework/MapKit 0x2aa77000 - 0x2aa7ffff MediaAccessibility armv7s <fe6d956fb92c34418fcd7e714126a786> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x2aa80000 - 0x2ac59fff MediaPlayer armv7s <eadc2ef9f6713a3fa9135b7ff4b5615e> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x2ac5a000 - 0x2afd4fff MediaToolbox armv7s <d2ce45241f333566a3654e36f3e6f7f9> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x2afd5000 - 0x2b093fff MessageUI armv7s <3af810d8e9233bd7903e5c3b8057fe88> /System/Library/Frameworks/MessageUI.framework/MessageUI 0x2b094000 - 0x2b100fff Metal armv7s <a384b266648830f0af79c6701b4fe29a> /System/Library/Frameworks/Metal.framework/Metal 0x2b101000 - 0x2b190fff MobileCoreServices armv7s <efc1ca21eb923da1bec2db95f7f2ef85> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x2b285000 - 0x2b2b6fff OpenAL armv7s <4ff72cda821834f8b0830c35eb65be59> /System/Library/Frameworks/OpenAL.framework/OpenAL 0x2bb94000 - 0x2bc6bfff GLEngine armv7s <78bae040e7f93e999c99b83b82ce21f0> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine 0x2bc6c000 - 0x2bc74fff OpenGLES armv7s <d9b66d56701b3de8bf8e91d63db07328> /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x2bc76000 - 0x2bc76fff libCVMSPluginSupport.dylib armv7s <2d945076afe83141af65c510e33a05ec> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x2bc77000 - 0x2bc79fff libCoreFSCache.dylib armv7s <ecc01c4cd2aa3cfabe2cb655e944d675> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x2bc7a000 - 0x2bc7dfff libCoreVMClient.dylib armv7s <f9bbda54797d3b119f02b904b5b616b8> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x2bc7e000 - 0x2bc86fff libGFXShared.dylib armv7s <38da2ef7476f3e06a684c7d23e32b5d6> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x2bc87000 - 0x2bcc9fff libGLImage.dylib armv7s <226b647182f731399ce2ffa4ac908466> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x2bcca000 - 0x2be05fff libGLProgrammability.dylib armv7s <ed640a445eaf3206a43975b9db330fb2> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib 0x2bed1000 - 0x2bf44fff Photos armv7s <d3bdfc9b48ec32b29edafe4f66162cba> /System/Library/Frameworks/Photos.framework/Photos 0x2bf45000 - 0x2c168fff PhotosUI armv7s <a7b709da40a5372fa7d7567db7756f02> /System/Library/Frameworks/PhotosUI.framework/PhotosUI 0x2c16c000 - 0x2c2befff QuartzCore armv7s <d981d03747623398a3c7e252ad058785> /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x2c2bf000 - 0x2c312fff QuickLook armv7s <318bf310635a37edb9f1124050a05e2c> /System/Library/Frameworks/QuickLook.framework/QuickLook 0x2c501000 - 0x2c541fff Security armv7s <34011e368d3137919066d6213dc94f32> /System/Library/Frameworks/Security.framework/Security 0x2c542000 - 0x2c5bafff Social armv7s <7000906e82d9397d998c4f0b63018e61> /System/Library/Frameworks/Social.framework/Social 0x2c6cf000 - 0x2c6e4fff StoreKit armv7s <52672ade371532b793bd8799f1c28aa1> /System/Library/Frameworks/StoreKit.framework/StoreKit 0x2c6e5000 - 0x2c741fff SystemConfiguration armv7s <f40e0ecca37c3f8cb107976317fa6250> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x2c742000 - 0x2c743fff Twitter armv7s <ca9f51b21b1d3312867ed0a50dcec3e3> /System/Library/Frameworks/Twitter.framework/Twitter 0x2c744000 - 0x2cfe6fff UIKit armv7s <94d79df43f8a3b519b7fbf2ca102b4ea> /System/Library/Frameworks/UIKit.framework/UIKit 0x2cfe7000 - 0x2d04efff VideoToolbox armv7s <686a2e23c1aa38e8a6d717efccf6e06d> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x2d04f000 - 0x2d234fff WebKit armv7s <936e95a9c2a4308abd088fae9e8902b2> /System/Library/Frameworks/WebKit.framework/WebKit 0x2d235000 - 0x2d269fff iAd armv7s <a1e5c99d32d73bf6b5fdd9e58712a707> /System/Library/Frameworks/iAd.framework/iAd 0x2d4e3000 - 0x2d507fff ACTFramework armv7s <3fbcb03af1f63840afa25e11ea3600b0> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework 0x2d508000 - 0x2d50afff AGXCompilerConnection armv7s <b9face43e8523648ae7c56c6ad7f38d3> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection 0x2d50b000 - 0x2d510fff AITTarget armv7s <9bf437dece273f48ad616227d9a188d7> /System/Library/PrivateFrameworks/AITTarget.framework/AITTarget 0x2d515000 - 0x2d520fff AOSNotification armv7s <1f80daa07a603b748da563f4b4877377> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification 0x2d675000 - 0x2d6c1fff AccountsDaemon armv7s <22d177290ac53e9d9e3cf9e3a05f093c> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x2d6c2000 - 0x2d6e3fff AccountsUI armv7s <2ddef05340b03573a659bc09c46abcef> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI 0x2d6e4000 - 0x2d6e8fff AggregateDictionary armv7s <ea95067fba273e28af6e30fde0960dff> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x2d8b1000 - 0x2d8dcfff AirPlaySupport armv7s <d8cf05600f933f09adab43544a5d69c6> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport 0x2dad6000 - 0x2db14fff AppSupport armv7s <a0e37cef8bbe3c85a186dcc49b049df6> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x2db15000 - 0x2db5cfff AppleAccount armv7s <6812345ae0953266a59389104bfa5ee8> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x2db5d000 - 0x2db96fff AppleAccountUI armv7s <16ddf73d8ef5302c9ff0a4e0e6b824a7> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI 0x2dc44000 - 0x2dc81fff AppleJPEG armv7s <2931e6f7c6883b67ab38d35019beb8c6> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x2dc8c000 - 0x2dc9efff ApplePushService armv7s <69c350865a9038388efef935f7a3af72> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x2dc9f000 - 0x2dca5fff AppleSRP armv7s <96b159f9b8073ce88263a6c5cc12aa37> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP 0x2dcda000 - 0x2dce3fff AssertionServices armv7s <36d88e0e130c3b00a2af465f68ee9b15> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x2dce4000 - 0x2dcfcfff AssetsLibraryServices armv7s <a8fc50ad6d583e68b7afa65f593939e8> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices 0x2dcfd000 - 0x2dd21fff AssistantServices armv7s <517da34c200e3f5994dc658e6c2fe779> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x2dd51000 - 0x2dd55fff BTLEAudioController armv7s <56dfdebd435d3c4db1f51210bea02cc1> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController 0x2dd56000 - 0x2dd6dfff BackBoardServices armv7s <bb2f2c12666731999305ef38cdb0b35f> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x2dd70000 - 0x2dda5fff BaseBoard armv7s <3275621768f630499ca5650aa1bd2d95> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x2dda6000 - 0x2ddacfff BluetoothManager armv7s <76a6027a8697349f9f65e73eaf891e64> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x2ddad000 - 0x2ddd3fff Bom armv7s <c3e5f89d1b1b33c198b34b37c234a25a> /System/Library/PrivateFrameworks/Bom.framework/Bom 0x2dde7000 - 0x2de4cfff BulletinBoard armv7s <39edeca0683638a1812a50f13b2beb1a> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 0x2de52000 - 0x2de59fff CacheDelete armv7s <0fe1afc2b91d3a6395ad67213d076fe3> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x2de9e000 - 0x2dec7fff CalendarFoundation armv7s <4ef3f46218c932da8f673a9787bf67aa> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation 0x2df02000 - 0x2dfd3fff CameraKit armv7s <798dc3d5499d3fdab9da3ec928676a14> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit 0x2dfd4000 - 0x2dfdcfff CaptiveNetwork armv7s <c58c19fe49cd357193c4a71b9ad24b52> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x2dfdd000 - 0x2e0fffff Celestial armv7s <c094b42aa2643a7585d56fb8d24e225f> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x2e10d000 - 0x2e125fff CertInfo armv7s <bb383f0159153a8ab1ebb908dffa040d> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo 0x2e126000 - 0x2e12bfff CertUI armv7s <a7ef5556a0873e7baf86cc4b2070b4d9> /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x2e256000 - 0x2e277fff ChunkingLibrary armv7s <2163efa9d14737bdba691222f5ec13da> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x2e626000 - 0x2e6d1fff CloudPhotoLibrary armv7s <a41a25db00e435e3ba60bc959abc7d78> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary 0x2e722000 - 0x2e724fff CommonAuth armv7s <5c051d4c81253f47985d617214acc764> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x2e725000 - 0x2e735fff CommonUtilities armv7s <ec2b306470223b07b5467eccd21d33cc> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x2e736000 - 0x2e73afff CommunicationsFilter armv7s <8c45cc73ac0b3909bf052f4ecde8baf4> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x2e7ab000 - 0x2e7affff ConstantClasses armv7s <f08de9d363ab35daa747fa7aff0fcc93> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x2e7b0000 - 0x2e7e8fff ContentIndex armv7s <643dcd65f5d0337b94c21de3335473db> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex 0x2e7e9000 - 0x2e7ecfff CoreAUC armv7s <50d681c11a053a6ca8d3215a9e2eb0cd> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x2e811000 - 0x2e865fff CoreDAV armv7s <649ac16c8df133ad99bc149d48828105> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x2e866000 - 0x2e880fff CoreDuet armv7s <926c3f2de63535b79413ab87348c5947> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x2e885000 - 0x2e894fff CoreDuetDaemonProtocol armv7s <29ef1cfcd6733621a9f9059551fce81c> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x2e89b000 - 0x2e89dfff CoreDuetDebugLogging armv7s <764c46da29ab3d04a291406561289bc7> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x2e9ec000 - 0x2eaecfff CoreMediaStream armv7s <db07a7b14b543a10bd358f1bf4245a66> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x2eaed000 - 0x2eb88fff CorePDF armv7s <71246dd3f2e139c190f39ed5dd8e5023> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x2ebe9000 - 0x2ebf3fff CoreRecents armv7s <2e4e93bedf0238599e03f70363bf71c2> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x2ec6b000 - 0x2ec89fff CoreServicesInternal armv7s <f121bb7b5fe03d658b22ab3642f2257f> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x2ee81000 - 0x2ee86fff CoreTime armv7s <a83961984c593d238441f3f55fd8b968> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x2ee87000 - 0x2ef07fff CoreUI armv7s <e9105bec702b3c03b239db35b4a2e50b> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x2ef08000 - 0x2ef72fff CoreUtils armv7s <4761f6a5d18a36b0b6282f3c7895a9f7> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x2ef73000 - 0x2ef78fff CrashReporterSupport armv7s <18b15425e5ed3ff28c994f99d1ee7565> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x2ef79000 - 0x2ef7ffff DAAPKit armv7s <8da2892b295938149f61c96e4321b44e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit 0x2ef80000 - 0x2ef8afff DCIMServices armv7s <a7b9b19949bb32c9bba9a611e02ce019> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices 0x2ef8b000 - 0x2efd0fff DataAccess armv7s <b9189af789f63aec8243b4ca3ac01e50> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess 0x2f1c2000 - 0x2f1e3fff DataAccessExpress armv7s <c9b406347afd31ea845ffa8b10bfe638> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x2f221000 - 0x2f227fff DataMigration armv7s <d72331f6c5033c4f9dcf147951d884fe> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x2f231000 - 0x2f232fff DiagnosticLogCollection armv7s <e8459bc8a9083c67903d2a866f014f20> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x2f233000 - 0x2f24dfff DictionaryServices armv7s <fea98879f6fe3eedb0caff8bc1c74c19> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices 0x2f26c000 - 0x2f28bfff EAP8021X armv7s <c8efe116c7e93e538baa288d667e56b9> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x2f38b000 - 0x2f38dfff FTClientServices armv7s <1c2236ab5e9e3ef4aa1e4c353c87fed6> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x2f38e000 - 0x2f3befff FTServices armv7s <7380e354916d383cbb915cd4f2fa3856> /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x2f3bf000 - 0x2f7e2fff FaceCore armv7s <f3d741379dab3097a5d5f7dc7746450b> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x2f7f5000 - 0x2f800fff FindMyDevice armv7s <9ad460b7e4ab3d13871a95406dd90a1f> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice 0x2f807000 - 0x2f807fff FontServices armv7s <9a72c3a7dce03e4da4a9141ca2dd6afe> /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x2f808000 - 0x2f8dcfff libFontParser.dylib armv7s <298078d166f334daac64f0a8fc082740> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x2f8dd000 - 0x2f8e9fff libGSFontCache.dylib armv7s <86e2db581f2632bbbcf73f7d7dd82b25> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x2f9cc000 - 0x2f9e7fff FrontBoardServices armv7s <a9c1b4d32242349ba2e841a9365bb4d6> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x2ff50000 - 0x2ff57fff libGPUSupportMercury.dylib armv7s <3b7ce33618eb30758545636f2c9bab5b> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib 0x2ff58000 - 0x2ffe1fff GameCenterFoundation armv7s <a0787e79def336e48215f62f71d5b079> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation 0x3007d000 - 0x300c7fff GameCenterUI armv7s <791be3cf4d3f35d3959ddcb87c61a081> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI 0x300c8000 - 0x30204fff AVConference armv7s <a18d952265313d7f88b34e7b1f8d1a19> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference 0x30217000 - 0x3023cfff ICE armv7s <c95b0fbd256a3c658ad54fad8b9773a7> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE 0x3023d000 - 0x3023dfff LegacyHandle armv7s <3872eac944b839eca2fb0a526ebbc8f3> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle 0x3023e000 - 0x30246fff SimpleKeyExchange armv7s <b15b43e96d753463b03925b7b0b6c15f> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange 0x30247000 - 0x30252fff ViceroyTrace armv7s <b254791c7f5e327b9a94f143bbfe2cc2> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace 0x30253000 - 0x30254fff snatmap armv7s <202cb136223035b38c57398896017ef8> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap 0x30255000 - 0x302d0fff GameKitServices armv7s <6b134ad4ce3d3548bf55ef0af5d3e4f3> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices 0x302d1000 - 0x302e7fff GenerationalStorage armv7s <fd0d9502e8b930c0a83fb9f55b8f5bc0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x302e8000 - 0x30556fff GeoServices armv7s <cd5710c5b90e3cc7a31a885017926a8c> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x30557000 - 0x30567fff GraphicsServices armv7s <807dd07abf423685a095efc23cf878e6> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x30604000 - 0x30653fff Heimdal armv7s <58a72b3de54e34979932537c644b7a13> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x306e9000 - 0x30769fff HomeSharing armv7s <37e0ffe3208a3411969286443a982a47> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x307c8000 - 0x3081efff IDS armv7s <962f25e28f4538fb9f0f79f5ce052784> /System/Library/PrivateFrameworks/IDS.framework/IDS 0x3081f000 - 0x30844fff IDSFoundation armv7s <71fcf26834ee3cd889fcabd6ba2d334b> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x308ac000 - 0x3095bfff IMCore armv7s <edd61ecfe4c73fc1aac03efe699b835d> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x309f5000 - 0x30a59fff IMFoundation armv7s <9adf83a51b0c343fbc8f6ae83c20c48e> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x30a61000 - 0x30a64fff IOAccelerator armv7s <00ddf61f19b433e69c512e02a58d0cfb> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x30a67000 - 0x30a6dfff IOMobileFramebuffer armv7s <7802a882e8083e6b9009c738250284a8> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x30a6e000 - 0x30a73fff IOSurface armv7s <8f9e1eaef9e83344ad4f902ba102b27c> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface 0x30a74000 - 0x30a75fff IOSurfaceAccelerator armv7s <ba79f1c8cddd3d04bcec3ca169cc33ab> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x30abe000 - 0x30b0afff ImageCapture armv7s <715487665d0334c5bcaeae31b6dd8d6a> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture 0x30b0b000 - 0x30b10fff IncomingCallFilter armv7s <2a7b0ddce2b43f1ea867b86cd3c149fb> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x30b11000 - 0x30b17fff IntlPreferences armv7s <8956cc5bc6a5356382efce9a3e4cf272> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x30b18000 - 0x30b4efff LanguageModeling armv7s <617f48d1df753057b1ff2cb2b2591d92> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x30bad000 - 0x30bbbfff LegacyGameKit armv7s <2df4b75e91623e0d9729200b8270a854> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit 0x30bc9000 - 0x30c05fff MIME armv7s <821fbb5da7833c74ac059139f7338134> /System/Library/PrivateFrameworks/MIME.framework/MIME 0x30c06000 - 0x30c60fff MMCS armv7s <390d630ff90035249509ba443c4c7e67> /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x30ca9000 - 0x30cb5fff MailServices armv7s <f501cb8373dc3e1ebdbd730a30ff43cb> /System/Library/PrivateFrameworks/MailServices.framework/MailServices 0x30ce9000 - 0x30d89fff ManagedConfiguration armv7s <50edbe379e7f3a9e83243b6a5372859f> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x30d94000 - 0x30d95fff Marco armv7s <09420526cff03e688f97faf606b96de8> /System/Library/PrivateFrameworks/Marco.framework/Marco 0x30d96000 - 0x30e0efff MediaControlSender armv7s <20b518e1cdff3d9986f6a91a84af2bf9> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender 0x30ead000 - 0x30ebffff MediaRemote armv7s <dfddd830f9c034e289d51d656eb82628> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x30ec0000 - 0x30ecffff MediaServices armv7s <ba8bb55e7d6f3951b0adb798ba51f98b> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x30ed0000 - 0x30ee8fff MediaStream armv7s <b270235223e23daeaa5ad6acd442f6aa> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x30ee9000 - 0x30f41fff IMAP armv7s <938fbb7d1126365e83ce762afdb7e9db> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP 0x30f4d000 - 0x3102afff Message armv7s <1dce99c17ce3358aa773e10f776b174d> /System/Library/PrivateFrameworks/Message.framework/Message 0x31030000 - 0x31032fff MessageSupport armv7s <8bf824d77f553c2b8a2e98295eb37d98> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport 0x31044000 - 0x31051fff MobileAsset armv7s <8847bd961f1e35e3b1cc963f17895b5b> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x31055000 - 0x31077fff MobileBackup armv7s <16d3546419373fc186be60090542118b> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x31078000 - 0x31081fff MobileBluetooth armv7s <cb9d17030ddb3679b2193d52f7648083> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x3108c000 - 0x3109cfff MobileDeviceLink armv7s <871918a36839374a8940bea79d5bd16e> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x3109d000 - 0x310a4fff MobileIcons armv7s <8e7cdc636e953a588be271a423b03efe> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x310a5000 - 0x310acfff MobileInstallation armv7s <a9f2d7b7aea63a7ca813b247b95ef720> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x310ad000 - 0x310b9fff MobileKeyBag armv7s <e4fc8c5d19473a7cbf6ae7ee4c8685a3> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x310e6000 - 0x310e9fff MobileSystemServices armv7s <6fa5a3df99f739e58e459b30cebeaf34> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x3110b000 - 0x31118fff MobileWiFi armv7s <886de9dcb26e3c0989e59406ce04b8cc> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x31157000 - 0x312f7fff MusicLibrary armv7s <7426a16d669e3261b3d7183b5dacf589> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x31390000 - 0x31395fff Netrb armv7s <ca8684d1f44a31398abae040a385d3a1> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x31396000 - 0x3139cfff NetworkStatistics armv7s <47347e706754339aa423c08cb5197a18> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x3139d000 - 0x313bafff Notes armv7s <74b03c7ed26133009f5a984f0aaf7037> /System/Library/PrivateFrameworks/Notes.framework/Notes 0x313bb000 - 0x313bffff NotificationsUI armv7s <9241a56b20cc3ff0831013c9217b09cf> /System/Library/PrivateFrameworks/NotificationsUI.framework/NotificationsUI 0x313c0000 - 0x313c2fff OAuth armv7s <7b2d1b1ae32b356aacf24ae8ebf4304a> /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x31b1d000 - 0x31b59fff OpenCL armv7s <e8059b12720532f8863300a5bf142bf4> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL 0x31c4b000 - 0x31c72fff PersistentConnection armv7s <a2ce4a23e4323ba9ade4407ce9b792d7> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x31c7c000 - 0x31cfcfff PhotoEditSupport armv7s <ff4305f528f532168842b273014ede59> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport 0x31cfd000 - 0x31ddcfff PhotoLibrary armv7s <27622d58836f3a0da887908e6b21cf36> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary 0x31ddd000 - 0x32047fff PhotoLibraryServices armv7s <633fee7b12fc30f382fae7c7e27a19b3> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices 0x32048000 - 0x32051fff PhotosFormats armv7s <ae8bc9da18d538a79e341c4435fd7e7c> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats 0x32052000 - 0x3209cfff PhysicsKit armv7s <9f71e08bcc233c779fac8e6eeebdeaa4> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x3209d000 - 0x320b3fff PlugInKit armv7s <8644b7f9f6803423ab22ab1c54623d18> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x320b4000 - 0x320bbfff PowerLog armv7s <ba28696e76f73078a96b0eda0e35a4d2> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x322b9000 - 0x32361fff Preferences armv7s <47b04fea8df43028960a2cbec1d259fc> /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x32362000 - 0x3239ffff PrintKit armv7s <1b458ab8943b3482b940cf1ad77a30fd> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit 0x323a0000 - 0x323a3fff ProgressUI armv7s <fe228c61ba2930bbb01b77d36a74c788> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI 0x323a4000 - 0x32438fff ProofReader armv7s <8b4604af458d314f8e6804905289198f> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x32439000 - 0x32448fff ProtectedCloudStorage armv7s <8e87f115ece83de1be412b9650bdddcc> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x32449000 - 0x32455fff ProtocolBuffer armv7s <2190f9afee593716aea383b31dda60cf> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x32456000 - 0x32487fff PrototypeTools armv7s <d146657585f13e2d956f4da61c179a9f> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x32488000 - 0x324f7fff Quagga armv7s <17a48ce11d7635f2a45608f76c4ab3b2> /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x32656000 - 0x32691fff RemoteUI armv7s <576661b887a93f2297fe75ad9ba4a37c> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI 0x3270a000 - 0x32796fff SAObjects armv7s <80d7196f58b3332b9fd188a51c34f602> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x32940000 - 0x32972fff SpringBoardFoundation armv7s <a6a9badc122b3f92a8b96f012dbf0d25> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation 0x32973000 - 0x3298dfff SpringBoardServices armv7s <fe229a8f18d1308c87e7876cf1a76b26> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x3298e000 - 0x329a0fff SpringBoardUI armv7s <2637f3238e1539cb927cd7766902d328> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI 0x329a1000 - 0x329c4fff SpringBoardUIServices armv7s <6b1d4907280537e0bffbcc7b4e75a9e6> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices 0x32cf9000 - 0x32e12fff StoreServices armv7s <b9b70b9d54c23949911d2bdd140ff844> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x32ee3000 - 0x32ee5fff TCC armv7s <9e7af4ada9a3336abe1b382dd6d53fb7> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x32ee6000 - 0x32f2bfff TelephonyUI armv7s <988c26edc6c33f1da2e59f6161517be4> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI 0x32f2c000 - 0x32f69fff TelephonyUtilities armv7s <c6a859a44b6e31deb2c57a0d950159b2> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x33b2d000 - 0x33b55fff TextInput armv7s <701e5ac6c13c3ac183ea89e54536772c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x33b99000 - 0x33baffff ToneLibrary armv7s <1c71afda17fa379a94f1b94ed0c7dada> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x33c09000 - 0x33ccbfff UIFoundation armv7s <858f32be87783367a89a2b7e129b8952> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x33ce8000 - 0x33cebfff UserFS armv7s <cf10fe6f6db23fadaefc104e93657562> /System/Library/PrivateFrameworks/UserFS.framework/UserFS 0x33d04000 - 0x3424bfff VectorKit armv7s <0d9bfb7befce3136b21e40c94574294c> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x3424c000 - 0x34370fff VideoProcessing armv7s <276a072bcde7384ca1771fa459453e04> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing 0x34471000 - 0x3448ffff VoiceServices armv7s <aa1472c70e3733ffa2248a7b958a4489> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x34519000 - 0x3453ffff WebBookmarks armv7s <8871fd988fff3793b0fb377497cfe31b> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x34555000 - 0x350d4fff WebCore armv7s <67a8356d4f313e4198757228d021c9fd> /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x350d5000 - 0x35193fff WebKitLegacy armv7s <f0cf0db107023b4594f08244df23d4cb> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x352f9000 - 0x352f9fff WirelessCoexManager armv7s <1c22472daa5d3893b2a7c5459d4b48c5> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager 0x352fa000 - 0x3531bfff WirelessDiagnostics armv7s <5075a3652c2636da99e358bc7097c82f> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x3532e000 - 0x35334fff XPCKit armv7s <12925358d4923c7fb0affbc34b79a470> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit 0x35335000 - 0x3533dfff XPCObjects armv7s <e2394741dd3333338d1c15a983b769a3> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects 0x35522000 - 0x35527fff iAdServices armv7s <8dc589e40d9b360bbeb9b7caa698bf42> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices 0x35528000 - 0x3554cfff iCalendar armv7s <f76c5b909b023e979cb8e3afab36016a> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x35558000 - 0x3556bfff iPhotoMigrationSupport armv7s <01858c0e661733aa87929e25a7c99d8d> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport 0x3556c000 - 0x355a7fff iTunesStore armv7s <ec68650298b1300aa829b3407759c13b> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x35adf000 - 0x35aeefff libAWDProtobufFacetimeiMessage.dylib armv7s <de8f29ea2ade376893506da44b7fa2c2> /usr/lib/libAWDProtobufFacetimeiMessage.dylib 0x35bcc000 - 0x35bd2fff libAWDSupportConfig.dylib armv7s <769860df4fbd37568b2767adc99e0953> /usr/lib/libAWDSupportConfig.dylib 0x35bd3000 - 0x35d14fff libAWDSupportFramework.dylib armv7s <0ceab6b2c48b329ca287cae60d2794a5> /usr/lib/libAWDSupportFramework.dylib 0x35d15000 - 0x35d16fff libAWDSupportInfo.dylib armv7s <48deae4935c93faf9487e16cd528fbd6> /usr/lib/libAWDSupportInfo.dylib 0x35d20000 - 0x35d28fff libAccessibility.dylib armv7s <565775eb36823dc2b2248a5a8d9a2be3> /usr/lib/libAccessibility.dylib 0x35f7c000 - 0x35f92fff libCRFSuite.dylib armv7s <e4534db5eb4d3f078ddb2cb62fd8073b> /usr/lib/libCRFSuite.dylib 0x35fc4000 - 0x360c8fff libFosl_dynamic.dylib armv7s <9639376d833a3b24b4f7167bdf22a70f> /usr/lib/libFosl_dynamic.dylib 0x360e0000 - 0x360e1fff libMobileCheckpoint.dylib armv7s <7fc030a7576f30c1bbf70080b5963b21> /usr/lib/libMobileCheckpoint.dylib 0x360e2000 - 0x360f9fff libMobileGestalt.dylib armv7s <5ccfd8d8aba13c54b78d603f316e755c> /usr/lib/libMobileGestalt.dylib 0x360fa000 - 0x36102fff libMobileGestaltExtensions.dylib armv7s <abb853ee5cfa34c59f9e2757f9d98a57> /usr/lib/libMobileGestaltExtensions.dylib 0x3611f000 - 0x36120fff libSystem.B.dylib armv7s <c7ada6fbe9a53d4197826cac16e62c03> /usr/lib/libSystem.B.dylib 0x36191000 - 0x361d5fff libTelephonyUtilDynamic.dylib armv7s <581e3f889083319eaa70746f31edc766> /usr/lib/libTelephonyUtilDynamic.dylib 0x362e5000 - 0x36307fff libarchive.2.dylib armv7s <792c5bc64510315987f1aa4a372aa6f1> /usr/lib/libarchive.2.dylib 0x36308000 - 0x36308fff libassertion_extension.dylib armv7s <6a63713be9c33cd78fa2bd03211ce434> /usr/lib/libassertion_extension.dylib 0x36337000 - 0x36343fff libbsm.0.dylib armv7s <6e0989fbae0a3d08855ed402ed0b3ec0> /usr/lib/libbsm.0.dylib 0x36344000 - 0x3634dfff libbz2.1.0.dylib armv7s <a2f10a1138b93aafa9afe26bd6e1ee48> /usr/lib/libbz2.1.0.dylib 0x3634e000 - 0x36398fff libc++.1.dylib armv7s <dd79b1e22f583393b9c2b1763224dbd4> /usr/lib/libc++.1.dylib 0x36399000 - 0x363b4fff libc++abi.dylib armv7s <174873ad6dbb39bab97eab06da2d3098> /usr/lib/libc++abi.dylib 0x363b6000 - 0x363c3fff libcmph.dylib armv7s <bb3fc6a6155e36fcb49d395717f7d3f4> /usr/lib/libcmph.dylib 0x363f3000 - 0x3640bfff libextension.dylib armv7s <a95c14b6593e31bca3b5dd619a2fd896> /usr/lib/libextension.dylib 0x3642a000 - 0x3642dfff libheimdal-asn1.dylib armv7s <2ce45d01e91b33fb8146a57394c85ded> /usr/lib/libheimdal-asn1.dylib 0x3642e000 - 0x3651bfff libiconv.2.dylib armv7s <58eb4155c7b0357b833c49ea04d3bdc1> /usr/lib/libiconv.2.dylib 0x3651c000 - 0x3668afff libicucore.A.dylib armv7s <e0938b0f43c336099be58eae9587cfa7> /usr/lib/libicucore.A.dylib 0x36697000 - 0x36697fff liblangid.dylib armv7s <bb40f8ac13c0315a9d10feecc233bf75> /usr/lib/liblangid.dylib 0x36698000 - 0x366a2fff liblockdown.dylib armv7s <5238bf4a0815339ea59625cc1ff666aa> /usr/lib/liblockdown.dylib 0x366a3000 - 0x366b8fff liblzma.5.dylib armv7s <ffcd1c45b6fb3fdb8264a8673e9049b2> /usr/lib/liblzma.5.dylib 0x36a32000 - 0x36a46fff libmis.dylib armv7s <d12e6275fe133b8b9fa891bf1881c936> /usr/lib/libmis.dylib 0x36a71000 - 0x36c6bfff libobjc.A.dylib armv7s <2f24d570e8253da29e77c4104a66ffff> /usr/lib/libobjc.A.dylib 0x36cc7000 - 0x36d1ffff libprotobuf.dylib armv7s <71c85db137353e17b8a266ae73a1bdda> /usr/lib/libprotobuf.dylib 0x36d20000 - 0x36d36fff libresolv.9.dylib armv7s <d93a4f7847a43b9c931dd9f42398d889> /usr/lib/libresolv.9.dylib 0x36d61000 - 0x36e07fff libsqlite3.dylib armv7s <3f8122a2ef1a3ac6a576b5f77e3b485b> /usr/lib/libsqlite3.dylib 0x36e08000 - 0x36e54fff libstdc++.6.dylib armv7s <4644d4ed8bef3d2fb9b613da6972d010> /usr/lib/libstdc++.6.dylib 0x36e55000 - 0x36e7bfff libtidy.A.dylib armv7s <2637f8b2b9b339ad98b40939155b904e> /usr/lib/libtidy.A.dylib 0x36e7c000 - 0x36e84fff libtzupdate.dylib armv7s <cc59d1cd15f33b1a8d40966fe0ee5d94> /usr/lib/libtzupdate.dylib 0x36e88000 - 0x36f3efff libxml2.2.dylib armv7s <1ceb60da13db36a495e91fd985c5d6f9> /usr/lib/libxml2.2.dylib 0x36f3f000 - 0x36f60fff libxslt.1.dylib armv7s <7dd0493e5d1e32dd80542e22a0ee118f> /usr/lib/libxslt.1.dylib 0x36f61000 - 0x36f6dfff libz.1.dylib armv7s <fd35952ab6623a8484e1573481685182> /usr/lib/libz.1.dylib 0x36f6e000 - 0x36f72fff libcache.dylib armv7s <f3c6b77f893a39c2b7df1f1ecf41d06f> /usr/lib/system/libcache.dylib 0x36f73000 - 0x36f7cfff libcommonCrypto.dylib armv7s <0a15a7c1f73d302da2cd7e4e2acfeed2> /usr/lib/system/libcommonCrypto.dylib 0x36f7d000 - 0x36f81fff libcompiler_rt.dylib armv7s <d91d7ecc118d3a1c99881923af73f7c6> /usr/lib/system/libcompiler_rt.dylib 0x36f82000 - 0x36f88fff libcopyfile.dylib armv7s <c953910ab8d23efeb8b90cff82bff8d4> /usr/lib/system/libcopyfile.dylib 0x36f89000 - 0x36fd5fff libcorecrypto.dylib armv7s <6dce6a7c47a933ccba76429c3ef0f3f4> /usr/lib/system/libcorecrypto.dylib 0x36fd6000 - 0x36ff5fff libdispatch.dylib armv7s <a5361c5ac5153f018479723123b27118> /usr/lib/system/libdispatch.dylib 0x36ff6000 - 0x36ff7fff libdyld.dylib armv7s <abf0be77659a3f3a8e5538115d8797d8> /usr/lib/system/libdyld.dylib 0x36ff8000 - 0x36ff8fff libkeymgr.dylib armv7s <6858de0933f535b2b8c03033a7ad58c4> /usr/lib/system/libkeymgr.dylib 0x36ff9000 - 0x36ff9fff liblaunch.dylib armv7s <2358a0a01e893ffb8b45c950c7dab2c8> /usr/lib/system/liblaunch.dylib 0x36ffa000 - 0x36ffdfff libmacho.dylib armv7s <09c925ce076b39a7974c8001e775c815> /usr/lib/system/libmacho.dylib 0x36ffe000 - 0x36ffffff libremovefile.dylib armv7s <7f08307630a638aab800041abeb06720> /usr/lib/system/libremovefile.dylib 0x37000000 - 0x37011fff libsystem_asl.dylib armv7s <d26d22e53561376ea2e8d5f0a56bdc19> /usr/lib/system/libsystem_asl.dylib 0x37012000 - 0x37012fff libsystem_blocks.dylib armv7s <3d575aee5d8c306187d695801c94d400> /usr/lib/system/libsystem_blocks.dylib 0x37013000 - 0x37076fff libsystem_c.dylib armv7s <415dbd55796d3413819f59ee8acebda2> /usr/lib/system/libsystem_c.dylib 0x37077000 - 0x37079fff libsystem_configuration.dylib armv7s <22243b8824ea3e3b86ce85a2d9e21f3b> /usr/lib/system/libsystem_configuration.dylib 0x3707a000 - 0x3707bfff libsystem_coreservices.dylib armv7s <f1690e04a8923f06b042472fcd8a2210> /usr/lib/system/libsystem_coreservices.dylib 0x3707c000 - 0x37088fff libsystem_coretls.dylib armv7s <d1a9bfd5baa134d8b17745ad81804b95> /usr/lib/system/libsystem_coretls.dylib 0x37089000 - 0x3708ffff libsystem_dnssd.dylib armv7s <28cfa66349643550ad2e24ac3069e377> /usr/lib/system/libsystem_dnssd.dylib 0x37090000 - 0x370a8fff libsystem_info.dylib armv7s <a93d1391edb63969b454c858bb8cc703> /usr/lib/system/libsystem_info.dylib 0x370a9000 - 0x370c3fff libsystem_kernel.dylib armv7s <45e3ed93e1a33ac9852af0288ce245dd> /usr/lib/system/libsystem_kernel.dylib 0x370c4000 - 0x370e3fff libsystem_m.dylib armv7s <f791d0269b5a3bc096e6a485c5aa5b07> /usr/lib/system/libsystem_m.dylib 0x370e4000 - 0x370f6fff libsystem_malloc.dylib armv7s <4e9efa8dc6553875a5f86408e609c98b> /usr/lib/system/libsystem_malloc.dylib 0x370f7000 - 0x37124fff libsystem_network.dylib armv7s <1167f78e6cab3ac486123f44bd0df0b1> /usr/lib/system/libsystem_network.dylib 0x37125000 - 0x3712afff libsystem_networkextension.dylib armv7s <a2863a93bdc336418872c0799d243391> /usr/lib/system/libsystem_networkextension.dylib 0x3712b000 - 0x37132fff libsystem_notify.dylib armv7s <042ef512d24a36028b5c4bf6879946bd> /usr/lib/system/libsystem_notify.dylib 0x37133000 - 0x37137fff libsystem_platform.dylib armv7s <ce04793612513649b79fc416b36fe49b> /usr/lib/system/libsystem_platform.dylib 0x37138000 - 0x3713efff libsystem_pthread.dylib armv7s <f0f1af3aede7377c97f267bbbe418fc0> /usr/lib/system/libsystem_pthread.dylib 0x3713f000 - 0x37141fff libsystem_sandbox.dylib armv7s <63f8b7071a7c329ca4867414c984648b> /usr/lib/system/libsystem_sandbox.dylib 0x37142000 - 0x37145fff libsystem_stats.dylib armv7s <584d89930b6332769ddcbb2f4cf98fd7> /usr/lib/system/libsystem_stats.dylib 0x37146000 - 0x3714bfff libsystem_trace.dylib armv7s <140f164e68ef337cb646fcad5330dab0> /usr/lib/system/libsystem_trace.dylib 0x3714c000 - 0x3714cfff libunwind.dylib armv7s <30325f86e7963864ac1f6aa575608725> /usr/lib/system/libunwind.dylib 0x3714d000 - 0x37168fff libxpc.dylib armv7s <e83f44ac48af3662929efb7538661bb3> /usr/lib/system/libxpc.dylib

The fact is that in my iPad (iOS 8.1.2) all its working perfectly.

In my build settings there is that in my plist after some searching:

CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS7LandscapeOnlyWorkaround = true, CoronaUseIOS6LandscapeOnlyWorkaround = true,

I tried to add (hope that it exist as nowhere was write) a similar thing for ios8 but still not work. Now i call for my girlfriend and i look up if is working in her device with iOS 7.1.2 and i make you know.

How I resolve that problem?

Regards,

Girolamo

UPDATE In my girlfriend phone crash too.

UPDATE:

I try to compile with a previous daily build. And as magic it work perfectly! So there are some problem in your last daily build. Please check and fix it.

I’m really nervous about all that shitty bugs. I can understand that is not easy to handle all that issues but i didn’t pay 500 dollars for beeing your debugger!

Since I pass to the pro version I work more day to find a way to overpass your bugs from work to my own project and I’m starting to be quite nervous about that. You have request the full payment for one year, so work and act professional for that request!

Regards,

Girolamo

Hello @Girolamo,

We appreciate you posting your code and error logs, but can we see also the contents of both your “config.lua” and your “build.settings” files?

Also, which specific daily build did these errors begin showing? And which earlier build were these errors not occurring?

Thanks,

Brent

CoronaSDK 2014.2524 -> With that one not work for sure!

CoronaSDK 2014.2520 -> With that work

Config.lua:

if ( string.sub( system.getInfo("model"), 1, 4 ) == "iPad" ) then \_G.Device="ipad" -- ipad application = { content = { width = 360, height = 480, scale = "letterBox", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }, } elseif ( string.sub( system.getInfo("model"), 1, 2 ) == "iP" and display.pixelHeight \> 960 ) then \_G.Device="iphone5" -- iphone 5 application = { content = { width = 320, height = 568, scale = "letterBox", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }, } elseif ( string.sub( system.getInfo("model"), 1, 2 ) == "iP" ) then \_G.Device="iphone4" -- iphone 4 application = { content = { width = 320, height = 480, scale = "letterBox", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }, } elseif ( display.pixelHeight / display.pixelWidth \> 1.72 ) then \_G.Device="android\_16:9" -- android 16:9 application = { content = { width = 320, height = 570, scale = "letterBox", xAlign = "center", yAlign = "center", }, } else \_G.Device="android" -- android application = { content = { width = 320, height = 512, scale = "letterBox", xAlign = "center", yAlign = "center", }, } end 

Build.Settings:

-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "landscapeRight", supported = { "landscapeRight"}, }, plugins = { ["facebook"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, ["iphone-sim"]=false }, }, -- key is the name passed to Lua's 'require()' ["plugin.carrot"] = { -- required publisherId = "com.gocarrot", }, }, iphone = { plist = { CFBundleIconFiles = { "icon@2x.png", "icon-Small-40.png", "icon-Small-40@2x.png", "icon-60.png", "icon-60@2x.png", "icon-72.png", "icon-72@2x.png", "icon-76.png", "icon-76@2x.png", "icon-Small-50.png", "icon-Small-50@2x.png", "icon-Small.png", "icon-Small@2x.png" }, UIStatusBarHidden = true, UIPrerenderedIcon = true, -- set to false for "shine" overlay CFBundleShortVersionString = "1.0", UIAppFonts = { "Apple-Chancery.ttf" }, CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS7LandscapeOnlyWorkaround = true, CoronaUseIOS6LandscapeOnlyWorkaround = true, UIApplicationExitsOnSuspend = false, FacebookAppID = "1428180157442377", CFBundleURLTypes = { { CFBundleURLSchemes = { "fbxxxxxxxxxxxxxxx", } } } } }, -- For Android, the internet permission is required android = { usesPermissions = { "android.permission.INTERNET", "android.permission.CAMERA", "android.permission.WRITE\_EXTERNAL\_STORAGE", } }, }

Hi Girolamo,

As the first step, please remove these lines. They are not necessary in the most recent builds.

CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true,

CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true,

CoronaUseIOS7LandscapeOnlyWorkaround = true,

CoronaUseIOS6LandscapeOnlyWorkaround = true,

If the issue still occurs, we can attempt to diagnose further.

Take care,

Brent

Hi,

still occurs,

Regards,

Girolamo

Hi Girolamo,

OK, thank you. Can you now please build our sample project which uses these APIs? We need to confirm that it’s not some issue with your code. The project is located in your local Corona application folder here:

CoronaSDK > SampleCode > Media > PhotoPicker

Please test this on both build numbers that you mention and tell me the results.

Thank you,

Brent

I found the same problem in iOS8 device,but the sample code is work fine.

and my code in iOS7 work fine too.

Hello,

At this time, we will require a bug submission which shows this issue. Can somebody in this topic please submit one along with a small sample project which shows the problem?

http://developer.coronalabs.com/content/bug-submission

Thank you,

Brent

I found the solution by add delay 100 ms before call mediaCapture, It’s work both capturePhoto and media.selectPhoto in iOS8 device.

local function cameraListener(enent) local function timerListener(event) if media.hasSource( media.Camera ) then media.capturePhoto( { listener = onComplete, destination = { baseDir = system.CachesDirectory, filename = "take-photo.jpg", type = "image" } } ) else native.showAlert( "Corona", "This device does not have a camera.", { "OK" } ) end end timer.performWithDelay( 100, timerListener ) return true end cameraBtn:addEventListener( "tap", cameraListener )

Hi @mongkon6,

I tested your code without the timer delay, and there was no crash (everything works as expected). My testing device was an iPhone 5 running iOS 8.1.2. So, I consider this issue resolved, because I cannot replicate any crash, with or without the 100 ms timer.

Take care,

Brent

Hi,

its me again. By the last daily build my media.* library is not working anymore! This is my code:
 

local function SceltaSource( event ) if “clicked” == event.action then local i = event.index if 1 == i then print(“CAMERA”) if ( media.hasSource( media.Camera ) ) then print(count … " = count") count = count + 1 print(count … " = count") ---- CRASH HERE media.capturePhoto( { listener = onPhotoComplete, destination = { baseDir = system.DocumentsDirectory, filename = preference.getValue(“idUser”)…count…".jpg", type = “image” } } ) else native.showAlert( “Corona”, “This device does not have a camera.”, { “OK” } ) end elseif 2 == i then print(“LIBRERIA”) if media.hasSource( media.SavedPhotosAlbum ) then count = count + 1 – CRASH HERE media.selectPhoto( { mediaSource = media.SavedPhotosAlbum, listener = onPhotoComplete, destination = { baseDir = system.DocumentsDirectory, filename = preference.getValue(“idUser”)… count …".jpg", type = “image” } } ) else native.showAlert( “Corona”, “This device does not have a photo library.”, { “OK” } ) end else print(“ANULLA do nothing”) end end return true end onphotoBtnRelease = function(event) local phase = event.phase if phase == “ended” then native.showAlert( “Photo”, “Modifica Foto profilo”,{ “Scatta”,“Libreria”, “Annulla”}, SceltaSource ) end return true – indicates successful touch end photoBtn = widget.newButton{ baseDir = system.DocumentsDirectory, defaultFile = preference.getValue(“idUser”)…count…".jpg", width = 120, height = 120, onEvent = onphotoBtnRelease } photoBtn.x = display.contentWidth*0.175 photoBtn.y = display.contentHeight*0.225 group:insert( photoBtn )

On the emulator and ios Simulator of xCode its working without any problem, but on my device (iPhone5s iOS 8.1.2) and one my friend one (iPhone 8.1.1) it crash where I write in the code with that log (from the device of my friend, in mine is the same error): 

attachicon.gifSchermata 2014-12-22 alle 10.34.42.png

And this is the crash log:

Incident Identifier: DFDA1AA9-CD45-47DC-AD81-F7C155CC2C0A CrashReporter Key: 0ace867bc1348108bee0649f5d1e1416c1c14561 Hardware Model: iPhone6,2 Process: Wherewolf [232] Path: /private/var/mobile/Containers/Bundle/Application/480D2C17-D000-481D-ADF7-9A3825EDE0EB/Wherewolf.app/Wherewolf Identifier: wherewolfID Version: 2014.12.220930 (1.0) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2014-12-22 09:50:27.393 +0100 Launch Time: 2014-12-22 09:50:18.507 +0100 OS Version: iOS 8.1.2 (12B440) Report Version: 105 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Subtype: EXC_ARM_DA_ALIGN at 0x0000000000000001 Triggered by Thread: 0 Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 CoreFoundation 0x29190975 CFRetain + 9 1 CoreFoundation 0x291ae525 +[__NSArrayI __new:::] + 57 2 CoreFoundation 0x291abb19 -[__NSPlaceholderArray initWithObjects:count:] + 133 3 CoreFoundation 0x291dfb57 +[NSArray arrayWithObjects:] + 271 4 Wherewolf 0x000bb60d 0xa6000 + 87565 5 UIKit 0x2c97b4b3 -[UIApplication setStatusBarOrientation:animationParameters:notifySpringBoardAndFence:] + 235 6 UIKit 0x2c9dd3bd __78-[UIWindow _rotateWindowToOrientation:updateStatusBar:duration:skipCallbacks:]_block_invoke + 265 7 UIKit 0x2cc1f90d __58-[_UIWindowRotationAnimationController animateTransition:]_block_invoke + 33 8 UIKit 0x2cc1f8d1 -[_UIWindowRotationAnimationController animateTransition:] + 413 9 UIKit 0x2c9dc2c9 -[UIWindow _rotateToBounds:withAnimator:transitionContext:] + 757 10 UIKit 0x2c9dd1bd -[UIWindow _rotateWindowToOrientation:updateStatusBar:duration:skipCallbacks:] + 1437 11 UIKit 0x2c9dd677 -[UIWindow _setRotatableClient:toOrientation:applyTransformToWindow:updateStatusBar:duration:force:isRotating:] + 535 12 UIKit 0x2c7c803f -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:isRotating:] + 95 13 UIKit 0x2c7c7fd7 -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:] + 43 14 UIKit 0x2c7c7ea7 -[UIWindow _setRotatableViewOrientation:updateStatusBar:duration:force:] + 115 15 UIKit 0x2c7c7e27 -[UIWindow _setRotatableViewOrientation:duration:force:] + 39 16 UIKit 0x2cdab2cb -[_UIFullscreenPresentationController _adjustOrientationIfNecessaryInWindow:forViewController:preservingViewController:] + 515 17 UIKit 0x2ca1d555 -[UIPresentationController _presentWithAnimationController:interactionController:target:didEndSelector:] + 693 18 UIKit 0x2ca33ad9 -[UIViewController _presentViewController:modalSourceViewController:presentationController:animationController:interactionController:completion:] + 821 19 UIKit 0x2ca34a77 -[UIViewController _presentViewController:withAnimationController:completion:] + 2855 20 UIKit 0x2ca36583 __62-[UIViewController presentViewController:animated:completion:]_block_invoke + 255 21 UIKit 0x2c832adb -[UIViewController presentViewController:animated:completion:] + 191 22 UIKit 0x2ca36717 -[UIViewController presentModalViewController:animated:] + 27 23 Wherewolf 0x000ae777 0xa6000 + 34679 24 Wherewolf 0x000c42b9 0xa6000 + 123577 25 Wherewolf 0x0013ac2b 0xa6000 + 609323 26 Wherewolf 0x001193c1 0xa6000 + 472001 27 Wherewolf 0x00126205 0xa6000 + 524805 28 Wherewolf 0x0011959b 0xa6000 + 472475 29 Wherewolf 0x00127085 0xa6000 + 528517 30 Wherewolf 0x001197c9 0xa6000 + 473033 31 Wherewolf 0x00112f69 0xa6000 + 446313 32 Wherewolf 0x0013972f 0xa6000 + 603951 33 Wherewolf 0x0013c7dd 0xa6000 + 616413 34 Wherewolf 0x000d47eb 0xa6000 + 190443 35 UIKit 0x2cadb8c7 -[UIAlertView _prepareToDismissForTappedIndex:] + 167 36 UIKit 0x2cadb4bf __35-[UIAlertView _prepareAlertActions]_block_invoke50 + 31 37 UIKit 0x2cad5cd3 -[UIAlertController _dismissAnimated:triggeringAction:triggeredByPopoverDimmingView:] + 63 38 UIKit 0x2cad5c8b -[UIAlertController _dismissAnimated:triggeringAction:] + 27 39 UIKit 0x2cbb9247 -[_UIAlertControllerActionView touchesEnded:withEvent:] + 159 40 UIKit 0x2c7830e3 -[UIWindow _sendTouchesForEvent:] + 519 41 UIKit 0x2c77c9ad -[UIWindow sendEvent:] + 541 42 UIKit 0x2c753159 -[UIApplication sendEvent:] + 193 43 UIKit 0x2c9c6ab5 _UIApplicationHandleEventFromQueueEvent + 13885 44 UIKit 0x2c751bb5 _UIApplicationHandleEventQueue + 1293 45 CoreFoundation 0x29256d55 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 13 46 CoreFoundation 0x29256163 __CFRunLoopDoSources0 + 215 47 CoreFoundation 0x292547c9 __CFRunLoopRun + 769 48 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 49 CoreFoundation 0x291a21cf CFRunLoopRunInMode + 103 50 GraphicsServices 0x305600a5 GSEventRunModal + 133 51 UIKit 0x2c7b1f9d UIApplicationMain + 1437 52 Wherewolf 0x000adb5f 0xa6000 + 31583 53 libdyld.dylib 0x36ff7aad start + 1 Thread 1 name: Dispatch queue: com.apple.libdispatch-manager Thread 1: 0 libsystem_kernel.dylib 0x370aa2a0 kevent64 + 24 1 libdispatch.dylib 0x36fe39fd _dispatch_mgr_invoke + 277 2 libdispatch.dylib 0x36fd920f _dispatch_mgr_thread + 35 Thread 2: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 3: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 4: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 5 name: com.apple.NSURLConnectionLoader Thread 5: 0 libsystem_kernel.dylib 0x370aa4f0 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x370aa2e5 mach_msg + 37 2 CoreFoundation 0x29256317 __CFRunLoopServiceMachPort + 143 3 CoreFoundation 0x292548bd __CFRunLoopRun + 1013 4 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 5 CoreFoundation 0x291a21cf CFRunLoopRunInMode + 103 6 CFNetwork 0x28d57953 +[NSURLConnection(Loader) _resourceLoadLoop:] + 483 7 Foundation 0x29fa0b57 __NSThread__main__ + 1115 8 libsystem_pthread.dylib 0x3713ae91 _pthread_body + 137 9 libsystem_pthread.dylib 0x3713ae03 _pthread_start + 115 10 libsystem_pthread.dylib 0x37138b8c thread_start + 4 Thread 6 name: com.apple.CFSocket.private Thread 6: 0 libsystem_kernel.dylib 0x370be08c __select + 20 1 CoreFoundation 0x2925aae3 __CFSocketManager + 495 2 libsystem_pthread.dylib 0x3713ae91 _pthread_body + 137 3 libsystem_pthread.dylib 0x3713ae03 _pthread_start + 115 4 libsystem_pthread.dylib 0x37138b8c thread_start + 4 Thread 7: 0 libsystem_kernel.dylib 0x370aa4f0 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x370aa2e5 mach_msg + 37 2 CoreFoundation 0x29256317 __CFRunLoopServiceMachPort + 143 3 CoreFoundation 0x292548bd __CFRunLoopRun + 1013 4 CoreFoundation 0x291a23bd CFRunLoopRunSpecific + 473 5 CoreFoundation 0x291eb0e7 CFRunLoopRun + 95 6 CoreMotion 0x29aa5e9b 0x29a66000 + 261787 7 libsystem_pthread.dylib 0x3713ae91 _pthread_body + 137 8 libsystem_pthread.dylib 0x3713ae03 _pthread_start + 115 9 libsystem_pthread.dylib 0x37138b8c thread_start + 4 Thread 8: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 9: 0 libsystem_kernel.dylib 0x370be9cc __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x37138ea9 _pthread_wqthread + 789 2 libsystem_pthread.dylib 0x37138b80 start_wqthread + 4 Thread 0 crashed with ARM Thread State (32-bit): r0: 0x00000001 r1: 0x00000000 r2: 0x154540b8 r3: 0xeb2a72e0 r4: 0x00000001 r5: 0x00000001 r6: 0x14e10bd8 r7: 0x004593dc r8: 0x14e10bd0 r9: 0x14d58d20 r10: 0x00000000 r11: 0x00459420 ip: 0x3949f2b0 sp: 0x004593d4 lr: 0x291ae529 pc: 0x29190974 cpsr: 0x20000030 Binary Images: 0xa6000 - 0x2f5fff Wherewolf armv7 <cef2e54a7c073932a06452299244f4d4> /var/mobile/Containers/Bundle/Application/480D2C17-D000-481D-ADF7-9A3825EDE0EB/Wherewolf.app/Wherewolf 0x1fe0b000 - 0x1fe2efff dyld armv7s <8ffd813a380c333bbd4a25e1dbe05715> /usr/lib/dyld 0x27c9f000 - 0x27d16fff AGXGLDriver armv7s <1286d9ca15c2319d8e1b56f991585d60> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver 0x27d26000 - 0x27e92fff AVFoundation armv7s <23a20af23f733b39b5c87059c080f9f7> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x27e93000 - 0x27ef1fff libAVFAudio.dylib armv7s <e3f677adf77d37baa08716b5d334486f> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib 0x27ef2000 - 0x27f2afff AVKit armv7s <03e0e851a3a0354d8de52085feeaa332> /System/Library/Frameworks/AVKit.framework/AVKit 0x27f2b000 - 0x27f2bfff Accelerate armv7s <3c10ee15d8363fa58b719f2abca91b06> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x27f3c000 - 0x28157fff vImage armv7s <3358de09601333a2881365e5c74c681e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x28158000 - 0x2823efff libBLAS.dylib armv7s <b46b7fd3985f371ca26b10f268965e63> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x2823f000 - 0x28503fff libLAPACK.dylib armv7s <eb228c255d9e349391cd6b227a9d2744> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x28504000 - 0x28515fff libLinearAlgebra.dylib armv7s <d2e989bc1bad320b918c37d3642db4b6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x28516000 - 0x28592fff libvDSP.dylib armv7s <07cf0625bd813336920eb5b62f99be06> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x28593000 - 0x285a5fff libvMisc.dylib armv7s <28f38990063234318631d0d03eced5f1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x285a6000 - 0x285a6fff vecLib armv7s <108b763f155130828fa123813e3ff5f5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x285a7000 - 0x285cdfff Accounts armv7s <a5204dc40d2b3dd0b8603ecf491977c2> /System/Library/Frameworks/Accounts.framework/Accounts 0x285ce000 - 0x285cefff AdSupport armv7s <7d5801dc36bd37fd85c94196efd32155> /System/Library/Frameworks/AdSupport.framework/AdSupport 0x285cf000 - 0x2863ffff AddressBook armv7s <5d6a592fa31e3de09340c5a67cfbe7f3> /System/Library/Frameworks/AddressBook.framework/AddressBook 0x28640000 - 0x28764fff AddressBookUI armv7s <e3ac3ad5b4ad386eac974860b6930983> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI 0x28765000 - 0x28777fff AssetsLibrary armv7s <344c67df52fb32af9f0e85193171b4ed> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 0x288fd000 - 0x28b70fff AudioToolbox armv7s <5d4f5b76b7ab37018df0216d9cb42056> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x28cdb000 - 0x28e63fff CFNetwork armv7s <97db33718ab838fd9f03530d4ba2cd07> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x28e64000 - 0x28ee5fff CloudKit armv7s <a1fd0fc121e234198e795f8a2a45ccdf> /System/Library/Frameworks/CloudKit.framework/CloudKit 0x28ee6000 - 0x28f45fff CoreAudio armv7s <acf1796d96be308e83c2630ffca280fb> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x28f60000 - 0x28f7dfff CoreBluetooth armv7s <74a3a2f1940435bca2ae88fb5353a3fb> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x28f7e000 - 0x29189fff CoreData armv7s <7ee78feaa6fb3d41af493ca96efffe7d> /System/Library/Frameworks/CoreData.framework/CoreData 0x2918a000 - 0x294b7fff CoreFoundation armv7s <5b54383b963a36369b45eaa35c3940be> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x294b8000 - 0x295e2fff CoreGraphics armv7s <7f8833bf31b33242b32bb893c5832f42> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x29622000 - 0x29624fff libCGXType.A.dylib armv7s <668474876a3a3eccbf40f73991769b42> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib 0x29625000 - 0x2962ffff libCMSBuiltin.A.dylib armv7s <f5dee40a6ddf3d98b74647b7a64b5ea6> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib 0x29817000 - 0x29832fff libRIP.A.dylib armv7s <1a68309bd2c3338b8e465de6e6353d9b> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib 0x29833000 - 0x29941fff CoreImage armv7s <f5015bd2f3b6316ab9c185ae9d3eed9b> /System/Library/Frameworks/CoreImage.framework/CoreImage 0x29942000 - 0x29999fff CoreLocation armv7s <a016ba0e465e3342985038c4171da8a2> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x299cb000 - 0x29a65fff CoreMedia armv7s <847dcb4360e73e389e98a442cdab8432> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x29a66000 - 0x29b25fff CoreMotion armv7s <f4b59554f6cd34a1a32bcc132a110e37> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x29b26000 - 0x29b84fff CoreTelephony armv7s <fcb254101e31326f8edd32a9568143fd> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x29b85000 - 0x29c4cfff CoreText armv7s <ebb20deee2663a29ab574d093e5838ab> /System/Library/Frameworks/CoreText.framework/CoreText 0x29c4d000 - 0x29c62fff CoreVideo armv7s <3755b5d4d1a23154a9bb3e497ececab9> /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x29c63000 - 0x29d59fff EventKit armv7s <8bb311d23ac03b45b04977c1edcc24a0> /System/Library/Frameworks/EventKit.framework/EventKit 0x29ed0000 - 0x2a0d2fff Foundation armv7s <6763b485b3b530f5ae7a6b8732110736> /System/Library/Frameworks/Foundation.framework/Foundation 0x2a0d3000 - 0x2a0fefff GLKit armv7s <9782e1b0ea3c30f6bb711eefc2f62dbe> /System/Library/Frameworks/GLKit.framework/GLKit 0x2a0ff000 - 0x2a11efff GSS armv7s <6d8ee1257c6339e0b41c43c5e066636e> /System/Library/Frameworks/GSS.framework/GSS 0x2a12d000 - 0x2a12dfff GameKit armv7s <81f471e687fe3176bc3a54b527fd8848> /System/Library/Frameworks/GameKit.framework/GameKit 0x2a1b2000 - 0x2a208fff IOKit armv7s <a4acf0d246b53114817cfd7a01fe5c0a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x2a209000 - 0x2a44bfff ImageIO armv7s <570ff30dcbb637feae32333345369946> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x2a44c000 - 0x2a79afff JavaScriptCore armv7s <d4e399cede5d380aab72d5aa15e5aa7d> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x2a978000 - 0x2aa76fff MapKit armv7s <54e5afb60ffc3fefa1e28268ecb394ed> /System/Library/Frameworks/MapKit.framework/MapKit 0x2aa77000 - 0x2aa7ffff MediaAccessibility armv7s <fe6d956fb92c34418fcd7e714126a786> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x2aa80000 - 0x2ac59fff MediaPlayer armv7s <eadc2ef9f6713a3fa9135b7ff4b5615e> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x2ac5a000 - 0x2afd4fff MediaToolbox armv7s <d2ce45241f333566a3654e36f3e6f7f9> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x2afd5000 - 0x2b093fff MessageUI armv7s <3af810d8e9233bd7903e5c3b8057fe88> /System/Library/Frameworks/MessageUI.framework/MessageUI 0x2b094000 - 0x2b100fff Metal armv7s <a384b266648830f0af79c6701b4fe29a> /System/Library/Frameworks/Metal.framework/Metal 0x2b101000 - 0x2b190fff MobileCoreServices armv7s <efc1ca21eb923da1bec2db95f7f2ef85> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x2b285000 - 0x2b2b6fff OpenAL armv7s <4ff72cda821834f8b0830c35eb65be59> /System/Library/Frameworks/OpenAL.framework/OpenAL 0x2bb94000 - 0x2bc6bfff GLEngine armv7s <78bae040e7f93e999c99b83b82ce21f0> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine 0x2bc6c000 - 0x2bc74fff OpenGLES armv7s <d9b66d56701b3de8bf8e91d63db07328> /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x2bc76000 - 0x2bc76fff libCVMSPluginSupport.dylib armv7s <2d945076afe83141af65c510e33a05ec> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x2bc77000 - 0x2bc79fff libCoreFSCache.dylib armv7s <ecc01c4cd2aa3cfabe2cb655e944d675> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x2bc7a000 - 0x2bc7dfff libCoreVMClient.dylib armv7s <f9bbda54797d3b119f02b904b5b616b8> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x2bc7e000 - 0x2bc86fff libGFXShared.dylib armv7s <38da2ef7476f3e06a684c7d23e32b5d6> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x2bc87000 - 0x2bcc9fff libGLImage.dylib armv7s <226b647182f731399ce2ffa4ac908466> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x2bcca000 - 0x2be05fff libGLProgrammability.dylib armv7s <ed640a445eaf3206a43975b9db330fb2> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib 0x2bed1000 - 0x2bf44fff Photos armv7s <d3bdfc9b48ec32b29edafe4f66162cba> /System/Library/Frameworks/Photos.framework/Photos 0x2bf45000 - 0x2c168fff PhotosUI armv7s <a7b709da40a5372fa7d7567db7756f02> /System/Library/Frameworks/PhotosUI.framework/PhotosUI 0x2c16c000 - 0x2c2befff QuartzCore armv7s <d981d03747623398a3c7e252ad058785> /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x2c2bf000 - 0x2c312fff QuickLook armv7s <318bf310635a37edb9f1124050a05e2c> /System/Library/Frameworks/QuickLook.framework/QuickLook 0x2c501000 - 0x2c541fff Security armv7s <34011e368d3137919066d6213dc94f32> /System/Library/Frameworks/Security.framework/Security 0x2c542000 - 0x2c5bafff Social armv7s <7000906e82d9397d998c4f0b63018e61> /System/Library/Frameworks/Social.framework/Social 0x2c6cf000 - 0x2c6e4fff StoreKit armv7s <52672ade371532b793bd8799f1c28aa1> /System/Library/Frameworks/StoreKit.framework/StoreKit 0x2c6e5000 - 0x2c741fff SystemConfiguration armv7s <f40e0ecca37c3f8cb107976317fa6250> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x2c742000 - 0x2c743fff Twitter armv7s <ca9f51b21b1d3312867ed0a50dcec3e3> /System/Library/Frameworks/Twitter.framework/Twitter 0x2c744000 - 0x2cfe6fff UIKit armv7s <94d79df43f8a3b519b7fbf2ca102b4ea> /System/Library/Frameworks/UIKit.framework/UIKit 0x2cfe7000 - 0x2d04efff VideoToolbox armv7s <686a2e23c1aa38e8a6d717efccf6e06d> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x2d04f000 - 0x2d234fff WebKit armv7s <936e95a9c2a4308abd088fae9e8902b2> /System/Library/Frameworks/WebKit.framework/WebKit 0x2d235000 - 0x2d269fff iAd armv7s <a1e5c99d32d73bf6b5fdd9e58712a707> /System/Library/Frameworks/iAd.framework/iAd 0x2d4e3000 - 0x2d507fff ACTFramework armv7s <3fbcb03af1f63840afa25e11ea3600b0> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework 0x2d508000 - 0x2d50afff AGXCompilerConnection armv7s <b9face43e8523648ae7c56c6ad7f38d3> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection 0x2d50b000 - 0x2d510fff AITTarget armv7s <9bf437dece273f48ad616227d9a188d7> /System/Library/PrivateFrameworks/AITTarget.framework/AITTarget 0x2d515000 - 0x2d520fff AOSNotification armv7s <1f80daa07a603b748da563f4b4877377> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification 0x2d675000 - 0x2d6c1fff AccountsDaemon armv7s <22d177290ac53e9d9e3cf9e3a05f093c> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x2d6c2000 - 0x2d6e3fff AccountsUI armv7s <2ddef05340b03573a659bc09c46abcef> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI 0x2d6e4000 - 0x2d6e8fff AggregateDictionary armv7s <ea95067fba273e28af6e30fde0960dff> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x2d8b1000 - 0x2d8dcfff AirPlaySupport armv7s <d8cf05600f933f09adab43544a5d69c6> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport 0x2dad6000 - 0x2db14fff AppSupport armv7s <a0e37cef8bbe3c85a186dcc49b049df6> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x2db15000 - 0x2db5cfff AppleAccount armv7s <6812345ae0953266a59389104bfa5ee8> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x2db5d000 - 0x2db96fff AppleAccountUI armv7s <16ddf73d8ef5302c9ff0a4e0e6b824a7> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI 0x2dc44000 - 0x2dc81fff AppleJPEG armv7s <2931e6f7c6883b67ab38d35019beb8c6> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x2dc8c000 - 0x2dc9efff ApplePushService armv7s <69c350865a9038388efef935f7a3af72> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x2dc9f000 - 0x2dca5fff AppleSRP armv7s <96b159f9b8073ce88263a6c5cc12aa37> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP 0x2dcda000 - 0x2dce3fff AssertionServices armv7s <36d88e0e130c3b00a2af465f68ee9b15> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x2dce4000 - 0x2dcfcfff AssetsLibraryServices armv7s <a8fc50ad6d583e68b7afa65f593939e8> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices 0x2dcfd000 - 0x2dd21fff AssistantServices armv7s <517da34c200e3f5994dc658e6c2fe779> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x2dd51000 - 0x2dd55fff BTLEAudioController armv7s <56dfdebd435d3c4db1f51210bea02cc1> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController 0x2dd56000 - 0x2dd6dfff BackBoardServices armv7s <bb2f2c12666731999305ef38cdb0b35f> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x2dd70000 - 0x2dda5fff BaseBoard armv7s <3275621768f630499ca5650aa1bd2d95> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x2dda6000 - 0x2ddacfff BluetoothManager armv7s <76a6027a8697349f9f65e73eaf891e64> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x2ddad000 - 0x2ddd3fff Bom armv7s <c3e5f89d1b1b33c198b34b37c234a25a> /System/Library/PrivateFrameworks/Bom.framework/Bom 0x2dde7000 - 0x2de4cfff BulletinBoard armv7s <39edeca0683638a1812a50f13b2beb1a> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 0x2de52000 - 0x2de59fff CacheDelete armv7s <0fe1afc2b91d3a6395ad67213d076fe3> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x2de9e000 - 0x2dec7fff CalendarFoundation armv7s <4ef3f46218c932da8f673a9787bf67aa> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation 0x2df02000 - 0x2dfd3fff CameraKit armv7s <798dc3d5499d3fdab9da3ec928676a14> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit 0x2dfd4000 - 0x2dfdcfff CaptiveNetwork armv7s <c58c19fe49cd357193c4a71b9ad24b52> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x2dfdd000 - 0x2e0fffff Celestial armv7s <c094b42aa2643a7585d56fb8d24e225f> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x2e10d000 - 0x2e125fff CertInfo armv7s <bb383f0159153a8ab1ebb908dffa040d> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo 0x2e126000 - 0x2e12bfff CertUI armv7s <a7ef5556a0873e7baf86cc4b2070b4d9> /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x2e256000 - 0x2e277fff ChunkingLibrary armv7s <2163efa9d14737bdba691222f5ec13da> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x2e626000 - 0x2e6d1fff CloudPhotoLibrary armv7s <a41a25db00e435e3ba60bc959abc7d78> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary 0x2e722000 - 0x2e724fff CommonAuth armv7s <5c051d4c81253f47985d617214acc764> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x2e725000 - 0x2e735fff CommonUtilities armv7s <ec2b306470223b07b5467eccd21d33cc> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x2e736000 - 0x2e73afff CommunicationsFilter armv7s <8c45cc73ac0b3909bf052f4ecde8baf4> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x2e7ab000 - 0x2e7affff ConstantClasses armv7s <f08de9d363ab35daa747fa7aff0fcc93> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x2e7b0000 - 0x2e7e8fff ContentIndex armv7s <643dcd65f5d0337b94c21de3335473db> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex 0x2e7e9000 - 0x2e7ecfff CoreAUC armv7s <50d681c11a053a6ca8d3215a9e2eb0cd> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x2e811000 - 0x2e865fff CoreDAV armv7s <649ac16c8df133ad99bc149d48828105> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x2e866000 - 0x2e880fff CoreDuet armv7s <926c3f2de63535b79413ab87348c5947> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x2e885000 - 0x2e894fff CoreDuetDaemonProtocol armv7s <29ef1cfcd6733621a9f9059551fce81c> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x2e89b000 - 0x2e89dfff CoreDuetDebugLogging armv7s <764c46da29ab3d04a291406561289bc7> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x2e9ec000 - 0x2eaecfff CoreMediaStream armv7s <db07a7b14b543a10bd358f1bf4245a66> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x2eaed000 - 0x2eb88fff CorePDF armv7s <71246dd3f2e139c190f39ed5dd8e5023> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x2ebe9000 - 0x2ebf3fff CoreRecents armv7s <2e4e93bedf0238599e03f70363bf71c2> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x2ec6b000 - 0x2ec89fff CoreServicesInternal armv7s <f121bb7b5fe03d658b22ab3642f2257f> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x2ee81000 - 0x2ee86fff CoreTime armv7s <a83961984c593d238441f3f55fd8b968> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x2ee87000 - 0x2ef07fff CoreUI armv7s <e9105bec702b3c03b239db35b4a2e50b> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x2ef08000 - 0x2ef72fff CoreUtils armv7s <4761f6a5d18a36b0b6282f3c7895a9f7> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x2ef73000 - 0x2ef78fff CrashReporterSupport armv7s <18b15425e5ed3ff28c994f99d1ee7565> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x2ef79000 - 0x2ef7ffff DAAPKit armv7s <8da2892b295938149f61c96e4321b44e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit 0x2ef80000 - 0x2ef8afff DCIMServices armv7s <a7b9b19949bb32c9bba9a611e02ce019> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices 0x2ef8b000 - 0x2efd0fff DataAccess armv7s <b9189af789f63aec8243b4ca3ac01e50> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess 0x2f1c2000 - 0x2f1e3fff DataAccessExpress armv7s <c9b406347afd31ea845ffa8b10bfe638> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x2f221000 - 0x2f227fff DataMigration armv7s <d72331f6c5033c4f9dcf147951d884fe> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x2f231000 - 0x2f232fff DiagnosticLogCollection armv7s <e8459bc8a9083c67903d2a866f014f20> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x2f233000 - 0x2f24dfff DictionaryServices armv7s <fea98879f6fe3eedb0caff8bc1c74c19> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices 0x2f26c000 - 0x2f28bfff EAP8021X armv7s <c8efe116c7e93e538baa288d667e56b9> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x2f38b000 - 0x2f38dfff FTClientServices armv7s <1c2236ab5e9e3ef4aa1e4c353c87fed6> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x2f38e000 - 0x2f3befff FTServices armv7s <7380e354916d383cbb915cd4f2fa3856> /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x2f3bf000 - 0x2f7e2fff FaceCore armv7s <f3d741379dab3097a5d5f7dc7746450b> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x2f7f5000 - 0x2f800fff FindMyDevice armv7s <9ad460b7e4ab3d13871a95406dd90a1f> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice 0x2f807000 - 0x2f807fff FontServices armv7s <9a72c3a7dce03e4da4a9141ca2dd6afe> /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x2f808000 - 0x2f8dcfff libFontParser.dylib armv7s <298078d166f334daac64f0a8fc082740> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x2f8dd000 - 0x2f8e9fff libGSFontCache.dylib armv7s <86e2db581f2632bbbcf73f7d7dd82b25> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x2f9cc000 - 0x2f9e7fff FrontBoardServices armv7s <a9c1b4d32242349ba2e841a9365bb4d6> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x2ff50000 - 0x2ff57fff libGPUSupportMercury.dylib armv7s <3b7ce33618eb30758545636f2c9bab5b> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib 0x2ff58000 - 0x2ffe1fff GameCenterFoundation armv7s <a0787e79def336e48215f62f71d5b079> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation 0x3007d000 - 0x300c7fff GameCenterUI armv7s <791be3cf4d3f35d3959ddcb87c61a081> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI 0x300c8000 - 0x30204fff AVConference armv7s <a18d952265313d7f88b34e7b1f8d1a19> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference 0x30217000 - 0x3023cfff ICE armv7s <c95b0fbd256a3c658ad54fad8b9773a7> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE 0x3023d000 - 0x3023dfff LegacyHandle armv7s <3872eac944b839eca2fb0a526ebbc8f3> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle 0x3023e000 - 0x30246fff SimpleKeyExchange armv7s <b15b43e96d753463b03925b7b0b6c15f> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange 0x30247000 - 0x30252fff ViceroyTrace armv7s <b254791c7f5e327b9a94f143bbfe2cc2> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace 0x30253000 - 0x30254fff snatmap armv7s <202cb136223035b38c57398896017ef8> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap 0x30255000 - 0x302d0fff GameKitServices armv7s <6b134ad4ce3d3548bf55ef0af5d3e4f3> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices 0x302d1000 - 0x302e7fff GenerationalStorage armv7s <fd0d9502e8b930c0a83fb9f55b8f5bc0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x302e8000 - 0x30556fff GeoServices armv7s <cd5710c5b90e3cc7a31a885017926a8c> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x30557000 - 0x30567fff GraphicsServices armv7s <807dd07abf423685a095efc23cf878e6> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x30604000 - 0x30653fff Heimdal armv7s <58a72b3de54e34979932537c644b7a13> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x306e9000 - 0x30769fff HomeSharing armv7s <37e0ffe3208a3411969286443a982a47> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x307c8000 - 0x3081efff IDS armv7s <962f25e28f4538fb9f0f79f5ce052784> /System/Library/PrivateFrameworks/IDS.framework/IDS 0x3081f000 - 0x30844fff IDSFoundation armv7s <71fcf26834ee3cd889fcabd6ba2d334b> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x308ac000 - 0x3095bfff IMCore armv7s <edd61ecfe4c73fc1aac03efe699b835d> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x309f5000 - 0x30a59fff IMFoundation armv7s <9adf83a51b0c343fbc8f6ae83c20c48e> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x30a61000 - 0x30a64fff IOAccelerator armv7s <00ddf61f19b433e69c512e02a58d0cfb> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x30a67000 - 0x30a6dfff IOMobileFramebuffer armv7s <7802a882e8083e6b9009c738250284a8> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x30a6e000 - 0x30a73fff IOSurface armv7s <8f9e1eaef9e83344ad4f902ba102b27c> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface 0x30a74000 - 0x30a75fff IOSurfaceAccelerator armv7s <ba79f1c8cddd3d04bcec3ca169cc33ab> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x30abe000 - 0x30b0afff ImageCapture armv7s <715487665d0334c5bcaeae31b6dd8d6a> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture 0x30b0b000 - 0x30b10fff IncomingCallFilter armv7s <2a7b0ddce2b43f1ea867b86cd3c149fb> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x30b11000 - 0x30b17fff IntlPreferences armv7s <8956cc5bc6a5356382efce9a3e4cf272> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x30b18000 - 0x30b4efff LanguageModeling armv7s <617f48d1df753057b1ff2cb2b2591d92> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x30bad000 - 0x30bbbfff LegacyGameKit armv7s <2df4b75e91623e0d9729200b8270a854> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit 0x30bc9000 - 0x30c05fff MIME armv7s <821fbb5da7833c74ac059139f7338134> /System/Library/PrivateFrameworks/MIME.framework/MIME 0x30c06000 - 0x30c60fff MMCS armv7s <390d630ff90035249509ba443c4c7e67> /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x30ca9000 - 0x30cb5fff MailServices armv7s <f501cb8373dc3e1ebdbd730a30ff43cb> /System/Library/PrivateFrameworks/MailServices.framework/MailServices 0x30ce9000 - 0x30d89fff ManagedConfiguration armv7s <50edbe379e7f3a9e83243b6a5372859f> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x30d94000 - 0x30d95fff Marco armv7s <09420526cff03e688f97faf606b96de8> /System/Library/PrivateFrameworks/Marco.framework/Marco 0x30d96000 - 0x30e0efff MediaControlSender armv7s <20b518e1cdff3d9986f6a91a84af2bf9> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender 0x30ead000 - 0x30ebffff MediaRemote armv7s <dfddd830f9c034e289d51d656eb82628> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x30ec0000 - 0x30ecffff MediaServices armv7s <ba8bb55e7d6f3951b0adb798ba51f98b> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x30ed0000 - 0x30ee8fff MediaStream armv7s <b270235223e23daeaa5ad6acd442f6aa> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x30ee9000 - 0x30f41fff IMAP armv7s <938fbb7d1126365e83ce762afdb7e9db> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP 0x30f4d000 - 0x3102afff Message armv7s <1dce99c17ce3358aa773e10f776b174d> /System/Library/PrivateFrameworks/Message.framework/Message 0x31030000 - 0x31032fff MessageSupport armv7s <8bf824d77f553c2b8a2e98295eb37d98> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport 0x31044000 - 0x31051fff MobileAsset armv7s <8847bd961f1e35e3b1cc963f17895b5b> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x31055000 - 0x31077fff MobileBackup armv7s <16d3546419373fc186be60090542118b> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x31078000 - 0x31081fff MobileBluetooth armv7s <cb9d17030ddb3679b2193d52f7648083> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x3108c000 - 0x3109cfff MobileDeviceLink armv7s <871918a36839374a8940bea79d5bd16e> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x3109d000 - 0x310a4fff MobileIcons armv7s <8e7cdc636e953a588be271a423b03efe> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x310a5000 - 0x310acfff MobileInstallation armv7s <a9f2d7b7aea63a7ca813b247b95ef720> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x310ad000 - 0x310b9fff MobileKeyBag armv7s <e4fc8c5d19473a7cbf6ae7ee4c8685a3> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x310e6000 - 0x310e9fff MobileSystemServices armv7s <6fa5a3df99f739e58e459b30cebeaf34> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x3110b000 - 0x31118fff MobileWiFi armv7s <886de9dcb26e3c0989e59406ce04b8cc> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x31157000 - 0x312f7fff MusicLibrary armv7s <7426a16d669e3261b3d7183b5dacf589> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x31390000 - 0x31395fff Netrb armv7s <ca8684d1f44a31398abae040a385d3a1> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x31396000 - 0x3139cfff NetworkStatistics armv7s <47347e706754339aa423c08cb5197a18> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x3139d000 - 0x313bafff Notes armv7s <74b03c7ed26133009f5a984f0aaf7037> /System/Library/PrivateFrameworks/Notes.framework/Notes 0x313bb000 - 0x313bffff NotificationsUI armv7s <9241a56b20cc3ff0831013c9217b09cf> /System/Library/PrivateFrameworks/NotificationsUI.framework/NotificationsUI 0x313c0000 - 0x313c2fff OAuth armv7s <7b2d1b1ae32b356aacf24ae8ebf4304a> /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x31b1d000 - 0x31b59fff OpenCL armv7s <e8059b12720532f8863300a5bf142bf4> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL 0x31c4b000 - 0x31c72fff PersistentConnection armv7s <a2ce4a23e4323ba9ade4407ce9b792d7> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x31c7c000 - 0x31cfcfff PhotoEditSupport armv7s <ff4305f528f532168842b273014ede59> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport 0x31cfd000 - 0x31ddcfff PhotoLibrary armv7s <27622d58836f3a0da887908e6b21cf36> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary 0x31ddd000 - 0x32047fff PhotoLibraryServices armv7s <633fee7b12fc30f382fae7c7e27a19b3> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices 0x32048000 - 0x32051fff PhotosFormats armv7s <ae8bc9da18d538a79e341c4435fd7e7c> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats 0x32052000 - 0x3209cfff PhysicsKit armv7s <9f71e08bcc233c779fac8e6eeebdeaa4> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x3209d000 - 0x320b3fff PlugInKit armv7s <8644b7f9f6803423ab22ab1c54623d18> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x320b4000 - 0x320bbfff PowerLog armv7s <ba28696e76f73078a96b0eda0e35a4d2> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x322b9000 - 0x32361fff Preferences armv7s <47b04fea8df43028960a2cbec1d259fc> /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x32362000 - 0x3239ffff PrintKit armv7s <1b458ab8943b3482b940cf1ad77a30fd> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit 0x323a0000 - 0x323a3fff ProgressUI armv7s <fe228c61ba2930bbb01b77d36a74c788> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI 0x323a4000 - 0x32438fff ProofReader armv7s <8b4604af458d314f8e6804905289198f> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x32439000 - 0x32448fff ProtectedCloudStorage armv7s <8e87f115ece83de1be412b9650bdddcc> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x32449000 - 0x32455fff ProtocolBuffer armv7s <2190f9afee593716aea383b31dda60cf> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x32456000 - 0x32487fff PrototypeTools armv7s <d146657585f13e2d956f4da61c179a9f> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x32488000 - 0x324f7fff Quagga armv7s <17a48ce11d7635f2a45608f76c4ab3b2> /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x32656000 - 0x32691fff RemoteUI armv7s <576661b887a93f2297fe75ad9ba4a37c> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI 0x3270a000 - 0x32796fff SAObjects armv7s <80d7196f58b3332b9fd188a51c34f602> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x32940000 - 0x32972fff SpringBoardFoundation armv7s <a6a9badc122b3f92a8b96f012dbf0d25> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation 0x32973000 - 0x3298dfff SpringBoardServices armv7s <fe229a8f18d1308c87e7876cf1a76b26> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x3298e000 - 0x329a0fff SpringBoardUI armv7s <2637f3238e1539cb927cd7766902d328> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI 0x329a1000 - 0x329c4fff SpringBoardUIServices armv7s <6b1d4907280537e0bffbcc7b4e75a9e6> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices 0x32cf9000 - 0x32e12fff StoreServices armv7s <b9b70b9d54c23949911d2bdd140ff844> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x32ee3000 - 0x32ee5fff TCC armv7s <9e7af4ada9a3336abe1b382dd6d53fb7> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x32ee6000 - 0x32f2bfff TelephonyUI armv7s <988c26edc6c33f1da2e59f6161517be4> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI 0x32f2c000 - 0x32f69fff TelephonyUtilities armv7s <c6a859a44b6e31deb2c57a0d950159b2> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x33b2d000 - 0x33b55fff TextInput armv7s <701e5ac6c13c3ac183ea89e54536772c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x33b99000 - 0x33baffff ToneLibrary armv7s <1c71afda17fa379a94f1b94ed0c7dada> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x33c09000 - 0x33ccbfff UIFoundation armv7s <858f32be87783367a89a2b7e129b8952> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x33ce8000 - 0x33cebfff UserFS armv7s <cf10fe6f6db23fadaefc104e93657562> /System/Library/PrivateFrameworks/UserFS.framework/UserFS 0x33d04000 - 0x3424bfff VectorKit armv7s <0d9bfb7befce3136b21e40c94574294c> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x3424c000 - 0x34370fff VideoProcessing armv7s <276a072bcde7384ca1771fa459453e04> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing 0x34471000 - 0x3448ffff VoiceServices armv7s <aa1472c70e3733ffa2248a7b958a4489> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x34519000 - 0x3453ffff WebBookmarks armv7s <8871fd988fff3793b0fb377497cfe31b> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x34555000 - 0x350d4fff WebCore armv7s <67a8356d4f313e4198757228d021c9fd> /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x350d5000 - 0x35193fff WebKitLegacy armv7s <f0cf0db107023b4594f08244df23d4cb> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x352f9000 - 0x352f9fff WirelessCoexManager armv7s <1c22472daa5d3893b2a7c5459d4b48c5> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager 0x352fa000 - 0x3531bfff WirelessDiagnostics armv7s <5075a3652c2636da99e358bc7097c82f> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x3532e000 - 0x35334fff XPCKit armv7s <12925358d4923c7fb0affbc34b79a470> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit 0x35335000 - 0x3533dfff XPCObjects armv7s <e2394741dd3333338d1c15a983b769a3> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects 0x35522000 - 0x35527fff iAdServices armv7s <8dc589e40d9b360bbeb9b7caa698bf42> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices 0x35528000 - 0x3554cfff iCalendar armv7s <f76c5b909b023e979cb8e3afab36016a> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x35558000 - 0x3556bfff iPhotoMigrationSupport armv7s <01858c0e661733aa87929e25a7c99d8d> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport 0x3556c000 - 0x355a7fff iTunesStore armv7s <ec68650298b1300aa829b3407759c13b> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x35adf000 - 0x35aeefff libAWDProtobufFacetimeiMessage.dylib armv7s <de8f29ea2ade376893506da44b7fa2c2> /usr/lib/libAWDProtobufFacetimeiMessage.dylib 0x35bcc000 - 0x35bd2fff libAWDSupportConfig.dylib armv7s <769860df4fbd37568b2767adc99e0953> /usr/lib/libAWDSupportConfig.dylib 0x35bd3000 - 0x35d14fff libAWDSupportFramework.dylib armv7s <0ceab6b2c48b329ca287cae60d2794a5> /usr/lib/libAWDSupportFramework.dylib 0x35d15000 - 0x35d16fff libAWDSupportInfo.dylib armv7s <48deae4935c93faf9487e16cd528fbd6> /usr/lib/libAWDSupportInfo.dylib 0x35d20000 - 0x35d28fff libAccessibility.dylib armv7s <565775eb36823dc2b2248a5a8d9a2be3> /usr/lib/libAccessibility.dylib 0x35f7c000 - 0x35f92fff libCRFSuite.dylib armv7s <e4534db5eb4d3f078ddb2cb62fd8073b> /usr/lib/libCRFSuite.dylib 0x35fc4000 - 0x360c8fff libFosl_dynamic.dylib armv7s <9639376d833a3b24b4f7167bdf22a70f> /usr/lib/libFosl_dynamic.dylib 0x360e0000 - 0x360e1fff libMobileCheckpoint.dylib armv7s <7fc030a7576f30c1bbf70080b5963b21> /usr/lib/libMobileCheckpoint.dylib 0x360e2000 - 0x360f9fff libMobileGestalt.dylib armv7s <5ccfd8d8aba13c54b78d603f316e755c> /usr/lib/libMobileGestalt.dylib 0x360fa000 - 0x36102fff libMobileGestaltExtensions.dylib armv7s <abb853ee5cfa34c59f9e2757f9d98a57> /usr/lib/libMobileGestaltExtensions.dylib 0x3611f000 - 0x36120fff libSystem.B.dylib armv7s <c7ada6fbe9a53d4197826cac16e62c03> /usr/lib/libSystem.B.dylib 0x36191000 - 0x361d5fff libTelephonyUtilDynamic.dylib armv7s <581e3f889083319eaa70746f31edc766> /usr/lib/libTelephonyUtilDynamic.dylib 0x362e5000 - 0x36307fff libarchive.2.dylib armv7s <792c5bc64510315987f1aa4a372aa6f1> /usr/lib/libarchive.2.dylib 0x36308000 - 0x36308fff libassertion_extension.dylib armv7s <6a63713be9c33cd78fa2bd03211ce434> /usr/lib/libassertion_extension.dylib 0x36337000 - 0x36343fff libbsm.0.dylib armv7s <6e0989fbae0a3d08855ed402ed0b3ec0> /usr/lib/libbsm.0.dylib 0x36344000 - 0x3634dfff libbz2.1.0.dylib armv7s <a2f10a1138b93aafa9afe26bd6e1ee48> /usr/lib/libbz2.1.0.dylib 0x3634e000 - 0x36398fff libc++.1.dylib armv7s <dd79b1e22f583393b9c2b1763224dbd4> /usr/lib/libc++.1.dylib 0x36399000 - 0x363b4fff libc++abi.dylib armv7s <174873ad6dbb39bab97eab06da2d3098> /usr/lib/libc++abi.dylib 0x363b6000 - 0x363c3fff libcmph.dylib armv7s <bb3fc6a6155e36fcb49d395717f7d3f4> /usr/lib/libcmph.dylib 0x363f3000 - 0x3640bfff libextension.dylib armv7s <a95c14b6593e31bca3b5dd619a2fd896> /usr/lib/libextension.dylib 0x3642a000 - 0x3642dfff libheimdal-asn1.dylib armv7s <2ce45d01e91b33fb8146a57394c85ded> /usr/lib/libheimdal-asn1.dylib 0x3642e000 - 0x3651bfff libiconv.2.dylib armv7s <58eb4155c7b0357b833c49ea04d3bdc1> /usr/lib/libiconv.2.dylib 0x3651c000 - 0x3668afff libicucore.A.dylib armv7s <e0938b0f43c336099be58eae9587cfa7> /usr/lib/libicucore.A.dylib 0x36697000 - 0x36697fff liblangid.dylib armv7s <bb40f8ac13c0315a9d10feecc233bf75> /usr/lib/liblangid.dylib 0x36698000 - 0x366a2fff liblockdown.dylib armv7s <5238bf4a0815339ea59625cc1ff666aa> /usr/lib/liblockdown.dylib 0x366a3000 - 0x366b8fff liblzma.5.dylib armv7s <ffcd1c45b6fb3fdb8264a8673e9049b2> /usr/lib/liblzma.5.dylib 0x36a32000 - 0x36a46fff libmis.dylib armv7s <d12e6275fe133b8b9fa891bf1881c936> /usr/lib/libmis.dylib 0x36a71000 - 0x36c6bfff libobjc.A.dylib armv7s <2f24d570e8253da29e77c4104a66ffff> /usr/lib/libobjc.A.dylib 0x36cc7000 - 0x36d1ffff libprotobuf.dylib armv7s <71c85db137353e17b8a266ae73a1bdda> /usr/lib/libprotobuf.dylib 0x36d20000 - 0x36d36fff libresolv.9.dylib armv7s <d93a4f7847a43b9c931dd9f42398d889> /usr/lib/libresolv.9.dylib 0x36d61000 - 0x36e07fff libsqlite3.dylib armv7s <3f8122a2ef1a3ac6a576b5f77e3b485b> /usr/lib/libsqlite3.dylib 0x36e08000 - 0x36e54fff libstdc++.6.dylib armv7s <4644d4ed8bef3d2fb9b613da6972d010> /usr/lib/libstdc++.6.dylib 0x36e55000 - 0x36e7bfff libtidy.A.dylib armv7s <2637f8b2b9b339ad98b40939155b904e> /usr/lib/libtidy.A.dylib 0x36e7c000 - 0x36e84fff libtzupdate.dylib armv7s <cc59d1cd15f33b1a8d40966fe0ee5d94> /usr/lib/libtzupdate.dylib 0x36e88000 - 0x36f3efff libxml2.2.dylib armv7s <1ceb60da13db36a495e91fd985c5d6f9> /usr/lib/libxml2.2.dylib 0x36f3f000 - 0x36f60fff libxslt.1.dylib armv7s <7dd0493e5d1e32dd80542e22a0ee118f> /usr/lib/libxslt.1.dylib 0x36f61000 - 0x36f6dfff libz.1.dylib armv7s <fd35952ab6623a8484e1573481685182> /usr/lib/libz.1.dylib 0x36f6e000 - 0x36f72fff libcache.dylib armv7s <f3c6b77f893a39c2b7df1f1ecf41d06f> /usr/lib/system/libcache.dylib 0x36f73000 - 0x36f7cfff libcommonCrypto.dylib armv7s <0a15a7c1f73d302da2cd7e4e2acfeed2> /usr/lib/system/libcommonCrypto.dylib 0x36f7d000 - 0x36f81fff libcompiler_rt.dylib armv7s <d91d7ecc118d3a1c99881923af73f7c6> /usr/lib/system/libcompiler_rt.dylib 0x36f82000 - 0x36f88fff libcopyfile.dylib armv7s <c953910ab8d23efeb8b90cff82bff8d4> /usr/lib/system/libcopyfile.dylib 0x36f89000 - 0x36fd5fff libcorecrypto.dylib armv7s <6dce6a7c47a933ccba76429c3ef0f3f4> /usr/lib/system/libcorecrypto.dylib 0x36fd6000 - 0x36ff5fff libdispatch.dylib armv7s <a5361c5ac5153f018479723123b27118> /usr/lib/system/libdispatch.dylib 0x36ff6000 - 0x36ff7fff libdyld.dylib armv7s <abf0be77659a3f3a8e5538115d8797d8> /usr/lib/system/libdyld.dylib 0x36ff8000 - 0x36ff8fff libkeymgr.dylib armv7s <6858de0933f535b2b8c03033a7ad58c4> /usr/lib/system/libkeymgr.dylib 0x36ff9000 - 0x36ff9fff liblaunch.dylib armv7s <2358a0a01e893ffb8b45c950c7dab2c8> /usr/lib/system/liblaunch.dylib 0x36ffa000 - 0x36ffdfff libmacho.dylib armv7s <09c925ce076b39a7974c8001e775c815> /usr/lib/system/libmacho.dylib 0x36ffe000 - 0x36ffffff libremovefile.dylib armv7s <7f08307630a638aab800041abeb06720> /usr/lib/system/libremovefile.dylib 0x37000000 - 0x37011fff libsystem_asl.dylib armv7s <d26d22e53561376ea2e8d5f0a56bdc19> /usr/lib/system/libsystem_asl.dylib 0x37012000 - 0x37012fff libsystem_blocks.dylib armv7s <3d575aee5d8c306187d695801c94d400> /usr/lib/system/libsystem_blocks.dylib 0x37013000 - 0x37076fff libsystem_c.dylib armv7s <415dbd55796d3413819f59ee8acebda2> /usr/lib/system/libsystem_c.dylib 0x37077000 - 0x37079fff libsystem_configuration.dylib armv7s <22243b8824ea3e3b86ce85a2d9e21f3b> /usr/lib/system/libsystem_configuration.dylib 0x3707a000 - 0x3707bfff libsystem_coreservices.dylib armv7s <f1690e04a8923f06b042472fcd8a2210> /usr/lib/system/libsystem_coreservices.dylib 0x3707c000 - 0x37088fff libsystem_coretls.dylib armv7s <d1a9bfd5baa134d8b17745ad81804b95> /usr/lib/system/libsystem_coretls.dylib 0x37089000 - 0x3708ffff libsystem_dnssd.dylib armv7s <28cfa66349643550ad2e24ac3069e377> /usr/lib/system/libsystem_dnssd.dylib 0x37090000 - 0x370a8fff libsystem_info.dylib armv7s <a93d1391edb63969b454c858bb8cc703> /usr/lib/system/libsystem_info.dylib 0x370a9000 - 0x370c3fff libsystem_kernel.dylib armv7s <45e3ed93e1a33ac9852af0288ce245dd> /usr/lib/system/libsystem_kernel.dylib 0x370c4000 - 0x370e3fff libsystem_m.dylib armv7s <f791d0269b5a3bc096e6a485c5aa5b07> /usr/lib/system/libsystem_m.dylib 0x370e4000 - 0x370f6fff libsystem_malloc.dylib armv7s <4e9efa8dc6553875a5f86408e609c98b> /usr/lib/system/libsystem_malloc.dylib 0x370f7000 - 0x37124fff libsystem_network.dylib armv7s <1167f78e6cab3ac486123f44bd0df0b1> /usr/lib/system/libsystem_network.dylib 0x37125000 - 0x3712afff libsystem_networkextension.dylib armv7s <a2863a93bdc336418872c0799d243391> /usr/lib/system/libsystem_networkextension.dylib 0x3712b000 - 0x37132fff libsystem_notify.dylib armv7s <042ef512d24a36028b5c4bf6879946bd> /usr/lib/system/libsystem_notify.dylib 0x37133000 - 0x37137fff libsystem_platform.dylib armv7s <ce04793612513649b79fc416b36fe49b> /usr/lib/system/libsystem_platform.dylib 0x37138000 - 0x3713efff libsystem_pthread.dylib armv7s <f0f1af3aede7377c97f267bbbe418fc0> /usr/lib/system/libsystem_pthread.dylib 0x3713f000 - 0x37141fff libsystem_sandbox.dylib armv7s <63f8b7071a7c329ca4867414c984648b> /usr/lib/system/libsystem_sandbox.dylib 0x37142000 - 0x37145fff libsystem_stats.dylib armv7s <584d89930b6332769ddcbb2f4cf98fd7> /usr/lib/system/libsystem_stats.dylib 0x37146000 - 0x3714bfff libsystem_trace.dylib armv7s <140f164e68ef337cb646fcad5330dab0> /usr/lib/system/libsystem_trace.dylib 0x3714c000 - 0x3714cfff libunwind.dylib armv7s <30325f86e7963864ac1f6aa575608725> /usr/lib/system/libunwind.dylib 0x3714d000 - 0x37168fff libxpc.dylib armv7s <e83f44ac48af3662929efb7538661bb3> /usr/lib/system/libxpc.dylib

The fact is that in my iPad (iOS 8.1.2) all its working perfectly.

In my build settings there is that in my plist after some searching:

CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS7LandscapeOnlyWorkaround = true, CoronaUseIOS6LandscapeOnlyWorkaround = true,

I tried to add (hope that it exist as nowhere was write) a similar thing for ios8 but still not work. Now i call for my girlfriend and i look up if is working in her device with iOS 7.1.2 and i make you know.

How I resolve that problem?

Regards,

Girolamo

UPDATE In my girlfriend phone crash too.

UPDATE:

I try to compile with a previous daily build. And as magic it work perfectly! So there are some problem in your last daily build. Please check and fix it.

I’m really nervous about all that shitty bugs. I can understand that is not easy to handle all that issues but i didn’t pay 500 dollars for beeing your debugger!

Since I pass to the pro version I work more day to find a way to overpass your bugs from work to my own project and I’m starting to be quite nervous about that. You have request the full payment for one year, so work and act professional for that request!

Regards,

Girolamo

Hello @Girolamo,

We appreciate you posting your code and error logs, but can we see also the contents of both your “config.lua” and your “build.settings” files?

Also, which specific daily build did these errors begin showing? And which earlier build were these errors not occurring?

Thanks,

Brent

CoronaSDK 2014.2524 -> With that one not work for sure!

CoronaSDK 2014.2520 -> With that work

Config.lua:

if ( string.sub( system.getInfo("model"), 1, 4 ) == "iPad" ) then \_G.Device="ipad" -- ipad application = { content = { width = 360, height = 480, scale = "letterBox", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }, } elseif ( string.sub( system.getInfo("model"), 1, 2 ) == "iP" and display.pixelHeight \> 960 ) then \_G.Device="iphone5" -- iphone 5 application = { content = { width = 320, height = 568, scale = "letterBox", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }, } elseif ( string.sub( system.getInfo("model"), 1, 2 ) == "iP" ) then \_G.Device="iphone4" -- iphone 4 application = { content = { width = 320, height = 480, scale = "letterBox", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3.0, }, }, } elseif ( display.pixelHeight / display.pixelWidth \> 1.72 ) then \_G.Device="android\_16:9" -- android 16:9 application = { content = { width = 320, height = 570, scale = "letterBox", xAlign = "center", yAlign = "center", }, } else \_G.Device="android" -- android application = { content = { width = 320, height = 512, scale = "letterBox", xAlign = "center", yAlign = "center", }, } end 

Build.Settings:

-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "landscapeRight", supported = { "landscapeRight"}, }, plugins = { ["facebook"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, ["iphone-sim"]=false }, }, -- key is the name passed to Lua's 'require()' ["plugin.carrot"] = { -- required publisherId = "com.gocarrot", }, }, iphone = { plist = { CFBundleIconFiles = { "icon@2x.png", "icon-Small-40.png", "icon-Small-40@2x.png", "icon-60.png", "icon-60@2x.png", "icon-72.png", "icon-72@2x.png", "icon-76.png", "icon-76@2x.png", "icon-Small-50.png", "icon-Small-50@2x.png", "icon-Small.png", "icon-Small@2x.png" }, UIStatusBarHidden = true, UIPrerenderedIcon = true, -- set to false for "shine" overlay CFBundleShortVersionString = "1.0", UIAppFonts = { "Apple-Chancery.ttf" }, CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true, CoronaUseIOS7LandscapeOnlyWorkaround = true, CoronaUseIOS6LandscapeOnlyWorkaround = true, UIApplicationExitsOnSuspend = false, FacebookAppID = "1428180157442377", CFBundleURLTypes = { { CFBundleURLSchemes = { "fbxxxxxxxxxxxxxxx", } } } } }, -- For Android, the internet permission is required android = { usesPermissions = { "android.permission.INTERNET", "android.permission.CAMERA", "android.permission.WRITE\_EXTERNAL\_STORAGE", } }, }

Hi Girolamo,

As the first step, please remove these lines. They are not necessary in the most recent builds.

CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true,

CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true,

CoronaUseIOS7LandscapeOnlyWorkaround = true,

CoronaUseIOS6LandscapeOnlyWorkaround = true,

If the issue still occurs, we can attempt to diagnose further.

Take care,

Brent

Hi,

still occurs,

Regards,

Girolamo

Hi Girolamo,

OK, thank you. Can you now please build our sample project which uses these APIs? We need to confirm that it’s not some issue with your code. The project is located in your local Corona application folder here:

CoronaSDK > SampleCode > Media > PhotoPicker

Please test this on both build numbers that you mention and tell me the results.

Thank you,

Brent

I found the same problem in iOS8 device,but the sample code is work fine.

and my code in iOS7 work fine too.

Hello,

At this time, we will require a bug submission which shows this issue. Can somebody in this topic please submit one along with a small sample project which shows the problem?

http://developer.coronalabs.com/content/bug-submission

Thank you,

Brent

I found the solution by add delay 100 ms before call mediaCapture, It’s work both capturePhoto and media.selectPhoto in iOS8 device.

local function cameraListener(enent) local function timerListener(event) if media.hasSource( media.Camera ) then media.capturePhoto( { listener = onComplete, destination = { baseDir = system.CachesDirectory, filename = "take-photo.jpg", type = "image" } } ) else native.showAlert( "Corona", "This device does not have a camera.", { "OK" } ) end end timer.performWithDelay( 100, timerListener ) return true end cameraBtn:addEventListener( "tap", cameraListener )