As in title really, when I call Init in build 2599 I get a rather nasty seg fault crash, not so in the last build I had which was 2576 :(
Hello,
I just tested our GameThive plugin on Corona build 2015.2599 and GameThrive is initializing correctly without any errors. I tested on iOS 8.2 and Android 5.0.2.
Could you send us the full error you getting and what OS version your testing on? Also could you send us your full build.settings?
Thanks.
No problem, I created a blank app this morning with just the following and it crashes…
Build.settings:
-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "portrait", supported = { "portrait", "portraitUpsideDown"} }, iphone = { plist = { CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-60@3x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-40@3x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", "Icon-Small.png", "Icon-Small@2x.png", "Icon-Small@3x.png" }, UILaunchImages = { { -- iPhone 4 Portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 480}" }, { -- iPhone 4 LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{320, 480}" }, { -- iPhone 4 LandscapeRight ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{320, 480}" }, { -- iPhone 5 Portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 568}" }, { -- iPhone 5 LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{320, 568}" }, { -- iPhone 5 LandscapeRight ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{320, 568}" }, { -- iPad Portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Portrait", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{768, 1024}" }, { -- iPad LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Landscape", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{768, 1024}" }, { -- iPad LandscapeRight ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Landscape", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{768, 1024}" }, { -- iPhone 6 Portrait ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 LandscapeRight ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 Plus Portrait ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-736h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{414, 736}" }, { -- iPhone 6 Plus LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-Landscape-736h", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{414, 736}" }, { -- iPhone 6 Plus LandscapeRight ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-Landscape-736h", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{414, 736}" }, }, UIStatusBarHidden = true, UIAppFonts = {}, UIPrerenderedIcon = true, UIFileSharingEnabled = false, UIApplicationExitsOnSuspend = false, FacebookAppID = "xxxxxxxxxxx", CFBundleURLTypes = { { CFBundleURLSchemes = { "xxxxxxxxxxx", } } } }, skipPNGCrush = true, }, -- Android permissions android = { permissions = { { name = ".permission.C2D\_MESSAGE", protectionLevel = "signature" }, }, usesPermissions = { "android.permission.INTERNET", "android.permission.GET\_ACCOUNTS", "android.permission.RECEIVE\_BOOT\_COMPLETED", "com.google.android.c2dm.permission.RECEIVE", ".permission.C2D\_MESSAGE", }, }, plugins = { ["CoronaProvider.analytics.flurry"] = { publisherId = "com.coronalabs", }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true }, }, ["plugin.GameThrivePushNotifications"] = { publisherId = "com.gamethrive", }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, ["plugin.notifications"] = { publisherId = "com.coronalabs" }, ["facebook"] = { publisherId = "com.coronalabs" }, } }
main.lua:
-- This function gets called when the player opens the notification function DidReceiveRemoteNotification(message, additionalData, isActive) if (additionalData) then if (additionalData.discount) then native.showAlert( "Discount!", message, { "OK" } ) -- Take player to your game store elseif(additionalData.bonusCredits) then native.showAlert( "Bonus Credits!", message, { "OK" } ) -- Add credits and take player your game store or inventory if you like elseif(additionalData.actionSelected) then -- Interactive notification button pressed native.showAlert("Button Pressed!", "ButtonID:" .. additionalData.actionSelected, { "OK"} ) end end end local GameThrive = require("plugin.GameThrivePushNotifications") GameThrive.Init('xxxxxxxxxx', '', DidReceiveRemoteNotification)
xCode terminal:
Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Platform: iPhone / iPhone7,2 / 8.2 / Apple A8 GPU / OpenGL ES 2.0 Apple A8 GPU - 50.6.11 / 2015.2599 Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Starting Corona GameThrive SDK v1.8.0 Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Device Registered with Apple: xxxx Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Device Registered with GameThrive: xxxxx Mar 28 10:40:22 Phils-iPhone wifid[37] \<Notice\>: WiFi:[449232022.551317]: BG Application: Not Present, BG Daemon: Present. Daemons: UserEventAgent networkd apsd Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: task\_set\_exception\_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Notice\>: ReportCrash acting against PID 622 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Notice\>: Formulating crash report for process GT Crash[622] Mar 28 10:40:22 Phils-iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.supertapp.shoppingarcadefun[0x1a47][622]) \<Notice\>: Service exited due to signal: Segmentation fault: 11 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Not saving crash log because we have reached the limit for logs to store on disk. Sync or otherwise clear logs from /var/mobile/Library/Logs/CrashReporter to save new logs. Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Could not save crash report to disk! Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Incident Identifier: FCA365BF-FDA2-48C3-AC31-353E03C90554 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: CrashReporter Key: 73fa34473b4834db48213772af97e899a1f35e3f Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Hardware Model: iPhone7,2 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Process: GT Crash [622] Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Path: /private/var/mobile/Containers/Bundle/Application/BA694870-2D5B-4FEA-AD41-3B190F2A02F3/GT Crash.app/GT Crash Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Identifier: GT Crash Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Version: ??? Mar 28 10:40:22 Phils-iPhone SpringBoard[53] \<Warning\>: Application 'UIKitApplication:com.supertapp.shoppingarcadefun[0x1a47]' crashed. Mar 28 10:40:22 Phils-iPhone assertiond[63] \<Warning\>: pid\_suspend failed for \<BKNewProcess: 0x12dd09e20; com.supertapp.shoppingarcadefun; pid: 622; hostpid: -1\>: Unknown error: -1, Unknown error: -1 Mar 28 10:40:22 Phils-iPhone assertiond[63] \<Warning\>: Could not set priority of \<BKNewProcess: 0x12dd09e20; com.supertapp.shoppingarcadefun; pid: 622; hostpid: -1\> to 2, priority: No such process Mar 28 10:40:22 Phils-iPhone assertiond[63] \<Warning\>: Could not set priority of \<BKNewProcess: 0x12dd09e20; com.supertapp.shoppingarcadefun; pid: 622; hostpid: -1\> to 4096, priority: No such process Mar 28 10:40:22 Phils-iPhone SpringBoard[53] \<Warning\>: Unable to deliver -[UIRemoteApplication showTopMostMiniAlertWithSynchronizationPort:] message to port 0: (ipc/send) invalid destination port Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Code Type: ARM-64 (Native) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Parent Process: launchd [1] Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Date/Time: 2015-03-28 10:40:22.611 +0000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Launch Time: 2015-03-28 10:40:21.513 +0000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: OS Version: iOS 8.2 (12D508) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Report Version: 105 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Exception Type: EXC\_BAD\_ACCESS (SIGSEGV) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Exception Subtype: KERN\_INVALID\_ADDRESS at 0x0000000000000020 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Triggered by Thread: 0 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 0 name: Dispatch queue: com.apple.main-thread Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 0 Crashed: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 GT Crash 0x00000001000b250c 0x10002c000 + 550156 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 GT Crash 0x000000010009c670 0x10002c000 + 460400 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 GT Crash 0x000000010009c670 0x10002c000 + 460400 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 3 GT Crash 0x00000001002c2c3c 0x10002c000 + 2714684 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 4 GT Crash 0x00000001002c2c9c 0x10002c000 + 2714780 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 5 GT Crash 0x00000001002c3140 0x10002c000 + 2715968 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 6 CoreFoundation 0x00000001829e034c 0x1828b4000 + 1229644 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 7 CoreFoundation 0x00000001828de218 0x1828b4000 + 172568 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 8 CoreFoundation 0x00000001828e2dac 0x1828b4000 + 191916 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 9 GT Crash 0x000000010004be58 0x10002c000 + 130648 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 10 CoreFoundation 0x00000001829de1c0 0x1828b4000 + 1221056 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 11 CoreFoundation 0x00000001828e2c48 0x1828b4000 + 191560 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 12 UIKit 0x000000018758362c 0x1871d8000 + 3847724 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 13 UIKit 0x0000000187584918 0x1871d8000 + 3852568 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 14 AppSupport 0x000000018895f424 0x18895c000 + 13348 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 15 CoreFoundation 0x0000000182992544 0x1828b4000 + 910660 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 16 CoreFoundation 0x00000001829924a4 0x1828b4000 + 910500 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 17 CoreFoundation 0x0000000182990424 0x1828b4000 + 902180 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 18 CoreFoundation 0x00000001828bd1f0 0x1828b4000 + 37360 Mar 28 10:40:22 Phils-iPhone locationd[60] \<Notice\>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 19 GraphicsServices 0x000000018bcdf6f8 0x18bcd4000 + 46840 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 20 UIKit 0x000000018724e108 0x1871d8000 + 483592 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 21 GT Crash 0x00000001000310a4 0x10002c000 + 20644 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 22 libdyld.dylib 0x000000019402ea04 0x19402c000 + 10756 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 1 name: Dispatch queue: com.apple.libdispatch-manager Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 1: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x000000019412cc24 0x19412c000 + 3108 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libdispatch.dylib 0x0000000194011e6c 0x194000000 + 73324 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libdispatch.dylib 0x0000000194003998 0x194000000 + 14744 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 2 name: Dispatch queue: com.apple.cfprefsd.daemon.waitq Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 2: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x000000019412ce0c 0x19412c000 + 3596 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_kernel.dylib 0x000000019412cc84 0x19412c000 + 3204 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_kernel.dylib 0x000000019412d3f0 0x19412c000 + 5104 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 3 libdispatch.dylib 0x00000001940054cc 0x194000000 + 21708 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 4 libdispatch.dylib 0x0000000194005210 0x194000000 + 21008 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 5 libdispatch.dylib 0x00000001940104b8 0x194000000 + 66744 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 6 libxpc.dylib 0x00000001942085fc 0x194204000 + 17916 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 7 libxpc.dylib 0x000000019420859c 0x194204000 + 17820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 8 libdispatch.dylib 0x0000000194001950 0x194000000 + 6480 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 9 libdispatch.dylib 0x000000019400c0a0 0x194000000 + 49312 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 10 libdispatch.dylib 0x0000000194004a58 0x194000000 + 19032 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 11 libdispatch.dylib 0x000000019400e314 0x194000000 + 58132 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 12 libdispatch.dylib 0x000000019400fc48 0x194000000 + 64584 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 13 libsystem\_pthread.dylib 0x00000001941e1228 0x1941e0000 + 4648 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 14 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 3: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 4: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 5 name: com.apple.NSURLConnectionLoader Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 5: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libdispatch.dylib 0x0000000194002830 0x194000000 + 10288 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libdispatch.dylib 0x0000000194002828 0x194000000 + 10280 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libcommonCrypto.dylib 0x0000000193f93d88 0x193f8c000 + 32136 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 3 Security 0x0000000186f57a04 0x186f44000 + 80388 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 4 Security 0x0000000186f58cbc 0x186f44000 + 85180 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 5 CFNetwork 0x000000018232558c 0x182320000 + 21900 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 6 CFNetwork 0x0000000182324bdc 0x182320000 + 19420 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 7 CoreFoundation 0x00000001828d53fc 0x1828b4000 + 136188 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 8 CoreFoundation 0x00000001828bc508 0x1828b4000 + 34056 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 9 CoreFoundation 0x00000001828c62f4 0x1828b4000 + 74484 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 10 CFNetwork 0x00000001823e1d40 0x182320000 + 793920 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 11 CFNetwork 0x00000001823e5610 0x182320000 + 808464 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 12 CFNetwork 0x00000001823e5c44 0x182320000 + 810052 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 13 CFNetwork 0x000000018233b764 0x182320000 + 112484 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 14 CoreFoundation 0x00000001828bcbf8 0x1828b4000 + 35832 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 15 CFNetwork 0x000000018233b610 0x182320000 + 112144 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 16 CFNetwork 0x000000018233b4c4 0x182320000 + 111812 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 17 CFNetwork 0x000000018233b2f0 0x182320000 + 111344 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 18 CoreFoundation 0x0000000182992d30 0x1828b4000 + 912688 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 19 CoreFoundation 0x0000000182991fd4 0x1828b4000 + 909268 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 20 CoreFoundation 0x0000000182990084 0x1828b4000 + 901252 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 21 CoreFoundation 0x00000001828bd1f0 0x1828b4000 + 37360 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 22 CFNetwork 0x00000001823be2a0 0x182320000 + 647840 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 23 Foundation 0x00000001838d2304 0x1837dc000 + 1008388 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 24 libsystem\_pthread.dylib 0x00000001941e3dc4 0x1941e0000 + 15812 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 25 libsystem\_pthread.dylib 0x00000001941e3d20 0x1941e0000 + 15648 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 26 libsystem\_pthread.dylib 0x00000001941e0ef4 0x1941e0000 + 3828 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 6: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 7: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 0 crashed with ARM Thread State (64-bit): Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x0: 0x0000000000000000 x1: 0x00000001003010eb x2: 0x0000000000000007 x3: 0x000000019405d5e5 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x4: 0x0000000000000001 x5: 0x0000000000000000 x6: 0x8b0ea01752f1e7d5 x7: 0x0000000000000000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x8: 0x0000000000000001 x9: 0x00000001003010ea x10: 0x0000000000000000 x11: 0x00000000f219045a Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x12: 0x0000000000000052 x13: 0x0000000000000000 x14: 0x53f431963c14a5af x15: 0x000000000000008c Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x16: 0x000000019405d6a0 x17: 0x00000001002c323c x18: 0x0000000000000000 x19: 0x0000000000000000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x20: 0x0000000000000007 x21: 0x00000001003010eb x22: 0x0000000134d0e9d0 x23: 0x00000000443d7b78 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x24: 0x0000000000000018 x25: 0x0000000000000008 x26: 0x0000000000000001 x27: 0x000000016fdd1828 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x28: 0x0000000174011120 fp: 0x000000016fdd1650 lr: 0x000000010009c674 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: sp: 0x000000016fdd1620 pc: 0x00000001000b250c cpsr: 0x80000000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Binary Images: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x10002c000 - 0x1003fbfff GT Crash arm64 \<bfe2c65e3c0830ffaa3b08c1a0f1e71b\> /var/mobile/Containers/Bundle/Application/BA694870-2D5B-4FEA-AD41-3B190F2A02F3/GT Crash.app/GT Crash Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x120070000 - 0x120097fff dyld arm64 \<cbe9c4c5c080329aad62c7d2ef0e2b85\> /usr/lib/dyld Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181100000 - 0x181198fff AGXGLDriver arm64 \<e2e5278deddb35d3ae2ccadc5035e310\> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1811b4000 - 0x181347fff AVFoundation arm64 \<a0028621d1c030c18134b4d5ef0f4dd9\> /System/Library/Frameworks/AVFoundation.framework/AVFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181348000 - 0x1813acfff libAVFAudio.dylib arm64 \<39796038cde83934a6b610acf7d390e5\> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1813f0000 - 0x1813f0fff Accelerate arm64 \<63d7fa4579f734c6b4305ec308608dbd\> /System/Library/Frameworks/Accelerate.framework/Accelerate Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181408000 - 0x181627fff vImage arm64 \<c5393a13f8f63a369d024644d877d714\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181628000 - 0x1816cffff libBLAS.dylib arm64 \<0c01cae9dbe3333fa4853cf8e348adfa\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1816d0000 - 0x181a4afff libLAPACK.dylib arm64 \<0446cba8ab043e1891ddc27c9ae49996\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181a4c000 - 0x181a61fff libLinearAlgebra.dylib arm64 \<7337464e923d3027a2bb769e3fc2dbe4\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181a64000 - 0x181accfff libvDSP.dylib arm64 \<e3883da1b693391199aacb00540ef7f7\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181ad0000 - 0x181af3fff libvMisc.dylib arm64 \<ef13193c192138aaa45e2d828e51651b\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181af4000 - 0x181af4fff vecLib arm64 \<43888b6baa1d36f7983ee020eee68835\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181af8000 - 0x181b26fff Accounts arm64 \<83225ceee3cc33e69a7ac742274d5ac7\> /System/Library/Frameworks/Accounts.framework/Accounts Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181b28000 - 0x181b28fff AdSupport arm64 \<62d19775c2b03a109270b95f935fb992\> /System/Library/Frameworks/AdSupport.framework/AdSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181b2c000 - 0x181baafff AddressBook arm64 \<145b887f147d3c00817f1f44ff330355\> /System/Library/Frameworks/AddressBook.framework/AddressBook Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181bac000 - 0x181cfdfff AddressBookUI arm64 \<ef531fadaa643784b49804c989536045\> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181d00000 - 0x181d13fff AssetsLibrary arm64 \<746519c032603236bdd5aba58fa8f00d\> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181ec4000 - 0x182181fff AudioToolbox arm64 \<352dbb7ad03b344584e5e1dc8fa318ea\> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182320000 - 0x18252cfff CFNetwork arm64 \<bf52bd798c9d3f5ba5e08362235390c0\> /System/Library/Frameworks/CFNetwork.framework/CFNetwork Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182530000 - 0x1825c7fff CloudKit arm64 \<5728c1d861ea37bd8504ed9d3bac8471\> /System/Library/Frameworks/CloudKit.framework/CloudKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1825c8000 - 0x18262dfff CoreAudio arm64 \<2ab4708d783a337b959fb2ba9303fc26\> /System/Library/Frameworks/CoreAudio.framework/CoreAudio Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182650000 - 0x182671fff CoreBluetooth arm64 \<5bd3e8fb52a53a599839316ab88192f3\> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182674000 - 0x1828b2fff CoreData arm64 \<4ef54d96f87d3a33bdef4dbaf09790fb\> /System/Library/Frameworks/CoreData.framework/CoreData Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1828b4000 - 0x182c10fff CoreFoundation arm64 \<8f2c2cca86f435118367064f044c8af3\> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182c14000 - 0x182d76fff CoreGraphics arm64 \<2c031f12b007347d9c3c8a751fe1ce99\> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182dcc000 - 0x182dcefff libCGXType.A.dylib arm64 \<98ae8d0b5089349fbe74f872d8330fb4\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182dd0000 - 0x182ddbfff libCMSBuiltin.A.dylib arm64 \<37ed055eac74360f8e63e828615a0e09\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182fd0000 - 0x182feefff libRIP.A.dylib arm64 \<9395d153e0a53b4094d8d8ab473ecfab\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182ff0000 - 0x18311dfff CoreImage arm64 \<1a8e265243ef3345bfc6ca14fb0210ff\> /System/Library/Frameworks/CoreImage.framework/CoreImage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183120000 - 0x18317efff CoreLocation arm64 \<5852321673e230b8a1c108c8a09e9529\> /System/Library/Frameworks/CoreLocation.framework/CoreLocation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1831b8000 - 0x183277fff CoreMedia arm64 \<4506da2462323c85bdeb8f641e12aeba\> /System/Library/Frameworks/CoreMedia.framework/CoreMedia Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183278000 - 0x183365fff CoreMotion arm64 \<381ea60514b03989bf24b8130d1c9f22\> /System/Library/Frameworks/CoreMotion.framework/CoreMotion Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183368000 - 0x1833d9fff CoreTelephony arm64 \<b3c45dc201db395794fbb112c020016e\> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1833dc000 - 0x1834e4fff CoreText arm64 \<eb47ed3c7f4136d99c82d1869b3f4b9e\> /System/Library/Frameworks/CoreText.framework/CoreText Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1834e8000 - 0x183504fff CoreVideo arm64 \<4344b0862c833616b45cb206c9ac616f\> /System/Library/Frameworks/CoreVideo.framework/CoreVideo Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183508000 - 0x18362afff EventKit arm64 \<a75b414120c03f6aa9b2fcb7c1b0d391\> /System/Library/Frameworks/EventKit.framework/EventKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18362c000 - 0x1837c3fff EventKitUI arm64 \<87ecd9eed7493579b910aa5c45c7f5da\> /System/Library/Frameworks/EventKitUI.framework/EventKitUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1837dc000 - 0x183a32fff Foundation arm64 \<d7439ba04f163911aa2abda9a2f2b3e7\> /System/Library/Frameworks/Foundation.framework/Foundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183a34000 - 0x183a5ffff GLKit arm64 \<171c2f8713a23d238763fc4e88627a84\> /System/Library/Frameworks/GLKit.framework/GLKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183a60000 - 0x183a89fff GSS arm64 \<cdb27dbd21bd3767b9da5a305da9d121\> /System/Library/Frameworks/GSS.framework/GSS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183aa0000 - 0x183aa0fff GameKit arm64 \<578cc036e1fa3eebb21d30ba61e99c85\> /System/Library/Frameworks/GameKit.framework/GameKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183b6c000 - 0x183bd7fff IOKit arm64 \<a39b5db69a3233b6856b023900115302\> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183bd8000 - 0x183e72fff ImageIO arm64 \<0d32c17abd6b32cfa917df3ae1eaf902\> /System/Library/Frameworks/ImageIO.framework/ImageIO Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183e74000 - 0x184314fff JavaScriptCore arm64 \<3e890e7de3bf3ceda33612556c9f0c6e\> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184a70000 - 0x184b85fff MapKit arm64 \<822d535d81ff3aa99dcacb40536c6b4a\> /System/Library/Frameworks/MapKit.framework/MapKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184b88000 - 0x184b8efff MediaAccessibility arm64 \<fea45025be6a34b8a9dff8b5abd71bf3\> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184b90000 - 0x184db1fff MediaPlayer arm64 \<10f5e082544b34c8b03c8ca306bd0242\> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184db4000 - 0x1851cefff MediaToolbox arm64 \<f7fb48bf487630648bfa4ff00147b80a\> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1851d0000 - 0x1852a3fff MessageUI arm64 \<540e852094893fceb4ca83470c55f903\> /System/Library/Frameworks/MessageUI.framework/MessageUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1852a4000 - 0x185317fff Metal arm64 \<7f8693f46d82335897d982222ec09dc7\> /System/Library/Frameworks/Metal.framework/Metal Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x185318000 - 0x1853c7fff MobileCoreServices arm64 \<aca65a0718ea3c9ca740ece1980f90ef\> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1854ec000 - 0x185521fff OpenAL arm64 \<722958fd5f56306a8b461a2e766afb50\> /System/Library/Frameworks/OpenAL.framework/OpenAL Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186454000 - 0x186548fff GLEngine arm64 \<4a2c57c376f93d8bbbd1916ffc021b4c\> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18654c000 - 0x186556fff OpenGLES arm64 \<4cb0e96b2de837a8ae59714fd9b44cc9\> /System/Library/Frameworks/OpenGLES.framework/OpenGLES Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18655c000 - 0x18655dfff libCVMSPluginSupport.dylib arm64 \<96c3edca748c3ba5a5a1256e4c3c8656\> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186560000 - 0x186563fff libCoreFSCache.dylib arm64 \<b38ec88ba1a83251bb664f038d89fabb\> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186564000 - 0x186568fff libCoreVMClient.dylib arm64 \<cfbf3b0693623f74976be575b782551a\> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18656c000 - 0x186576fff libGFXShared.dylib arm64 \<8be7a7dc70893f0c97e4802c1ebdb7d6\> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186578000 - 0x1865c3fff libGLImage.dylib arm64 \<e5c0d9d97e0a35dc9f547d1e9554b351\> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1865c4000 - 0x18673ffff libGLProgrammability.dylib arm64 \<e54aa4fff9253cffb594a163551ad4f5\> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186b2c000 - 0x186cb0fff QuartzCore arm64 \<1457c2add35f3846a44c6fc48bae2ae2\> /System/Library/Frameworks/QuartzCore.framework/QuartzCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186cb4000 - 0x186d0ffff QuickLook arm64 \<e8693e99a9943521be472dfa1ecfd18a\> /System/Library/Frameworks/QuickLook.framework/QuickLook Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186f44000 - 0x186f97fff Security arm64 \<9d616146a16b35a198be8987a3524d43\> /System/Library/Frameworks/Security.framework/Security Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186f98000 - 0x187023fff Social arm64 \<6d1135c50c2c37ac9777a2d6fe15196e\> /System/Library/Frameworks/Social.framework/Social Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x187140000 - 0x187158fff StoreKit arm64 \<7bdc554bc0c831e497bbe1aa13deeed4\> /System/Library/Frameworks/StoreKit.framework/StoreKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18715c000 - 0x1871d0fff SystemConfiguration arm64 \<0ef25273d9243e0c86f6daea42115cdd\> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1871d4000 - 0x1871d5fff Twitter arm64 \<4d28354e6dd236538a1b205450587c63\> /System/Library/Frameworks/Twitter.framework/Twitter Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1871d8000 - 0x187b50fff UIKit arm64 \<1b263519d017372db2bee18614a18c16\> /System/Library/Frameworks/UIKit.framework/UIKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x187b54000 - 0x187bcdfff VideoToolbox arm64 \<8db8a306b5b439d18bf6255a13dc5f27\> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x187c08000 - 0x187e66fff WebKit arm64 \<d9437c39fa3d3687a777dd88af72e690\> /System/Library/Frameworks/WebKit.framework/WebKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18821c000 - 0x18821ffff AGXCompilerConnection arm64 \<9c9618600c6b3119b02dce4a38fda542\> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1882a4000 - 0x1882b1fff AOSNotification arm64 \<8c4225c5cbd937d495433b502f74b4a3\> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188444000 - 0x1884a1fff AccountsDaemon arm64 \<4515a8e9e8993b27b31ce03b316141a0\> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1884a4000 - 0x1884cafff AccountsUI arm64 \<2e34d1a4663d3aa388bd83e3638cac68\> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1884cc000 - 0x1884d1fff AggregateDictionary arm64 \<600bfe6c8bfe34b9981e0d6ef8d25e13\> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1886d0000 - 0x188704fff AirPlaySupport arm64 \<e77c8d1f28303cb3be223f3bbb838013\> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18895c000 - 0x1889a4fff AppSupport arm64 \<a295d6c1d63b375c8de4bfe65da9b832\> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1889a8000 - 0x1889fcfff AppleAccount arm64 \<269ea366575d3ad3911529284d9aee13\> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188a00000 - 0x188a41fff AppleAccountUI arm64 \<0c16cf8420c731cdab158f2fe84f60bc\> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b08000 - 0x188b50fff AppleJPEG arm64 \<dcdc94f434b23d56ac7ed21aa69b82ea\> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b64000 - 0x188b78fff ApplePushService arm64 \<3383866652a33855af5174a6842096d8\> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b7c000 - 0x188b85fff AppleSRP arm64 \<759a89d419f63b1d9b8abb1829baa94c\> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b98000 - 0x188ba3fff AssertionServices arm64 \<b39148c677be352d8f25150f73597cdc\> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188ba4000 - 0x188bc0fff AssetsLibraryServices arm64 \<d34d345585d6350cbb60adb6b51d5128\> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188bc4000 - 0x188c03fff AssistantServices arm64 \<aafe26955d8d3b4da75a827841f8eb46\> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188c3c000 - 0x188c40fff BTLEAudioController arm64 \<3f3f6f5d5349355bac97d9b6b786e931\> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188c44000 - 0x188c60fff BackBoardServices arm64 \<6f387775b70b344f804a7c6034eb8766\> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188c68000 - 0x188ca5fff BaseBoard arm64 \<f4765765ca64395ca48559ab06c41af7\> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188cc0000 - 0x188cc7fff BluetoothManager arm64 \<4405a641141c3951ba64e5e448ca6b87\> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188cc8000 - 0x188cf8fff Bom arm64 \<f76dce9da4dd31d58066b502608276c6\> /System/Library/PrivateFrameworks/Bom.framework/Bom Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188df4000 - 0x188dfdfff CacheDelete arm64 \<b127e18650fa3c969ee00214f202ccd2\> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188e50000 - 0x188e80fff CalendarFoundation arm64 \<4ce102a671c73cd9b18bed75e5f69454\> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188e84000 - 0x188ea0fff CalendarUIKit arm64 \<142690af775130979e347b209b6bc08d\> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188fc0000 - 0x188fcafff CaptiveNetwork arm64 \<1fe8e861716635b9b5411641e4f93dfd\> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188fcc000 - 0x189116fff Celestial arm64 \<ddf2483c17703b8ea4ff2c3d957f39fe\> /System/Library/PrivateFrameworks/Celestial.framework/Celestial Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189128000 - 0x189143fff CertInfo arm64 \<de4b3db761f5330f88cf4802cbdb3cd9\> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189144000 - 0x18914afff CertUI arm64 \<d553a64c21d13b9b9f953b002789880d\> /System/Library/PrivateFrameworks/CertUI.framework/CertUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1892a8000 - 0x1892ccfff ChunkingLibrary arm64 \<002f285bde073b05a85f870f7456da9d\> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189700000 - 0x1897c4fff CloudPhotoLibrary arm64 \<b7f422a4beb53bb5aac07619c59fc7f9\> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189824000 - 0x189826fff CommonAuth arm64 \<4153eb0982ce315a98b6ad0ddc426471\> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189828000 - 0x18983afff CommonUtilities arm64 \<b0c064819893366ca1609c757cfaafb2\> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18983c000 - 0x189840fff CommunicationsFilter arm64 \<b13925af08823708a7ec1f460d260138\> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189928000 - 0x18992dfff ConstantClasses arm64 \<cab12fccf2a03f0884b59ddfc7d1f849\> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189930000 - 0x18996efff ContentIndex arm64 \<bd571ae773d33114bf2169c62c2ad8a4\> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189970000 - 0x189974fff CoreAUC arm64 \<5a9dfe0b01a539f080fa13c9295d7bae\> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1899b0000 - 0x189a10fff CoreDAV arm64 \<95c7006dc0a6304b8f55f4b5abeaf1b8\> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189a14000 - 0x189a3afff CoreDuet arm64 \<d9f9cb6c31fb361fb5021a5f0f4586b3\> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189a44000 - 0x189a57fff CoreDuetDaemonProtocol arm64 \<a2de0737796f3614bca9004bed4ed5f3\> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189a60000 - 0x189a62fff CoreDuetDebugLogging arm64 \<5044815f2a1b3219b09083b63e2c4a0a\> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189be8000 - 0x189d1ffff CoreMediaStream arm64 \<da283d1fb3e63219a5df5652a371798c\> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189d20000 - 0x189dd0fff CorePDF arm64 \<5b3c95c04f623b25b09c2c01e39de92a\> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189e44000 - 0x189e4ffff CoreRecents arm64 \<930b34c3649132f89dd3d57780189b2b\> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189edc000 - 0x189f00fff CoreServicesInternal arm64 \<c2b227a762bd366ca1c5b22823059085\> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a164000 - 0x18a1f6fff CoreUI arm64 \<a8851f39a69d31f4952fca8c94f723f2\> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a1f8000 - 0x18a274fff CoreUtils arm64 \<87cfa6e71bf934248ca4aea975951a4d\> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a278000 - 0x18a27efff CrashReporterSupport arm64 \<3269b618bc553679b3bccac4d63d4d82\> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a280000 - 0x18a286fff DAAPKit arm64 \<b326ab3807b13e33b7a3c092264a1fed\> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a288000 - 0x18a293fff DCIMServices arm64 \<43759f0ec0333fa8bf4989cf8802dba1\> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a294000 - 0x18a2e3fff DataAccess arm64 \<543b6498de7e3f609bb0fb8e63262d07\> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a540000 - 0x18a566fff DataAccessExpress arm64 \<c6c4ec04b3713357907877571d3794d1\> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a5b8000 - 0x18a5bffff DataMigration arm64 \<1248b6558b9a341ebe59a5f96dc691a7\> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a5c8000 - 0x18a5c9fff DiagnosticLogCollection arm64 \<185b5c8345e034b39c1881a3864e4284\> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a5cc000 - 0x18a5ecfff DictionaryServices arm64 \<a7faf6dee31330c9a0b3378eae91797d\> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a614000 - 0x18a63afff EAP8021X arm64 \<920d64a4105e346996d771f7f022635e\> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a770000 - 0x18a772fff FTClientServices arm64 \<190277544bd53c7eb50da507f39449b8\> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a774000 - 0x18a7a6fff FTServices arm64 \<2662463d07043f5d9605c1f48528b4f5\> /System/Library/PrivateFrameworks/FTServices.framework/FTServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a7a8000 - 0x18abd5fff FaceCore arm64 \<797f59eb23d63717ae6ee79a3ca5b09f\> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18abf0000 - 0x18abfdfff FindMyDevice arm64 \<60dd8a84303136e38ac23a52e3db6a04\> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ac58000 - 0x18ac58fff FontServices arm64 \<5a4ecba4c96d306f8bf5acc4c43b6120\> /System/Library/PrivateFrameworks/FontServices.framework/FontServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ac5c000 - 0x18ad3cfff libFontParser.dylib arm64 \<7bd1bf8aed1738ee9406cd6169ffa287\> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ad64000 - 0x18ad73fff libGSFontCache.dylib arm64 \<1218a74b3de53819a48ef2d195351242\> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ae80000 - 0x18aea0fff FrontBoardServices arm64 \<947af883c6d5381eac90af6c7a2980ea\> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b5cc000 - 0x18b5d6fff libGPUSupportMercury.dylib arm64 \<21b8eed1ccd0389192523d5d67a3ff43\> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b5d8000 - 0x18b677fff GameCenterFoundation arm64 \<11de14e3a2253a47be7f181d1ccc609c\> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b728000 - 0x18b77cfff GameCenterUI arm64 \<56765c7eff1d379db66e745608955098\> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b780000 - 0x18b8e0fff AVConference arm64 \<9c1c84a7a3b73717baff7a3c4e3af9fe\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b8f8000 - 0x18b922fff ICE arm64 \<33b41fbd5b88302899046058b9bbfcc6\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b924000 - 0x18b925fff LegacyHandle arm64 \<0a422630056d3fef8276cb7c7cd3041b\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b928000 - 0x18b933fff SimpleKeyExchange arm64 \<19677a6bbc663d3d89fbcaddb58396a0\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b934000 - 0x18b941fff ViceroyTrace arm64 \<22f3045f4a77388abb3958f384253035\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b944000 - 0x18b945fff snatmap arm64 \<b406a8cd0c3733b596d7b473be47d00e\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b948000 - 0x18b9cffff GameKitServices arm64 \<a5c93305ac37365ab3d1279175c1598a\> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b9d0000 - 0x18b9e9fff GenerationalStorage arm64 \<26c95953a64731dabbf497e4246eabd2\> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b9ec000 - 0x18bcd2fff GeoServices arm64 \<d4c950f074e134de993bcbce075282f5\> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18bcd4000 - 0x18bce7fff GraphicsServices arm64 \<8720ed4423eb322ba4f7a75ef0f3cbd9\> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18be40000 - 0x18bea8fff Heimdal arm64 \<53b184f6891d3aa4a2cd22ed667ede6f\> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18bf9c000 - 0x18c036fff HomeSharing arm64 \<e53a419412de3cf5ab42eabeddd977bd\> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c0a0000 - 0x18c10bfff IDS arm64 \<075f1fa3ae3b3016a0570662450e3d1f\> /System/Library/PrivateFrameworks/IDS.framework/IDS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c10c000 - 0x18c13afff IDSFoundation arm64 \<591f53c772503e298cefa279eb96ae92\> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c320000 - 0x18c391fff IMFoundation arm64 \<57dc25b2991f3b7f827256b8e167a826\> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c39c000 - 0x18c39ffff IOAccelerator arm64 \<473f8d645a6f37a1bd4d899b1f17c249\> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c3a4000 - 0x18c3abfff IOMobileFramebuffer arm64 \<2cc2449ff2cf322792233e7dd9eb2f1e\> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c3ac000 - 0x18c3b2fff IOSurface arm64 \<2c65b7a1f55c340c989089a72531a34d\> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c3b4000 - 0x18c3b6fff IOSurfaceAccelerator arm64 \<d0567d1fa91b3607804d86edf9ef1bb5\> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c470000 - 0x18c477fff IntlPreferences arm64 \<ad337f08747e342da1dea392d34ef561\> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c478000 - 0x18c4bafff LanguageModeling arm64 \<2ad559e1bc9035afa7da0d18649ace1b\> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c528000 - 0x18c537fff LegacyGameKit arm64 \<955367312bb536008fc5e924f071d6b3\> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c548000 - 0x18c58ffff MIME arm64 \<8ffc2bb16f5838789c752b2ba75a3b17\> /System/Library/PrivateFrameworks/MIME.framework/MIME Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c590000 - 0x18c5f9fff MMCS arm64 \<aea0488f82653e3fa9d2da557d6fd8f9\> /System/Library/PrivateFrameworks/MMCS.framework/MMCS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c65c000 - 0x18c669fff MailServices arm64 \<bf486c719a603105a561c7d235801b73\> /System/Library/PrivateFrameworks/MailServices.framework/MailServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c6a8000 - 0x18c763fff ManagedConfiguration arm64 \<a02b247ce2d6384c9c5af7a09905e378\> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c774000 - 0x18c775fff Marco arm64 \<f5b75855f02b33c9a7bda6b52b9604ad\> /System/Library/PrivateFrameworks/Marco.framework/Marco Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c778000 - 0x18c7fefff MediaControlSender arm64 \<8ffa36e1d6d43e8287cc31f4619ee542\> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c8b0000 - 0x18c8c8fff MediaRemote arm64 \<6c637d6f82c3338a8f41601bed98f037\> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c8cc000 - 0x18c8e1fff MediaServices arm64 \<a5c6864de8513b5bbaecece59a6cb6bf\> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c8e4000 - 0x18c900fff MediaStream arm64 \<43484bd00c773cefb64d65994de5bf0e\> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c904000 - 0x18c96bfff IMAP arm64 \<2e84e134eed533d5aa1c36d27a95ccc1\> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c97c000 - 0x18ca78fff Message arm64 \<c044d52e52c93540b4ece09453191860\> /System/Library/PrivateFrameworks/Message.framework/Message Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ca84000 - 0x18ca87fff MessageSupport arm64 \<d7b2dc7d51c630a896237190bc620ad2\> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ca98000 - 0x18caa7fff MobileAsset arm64 \<95a01014d4cd3f83b1581ff73c325a00\> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18caac000 - 0x18cad2fff MobileBackup arm64 \<256218fd958a3d989d32f359ce52991b\> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cad4000 - 0x18cae0fff MobileBluetooth arm64 \<02751e1fa0cd3ff1a77e7cbccc399cd2\> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18caf4000 - 0x18cb06fff MobileDeviceLink arm64 \<ab7803251baa37b080e7122790fa04c3\> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb08000 - 0x18cb11fff MobileIcons arm64 \<63fb058ed8cb38f6bb3018dd8888bbf5\> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb14000 - 0x18cb1dfff MobileInstallation arm64 \<abcbd119ce1b34e594fe14267f06901f\> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb20000 - 0x18cb2ffff MobileKeyBag arm64 \<0aaa6c56f086377eae1a0fd4842b6631\> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb6c000 - 0x18cb6ffff MobileSystemServices arm64 \<257e956743783e93950dd1c837a95206\> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb98000 - 0x18cba9fff MobileWiFi arm64 \<2494d9252f2c324aabdbf222a7aa49c6\> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cbf8000 - 0x18ce05fff MusicLibrary arm64 \<6e1fbd0fd5123a8099066fc95a6e4205\> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cfcc000 - 0x18cfdcfff NanoPreferencesSync arm64 \<3ed84b81506f33089cc21097f01e51dd\> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cfe0000 - 0x18cff8fff NanoRegistry arm64 \<bbc617b4d7b437a8a496c23ae0e7c3fc\> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d034000 - 0x18d03afff Netrb arm64 \<907181c6c4543d79830b1e8afe905802\> /System/Library/PrivateFrameworks/Netrb.framework/Netrb Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d03c000 - 0x18d043fff NetworkStatistics arm64 \<968f052ab6b638368b8e9c78d5d91e0b\> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d044000 - 0x18d066fff Notes arm64 \<06dfa91b55a2382ead4b155194eb369d\> /System/Library/PrivateFrameworks/Notes.framework/Notes Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d070000 - 0x18d073fff OAuth arm64 \<b08fc7a4067f3e00b352bc9bf34e6778\> /System/Library/PrivateFrameworks/OAuth.framework/OAuth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d848000 - 0x18d896fff OpenCL arm64 \<fc50451080f83b8d8e2760637df05097\> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18da04000 - 0x18da2dfff PersistentConnection arm64 \<a5c51d4d38ab3dab8d28a072736a8b43\> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18dbbc000 - 0x18de69fff PhotoLibraryServices arm64 \<df8ef3bd50053f9f951a890622a5daee\> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18de6c000 - 0x18de75fff PhotosFormats arm64 \<ba802b4d44823de58dcc1b70173d7a64\> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18de78000 - 0x18dec5fff PhysicsKit arm64 \<8a360488f4163915ad8a9306ce5cd711\> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18dec8000 - 0x18dee2fff PlugInKit arm64 \<c4412ae1be0f3a4a977201ba7f5227af\> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18dee4000 - 0x18deecfff PowerLog arm64 \<139ebc9d315f3601830f26caca9244bf\> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e148000 - 0x18e20ffff Preferences arm64 \<a983580e430730cb8b7e785324456e4a\> /System/Library/PrivateFrameworks/Preferences.framework/Preferences Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e210000 - 0x18e257fff PrintKit arm64 \<31e2f9ed34cf3d0a9ec70877ad234682\> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e25c000 - 0x18e31bfff ProofReader arm64 \<1ee3092b98653617b615fd9be27e169c\> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e31c000 - 0x18e32ffff ProtectedCloudStorage arm64 \<34b6d96c04843d6e95609ba20c893fe4\> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e330000 - 0x18e33efff ProtocolBuffer arm64 \<21e478eecc2737868e0489e8fe2c52e7\> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e380000 - 0x18e3fefff Quagga arm64 \<d5c3bff934ea3e5e8262da95d7ead3ec\> /System/Library/PrivateFrameworks/Quagga.framework/Quagga Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e660000 - 0x18e6a4fff RemoteUI arm64 \<5a4b71e067f3352d9cec1289c02cd2ac\> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e74c000 - 0x18e7f7fff SAObjects arm64 \<fd32a398dbe431b5ab2a73a5fac18139\> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e9c4000 - 0x18e9e4fff SpringBoardServices arm64 \<a32b01002d963f7e9bf2289225899561\> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ede0000 - 0x18ef3cfff StoreServices arm64 \<f2d0a6c2352236438fbf60e8890d0c35\> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18f030000 - 0x18f033fff TCC arm64 \<1331002ead2a352cbdfd8c99c2a3196c\> /System/Library/PrivateFrameworks/TCC.framework/TCC Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18f094000 - 0x18f0e0fff TelephonyUtilities arm64 \<ac254fb05b803a4598448b583656caa2\> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18fec4000 - 0x18fef2fff TextInput arm64 \<3824ec277bae36b6ab93ebd48905c86b\> /System/Library/PrivateFrameworks/TextInput.framework/TextInput Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ffd0000 - 0x1900aafff UIFoundation arm64 \<0589105a24a938e08a91c2e6cd07ebae\> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1900dc000 - 0x1900dffff UserFS arm64 \<8f03819273b73593b81e5ec31ed8a3c1\> /System/Library/PrivateFrameworks/UserFS.framework/UserFS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x190100000 - 0x1906adfff VectorKit arm64 \<5b0a49662bdc3043a3d0d4eac31e9b75\> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1906b0000 - 0x1907fcfff VideoProcessing arm64 \<6cd69bf3a4c33d7483dd21059e17b078\> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x190924000 - 0x190948fff VoiceServices arm64 \<ca711e8a1b493beda9ed78dce5c40056\> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1909fc000 - 0x190a24fff WebBookmarks arm64 \<042e96f6b3b63d788f24254a96a83f7e\> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x190a44000 - 0x19196bfff WebCore arm64 \<7f419cda818d3e1cb5743b0154c10169\> /System/Library/PrivateFrameworks/WebCore.framework/WebCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19196c000 - 0x191a3efff WebKitLegacy arm64 \<dfde04f7799f3533bdfa9ebae7857f51\> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191bcc000 - 0x191bccfff WirelessCoexManager arm64 \<2b5d381b7da4386c98586f789230f412\> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191bd0000 - 0x191c04fff WirelessDiagnostics arm64 \<6e32c271f644359ebe432d402e32275d\> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191c20000 - 0x191c27fff XPCKit arm64 \<8b5b40f8601f3e86abb74573f339d633\> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191c28000 - 0x191c31fff XPCObjects arm64 \<8efb6c340f443acca7579f49892e0d9d\> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191e64000 - 0x191e8efff iCalendar arm64 \<9bf75a63851c3a38800e37543db35039\> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191ebc000 - 0x191efefff iTunesStore arm64 \<c613fad2bcef3eacb2cb423e5a2a3bea\> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1926d8000 - 0x1926f2fff libAWDProtobufFacetimeiMessage.dylib arm64 \<6af9a3391491389297ea5a75f3a503ed\> /usr/lib/libAWDProtobufFacetimeiMessage.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19285c000 - 0x19287ffff libAWDSupportConfig.dylib arm64 \<7e768d5fa445399490b2ded7fe447322\> /usr/lib/libAWDSupportConfig.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192880000 - 0x1929e0fff libAWDSupportFramework.dylib arm64 \<8901f5799ab0379abe20319461485e05\> /usr/lib/libAWDSupportFramework.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1929e4000 - 0x1929e5fff libAWDSupportInfo.dylib arm64 \<6f24da5276913e04992c05a0a305d197\> /usr/lib/libAWDSupportInfo.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1929f4000 - 0x1929fdfff libAccessibility.dylib arm64 \<218c2118cd6e3ceb8a657c8faa3baece\> /usr/lib/libAccessibility.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192c90000 - 0x192cabfff libCRFSuite.dylib arm64 \<02b19f29c72f3e7a8994390e8b976329\> /usr/lib/libCRFSuite.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192cec000 - 0x192e23fff libFosl\_dynamic.dylib arm64 \<2fccec42906a3c15a4cb64bfaf070ff7\> /usr/lib/libFosl\_dynamic.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192e48000 - 0x192e62fff libMobileGestalt.dylib arm64 \<0671899969373e4a9c00d1d3b67efd2c\> /usr/lib/libMobileGestalt.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192e94000 - 0x192e95fff libSystem.B.dylib arm64 \<3c676f137a7a380f9d2ee3d176131c75\> /usr/lib/libSystem.B.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192f18000 - 0x192f66fff libTelephonyUtilDynamic.dylib arm64 \<b1a777b3a0f33fb7bb6a173b3c06bdf2\> /usr/lib/libTelephonyUtilDynamic.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193090000 - 0x1930bafff libarchive.2.dylib arm64 \<458c2e89d2e63110a68c8a3fb5328ab7\> /usr/lib/libarchive.2.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1930bc000 - 0x1930bcfff libassertion\_extension.dylib arm64 \<d484757be3ed38ad817cfa5109da03cb\> /usr/lib/libassertion\_extension.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1930fc000 - 0x19310cfff libbsm.0.dylib arm64 \<4abeca43c0773000ac890e047bb222ef\> /usr/lib/libbsm.0.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193110000 - 0x193120fff libbz2.1.0.dylib arm64 \<f32fe77dd04734cf9a9d48c62c3ffa85\> /usr/lib/libbz2.1.0.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193124000 - 0x19317afff libc++.1.dylib arm64 \<ee592e72d20d34fb81ebc7f8dda898ac\> /usr/lib/libc++.1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19317c000 - 0x19319efff libc++abi.dylib arm64 \<a409707dc8ce3d9f9f60ccff239dd011\> /usr/lib/libc++abi.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1931a4000 - 0x1931b5fff libcmph.dylib arm64 \<eeebc89e4ec63c9a82b08db05f267444\> /usr/lib/libcmph.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1931fc000 - 0x193219fff libextension.dylib arm64 \<89754e963f1d34d0af1abdf6cdbcdc17\> /usr/lib/libextension.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193248000 - 0x19324dfff libheimdal-asn1.dylib arm64 \<e544c3c5902b3573a036389be10322d4\> /usr/lib/libheimdal-asn1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193250000 - 0x193343fff libiconv.2.dylib arm64 \<1a4643b9a813384286e0cf84f2a9e011\> /usr/lib/libiconv.2.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193344000 - 0x19352bfff libicucore.A.dylib arm64 \<c185b14bc4303f8cac8b2d82880818bd\> /usr/lib/libicucore.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193540000 - 0x193541fff liblangid.dylib arm64 \<c6687d2f9df43d86bf316ef0b3a44e0b\> /usr/lib/liblangid.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193544000 - 0x193550fff liblockdown.dylib arm64 \<bd3a926b7141304587be3ba34355c11c\> /usr/lib/liblockdown.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193554000 - 0x19356dfff liblzma.5.dylib arm64 \<60c964271c2a3e1b8bd6d174f69a2f30\> /usr/lib/liblzma.5.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193944000 - 0x19395cfff libmis.dylib arm64 \<c55d38ebfb773176a11e4a3de1900e8e\> /usr/lib/libmis.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1939a8000 - 0x193ba4fff libobjc.A.dylib arm64 \<3dfe5a83ab92338b8e45b3b7fe4edb6c\> /usr/lib/libobjc.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193c20000 - 0x193c89fff libprotobuf.dylib arm64 \<d260fa17899837a897f0937cc23266b6\> /usr/lib/libprotobuf.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193c8c000 - 0x193ca9fff libresolv.9.dylib arm64 \<c12ecdb1696f3542b66be11f09b2b429\> /usr/lib/libresolv.9.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193cdc000 - 0x193db9fff libsqlite3.dylib arm64 \<62d0e2b07cb436a79313f8fc1c81470b\> /usr/lib/libsqlite3.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193dbc000 - 0x193e0efff libstdc++.6.dylib arm64 \<5011461180563aa09630d6ede5372acf\> /usr/lib/libstdc++.6.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193e10000 - 0x193e42fff libtidy.A.dylib arm64 \<821b9e84d37637658182b872d3fed0aa\> /usr/lib/libtidy.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193e44000 - 0x193e4dfff libtzupdate.dylib arm64 \<850691cbc15639dfba286ff09be82d8b\> /usr/lib/libtzupdate.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193e54000 - 0x193f42fff libxml2.2.dylib arm64 \<4d23734e8cd6356bbbeb51968458abb6\> /usr/lib/libxml2.2.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f44000 - 0x193f6dfff libxslt.1.dylib arm64 \<521c7c60e95b352ca40a9e0d0c56ae24\> /usr/lib/libxslt.1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f70000 - 0x193f81fff libz.1.dylib arm64 \<928345b4ed713766a1a39a420aa2118c\> /usr/lib/libz.1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f84000 - 0x193f88fff libcache.dylib arm64 \<f9e311097bc63af996c8079d8a8ae5b1\> /usr/lib/system/libcache.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f8c000 - 0x193f98fff libcommonCrypto.dylib arm64 \<1815a24510133e849239b8dbdabb3aab\> /usr/lib/system/libcommonCrypto.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f9c000 - 0x193f9ffff libcompiler\_rt.dylib arm64 \<adbd24d2e5113f32bfed4f387c6982a6\> /usr/lib/system/libcompiler\_rt.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193fa0000 - 0x193fa7fff libcopyfile.dylib arm64 \<65b38b57f99631fdb5b53ff412cb28a3\> /usr/lib/system/libcopyfile.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193fa8000 - 0x193ffdfff libcorecrypto.dylib arm64 \<889941c9cd223dcebbcdbdb327097242\> /usr/lib/system/libcorecrypto.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194000000 - 0x194028fff libdispatch.dylib arm64 \<b7282712caa63de08f86813768cffcbf\> /usr/lib/system/libdispatch.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19402c000 - 0x19402efff libdyld.dylib arm64 \<6f53e5e1c04a366896ffee9246893304\> /usr/lib/system/libdyld.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194030000 - 0x194030fff liblaunch.dylib arm64 \<855ac551fdde3f77b53f83cb1b3ebdbf\> /usr/lib/system/liblaunch.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194034000 - 0x194039fff libmacho.dylib arm64 \<3a37a2820c9037fc84426f9061147c47\> /usr/lib/system/libmacho.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19403c000 - 0x19403dfff libremovefile.dylib arm64 \<790de8759aa23cec9648d34b11bbbfc8\> /usr/lib/system/libremovefile.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194040000 - 0x194055fff libsystem\_asl.dylib arm64 \<bf21ee177b723e82b17b1a66811f5181\> /usr/lib/system/libsystem\_asl.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194058000 - 0x194059fff libsystem\_blocks.dylib arm64 \<0839472ff8773bdea33e5595129f7c59\> /usr/lib/system/libsystem\_blocks.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19405c000 - 0x1940dcfff libsystem\_c.dylib arm64 \<5eee09894c023d22afe4d420fb35a9b5\> /usr/lib/system/libsystem\_c.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940e0000 - 0x1940e2fff libsystem\_configuration.dylib arm64 \<a249ab4804eb30c48bf8ec515fbe1521\> /usr/lib/system/libsystem\_configuration.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940e4000 - 0x1940e5fff libsystem\_coreservices.dylib arm64 \<ef301d23ae3a33c08e9f5a9e3714c47b\> /usr/lib/system/libsystem\_coreservices.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940e8000 - 0x1940f8fff libsystem\_coretls.dylib arm64 \<b3849f2889013d9cb6fda10999e2d1f6\> /usr/lib/system/libsystem\_coretls.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940fc000 - 0x194104fff libsystem\_dnssd.dylib arm64 \<d703aff7c15b3347adb1e649587ded5c\> /usr/lib/system/libsystem\_dnssd.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194108000 - 0x194129fff libsystem\_info.dylib arm64 \<e319fda9213836949d6d9385b4546b3c\> /usr/lib/system/libsystem\_info.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19412c000 - 0x19414cfff libsystem\_kernel.dylib arm64 \<3e54c7bc049e391b810aba73f0ab6b0f\> /usr/lib/system/libsystem\_kernel.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194150000 - 0x19416cfff libsystem\_m.dylib arm64 \<d8c4d183d3483d18b527447c072ee9da\> /usr/lib/system/libsystem\_m.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194170000 - 0x194189fff libsystem\_malloc.dylib arm64 \<2540c115b94932fb9956d69946caee34\> /usr/lib/system/libsystem\_malloc.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19418c000 - 0x1941c3fff libsystem\_network.dylib arm64 \<75b6934e414631139f85e5fb793d8597\> /usr/lib/system/libsystem\_network.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941c4000 - 0x1941cafff libsystem\_networkextension.dylib arm64 \<f081518337df3f30b03a57b8e8e71ec2\> /usr/lib/system/libsystem\_networkextension.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941cc000 - 0x1941d6fff libsystem\_notify.dylib arm64 \<9843d03ada163e9685d4ffe88f6c0041\> /usr/lib/system/libsystem\_notify.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941d8000 - 0x1941dcfff libsystem\_platform.dylib arm64 \<12ff138b89f33dbf954451dfef6d3365\> /usr/lib/system/libsystem\_platform.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941e0000 - 0x1941e8fff libsystem\_pthread.dylib arm64 \<c69b9555ae9d3d1191f057c7b78fcd92\> /usr/lib/system/libsystem\_pthread.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941ec000 - 0x1941eefff libsystem\_sandbox.dylib arm64 \<70d36da6677d36fdae465cdb40ce55c3\> /usr/lib/system/libsystem\_sandbox.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941f0000 - 0x1941f3fff libsystem\_stats.dylib arm64 \<2b9b5540e37e3cda9e6785ed43258bb1\> /usr/lib/system/libsystem\_stats.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941f4000 - 0x1941fafff libsystem\_trace.dylib arm64 \<de796458167b37c395e5528e3155f534\> /usr/lib/system/libsystem\_trace.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941fc000 - 0x194201fff libunwind.dylib arm64 \<70db9f10a72731588be15afffca71205\> /usr/lib/system/libunwind.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194204000 - 0x194227fff libxpc.dylib arm64 \<3c982bc25b46305a9a093c3d15332820\> /usr/lib/system/libxpc.dylib
Obviously the xxxxx’s are where I blocked out the actual ID’s.
Hope this helps
This might speed things up, I tried isolating the other plugins, if I take out:
["plugin.notifications"] = { publisherId = "com.coronalabs" },
No crash :blink:
If I leave it in, as soon as I call GameThrive.Init() then the app crashes.
Just as an FYI, the subject really needs to be rewritten. It reads “Seems to be broken in latest daily build”. When people see that, we don’t know what is broken. I’m assuming because you posted this to the GameThrive forum there would be an assumption we would understand that this is about GameThrive, but there are many ways for people to find this thread, such as reading “Recent Posts” or a Google search. It’s imperative that you write good subjects when you post.
Thanks
Rob
I will try harder next time I promise.
Phil,
I was able to reproduce the iOS crash on GameThrive.init when I added the “plugin.notifications” plugin to my build settings as well on build 2015.2599. It seems there was a crash issue with Corona’s local notifications from build 2594-2599 but has been fixed in 2600. I just tried build 2600 and this crash no longer happens.
https://developer.coronalabs.com/release/2015/2600/
Thanks.
Somehow 2605 is not working as well. 2600 is fine.
Hello Falcon777,
Is the issue happening on iOS? Could provide a full log as well?
Thanks.
I am having this problem as well. I am using Build 2607. This only happens when I request the gameThrive plugin. Everytime I try to fire it up on a device I get something along the lines of
“appName”; pid: “#”; hostpid: -1> to 2, priority: No such process
If I comment out the gameThrive plugin, the app fires up fine.
Hello Falcon777 and mytime1012,
I have tested our GameThrive plugin on Corona build 2015.2607 on iOS 8.2 with iOS SDK 8.2 and everything is working without a crash or error. Could you post your full crash log, the iOS version your testing on, and the iOS SDK version your using?
Thanks.
The following is the crash report I get on iPhone 5c running IOS 8.2
Building with Xcode Version 6.2
Corona SDK version 2607, building for IOS 8.2, iPhone only
Plugins I’m using in my app
plugins = {
[“CoronaProvider.analytics.flurry”] = {
– required
publisherId = “com.coronalabs”,
},
[“plugin.google.play.services”] = {
publisherId = “com.coronalabs”,
},
[“CoronaProvider.native.popup.social”] =
{
--required
publisherId = “com.coronalabs”,
},
[“CoronaProvider.native.popup.activity”] =
{
--required
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, [“iphone-sim”]=true },
},
[“plugin.openssl”] =
{
publisherId = “com.coronalabs”,
},
[“plugin.notifications”] =
{
publisherId = “com.coronalabs”
},
[“plugin.GameThrivePushNotifications”] =
{
publisherId = “com.gamethrive”,
},
mytime1012,
Thanks for posting your full log. The trace shows that it is crashing on some generic iOS code and doesn’t point to a part with in GameThrive. It is still possible that there could be some kind of conflict with plugins however.
I tried to produce your crash by copy and pasting the existing lines of your build.settings but I wasn’t able to reproduce a crash. Can you try reproducing your crash from our example app? It is located here: https://github.com/GameThrive/GameThrive-Corona-SDK-Push-Notification-Plugin-Sample
If the sample does not crash for you add your plugins and start adding the lua code to initialize them one by one to see if the crash happens then.
Thanks.
Hello,
I just tested our GameThive plugin on Corona build 2015.2599 and GameThrive is initializing correctly without any errors. I tested on iOS 8.2 and Android 5.0.2.
Could you send us the full error you getting and what OS version your testing on? Also could you send us your full build.settings?
Thanks.
No problem, I created a blank app this morning with just the following and it crashes…
Build.settings:
-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "portrait", supported = { "portrait", "portraitUpsideDown"} }, iphone = { plist = { CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-60@3x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-40@3x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", "Icon-Small.png", "Icon-Small@2x.png", "Icon-Small@3x.png" }, UILaunchImages = { { -- iPhone 4 Portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 480}" }, { -- iPhone 4 LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{320, 480}" }, { -- iPhone 4 LandscapeRight ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{320, 480}" }, { -- iPhone 5 Portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{320, 568}" }, { -- iPhone 5 LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{320, 568}" }, { -- iPhone 5 LandscapeRight ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-568h", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{320, 568}" }, { -- iPad Portrait ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Portrait", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{768, 1024}" }, { -- iPad LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Landscape", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{768, 1024}" }, { -- iPad LandscapeRight ["UILaunchImageMinimumOSVersion"] = "7.0", ["UILaunchImageName"] = "Default-Landscape", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{768, 1024}" }, { -- iPhone 6 Portrait ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 LandscapeRight ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-667h", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{375, 667}" }, { -- iPhone 6 Plus Portrait ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-736h", ["UILaunchImageOrientation"] = "Portrait", ["UILaunchImageSize"] = "{414, 736}" }, { -- iPhone 6 Plus LandscapeLeft ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-Landscape-736h", ["UILaunchImageOrientation"] = "LandscapeLeft", ["UILaunchImageSize"] = "{414, 736}" }, { -- iPhone 6 Plus LandscapeRight ["UILaunchImageMinimumOSVersion"] = "8.0", ["UILaunchImageName"] = "Default-Landscape-736h", ["UILaunchImageOrientation"] = "LandscapeRight", ["UILaunchImageSize"] = "{414, 736}" }, }, UIStatusBarHidden = true, UIAppFonts = {}, UIPrerenderedIcon = true, UIFileSharingEnabled = false, UIApplicationExitsOnSuspend = false, FacebookAppID = "xxxxxxxxxxx", CFBundleURLTypes = { { CFBundleURLSchemes = { "xxxxxxxxxxx", } } } }, skipPNGCrush = true, }, -- Android permissions android = { permissions = { { name = ".permission.C2D\_MESSAGE", protectionLevel = "signature" }, }, usesPermissions = { "android.permission.INTERNET", "android.permission.GET\_ACCOUNTS", "android.permission.RECEIVE\_BOOT\_COMPLETED", "com.google.android.c2dm.permission.RECEIVE", ".permission.C2D\_MESSAGE", }, }, plugins = { ["CoronaProvider.analytics.flurry"] = { publisherId = "com.coronalabs", }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true }, }, ["plugin.GameThrivePushNotifications"] = { publisherId = "com.gamethrive", }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, ["plugin.notifications"] = { publisherId = "com.coronalabs" }, ["facebook"] = { publisherId = "com.coronalabs" }, } }
main.lua:
-- This function gets called when the player opens the notification function DidReceiveRemoteNotification(message, additionalData, isActive) if (additionalData) then if (additionalData.discount) then native.showAlert( "Discount!", message, { "OK" } ) -- Take player to your game store elseif(additionalData.bonusCredits) then native.showAlert( "Bonus Credits!", message, { "OK" } ) -- Add credits and take player your game store or inventory if you like elseif(additionalData.actionSelected) then -- Interactive notification button pressed native.showAlert("Button Pressed!", "ButtonID:" .. additionalData.actionSelected, { "OK"} ) end end end local GameThrive = require("plugin.GameThrivePushNotifications") GameThrive.Init('xxxxxxxxxx', '', DidReceiveRemoteNotification)
xCode terminal:
Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Platform: iPhone / iPhone7,2 / 8.2 / Apple A8 GPU / OpenGL ES 2.0 Apple A8 GPU - 50.6.11 / 2015.2599 Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Starting Corona GameThrive SDK v1.8.0 Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Device Registered with Apple: xxxx Mar 28 10:40:22 Phils-iPhone GT Crash[622] \<Warning\>: Device Registered with GameThrive: xxxxx Mar 28 10:40:22 Phils-iPhone wifid[37] \<Notice\>: WiFi:[449232022.551317]: BG Application: Not Present, BG Daemon: Present. Daemons: UserEventAgent networkd apsd Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: task\_set\_exception\_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Notice\>: ReportCrash acting against PID 622 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Notice\>: Formulating crash report for process GT Crash[622] Mar 28 10:40:22 Phils-iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.supertapp.shoppingarcadefun[0x1a47][622]) \<Notice\>: Service exited due to signal: Segmentation fault: 11 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Not saving crash log because we have reached the limit for logs to store on disk. Sync or otherwise clear logs from /var/mobile/Library/Logs/CrashReporter to save new logs. Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Could not save crash report to disk! Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Incident Identifier: FCA365BF-FDA2-48C3-AC31-353E03C90554 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: CrashReporter Key: 73fa34473b4834db48213772af97e899a1f35e3f Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Hardware Model: iPhone7,2 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Process: GT Crash [622] Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Path: /private/var/mobile/Containers/Bundle/Application/BA694870-2D5B-4FEA-AD41-3B190F2A02F3/GT Crash.app/GT Crash Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Identifier: GT Crash Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Version: ??? Mar 28 10:40:22 Phils-iPhone SpringBoard[53] \<Warning\>: Application 'UIKitApplication:com.supertapp.shoppingarcadefun[0x1a47]' crashed. Mar 28 10:40:22 Phils-iPhone assertiond[63] \<Warning\>: pid\_suspend failed for \<BKNewProcess: 0x12dd09e20; com.supertapp.shoppingarcadefun; pid: 622; hostpid: -1\>: Unknown error: -1, Unknown error: -1 Mar 28 10:40:22 Phils-iPhone assertiond[63] \<Warning\>: Could not set priority of \<BKNewProcess: 0x12dd09e20; com.supertapp.shoppingarcadefun; pid: 622; hostpid: -1\> to 2, priority: No such process Mar 28 10:40:22 Phils-iPhone assertiond[63] \<Warning\>: Could not set priority of \<BKNewProcess: 0x12dd09e20; com.supertapp.shoppingarcadefun; pid: 622; hostpid: -1\> to 4096, priority: No such process Mar 28 10:40:22 Phils-iPhone SpringBoard[53] \<Warning\>: Unable to deliver -[UIRemoteApplication showTopMostMiniAlertWithSynchronizationPort:] message to port 0: (ipc/send) invalid destination port Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Code Type: ARM-64 (Native) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Parent Process: launchd [1] Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Date/Time: 2015-03-28 10:40:22.611 +0000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Launch Time: 2015-03-28 10:40:21.513 +0000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: OS Version: iOS 8.2 (12D508) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Report Version: 105 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Exception Type: EXC\_BAD\_ACCESS (SIGSEGV) Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Exception Subtype: KERN\_INVALID\_ADDRESS at 0x0000000000000020 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Triggered by Thread: 0 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 0 name: Dispatch queue: com.apple.main-thread Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 0 Crashed: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 GT Crash 0x00000001000b250c 0x10002c000 + 550156 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 GT Crash 0x000000010009c670 0x10002c000 + 460400 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 GT Crash 0x000000010009c670 0x10002c000 + 460400 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 3 GT Crash 0x00000001002c2c3c 0x10002c000 + 2714684 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 4 GT Crash 0x00000001002c2c9c 0x10002c000 + 2714780 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 5 GT Crash 0x00000001002c3140 0x10002c000 + 2715968 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 6 CoreFoundation 0x00000001829e034c 0x1828b4000 + 1229644 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 7 CoreFoundation 0x00000001828de218 0x1828b4000 + 172568 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 8 CoreFoundation 0x00000001828e2dac 0x1828b4000 + 191916 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 9 GT Crash 0x000000010004be58 0x10002c000 + 130648 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 10 CoreFoundation 0x00000001829de1c0 0x1828b4000 + 1221056 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 11 CoreFoundation 0x00000001828e2c48 0x1828b4000 + 191560 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 12 UIKit 0x000000018758362c 0x1871d8000 + 3847724 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 13 UIKit 0x0000000187584918 0x1871d8000 + 3852568 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 14 AppSupport 0x000000018895f424 0x18895c000 + 13348 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 15 CoreFoundation 0x0000000182992544 0x1828b4000 + 910660 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 16 CoreFoundation 0x00000001829924a4 0x1828b4000 + 910500 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 17 CoreFoundation 0x0000000182990424 0x1828b4000 + 902180 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 18 CoreFoundation 0x00000001828bd1f0 0x1828b4000 + 37360 Mar 28 10:40:22 Phils-iPhone locationd[60] \<Notice\>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 19 GraphicsServices 0x000000018bcdf6f8 0x18bcd4000 + 46840 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 20 UIKit 0x000000018724e108 0x1871d8000 + 483592 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 21 GT Crash 0x00000001000310a4 0x10002c000 + 20644 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 22 libdyld.dylib 0x000000019402ea04 0x19402c000 + 10756 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 1 name: Dispatch queue: com.apple.libdispatch-manager Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 1: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x000000019412cc24 0x19412c000 + 3108 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libdispatch.dylib 0x0000000194011e6c 0x194000000 + 73324 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libdispatch.dylib 0x0000000194003998 0x194000000 + 14744 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 2 name: Dispatch queue: com.apple.cfprefsd.daemon.waitq Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 2: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x000000019412ce0c 0x19412c000 + 3596 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_kernel.dylib 0x000000019412cc84 0x19412c000 + 3204 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_kernel.dylib 0x000000019412d3f0 0x19412c000 + 5104 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 3 libdispatch.dylib 0x00000001940054cc 0x194000000 + 21708 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 4 libdispatch.dylib 0x0000000194005210 0x194000000 + 21008 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 5 libdispatch.dylib 0x00000001940104b8 0x194000000 + 66744 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 6 libxpc.dylib 0x00000001942085fc 0x194204000 + 17916 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 7 libxpc.dylib 0x000000019420859c 0x194204000 + 17820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 8 libdispatch.dylib 0x0000000194001950 0x194000000 + 6480 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 9 libdispatch.dylib 0x000000019400c0a0 0x194000000 + 49312 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 10 libdispatch.dylib 0x0000000194004a58 0x194000000 + 19032 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 11 libdispatch.dylib 0x000000019400e314 0x194000000 + 58132 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 12 libdispatch.dylib 0x000000019400fc48 0x194000000 + 64584 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 13 libsystem\_pthread.dylib 0x00000001941e1228 0x1941e0000 + 4648 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 14 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 3: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 4: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 5 name: com.apple.NSURLConnectionLoader Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 5: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libdispatch.dylib 0x0000000194002830 0x194000000 + 10288 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libdispatch.dylib 0x0000000194002828 0x194000000 + 10280 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libcommonCrypto.dylib 0x0000000193f93d88 0x193f8c000 + 32136 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 3 Security 0x0000000186f57a04 0x186f44000 + 80388 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 4 Security 0x0000000186f58cbc 0x186f44000 + 85180 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 5 CFNetwork 0x000000018232558c 0x182320000 + 21900 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 6 CFNetwork 0x0000000182324bdc 0x182320000 + 19420 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 7 CoreFoundation 0x00000001828d53fc 0x1828b4000 + 136188 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 8 CoreFoundation 0x00000001828bc508 0x1828b4000 + 34056 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 9 CoreFoundation 0x00000001828c62f4 0x1828b4000 + 74484 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 10 CFNetwork 0x00000001823e1d40 0x182320000 + 793920 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 11 CFNetwork 0x00000001823e5610 0x182320000 + 808464 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 12 CFNetwork 0x00000001823e5c44 0x182320000 + 810052 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 13 CFNetwork 0x000000018233b764 0x182320000 + 112484 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 14 CoreFoundation 0x00000001828bcbf8 0x1828b4000 + 35832 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 15 CFNetwork 0x000000018233b610 0x182320000 + 112144 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 16 CFNetwork 0x000000018233b4c4 0x182320000 + 111812 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 17 CFNetwork 0x000000018233b2f0 0x182320000 + 111344 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 18 CoreFoundation 0x0000000182992d30 0x1828b4000 + 912688 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 19 CoreFoundation 0x0000000182991fd4 0x1828b4000 + 909268 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 20 CoreFoundation 0x0000000182990084 0x1828b4000 + 901252 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 21 CoreFoundation 0x00000001828bd1f0 0x1828b4000 + 37360 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 22 CFNetwork 0x00000001823be2a0 0x182320000 + 647840 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 23 Foundation 0x00000001838d2304 0x1837dc000 + 1008388 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 24 libsystem\_pthread.dylib 0x00000001941e3dc4 0x1941e0000 + 15812 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 25 libsystem\_pthread.dylib 0x00000001941e3d20 0x1941e0000 + 15648 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 26 libsystem\_pthread.dylib 0x00000001941e0ef4 0x1941e0000 + 3828 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 6: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 7: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0 libsystem\_kernel.dylib 0x0000000194147c78 0x19412c000 + 113784 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 1 libsystem\_pthread.dylib 0x00000001941e12d8 0x1941e0000 + 4824 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 2 libsystem\_pthread.dylib 0x00000001941e0eec 0x1941e0000 + 3820 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Thread 0 crashed with ARM Thread State (64-bit): Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x0: 0x0000000000000000 x1: 0x00000001003010eb x2: 0x0000000000000007 x3: 0x000000019405d5e5 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x4: 0x0000000000000001 x5: 0x0000000000000000 x6: 0x8b0ea01752f1e7d5 x7: 0x0000000000000000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x8: 0x0000000000000001 x9: 0x00000001003010ea x10: 0x0000000000000000 x11: 0x00000000f219045a Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x12: 0x0000000000000052 x13: 0x0000000000000000 x14: 0x53f431963c14a5af x15: 0x000000000000008c Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x16: 0x000000019405d6a0 x17: 0x00000001002c323c x18: 0x0000000000000000 x19: 0x0000000000000000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x20: 0x0000000000000007 x21: 0x00000001003010eb x22: 0x0000000134d0e9d0 x23: 0x00000000443d7b78 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x24: 0x0000000000000018 x25: 0x0000000000000008 x26: 0x0000000000000001 x27: 0x000000016fdd1828 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: x28: 0x0000000174011120 fp: 0x000000016fdd1650 lr: 0x000000010009c674 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: sp: 0x000000016fdd1620 pc: 0x00000001000b250c cpsr: 0x80000000 Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: Binary Images: Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x10002c000 - 0x1003fbfff GT Crash arm64 \<bfe2c65e3c0830ffaa3b08c1a0f1e71b\> /var/mobile/Containers/Bundle/Application/BA694870-2D5B-4FEA-AD41-3B190F2A02F3/GT Crash.app/GT Crash Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x120070000 - 0x120097fff dyld arm64 \<cbe9c4c5c080329aad62c7d2ef0e2b85\> /usr/lib/dyld Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181100000 - 0x181198fff AGXGLDriver arm64 \<e2e5278deddb35d3ae2ccadc5035e310\> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1811b4000 - 0x181347fff AVFoundation arm64 \<a0028621d1c030c18134b4d5ef0f4dd9\> /System/Library/Frameworks/AVFoundation.framework/AVFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181348000 - 0x1813acfff libAVFAudio.dylib arm64 \<39796038cde83934a6b610acf7d390e5\> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1813f0000 - 0x1813f0fff Accelerate arm64 \<63d7fa4579f734c6b4305ec308608dbd\> /System/Library/Frameworks/Accelerate.framework/Accelerate Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181408000 - 0x181627fff vImage arm64 \<c5393a13f8f63a369d024644d877d714\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181628000 - 0x1816cffff libBLAS.dylib arm64 \<0c01cae9dbe3333fa4853cf8e348adfa\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1816d0000 - 0x181a4afff libLAPACK.dylib arm64 \<0446cba8ab043e1891ddc27c9ae49996\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181a4c000 - 0x181a61fff libLinearAlgebra.dylib arm64 \<7337464e923d3027a2bb769e3fc2dbe4\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181a64000 - 0x181accfff libvDSP.dylib arm64 \<e3883da1b693391199aacb00540ef7f7\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181ad0000 - 0x181af3fff libvMisc.dylib arm64 \<ef13193c192138aaa45e2d828e51651b\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181af4000 - 0x181af4fff vecLib arm64 \<43888b6baa1d36f7983ee020eee68835\> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181af8000 - 0x181b26fff Accounts arm64 \<83225ceee3cc33e69a7ac742274d5ac7\> /System/Library/Frameworks/Accounts.framework/Accounts Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181b28000 - 0x181b28fff AdSupport arm64 \<62d19775c2b03a109270b95f935fb992\> /System/Library/Frameworks/AdSupport.framework/AdSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181b2c000 - 0x181baafff AddressBook arm64 \<145b887f147d3c00817f1f44ff330355\> /System/Library/Frameworks/AddressBook.framework/AddressBook Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181bac000 - 0x181cfdfff AddressBookUI arm64 \<ef531fadaa643784b49804c989536045\> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181d00000 - 0x181d13fff AssetsLibrary arm64 \<746519c032603236bdd5aba58fa8f00d\> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x181ec4000 - 0x182181fff AudioToolbox arm64 \<352dbb7ad03b344584e5e1dc8fa318ea\> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182320000 - 0x18252cfff CFNetwork arm64 \<bf52bd798c9d3f5ba5e08362235390c0\> /System/Library/Frameworks/CFNetwork.framework/CFNetwork Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182530000 - 0x1825c7fff CloudKit arm64 \<5728c1d861ea37bd8504ed9d3bac8471\> /System/Library/Frameworks/CloudKit.framework/CloudKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1825c8000 - 0x18262dfff CoreAudio arm64 \<2ab4708d783a337b959fb2ba9303fc26\> /System/Library/Frameworks/CoreAudio.framework/CoreAudio Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182650000 - 0x182671fff CoreBluetooth arm64 \<5bd3e8fb52a53a599839316ab88192f3\> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182674000 - 0x1828b2fff CoreData arm64 \<4ef54d96f87d3a33bdef4dbaf09790fb\> /System/Library/Frameworks/CoreData.framework/CoreData Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1828b4000 - 0x182c10fff CoreFoundation arm64 \<8f2c2cca86f435118367064f044c8af3\> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182c14000 - 0x182d76fff CoreGraphics arm64 \<2c031f12b007347d9c3c8a751fe1ce99\> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182dcc000 - 0x182dcefff libCGXType.A.dylib arm64 \<98ae8d0b5089349fbe74f872d8330fb4\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182dd0000 - 0x182ddbfff libCMSBuiltin.A.dylib arm64 \<37ed055eac74360f8e63e828615a0e09\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182fd0000 - 0x182feefff libRIP.A.dylib arm64 \<9395d153e0a53b4094d8d8ab473ecfab\> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x182ff0000 - 0x18311dfff CoreImage arm64 \<1a8e265243ef3345bfc6ca14fb0210ff\> /System/Library/Frameworks/CoreImage.framework/CoreImage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183120000 - 0x18317efff CoreLocation arm64 \<5852321673e230b8a1c108c8a09e9529\> /System/Library/Frameworks/CoreLocation.framework/CoreLocation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1831b8000 - 0x183277fff CoreMedia arm64 \<4506da2462323c85bdeb8f641e12aeba\> /System/Library/Frameworks/CoreMedia.framework/CoreMedia Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183278000 - 0x183365fff CoreMotion arm64 \<381ea60514b03989bf24b8130d1c9f22\> /System/Library/Frameworks/CoreMotion.framework/CoreMotion Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183368000 - 0x1833d9fff CoreTelephony arm64 \<b3c45dc201db395794fbb112c020016e\> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1833dc000 - 0x1834e4fff CoreText arm64 \<eb47ed3c7f4136d99c82d1869b3f4b9e\> /System/Library/Frameworks/CoreText.framework/CoreText Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1834e8000 - 0x183504fff CoreVideo arm64 \<4344b0862c833616b45cb206c9ac616f\> /System/Library/Frameworks/CoreVideo.framework/CoreVideo Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183508000 - 0x18362afff EventKit arm64 \<a75b414120c03f6aa9b2fcb7c1b0d391\> /System/Library/Frameworks/EventKit.framework/EventKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18362c000 - 0x1837c3fff EventKitUI arm64 \<87ecd9eed7493579b910aa5c45c7f5da\> /System/Library/Frameworks/EventKitUI.framework/EventKitUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1837dc000 - 0x183a32fff Foundation arm64 \<d7439ba04f163911aa2abda9a2f2b3e7\> /System/Library/Frameworks/Foundation.framework/Foundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183a34000 - 0x183a5ffff GLKit arm64 \<171c2f8713a23d238763fc4e88627a84\> /System/Library/Frameworks/GLKit.framework/GLKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183a60000 - 0x183a89fff GSS arm64 \<cdb27dbd21bd3767b9da5a305da9d121\> /System/Library/Frameworks/GSS.framework/GSS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183aa0000 - 0x183aa0fff GameKit arm64 \<578cc036e1fa3eebb21d30ba61e99c85\> /System/Library/Frameworks/GameKit.framework/GameKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183b6c000 - 0x183bd7fff IOKit arm64 \<a39b5db69a3233b6856b023900115302\> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183bd8000 - 0x183e72fff ImageIO arm64 \<0d32c17abd6b32cfa917df3ae1eaf902\> /System/Library/Frameworks/ImageIO.framework/ImageIO Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x183e74000 - 0x184314fff JavaScriptCore arm64 \<3e890e7de3bf3ceda33612556c9f0c6e\> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184a70000 - 0x184b85fff MapKit arm64 \<822d535d81ff3aa99dcacb40536c6b4a\> /System/Library/Frameworks/MapKit.framework/MapKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184b88000 - 0x184b8efff MediaAccessibility arm64 \<fea45025be6a34b8a9dff8b5abd71bf3\> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184b90000 - 0x184db1fff MediaPlayer arm64 \<10f5e082544b34c8b03c8ca306bd0242\> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x184db4000 - 0x1851cefff MediaToolbox arm64 \<f7fb48bf487630648bfa4ff00147b80a\> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1851d0000 - 0x1852a3fff MessageUI arm64 \<540e852094893fceb4ca83470c55f903\> /System/Library/Frameworks/MessageUI.framework/MessageUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1852a4000 - 0x185317fff Metal arm64 \<7f8693f46d82335897d982222ec09dc7\> /System/Library/Frameworks/Metal.framework/Metal Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x185318000 - 0x1853c7fff MobileCoreServices arm64 \<aca65a0718ea3c9ca740ece1980f90ef\> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1854ec000 - 0x185521fff OpenAL arm64 \<722958fd5f56306a8b461a2e766afb50\> /System/Library/Frameworks/OpenAL.framework/OpenAL Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186454000 - 0x186548fff GLEngine arm64 \<4a2c57c376f93d8bbbd1916ffc021b4c\> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18654c000 - 0x186556fff OpenGLES arm64 \<4cb0e96b2de837a8ae59714fd9b44cc9\> /System/Library/Frameworks/OpenGLES.framework/OpenGLES Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18655c000 - 0x18655dfff libCVMSPluginSupport.dylib arm64 \<96c3edca748c3ba5a5a1256e4c3c8656\> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186560000 - 0x186563fff libCoreFSCache.dylib arm64 \<b38ec88ba1a83251bb664f038d89fabb\> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186564000 - 0x186568fff libCoreVMClient.dylib arm64 \<cfbf3b0693623f74976be575b782551a\> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18656c000 - 0x186576fff libGFXShared.dylib arm64 \<8be7a7dc70893f0c97e4802c1ebdb7d6\> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186578000 - 0x1865c3fff libGLImage.dylib arm64 \<e5c0d9d97e0a35dc9f547d1e9554b351\> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1865c4000 - 0x18673ffff libGLProgrammability.dylib arm64 \<e54aa4fff9253cffb594a163551ad4f5\> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186b2c000 - 0x186cb0fff QuartzCore arm64 \<1457c2add35f3846a44c6fc48bae2ae2\> /System/Library/Frameworks/QuartzCore.framework/QuartzCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186cb4000 - 0x186d0ffff QuickLook arm64 \<e8693e99a9943521be472dfa1ecfd18a\> /System/Library/Frameworks/QuickLook.framework/QuickLook Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186f44000 - 0x186f97fff Security arm64 \<9d616146a16b35a198be8987a3524d43\> /System/Library/Frameworks/Security.framework/Security Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x186f98000 - 0x187023fff Social arm64 \<6d1135c50c2c37ac9777a2d6fe15196e\> /System/Library/Frameworks/Social.framework/Social Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x187140000 - 0x187158fff StoreKit arm64 \<7bdc554bc0c831e497bbe1aa13deeed4\> /System/Library/Frameworks/StoreKit.framework/StoreKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18715c000 - 0x1871d0fff SystemConfiguration arm64 \<0ef25273d9243e0c86f6daea42115cdd\> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1871d4000 - 0x1871d5fff Twitter arm64 \<4d28354e6dd236538a1b205450587c63\> /System/Library/Frameworks/Twitter.framework/Twitter Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1871d8000 - 0x187b50fff UIKit arm64 \<1b263519d017372db2bee18614a18c16\> /System/Library/Frameworks/UIKit.framework/UIKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x187b54000 - 0x187bcdfff VideoToolbox arm64 \<8db8a306b5b439d18bf6255a13dc5f27\> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x187c08000 - 0x187e66fff WebKit arm64 \<d9437c39fa3d3687a777dd88af72e690\> /System/Library/Frameworks/WebKit.framework/WebKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18821c000 - 0x18821ffff AGXCompilerConnection arm64 \<9c9618600c6b3119b02dce4a38fda542\> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1882a4000 - 0x1882b1fff AOSNotification arm64 \<8c4225c5cbd937d495433b502f74b4a3\> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188444000 - 0x1884a1fff AccountsDaemon arm64 \<4515a8e9e8993b27b31ce03b316141a0\> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1884a4000 - 0x1884cafff AccountsUI arm64 \<2e34d1a4663d3aa388bd83e3638cac68\> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1884cc000 - 0x1884d1fff AggregateDictionary arm64 \<600bfe6c8bfe34b9981e0d6ef8d25e13\> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1886d0000 - 0x188704fff AirPlaySupport arm64 \<e77c8d1f28303cb3be223f3bbb838013\> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18895c000 - 0x1889a4fff AppSupport arm64 \<a295d6c1d63b375c8de4bfe65da9b832\> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1889a8000 - 0x1889fcfff AppleAccount arm64 \<269ea366575d3ad3911529284d9aee13\> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188a00000 - 0x188a41fff AppleAccountUI arm64 \<0c16cf8420c731cdab158f2fe84f60bc\> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b08000 - 0x188b50fff AppleJPEG arm64 \<dcdc94f434b23d56ac7ed21aa69b82ea\> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b64000 - 0x188b78fff ApplePushService arm64 \<3383866652a33855af5174a6842096d8\> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b7c000 - 0x188b85fff AppleSRP arm64 \<759a89d419f63b1d9b8abb1829baa94c\> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188b98000 - 0x188ba3fff AssertionServices arm64 \<b39148c677be352d8f25150f73597cdc\> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188ba4000 - 0x188bc0fff AssetsLibraryServices arm64 \<d34d345585d6350cbb60adb6b51d5128\> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188bc4000 - 0x188c03fff AssistantServices arm64 \<aafe26955d8d3b4da75a827841f8eb46\> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188c3c000 - 0x188c40fff BTLEAudioController arm64 \<3f3f6f5d5349355bac97d9b6b786e931\> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188c44000 - 0x188c60fff BackBoardServices arm64 \<6f387775b70b344f804a7c6034eb8766\> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188c68000 - 0x188ca5fff BaseBoard arm64 \<f4765765ca64395ca48559ab06c41af7\> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188cc0000 - 0x188cc7fff BluetoothManager arm64 \<4405a641141c3951ba64e5e448ca6b87\> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188cc8000 - 0x188cf8fff Bom arm64 \<f76dce9da4dd31d58066b502608276c6\> /System/Library/PrivateFrameworks/Bom.framework/Bom Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188df4000 - 0x188dfdfff CacheDelete arm64 \<b127e18650fa3c969ee00214f202ccd2\> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188e50000 - 0x188e80fff CalendarFoundation arm64 \<4ce102a671c73cd9b18bed75e5f69454\> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188e84000 - 0x188ea0fff CalendarUIKit arm64 \<142690af775130979e347b209b6bc08d\> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188fc0000 - 0x188fcafff CaptiveNetwork arm64 \<1fe8e861716635b9b5411641e4f93dfd\> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x188fcc000 - 0x189116fff Celestial arm64 \<ddf2483c17703b8ea4ff2c3d957f39fe\> /System/Library/PrivateFrameworks/Celestial.framework/Celestial Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189128000 - 0x189143fff CertInfo arm64 \<de4b3db761f5330f88cf4802cbdb3cd9\> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189144000 - 0x18914afff CertUI arm64 \<d553a64c21d13b9b9f953b002789880d\> /System/Library/PrivateFrameworks/CertUI.framework/CertUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1892a8000 - 0x1892ccfff ChunkingLibrary arm64 \<002f285bde073b05a85f870f7456da9d\> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189700000 - 0x1897c4fff CloudPhotoLibrary arm64 \<b7f422a4beb53bb5aac07619c59fc7f9\> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189824000 - 0x189826fff CommonAuth arm64 \<4153eb0982ce315a98b6ad0ddc426471\> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189828000 - 0x18983afff CommonUtilities arm64 \<b0c064819893366ca1609c757cfaafb2\> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18983c000 - 0x189840fff CommunicationsFilter arm64 \<b13925af08823708a7ec1f460d260138\> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189928000 - 0x18992dfff ConstantClasses arm64 \<cab12fccf2a03f0884b59ddfc7d1f849\> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189930000 - 0x18996efff ContentIndex arm64 \<bd571ae773d33114bf2169c62c2ad8a4\> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189970000 - 0x189974fff CoreAUC arm64 \<5a9dfe0b01a539f080fa13c9295d7bae\> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1899b0000 - 0x189a10fff CoreDAV arm64 \<95c7006dc0a6304b8f55f4b5abeaf1b8\> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189a14000 - 0x189a3afff CoreDuet arm64 \<d9f9cb6c31fb361fb5021a5f0f4586b3\> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189a44000 - 0x189a57fff CoreDuetDaemonProtocol arm64 \<a2de0737796f3614bca9004bed4ed5f3\> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189a60000 - 0x189a62fff CoreDuetDebugLogging arm64 \<5044815f2a1b3219b09083b63e2c4a0a\> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189be8000 - 0x189d1ffff CoreMediaStream arm64 \<da283d1fb3e63219a5df5652a371798c\> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189d20000 - 0x189dd0fff CorePDF arm64 \<5b3c95c04f623b25b09c2c01e39de92a\> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189e44000 - 0x189e4ffff CoreRecents arm64 \<930b34c3649132f89dd3d57780189b2b\> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x189edc000 - 0x189f00fff CoreServicesInternal arm64 \<c2b227a762bd366ca1c5b22823059085\> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a164000 - 0x18a1f6fff CoreUI arm64 \<a8851f39a69d31f4952fca8c94f723f2\> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a1f8000 - 0x18a274fff CoreUtils arm64 \<87cfa6e71bf934248ca4aea975951a4d\> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a278000 - 0x18a27efff CrashReporterSupport arm64 \<3269b618bc553679b3bccac4d63d4d82\> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a280000 - 0x18a286fff DAAPKit arm64 \<b326ab3807b13e33b7a3c092264a1fed\> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a288000 - 0x18a293fff DCIMServices arm64 \<43759f0ec0333fa8bf4989cf8802dba1\> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a294000 - 0x18a2e3fff DataAccess arm64 \<543b6498de7e3f609bb0fb8e63262d07\> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a540000 - 0x18a566fff DataAccessExpress arm64 \<c6c4ec04b3713357907877571d3794d1\> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a5b8000 - 0x18a5bffff DataMigration arm64 \<1248b6558b9a341ebe59a5f96dc691a7\> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a5c8000 - 0x18a5c9fff DiagnosticLogCollection arm64 \<185b5c8345e034b39c1881a3864e4284\> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a5cc000 - 0x18a5ecfff DictionaryServices arm64 \<a7faf6dee31330c9a0b3378eae91797d\> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a614000 - 0x18a63afff EAP8021X arm64 \<920d64a4105e346996d771f7f022635e\> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a770000 - 0x18a772fff FTClientServices arm64 \<190277544bd53c7eb50da507f39449b8\> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a774000 - 0x18a7a6fff FTServices arm64 \<2662463d07043f5d9605c1f48528b4f5\> /System/Library/PrivateFrameworks/FTServices.framework/FTServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18a7a8000 - 0x18abd5fff FaceCore arm64 \<797f59eb23d63717ae6ee79a3ca5b09f\> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18abf0000 - 0x18abfdfff FindMyDevice arm64 \<60dd8a84303136e38ac23a52e3db6a04\> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ac58000 - 0x18ac58fff FontServices arm64 \<5a4ecba4c96d306f8bf5acc4c43b6120\> /System/Library/PrivateFrameworks/FontServices.framework/FontServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ac5c000 - 0x18ad3cfff libFontParser.dylib arm64 \<7bd1bf8aed1738ee9406cd6169ffa287\> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ad64000 - 0x18ad73fff libGSFontCache.dylib arm64 \<1218a74b3de53819a48ef2d195351242\> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ae80000 - 0x18aea0fff FrontBoardServices arm64 \<947af883c6d5381eac90af6c7a2980ea\> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b5cc000 - 0x18b5d6fff libGPUSupportMercury.dylib arm64 \<21b8eed1ccd0389192523d5d67a3ff43\> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b5d8000 - 0x18b677fff GameCenterFoundation arm64 \<11de14e3a2253a47be7f181d1ccc609c\> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b728000 - 0x18b77cfff GameCenterUI arm64 \<56765c7eff1d379db66e745608955098\> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b780000 - 0x18b8e0fff AVConference arm64 \<9c1c84a7a3b73717baff7a3c4e3af9fe\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b8f8000 - 0x18b922fff ICE arm64 \<33b41fbd5b88302899046058b9bbfcc6\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b924000 - 0x18b925fff LegacyHandle arm64 \<0a422630056d3fef8276cb7c7cd3041b\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b928000 - 0x18b933fff SimpleKeyExchange arm64 \<19677a6bbc663d3d89fbcaddb58396a0\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b934000 - 0x18b941fff ViceroyTrace arm64 \<22f3045f4a77388abb3958f384253035\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b944000 - 0x18b945fff snatmap arm64 \<b406a8cd0c3733b596d7b473be47d00e\> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b948000 - 0x18b9cffff GameKitServices arm64 \<a5c93305ac37365ab3d1279175c1598a\> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b9d0000 - 0x18b9e9fff GenerationalStorage arm64 \<26c95953a64731dabbf497e4246eabd2\> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18b9ec000 - 0x18bcd2fff GeoServices arm64 \<d4c950f074e134de993bcbce075282f5\> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18bcd4000 - 0x18bce7fff GraphicsServices arm64 \<8720ed4423eb322ba4f7a75ef0f3cbd9\> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18be40000 - 0x18bea8fff Heimdal arm64 \<53b184f6891d3aa4a2cd22ed667ede6f\> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18bf9c000 - 0x18c036fff HomeSharing arm64 \<e53a419412de3cf5ab42eabeddd977bd\> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c0a0000 - 0x18c10bfff IDS arm64 \<075f1fa3ae3b3016a0570662450e3d1f\> /System/Library/PrivateFrameworks/IDS.framework/IDS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c10c000 - 0x18c13afff IDSFoundation arm64 \<591f53c772503e298cefa279eb96ae92\> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c320000 - 0x18c391fff IMFoundation arm64 \<57dc25b2991f3b7f827256b8e167a826\> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c39c000 - 0x18c39ffff IOAccelerator arm64 \<473f8d645a6f37a1bd4d899b1f17c249\> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c3a4000 - 0x18c3abfff IOMobileFramebuffer arm64 \<2cc2449ff2cf322792233e7dd9eb2f1e\> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c3ac000 - 0x18c3b2fff IOSurface arm64 \<2c65b7a1f55c340c989089a72531a34d\> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c3b4000 - 0x18c3b6fff IOSurfaceAccelerator arm64 \<d0567d1fa91b3607804d86edf9ef1bb5\> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c470000 - 0x18c477fff IntlPreferences arm64 \<ad337f08747e342da1dea392d34ef561\> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c478000 - 0x18c4bafff LanguageModeling arm64 \<2ad559e1bc9035afa7da0d18649ace1b\> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c528000 - 0x18c537fff LegacyGameKit arm64 \<955367312bb536008fc5e924f071d6b3\> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c548000 - 0x18c58ffff MIME arm64 \<8ffc2bb16f5838789c752b2ba75a3b17\> /System/Library/PrivateFrameworks/MIME.framework/MIME Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c590000 - 0x18c5f9fff MMCS arm64 \<aea0488f82653e3fa9d2da557d6fd8f9\> /System/Library/PrivateFrameworks/MMCS.framework/MMCS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c65c000 - 0x18c669fff MailServices arm64 \<bf486c719a603105a561c7d235801b73\> /System/Library/PrivateFrameworks/MailServices.framework/MailServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c6a8000 - 0x18c763fff ManagedConfiguration arm64 \<a02b247ce2d6384c9c5af7a09905e378\> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c774000 - 0x18c775fff Marco arm64 \<f5b75855f02b33c9a7bda6b52b9604ad\> /System/Library/PrivateFrameworks/Marco.framework/Marco Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c778000 - 0x18c7fefff MediaControlSender arm64 \<8ffa36e1d6d43e8287cc31f4619ee542\> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c8b0000 - 0x18c8c8fff MediaRemote arm64 \<6c637d6f82c3338a8f41601bed98f037\> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c8cc000 - 0x18c8e1fff MediaServices arm64 \<a5c6864de8513b5bbaecece59a6cb6bf\> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c8e4000 - 0x18c900fff MediaStream arm64 \<43484bd00c773cefb64d65994de5bf0e\> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c904000 - 0x18c96bfff IMAP arm64 \<2e84e134eed533d5aa1c36d27a95ccc1\> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18c97c000 - 0x18ca78fff Message arm64 \<c044d52e52c93540b4ece09453191860\> /System/Library/PrivateFrameworks/Message.framework/Message Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ca84000 - 0x18ca87fff MessageSupport arm64 \<d7b2dc7d51c630a896237190bc620ad2\> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ca98000 - 0x18caa7fff MobileAsset arm64 \<95a01014d4cd3f83b1581ff73c325a00\> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18caac000 - 0x18cad2fff MobileBackup arm64 \<256218fd958a3d989d32f359ce52991b\> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cad4000 - 0x18cae0fff MobileBluetooth arm64 \<02751e1fa0cd3ff1a77e7cbccc399cd2\> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18caf4000 - 0x18cb06fff MobileDeviceLink arm64 \<ab7803251baa37b080e7122790fa04c3\> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb08000 - 0x18cb11fff MobileIcons arm64 \<63fb058ed8cb38f6bb3018dd8888bbf5\> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb14000 - 0x18cb1dfff MobileInstallation arm64 \<abcbd119ce1b34e594fe14267f06901f\> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb20000 - 0x18cb2ffff MobileKeyBag arm64 \<0aaa6c56f086377eae1a0fd4842b6631\> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb6c000 - 0x18cb6ffff MobileSystemServices arm64 \<257e956743783e93950dd1c837a95206\> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cb98000 - 0x18cba9fff MobileWiFi arm64 \<2494d9252f2c324aabdbf222a7aa49c6\> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cbf8000 - 0x18ce05fff MusicLibrary arm64 \<6e1fbd0fd5123a8099066fc95a6e4205\> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cfcc000 - 0x18cfdcfff NanoPreferencesSync arm64 \<3ed84b81506f33089cc21097f01e51dd\> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18cfe0000 - 0x18cff8fff NanoRegistry arm64 \<bbc617b4d7b437a8a496c23ae0e7c3fc\> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d034000 - 0x18d03afff Netrb arm64 \<907181c6c4543d79830b1e8afe905802\> /System/Library/PrivateFrameworks/Netrb.framework/Netrb Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d03c000 - 0x18d043fff NetworkStatistics arm64 \<968f052ab6b638368b8e9c78d5d91e0b\> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d044000 - 0x18d066fff Notes arm64 \<06dfa91b55a2382ead4b155194eb369d\> /System/Library/PrivateFrameworks/Notes.framework/Notes Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d070000 - 0x18d073fff OAuth arm64 \<b08fc7a4067f3e00b352bc9bf34e6778\> /System/Library/PrivateFrameworks/OAuth.framework/OAuth Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18d848000 - 0x18d896fff OpenCL arm64 \<fc50451080f83b8d8e2760637df05097\> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18da04000 - 0x18da2dfff PersistentConnection arm64 \<a5c51d4d38ab3dab8d28a072736a8b43\> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18dbbc000 - 0x18de69fff PhotoLibraryServices arm64 \<df8ef3bd50053f9f951a890622a5daee\> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18de6c000 - 0x18de75fff PhotosFormats arm64 \<ba802b4d44823de58dcc1b70173d7a64\> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18de78000 - 0x18dec5fff PhysicsKit arm64 \<8a360488f4163915ad8a9306ce5cd711\> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18dec8000 - 0x18dee2fff PlugInKit arm64 \<c4412ae1be0f3a4a977201ba7f5227af\> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18dee4000 - 0x18deecfff PowerLog arm64 \<139ebc9d315f3601830f26caca9244bf\> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e148000 - 0x18e20ffff Preferences arm64 \<a983580e430730cb8b7e785324456e4a\> /System/Library/PrivateFrameworks/Preferences.framework/Preferences Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e210000 - 0x18e257fff PrintKit arm64 \<31e2f9ed34cf3d0a9ec70877ad234682\> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e25c000 - 0x18e31bfff ProofReader arm64 \<1ee3092b98653617b615fd9be27e169c\> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e31c000 - 0x18e32ffff ProtectedCloudStorage arm64 \<34b6d96c04843d6e95609ba20c893fe4\> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e330000 - 0x18e33efff ProtocolBuffer arm64 \<21e478eecc2737868e0489e8fe2c52e7\> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e380000 - 0x18e3fefff Quagga arm64 \<d5c3bff934ea3e5e8262da95d7ead3ec\> /System/Library/PrivateFrameworks/Quagga.framework/Quagga Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e660000 - 0x18e6a4fff RemoteUI arm64 \<5a4b71e067f3352d9cec1289c02cd2ac\> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e74c000 - 0x18e7f7fff SAObjects arm64 \<fd32a398dbe431b5ab2a73a5fac18139\> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18e9c4000 - 0x18e9e4fff SpringBoardServices arm64 \<a32b01002d963f7e9bf2289225899561\> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ede0000 - 0x18ef3cfff StoreServices arm64 \<f2d0a6c2352236438fbf60e8890d0c35\> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18f030000 - 0x18f033fff TCC arm64 \<1331002ead2a352cbdfd8c99c2a3196c\> /System/Library/PrivateFrameworks/TCC.framework/TCC Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18f094000 - 0x18f0e0fff TelephonyUtilities arm64 \<ac254fb05b803a4598448b583656caa2\> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18fec4000 - 0x18fef2fff TextInput arm64 \<3824ec277bae36b6ab93ebd48905c86b\> /System/Library/PrivateFrameworks/TextInput.framework/TextInput Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x18ffd0000 - 0x1900aafff UIFoundation arm64 \<0589105a24a938e08a91c2e6cd07ebae\> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1900dc000 - 0x1900dffff UserFS arm64 \<8f03819273b73593b81e5ec31ed8a3c1\> /System/Library/PrivateFrameworks/UserFS.framework/UserFS Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x190100000 - 0x1906adfff VectorKit arm64 \<5b0a49662bdc3043a3d0d4eac31e9b75\> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1906b0000 - 0x1907fcfff VideoProcessing arm64 \<6cd69bf3a4c33d7483dd21059e17b078\> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x190924000 - 0x190948fff VoiceServices arm64 \<ca711e8a1b493beda9ed78dce5c40056\> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1909fc000 - 0x190a24fff WebBookmarks arm64 \<042e96f6b3b63d788f24254a96a83f7e\> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x190a44000 - 0x19196bfff WebCore arm64 \<7f419cda818d3e1cb5743b0154c10169\> /System/Library/PrivateFrameworks/WebCore.framework/WebCore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19196c000 - 0x191a3efff WebKitLegacy arm64 \<dfde04f7799f3533bdfa9ebae7857f51\> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191bcc000 - 0x191bccfff WirelessCoexManager arm64 \<2b5d381b7da4386c98586f789230f412\> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191bd0000 - 0x191c04fff WirelessDiagnostics arm64 \<6e32c271f644359ebe432d402e32275d\> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191c20000 - 0x191c27fff XPCKit arm64 \<8b5b40f8601f3e86abb74573f339d633\> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191c28000 - 0x191c31fff XPCObjects arm64 \<8efb6c340f443acca7579f49892e0d9d\> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191e64000 - 0x191e8efff iCalendar arm64 \<9bf75a63851c3a38800e37543db35039\> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x191ebc000 - 0x191efefff iTunesStore arm64 \<c613fad2bcef3eacb2cb423e5a2a3bea\> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1926d8000 - 0x1926f2fff libAWDProtobufFacetimeiMessage.dylib arm64 \<6af9a3391491389297ea5a75f3a503ed\> /usr/lib/libAWDProtobufFacetimeiMessage.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19285c000 - 0x19287ffff libAWDSupportConfig.dylib arm64 \<7e768d5fa445399490b2ded7fe447322\> /usr/lib/libAWDSupportConfig.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192880000 - 0x1929e0fff libAWDSupportFramework.dylib arm64 \<8901f5799ab0379abe20319461485e05\> /usr/lib/libAWDSupportFramework.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1929e4000 - 0x1929e5fff libAWDSupportInfo.dylib arm64 \<6f24da5276913e04992c05a0a305d197\> /usr/lib/libAWDSupportInfo.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1929f4000 - 0x1929fdfff libAccessibility.dylib arm64 \<218c2118cd6e3ceb8a657c8faa3baece\> /usr/lib/libAccessibility.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192c90000 - 0x192cabfff libCRFSuite.dylib arm64 \<02b19f29c72f3e7a8994390e8b976329\> /usr/lib/libCRFSuite.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192cec000 - 0x192e23fff libFosl\_dynamic.dylib arm64 \<2fccec42906a3c15a4cb64bfaf070ff7\> /usr/lib/libFosl\_dynamic.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192e48000 - 0x192e62fff libMobileGestalt.dylib arm64 \<0671899969373e4a9c00d1d3b67efd2c\> /usr/lib/libMobileGestalt.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192e94000 - 0x192e95fff libSystem.B.dylib arm64 \<3c676f137a7a380f9d2ee3d176131c75\> /usr/lib/libSystem.B.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x192f18000 - 0x192f66fff libTelephonyUtilDynamic.dylib arm64 \<b1a777b3a0f33fb7bb6a173b3c06bdf2\> /usr/lib/libTelephonyUtilDynamic.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193090000 - 0x1930bafff libarchive.2.dylib arm64 \<458c2e89d2e63110a68c8a3fb5328ab7\> /usr/lib/libarchive.2.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1930bc000 - 0x1930bcfff libassertion\_extension.dylib arm64 \<d484757be3ed38ad817cfa5109da03cb\> /usr/lib/libassertion\_extension.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1930fc000 - 0x19310cfff libbsm.0.dylib arm64 \<4abeca43c0773000ac890e047bb222ef\> /usr/lib/libbsm.0.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193110000 - 0x193120fff libbz2.1.0.dylib arm64 \<f32fe77dd04734cf9a9d48c62c3ffa85\> /usr/lib/libbz2.1.0.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193124000 - 0x19317afff libc++.1.dylib arm64 \<ee592e72d20d34fb81ebc7f8dda898ac\> /usr/lib/libc++.1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19317c000 - 0x19319efff libc++abi.dylib arm64 \<a409707dc8ce3d9f9f60ccff239dd011\> /usr/lib/libc++abi.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1931a4000 - 0x1931b5fff libcmph.dylib arm64 \<eeebc89e4ec63c9a82b08db05f267444\> /usr/lib/libcmph.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1931fc000 - 0x193219fff libextension.dylib arm64 \<89754e963f1d34d0af1abdf6cdbcdc17\> /usr/lib/libextension.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193248000 - 0x19324dfff libheimdal-asn1.dylib arm64 \<e544c3c5902b3573a036389be10322d4\> /usr/lib/libheimdal-asn1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193250000 - 0x193343fff libiconv.2.dylib arm64 \<1a4643b9a813384286e0cf84f2a9e011\> /usr/lib/libiconv.2.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193344000 - 0x19352bfff libicucore.A.dylib arm64 \<c185b14bc4303f8cac8b2d82880818bd\> /usr/lib/libicucore.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193540000 - 0x193541fff liblangid.dylib arm64 \<c6687d2f9df43d86bf316ef0b3a44e0b\> /usr/lib/liblangid.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193544000 - 0x193550fff liblockdown.dylib arm64 \<bd3a926b7141304587be3ba34355c11c\> /usr/lib/liblockdown.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193554000 - 0x19356dfff liblzma.5.dylib arm64 \<60c964271c2a3e1b8bd6d174f69a2f30\> /usr/lib/liblzma.5.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193944000 - 0x19395cfff libmis.dylib arm64 \<c55d38ebfb773176a11e4a3de1900e8e\> /usr/lib/libmis.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1939a8000 - 0x193ba4fff libobjc.A.dylib arm64 \<3dfe5a83ab92338b8e45b3b7fe4edb6c\> /usr/lib/libobjc.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193c20000 - 0x193c89fff libprotobuf.dylib arm64 \<d260fa17899837a897f0937cc23266b6\> /usr/lib/libprotobuf.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193c8c000 - 0x193ca9fff libresolv.9.dylib arm64 \<c12ecdb1696f3542b66be11f09b2b429\> /usr/lib/libresolv.9.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193cdc000 - 0x193db9fff libsqlite3.dylib arm64 \<62d0e2b07cb436a79313f8fc1c81470b\> /usr/lib/libsqlite3.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193dbc000 - 0x193e0efff libstdc++.6.dylib arm64 \<5011461180563aa09630d6ede5372acf\> /usr/lib/libstdc++.6.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193e10000 - 0x193e42fff libtidy.A.dylib arm64 \<821b9e84d37637658182b872d3fed0aa\> /usr/lib/libtidy.A.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193e44000 - 0x193e4dfff libtzupdate.dylib arm64 \<850691cbc15639dfba286ff09be82d8b\> /usr/lib/libtzupdate.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193e54000 - 0x193f42fff libxml2.2.dylib arm64 \<4d23734e8cd6356bbbeb51968458abb6\> /usr/lib/libxml2.2.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f44000 - 0x193f6dfff libxslt.1.dylib arm64 \<521c7c60e95b352ca40a9e0d0c56ae24\> /usr/lib/libxslt.1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f70000 - 0x193f81fff libz.1.dylib arm64 \<928345b4ed713766a1a39a420aa2118c\> /usr/lib/libz.1.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f84000 - 0x193f88fff libcache.dylib arm64 \<f9e311097bc63af996c8079d8a8ae5b1\> /usr/lib/system/libcache.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f8c000 - 0x193f98fff libcommonCrypto.dylib arm64 \<1815a24510133e849239b8dbdabb3aab\> /usr/lib/system/libcommonCrypto.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193f9c000 - 0x193f9ffff libcompiler\_rt.dylib arm64 \<adbd24d2e5113f32bfed4f387c6982a6\> /usr/lib/system/libcompiler\_rt.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193fa0000 - 0x193fa7fff libcopyfile.dylib arm64 \<65b38b57f99631fdb5b53ff412cb28a3\> /usr/lib/system/libcopyfile.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x193fa8000 - 0x193ffdfff libcorecrypto.dylib arm64 \<889941c9cd223dcebbcdbdb327097242\> /usr/lib/system/libcorecrypto.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194000000 - 0x194028fff libdispatch.dylib arm64 \<b7282712caa63de08f86813768cffcbf\> /usr/lib/system/libdispatch.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19402c000 - 0x19402efff libdyld.dylib arm64 \<6f53e5e1c04a366896ffee9246893304\> /usr/lib/system/libdyld.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194030000 - 0x194030fff liblaunch.dylib arm64 \<855ac551fdde3f77b53f83cb1b3ebdbf\> /usr/lib/system/liblaunch.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194034000 - 0x194039fff libmacho.dylib arm64 \<3a37a2820c9037fc84426f9061147c47\> /usr/lib/system/libmacho.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19403c000 - 0x19403dfff libremovefile.dylib arm64 \<790de8759aa23cec9648d34b11bbbfc8\> /usr/lib/system/libremovefile.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194040000 - 0x194055fff libsystem\_asl.dylib arm64 \<bf21ee177b723e82b17b1a66811f5181\> /usr/lib/system/libsystem\_asl.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194058000 - 0x194059fff libsystem\_blocks.dylib arm64 \<0839472ff8773bdea33e5595129f7c59\> /usr/lib/system/libsystem\_blocks.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19405c000 - 0x1940dcfff libsystem\_c.dylib arm64 \<5eee09894c023d22afe4d420fb35a9b5\> /usr/lib/system/libsystem\_c.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940e0000 - 0x1940e2fff libsystem\_configuration.dylib arm64 \<a249ab4804eb30c48bf8ec515fbe1521\> /usr/lib/system/libsystem\_configuration.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940e4000 - 0x1940e5fff libsystem\_coreservices.dylib arm64 \<ef301d23ae3a33c08e9f5a9e3714c47b\> /usr/lib/system/libsystem\_coreservices.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940e8000 - 0x1940f8fff libsystem\_coretls.dylib arm64 \<b3849f2889013d9cb6fda10999e2d1f6\> /usr/lib/system/libsystem\_coretls.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1940fc000 - 0x194104fff libsystem\_dnssd.dylib arm64 \<d703aff7c15b3347adb1e649587ded5c\> /usr/lib/system/libsystem\_dnssd.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194108000 - 0x194129fff libsystem\_info.dylib arm64 \<e319fda9213836949d6d9385b4546b3c\> /usr/lib/system/libsystem\_info.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19412c000 - 0x19414cfff libsystem\_kernel.dylib arm64 \<3e54c7bc049e391b810aba73f0ab6b0f\> /usr/lib/system/libsystem\_kernel.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194150000 - 0x19416cfff libsystem\_m.dylib arm64 \<d8c4d183d3483d18b527447c072ee9da\> /usr/lib/system/libsystem\_m.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194170000 - 0x194189fff libsystem\_malloc.dylib arm64 \<2540c115b94932fb9956d69946caee34\> /usr/lib/system/libsystem\_malloc.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x19418c000 - 0x1941c3fff libsystem\_network.dylib arm64 \<75b6934e414631139f85e5fb793d8597\> /usr/lib/system/libsystem\_network.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941c4000 - 0x1941cafff libsystem\_networkextension.dylib arm64 \<f081518337df3f30b03a57b8e8e71ec2\> /usr/lib/system/libsystem\_networkextension.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941cc000 - 0x1941d6fff libsystem\_notify.dylib arm64 \<9843d03ada163e9685d4ffe88f6c0041\> /usr/lib/system/libsystem\_notify.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941d8000 - 0x1941dcfff libsystem\_platform.dylib arm64 \<12ff138b89f33dbf954451dfef6d3365\> /usr/lib/system/libsystem\_platform.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941e0000 - 0x1941e8fff libsystem\_pthread.dylib arm64 \<c69b9555ae9d3d1191f057c7b78fcd92\> /usr/lib/system/libsystem\_pthread.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941ec000 - 0x1941eefff libsystem\_sandbox.dylib arm64 \<70d36da6677d36fdae465cdb40ce55c3\> /usr/lib/system/libsystem\_sandbox.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941f0000 - 0x1941f3fff libsystem\_stats.dylib arm64 \<2b9b5540e37e3cda9e6785ed43258bb1\> /usr/lib/system/libsystem\_stats.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941f4000 - 0x1941fafff libsystem\_trace.dylib arm64 \<de796458167b37c395e5528e3155f534\> /usr/lib/system/libsystem\_trace.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x1941fc000 - 0x194201fff libunwind.dylib arm64 \<70db9f10a72731588be15afffca71205\> /usr/lib/system/libunwind.dylib Mar 28 10:40:22 Phils-iPhone ReportCrash[623] \<Error\>: 0x194204000 - 0x194227fff libxpc.dylib arm64 \<3c982bc25b46305a9a093c3d15332820\> /usr/lib/system/libxpc.dylib
Obviously the xxxxx’s are where I blocked out the actual ID’s.
Hope this helps
This might speed things up, I tried isolating the other plugins, if I take out:
["plugin.notifications"] = { publisherId = "com.coronalabs" },
No crash :blink:
If I leave it in, as soon as I call GameThrive.Init() then the app crashes.
Just as an FYI, the subject really needs to be rewritten. It reads “Seems to be broken in latest daily build”. When people see that, we don’t know what is broken. I’m assuming because you posted this to the GameThrive forum there would be an assumption we would understand that this is about GameThrive, but there are many ways for people to find this thread, such as reading “Recent Posts” or a Google search. It’s imperative that you write good subjects when you post.
Thanks
Rob
I will try harder next time I promise.
Phil,
I was able to reproduce the iOS crash on GameThrive.init when I added the “plugin.notifications” plugin to my build settings as well on build 2015.2599. It seems there was a crash issue with Corona’s local notifications from build 2594-2599 but has been fixed in 2600. I just tried build 2600 and this crash no longer happens.
https://developer.coronalabs.com/release/2015/2600/
Thanks.