Posts

Post not yet marked as solved
1 Replies
481 Views
I'm trying to draw an MKPolyline for the route taken by the user while walking. I pass a C array of coordinates and instead of seeing a polyline drawn from one coordinate to another, I see a many polylines from 0 degree latitude and 0 degree longitude to each coordinate. Here is the code... (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations; {     CLLocationCoordinate2D coordinates[locations.count];     int index=0;     for (CLLocation *location in locations)     {         [self centerMapWithCoordinates:location.coordinate];         if (location.horizontalAccuracy>0)         {     MKPointAnnotation *point = [[MKPointAnnotation alloc] init];             point.coordinate = location.coordinate;             point.title = [NSString stringWithFormat:@"%0.2f Kmph",(location.speed*3600/1000)];             [self centerMapWithCoordinates:location.coordinate];             [mapView addAnnotation:point];             CLLocationCoordinate2D coordinate = location.coordinate;             coordinates[index] = coordinate;             index++;         }     }     MKPolyline *polyline = [MKPolyline polylineWithCoordinates:coordinates count:index+1];     [mapView addOverlay:polyline]; } (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay; {     if ([overlay isKindOfClass:[MKPolyline class]])     {         MKPolylineRenderer *renderer = [[MKPolylineRenderer alloc] initWithPolyline:(MKPolyline *)overlay];         renderer.strokeColor = [[UIColor orangeColor] colorWithAlphaComponent:0.7];         renderer.lineWidth   = 3;         return renderer;     }     return nil; } What could be wrong?
Posted Last updated
.
Post not yet marked as solved
3 Replies
428 Views
I have an iPhone 6 which has delayed collection of active energy b urned anddistance walked data. I am creating an app that Maps the user's walk or run. Consequently, I need data of energy burned and distance walked when the user starts the walk/run workout. Currently, the active energy burned distance walked shows 0 even after 4000+ steps are taken and is usually not obtained until the end of the day. Is there a way I can get this data immediately and thus associate it with the workout? Note: steps data is almost immediately updated.
Posted Last updated
.
Post not yet marked as solved
0 Replies
167 Views
I am having problem with layout constraints and console log prints its object id. I read online that identifiers set in identity inspector for the constraints help in identifying which constraint have a problem. I set simple numeral identifiers starting from 1 onwards. But they don't get printed in the console log. I ran a clean build folder and tried again but no luck. What could be the problem? Neerav
Posted Last updated
.
Post not yet marked as solved
1 Replies
222 Views
Hi, I want user to be able to see the route he takes during walk or run on a map, while he is walking and after in history. I have got the users location and loaded a map. From what i have read, i'lll have to continuously annotate the map with a marker while the user is walking or running. But I don't clearly understand the MapKit apis for annotation and annotation view. Can someone guide me how to go about it. I just need an overview. Thanks
Posted Last updated
.
Post not yet marked as solved
3 Replies
303 Views
I have written two difference types of predicates and both give me different results as compared to the health app. I am sure this has something to do with 12am, around when I take a little walk. Here are the two predicates...  NSPredicate *daySearchPredicate = [NSPredicate predicateWithFormat:@"startDate>=%@ &amp;&amp; startDate&lt;%@ &amp;&amp; endDate&gt;=%@ &amp;&amp; endDate<%@",historyDate,nextDate,historyDate,nextDate]; NSPredicate *daySearchPredicate = [NSPredicate predicateWithFormat:@"startDate>=%@ &amp;&amp; startDate<%@",historyDate,nextDate]; The data in the health app is ... Yesterday: 1714 Today: 1076 The data I get with the first predicate is... Yesterday: 1559 Today: 917 with the second predicate is... Yesterday: 1874 Today: 917 Note: They even don't total up to be the same as each other or the health app data. Here is my code that calculates the total... //calculate total steps for today int64_t steps=0; for (HKQuantitySample *stepsSample in stepsPredicateResultsArray)   {     HKQuantity *stepsQuantity = [stepsSample quantity];     int64_t currentSampleSteps = (int64_t)[stepsQuantity doubleValueForUnit:[HKUnit countUnit]];     steps = steps + currentSampleSteps;   }   hObject.steps=steps; Please help me set a predicate which make the Health app data and my data to be the same. Thanks.
Posted Last updated
.
Post not yet marked as solved
2 Replies
268 Views
I am making a health app that fires notifications in background when certain no. of steps are reached w.r.t. goals. I understand healthkit can only be queried when phone is unlocked. The strategy I implemented is as follows. coded the necessary notifications and authorised app to send notifications. querying for steps and sending notifications from App Delegate's app did enter background method. enabled background processing in background modes in capabilities. however, no notifications are being sent by the app and in app's settings in the Settings.app, I dont see background app refresh ON. Please help.
Posted Last updated
.
Post marked as solved
2 Replies
1.9k Views
Hi, I have four UIImageViews. The image for each view is set as template image in Assets catalogue. They appear in the right color on simulator but not on my device. They appear in default color on device. two of those images have been carry forwarded from previous version and they appeared in the correct tint in older builds. I have clean built the project folder and have also reinstalled the app. What could be the problem?
Posted Last updated
.
Post not yet marked as solved
1 Replies
329 Views
The documentation - app extension programming guide, says health kot and event kit are unavailable to today widgets in iOS 8. What about above iOS 8? I have seen caledar apps with today widgets. It means event kit is being used. Neerav
Posted Last updated
.
Post not yet marked as solved
2 Replies
295 Views
I have observer queries for certain hksample types which in turn run sample queries to obtain data. i want to fire notifications from the completion handler, for certain data thresholds (like steps taken) from these queries. is this the right approach, say for % step goals completed or should i consider background app refresh (background modes)?Note: either way i will need the iphone to be unlocked as healthkit database cannot be queried when the phone is locked.
Posted Last updated
.
Post marked as solved
7 Replies
1.8k Views
My app has been rejected as after the In-app purchase is complete, the app crashes. The reviewer has sent me a crash log. I'm not able to debug the cause. Can someone help please? Here ares the crash logs....(This is happening on the reviewers iPad running iOS 13.5.1. I have an iPhone 6 and iPad Mini 2 both running iOS 12. I cannot reporduce the issue. It working fine on my device.) {"app_name":"Pace","timestamp":"2020-06-07 20:05:30.00 -0700","app_version":"2","slice_uuid":"978196fd-ec0a-3b06-9e44-d3cecae6c374","adam_id":1499489602,"build_version":"39","bundleID":"com.neeravkothari.Pace","share_with_app_devs":0,"is_first_party":0,"bug_type":"109","os_version":"iPhone OS 13.5.1 (17F80)","incident_id":"F8E6C398-84E1-4657-AA52-3D3033FACA31","name":"Pace"} Incident Identifier: F8E6C398-84E1-4657-AA52-3D3033FACA31 CrashReporter Key: 9f8f61c0e7b4a5196eb3a9083de537bb9789ce51 Hardware Model: iPad11,3 Process: Pace [1076] Path: /private/var/containers/Bundle/Application/849A7591-2A0C-4D3F-B4CE-BD8295213316/Pace.app/Pace Identifier: com.neeravkothari.Pace Version: 39 (2) AppStoreTools: 11E608a Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd [1] Coalition: com.neeravkothari.Pace [774] Date/Time: 2020-06-07 20:05:29.8810 -0700 Launch Time: 2020-06-07 20:05:29.4259 -0700 OS Version: iPhone OS 13.5.1 (17F80) Release Type: User Baseband Version: n/a Report Version: 104 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Triggered by Thread: 0 Last Exception Backtrace: (0x188532300 0x188246c1c 0x188421e68 0x18bc24188 0x18bc246e8 0x1024f6710 0x1881d0ec4 0x1881d233c 0x1881de600 0x1884ad6b0 0x1884a82c8 0x1884a78f4 0x1928be604 0x18c67b358 0x1024f2860 0x1883232dc) Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 libsystem_kernel.dylib 0x0000000188318df0 0x1882f2000 + 159216 1 libsystem_pthread.dylib 0x0000000188238930 0x188236000 + 10544 2 libsystem_c.dylib 0x00000001881c6ba4 0x188150000 + 486308 3 libc++abi.dylib 0x00000001882ebf40 0x1882dc000 + 65344 4 libc++abi.dylib 0x00000001882dd8c8 0x1882dc000 + 6344 5 libobjc.A.dylib 0x0000000188246f0c 0x188241000 + 24332 6 libc++abi.dylib 0x00000001882eb3cc 0x1882dc000 + 62412 7 libc++abi.dylib 0x00000001882eb358 0x1882dc000 + 62296 8 libdispatch.dylib 0x00000001881d2350 0x1881cf000 + 13136 9 libdispatch.dylib 0x00000001881de600 0x1881cf000 + 62976 10 CoreFoundation 0x00000001884ad6b0 0x188400000 + 710320 11 CoreFoundation 0x00000001884a82c8 0x188400000 + 688840 12 CoreFoundation 0x00000001884a78f4 0x188400000 + 686324 13 GraphicsServices 0x00000001928be604 0x1928bb000 + 13828 14 UIKitCore 0x000000018c67b358 0x18bc0c000 + 10941272 15 Pace 0x00000001024f2860 0x1024ec000 + 26720 16 libdyld.dylib 0x00000001883232dc 0x188322000 + 4828 Thread 1: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 2: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 3: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 4: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 5: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 6 name: com.apple.uikit.eventfetch-thread Thread 6: 0 libsystem_kernel.dylib 0x00000001882f6784 0x1882f2000 + 18308 1 libsystem_kernel.dylib 0x00000001882f5ba8 0x1882f2000 + 15272 2 CoreFoundation 0x00000001884ad314 0x188400000 + 709396 3 CoreFoundation 0x00000001884a80a0 0x188400000 + 688288 4 CoreFoundation 0x00000001884a78f4 0x188400000 + 686324 5 Foundation 0x00000001887f0b18 0x1887e9000 + 31512 6 Foundation 0x00000001887f09f0 0x1887e9000 + 31216 7 UIKitCore 0x000000018c721840 0x18bc0c000 + 11622464 8 Foundation 0x000000018892ac10 0x1887e9000 + 1317904 9 libsystem_pthread.dylib 0x00000001882378fc 0x188236000 + 6396 10 libsystem_pthread.dylib 0x000000018823f9d4 0x188236000 + 39380 Thread 7: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 0 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x000000016d9120c0 x5: 0x000000016d912670 x6: 0x000000000000006e x7: 0x0000000283d82544 x8: 0x00000000000005b9 x9: 0x5750202e88d09282 x10: 0x0000000000000002 x11: 0x0000000000000003 x12: 0x0000000000000000 x13: 0x0000000000000064 x14: 0x0000000000000010 x15: 0x0000000000000000 x16: 0x0000000000000148 x17: 0x00000001c8cfe808 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x0000000000000407 x21: 0x0000000102679960 x22: 0x0000000000000000 x23: 0x0000000000000000 x24: 0x0000000002ffffff x25: 0x0000000102679960 x26: 0x00000000000020ff x27: 0x0000000000000114 x28: 0x0000000282a8ed40 fp: 0x000000016d9125d0 lr: 0x0000000188238930 sp: 0x000000016d9125b0 pc: 0x0000000188318df0 cpsr: 0x40000000 esr: 0x56000080 Address size fault Binary Images: 0x1024ec000 - 0x1024fffff Pace arm64 &lt;978196fdec0a3b069e44d3cecae6c374&gt; /var/containers/Bundle/Application/849A7591-2A0C-4D3F-B4CE-BD8295213316/Pace.app/Pace 0x1025f0000 - 0x1025fbfff libobjc-trampolines.dylib arm64e &lt;7fd5d790e34f3b9e91a253f8e9428e91&gt; /usr/lib/libobjc-trampolines.dylib 0x102608000 - 0x10266ffff dyld arm64e &lt;3d545c044e25313eb748ef45647088f7&gt; /usr/lib/dyld 0x188104000 - 0x18811afff libsystem_trace.dylib arm64e &lt;a97807ab182135b5bec8f26659c6cc07&gt; /usr/lib/system/libsystem_trace.dylib 0x18811b000 - 0x18814efff libxpc.dylib arm64e &lt;33b9156a9ae13385bd0838552a3f3b7f&gt; /usr/lib/system/libxpc.dylib 0x18814f000 - 0x18814ffff libsystem_blocks.dylib arm64e &lt;c98d131c531b333883a989fc3d59d297&gt; /usr/lib/system/libsystem_blocks.dylib 0x188150000 - 0x1881cefff libsystem_c.dylib arm64e &lt;fb392c596c45359192d0191a54ed1f95&gt; /usr/lib/system/libsystem_c.dylib 0x1881cf000 - 0x18820cfff libdispatch.dylib arm64e &lt;cafeee864c943ac98853bfe11f70c0f4&gt; /usr/lib/system/libdispatch.dylib 0x18820d000 - 0x18822efff libsystem_malloc.dylib arm64e &lt;96293dc2b36033f0ba423dc9d93fc8d1&gt; /usr/lib/system/libsystem_malloc.dylib 0x18822f000 - 0x188235fff libsystem_platform.dylib arm64e &lt;bb79768e73ce350c9ba657b0e7546a52&gt; /usr/lib/system/libsystem_platform.dylib 0x188236000 - 0x188240fff libsystem_pthread.dylib arm64e &lt;4cf76cd7dc5b37cf83d746153d0d3962&gt; /usr/lib/system/libsystem_pthread.dylib 0x188241000 - 0x188272fff libobjc.A.dylib arm64e &lt;2d4d3c06e2a8381fbd0026dfb70f07a6&gt; /usr/lib/libobjc.A.dylib 0x188273000 - 0x1882dbfff libcorecrypto.dylib arm64e &lt;39cb305ee1e83f209221e33b0ec85be9&gt; /usr/lib/system/libcorecrypto.dylib 0x1882dc000 - 0x1882f1fff libc++abi.dylib arm64e &lt;5fef611d48453dc5b9f12f9a652810fd&gt; /usr/lib/libc++abi.dylib 0x1882f2000 - 0x188321fff libsystem_kernel.dylib arm64e &lt;42bdcd4102a63529a2710e6402154a44&gt; /usr/lib/system/libsystem_kernel.dylib 0x188322000 - 0x188356fff libdyld.dylib arm64e &lt;e5e56a85e4d6332e9f32fed4b986afe0&gt; /usr/lib/system/libdyld.dylib 0x188357000 - 0x18835ffff libsystem_darwin.dylib arm64e &lt;daf5107bf29a31ca981dc3ea281c7598&gt; /usr/lib/system/libsystem_darwin.dylib 0x188360000 - 0x1883bdfff libc++.1.dylib arm64e &lt;6b6f1c809d373df585ba80d49b2f39d2&gt; /usr/lib/libc++.1.dylib 0x1883be000 - 0x1883fffff libsystem_info.dylib arm64e &lt;e68a14e16a773e5dbd44ececd9fab378&gt; /usr/lib/system/libsystem_info.dylib 0x188400000 - 0x18877dfff CoreFoundation arm64e &lt;af42303f57b63c118f188e80abf7d886&gt; /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x18877e000 - 0x1887e8fff SystemConfiguration arm64e &lt;46f9e302ff713c2587fd4ba889aa0899&gt; /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x1887e9000 - 0x188ab3fff Foundation arm64e &lt;19fab59f6527324585bb905fd4255cde&gt; /System/Library/Frameworks/Foundation.framework/Foundation 0x188ab4000 - 0x188ae6fff libCRFSuite.dylib arm64e &lt;b6a7b94f1fdb3a14a9a4732e2314ed7d&gt; /usr/lib/libCRFSuite.dylib 0x188ae7000 - 0x188c69fff CoreServices arm64e &lt;09cf7ffb7a8c33e18334344471581e9a&gt; /System/Library/Frameworks/CoreServices.framework/CoreServices 0x188c6a000 - 0x188ccbfff libSparse.dylib arm64e &lt;04379c0654c63de9be3be888ba841740&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib 0x188ccc000 - 0x1891c4fff ImageIO arm64e &lt;6b0129bc6b7236b5b32ac945ca006734&gt; /System/Library/Frameworks/ImageIO.framework/ImageIO 0x1891c5000 - 0x1891c7fff ConstantClasses arm64e &lt;50bb035e91b23ebaa87c542f8d80543a&gt; /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x1891c8000 - 0x189361fff CoreText arm64e &lt;d0d4f15628113595a70b67f51dfdb363&gt; /System/Library/Frameworks/CoreText.framework/CoreText 0x189362000 - 0x18949ffff Security arm64e &lt;ed90382611dd38638daf1222acbf7ead&gt; /System/Library/Frameworks/Security.framework/Security 0x1894a0000 - 0x189546fff IOKit arm64e &lt;6e74a48406553baaac567cf7f8eeb98b&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x189547000 - 0x18957ffff libMobileGestalt.dylib arm64e &lt;772c4c0f435b3847be31d9132d23c4bb&gt; /usr/lib/libMobileGestalt.dylib 0x189580000 - 0x1895defff libprotobuf.dylib arm64e &lt;cccb3d5cf8fc32ca9a71fc8b08c6a8c5&gt; /usr/lib/libprotobuf.dylib 0x1895df000 - 0x1895f1fff libprotobuf-lite.dylib arm64e &lt;de6b39620b05337e9a6568da76940855&gt; /usr/lib/libprotobuf-lite.dylib 0x1895f2000 - 0x189851fff libicucore.A.dylib arm64e &lt;f0880583e45d389b9490d5a48d1ffa01&gt; /usr/lib/libicucore.A.dylib 0x189852000 - 0x18987bfff CoreServicesInternal arm64e &lt;cf55cb317e84386ba4a0886c727742cd&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x18987c000 - 0x1898c2fff WirelessDiagnostics arm64e &lt;a646d26a11df38d8b27ed41730fb7002&gt; /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x1898c3000 - 0x1898fffff libAWDSupport.dylib arm64e &lt;e072dd7c37ab3213a936673bd49092bb&gt; /usr/lib/libAWDSupport.dylib 0x189900000 - 0x189d4dfff CoreAudio arm64e &lt;34beccdf330b3ddba3d8db0b396fe416&gt; /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x189d4e000 - 0x18a027fff CoreImage arm64e &lt;ee7c0b05364c3f4c8cb914ee5e0b155f&gt; /System/Library/Frameworks/CoreImage.framework/CoreImage 0x18a163000 - 0x18a2e9fff libsqlite3.dylib arm64e &lt;2bb58dc8e80737c79ad0650fc693e071&gt; /usr/lib/libsqlite3.dylib 0x18a2ea000 - 0x18a31cfff MobileKeyBag arm64e &lt;e5a4993a7f803df9a81c7849eff8e5d5&gt; /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x18a31d000 - 0x18a326fff libsystem_notify.dylib arm64e &lt;178ec12ff99234c3aadb1c742f41c00c&gt; /usr/lib/system/libsystem_notify.dylib 0x18a75f000 - 0x18a79cfff AppSupport arm64e &lt;a23f23466db2307eb0f4f9893ea7054d&gt; /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x18a79d000 - 0x18ac8afff libnetwork.dylib arm64e &lt;7cfe032c6120314ea59fec497e225be5&gt; /usr/lib/libnetwork.dylib 0x18ac8b000 - 0x18ad9cfff ManagedConfiguration arm64e &lt;c0cfce09548e3b638134b2e78d6d6b54&gt; /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x18ad9d000 - 0x18adc7fff CoreServicesStore arm64e &lt;4b4e849003303a4ea7751a1c33639287&gt; /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore 0x18adc8000 - 0x18ade9fff UserManagement arm64e &lt;cd489382cd7837feb28ee4ea1ffe8a3a&gt; /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x18b0a0000 - 0x18b0b6fff ProtocolBuffer arm64e &lt;e033b42d19343f8785d49f24d60a968c&gt; /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x18b0b7000 - 0x18b0d1fff CommonUtilities arm64e &lt;2b5d96016acc3d3389947ed62b94ba4f&gt; /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x18b0d2000 - 0x18b0d2fff libenergytrace.dylib arm64e &lt;b74c2e0e9ed630798472dc5557efabdb&gt; /usr/lib/libenergytrace.dylib 0x18b0d3000 - 0x18b10afff RunningBoardServices arm64e &lt;9ab220e324003e6e881ae340999ee125&gt; /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices 0x18b10b000 - 0x18b18bfff BaseBoard arm64e &lt;05a25e672d0239ac83943294722e4d40&gt; /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x18b6de000 - 0x18b752fff CoreLocation arm64e &lt;16d12cac8947363ea20c00984f351bb5&gt; /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x18b760000 - 0x18b7b6fff Accounts arm64e &lt;2a7126b9ef2e347aa9f873a5a530e39b&gt; /System/Library/Frameworks/Accounts.framework/Accounts 0x18b7c8000 - 0x18bb29fff CFNetwork arm64e &lt;ee91f2c9246439658aab4a986ebe9f72&gt; /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x18bb2a000 - 0x18bc0bfff UIFoundation arm64e &lt;7ac887875fbe3b3fb2604a5719e0855f&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x18bc0c000 - 0x18cd85fff UIKitCore arm64e &lt;32d99abde47b38d8bbd168aea293a9a6&gt; /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 0x18cd86000 - 0x18cd94fff AssertionServices arm64e &lt;2156c4f3f21d37f59a6aa0ace189c550&gt; /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x18cd95000 - 0x18ce6efff CoreTelephony arm64e &lt;4e14850866233b9a83db3a779a362c13&gt; /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x18ce6f000 - 0x18ce74fff AggregateDictionary arm64e &lt;51c324c57a9639199093b3ee6d3f47ac&gt; /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x18ce75000 - 0x18ce8bfff libsystem_asl.dylib arm64e &lt;666510682393344781d2492329fdade4&gt; /usr/lib/system/libsystem_asl.dylib 0x18cf08000 - 0x18d23bfff CoreData arm64e &lt;cb4a2f80940f3b029874bb590aa95bf7&gt; /System/Library/Frameworks/CoreData.framework/CoreData 0x18d4ab000 - 0x18d4d6fff BoardServices arm64e &lt;ca4eb930751c37f99deada1fd24ad507&gt; /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices 0x18d58f000 - 0x18d59dfff libsystem_networkextension.dylib arm64e &lt;02e039c25510308f906d9680ea148016&gt; /usr/lib/system/libsystem_networkextension.dylib 0x18d59e000 - 0x18d5befff CoreAnalytics arm64e &lt;a82e8ceea5173f22be9cdd59fc8a7588&gt; /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics 0x18d738000 - 0x18d787fff SpringBoardServices arm64e &lt;6493723947a636cf86cf8d98993cad00&gt; /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x18d788000 - 0x18d7fefff FrontBoardServices arm64e &lt;0a1b636b96dc3601bf310bdae5650bcb&gt; /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x18d7ff000 - 0x18d928fff Network arm64e &lt;95fa4f1dd9e837d19496ad584d562c64&gt; /System/Library/Frameworks/Network.framework/Network 0x18d986000 - 0x18d98dfff libsystem_symptoms.dylib arm64e &lt;aa16aeb7465b377ab2079d2d1c8a0384&gt; /usr/lib/system/libsystem_symptoms.dylib 0x18d98e000 - 0x18e8d8fff GeoServices arm64e &lt;4fb72abb795b3100aacc20dd243e0788&gt; /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x18e8d9000 - 0x18e8e1fff TCC arm64e &lt;11a57e27c1eb3d8bb3bf7ab8e8013831&gt; /System/Library/PrivateFrameworks/TCC.framework/TCC 0x18e8e2000 - 0x18e93dfff IMFoundation arm64e &lt;cb432c774907353bb792e6d5a6d0a056&gt; /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x18e93e000 - 0x18eab8fff CoreUtils arm64e &lt;01087631a6ee3b84aef8ac27cc7a6ea8&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x18eba3000 - 0x18ebacfff libsystem_containermanager.dylib arm64e &lt;e07e142b51b5363184a3fe871c978c40&gt; /usr/lib/system/libsystem_containermanager.dylib 0x18ebad000 - 0x18ec2bfff AppleAccount arm64e &lt;0f37ea8f74bc354bab82bcff865641cb&gt; /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x18ec2c000 - 0x18ec48fff ApplePushService arm64e &lt;69a77f4b69813820a0a5347c65ba4030&gt; /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x18ec49000 - 0x18ed38fff IDS arm64e &lt;5fc6daac7f273d8c8bed450e2178d640&gt; /System/Library/PrivateFrameworks/IDS.framework/IDS 0x18ed39000 - 0x18ee66fff IDSFoundation arm64e &lt;04ac14bce0f43a9b9ecc94a8a5dbb20b&gt; /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x18ee67000 - 0x18ee68fff libCTGreenTeaLogger.dylib arm64e &lt;7e121690842935eeac4e4b4b51513862&gt; /usr/lib/libCTGreenTeaLogger.dylib 0x18eed0000 - 0x18efd5fff CoreMedia arm64e &lt;4767fc0ff69f3fcd8b24a4cc71da9d6b&gt; /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x18efd6000 - 0x18efe5fff UIKitServices arm64e &lt;68212d5d5105300eb461d207e19b3792&gt; /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices 0x18efe6000 - 0x18f043fff BackBoardServices arm64e &lt;b02bcd818a3b3b3f95158ca45e26cab5&gt; /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x18f044000 - 0x18f29ffff QuartzCore arm64e &lt;d29c2cdeb3253c549f2ad626e512de36&gt; /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x18f2a0000 - 0x18f369fff ColorSync arm64e &lt;102a648773f33a07a1c127c13cedda04&gt; /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x18f36a000 - 0x18f8defff CoreGraphics arm64e &lt;6253a52d23ae3901bddc4bfb72f504e6&gt; /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x18fa19000 - 0x18fa49fff UserNotifications arm64e &lt;59658c67fbf63eef99f4f3319d4bd957&gt; /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x18fa4a000 - 0x18fa6dfff LocationSupport arm64e &lt;396e988006db31f7aa853b3370481968&gt; /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport 0x190263000 - 0x1920dcfff WebCore arm64e &lt;7ab3d89e9b9d35f785317de2d18546a2&gt; /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x1920dd000 - 0x1920f8fff libAccessibility.dylib arm64e &lt;46645fc0e81a31d8ba5610c1327e12de&gt; /usr/lib/libAccessibility.dylib 0x1920f9000 - 0x192105fff AXCoreUtilities arm64e &lt;db2780616e8530bcaea23bb1cd4d4b01&gt; /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities 0x19217f000 - 0x192193fff PowerLog arm64e &lt;e4c868df01bb3f77a5b05f2fea3169c5&gt; /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x192194000 - 0x1921a5fff IOSurface arm64e &lt;040909617bd339659afa4e5f212ea616&gt; /System/Library/Frameworks/IOSurface.framework/IOSurface 0x1921a6000 - 0x1928bafff MediaToolbox arm64e &lt;89c08bbbe8223586a7e9181ba4b22145&gt; /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x1928bb000 - 0x1928c3fff GraphicsServices arm64e &lt;fdd62141ead13c359f519d1f1343f394&gt; /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x192bef000 - 0x192c3efff MobileWiFi arm64e &lt;c68338c35037340086eb614134f08b6d&gt; /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x192c3f000 - 0x192c58fff MobileAsset arm64e &lt;9e17f5352a693649ba81019916974016&gt; /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x192c59000 - 0x192c66fff libGSFont.dylib arm64e &lt;48ef65b1c1bf349e86c205cf2dfe0e86&gt; /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib 0x192c67000 - 0x192c70fff FontServices arm64e &lt;7c8a3ab78537301192d3d564fe3f66fd&gt; /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x192c71000 - 0x192dc0fff libFontParser.dylib arm64e &lt;ba90e8d5cb8d3a07ba705dff1623257e&gt; /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x193708000 - 0x193994fff vImage arm64e &lt;56795edefcc636849857d4fef1351c38&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x193995000 - 0x193bc3fff AudioToolbox arm64e &lt;d8f3f9ee14c736d699f5ae4c8601cc93&gt; /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x193bc4000 - 0x193bf6fff libAudioToolboxUtility.dylib arm64e &lt;6a5891a16cbe35d89a5185ad55a2e2dc&gt; /usr/lib/libAudioToolboxUtility.dylib 0x19403a000 - 0x1940d1fff ShareSheet arm64e &lt;e1f148925b6d3a4b96177b94fd1cfacb&gt; /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet 0x19421f000 - 0x19424dfff DocumentManager arm64e &lt;93d341992cbd36da99de16308f45eb47&gt; /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager 0x1944b4000 - 0x19452ffff AuthKit arm64e &lt;7b25374a85333feb8adf72d83502ab64&gt; /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x194966000 - 0x19497afff libCGInterfaces.dylib arm64e &lt;92ee9188364c366b813cc9a5ec5197a1&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib 0x19497b000 - 0x194adbfff WebKitLegacy arm64e &lt;5874138ba2943cf2915ed9437d86292d&gt; /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x194adc000 - 0x194b48fff TextInput arm64e &lt;684fce4a7e5934bb99dbd37d2b7fe1d6&gt; /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x194bc7000 - 0x194bcafff XCTTargetBootstrap arm64e &lt;ffb8f272656a384fb0d6031be6319d42&gt; /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap 0x195075000 - 0x195397fff AppleMediaServices arm64e &lt;c10c66fcf8633420993f780984e4171b&gt; /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices 0x195874000 - 0x19592dfff CoreUI arm64e &lt;ef7612b0f6aa310488acca8acd56c0cc&gt; /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x195953000 - 0x195989fff CoreVideo arm64e &lt;3a2f162bde1233b0a50817370e047d87&gt; /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x19598a000 - 0x195bc7fff AudioToolboxCore arm64e &lt;c66b51e023b03a289a3b882be3c3d23c&gt; /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore 0x195c0e000 - 0x195c49fff SetupAssistant arm64e &lt;e42a6d429e2c3ac598451c61fcbfcf13&gt; /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant 0x195d0b000 - 0x195d35fff PlugInKit arm64e &lt;ad6bfaff82d53a87bd9d13fe27c80457&gt; /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x1964fd000 - 0x19651afff PrototypeTools arm64e &lt;f3cb253f46663c58a083973ba15600a1&gt; /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x19651b000 - 0x196611fff MediaExperience arm64e &lt;e910c66987ad36d8b0d1d124e587c968&gt; /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience 0x19730f000 - 0x197311fff libapp_launch_measurement.dylib arm64e &lt;91ef3ce15e8f3c648eed091abe7aae59&gt; /usr/lib/libapp_launch_measurement.dylib 0x197427000 - 0x197436fff CrashReporterSupport arm64e &lt;5c571f0d410f37c8b0b5aec581071a62&gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x197508000 - 0x197540fff StoreKit arm64e &lt;934b29dfba403f798d7190cf22cc83a2&gt; /System/Library/Frameworks/StoreKit.framework/StoreKit 0x197541000 - 0x197545fff libsystem_configuration.dylib arm64e &lt;f1780fef1c733699afb4853c2f3a79f3&gt; /usr/lib/system/libsystem_configuration.dylib 0x197736000 - 0x197744fff HangTracer arm64e &lt;7bde4411d11f358ca743b0450546ba87&gt; /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x1977ae000 - 0x1977affff liblangid.dylib arm64e &lt;5a79a1d057833c599ecafc936c2c8c10&gt; /usr/lib/liblangid.dylib 0x1977b0000 - 0x1986d4fff JavaScriptCore arm64e &lt;03568d3096ec314b9c897f0a73da18c6&gt; /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x1986d5000 - 0x198761fff libTelephonyUtilDynamic.dylib arm64e &lt;9ef9c60206823bb4a403b33b872c2455&gt; /usr/lib/libTelephonyUtilDynamic.dylib 0x198777000 - 0x198a04fff StoreServices arm64e &lt;e6aad7d0d2123684b2395a7eed869421&gt; /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x198a05000 - 0x198a0efff IOMobileFramebuffer arm64e &lt;5f441044220e3f4782e0d5179454388b&gt; /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x198d9a000 - 0x198db4fff CoreMaterial arm64e &lt;a2952dbea47a3cb6bbe908d918cb2cd2&gt; /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial 0x198db5000 - 0x198e9efff libxml2.2.dylib arm64e &lt;3485a3aea53a3041a38a3217285bcc11&gt; /usr/lib/libxml2.2.dylib 0x19b9f0000 - 0x19ba1bfff PersistentConnection arm64e &lt;2133bad321263474b738fad8e8d62118&gt; /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x19bd07000 - 0x19bd0ffff CorePhoneNumbers arm64e &lt;67383165bd3331d683c3eb7086e893a3&gt; /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers 0x19be50000 - 0x19be73fff CoreSVG arm64e &lt;c6cfaf954f91313cb0bcb7dad9abe708&gt; /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG 0x19bead000 - 0x19beb7fff MallocStackLogging arm64e &lt;eb2dfe9ec91531598af5c62f46b59794&gt; /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging 0x19c15c000 - 0x19c357fff HealthKit arm64e &lt;f5d157d2ae4b3a14ba005019f5dfd2c5&gt; /System/Library/Frameworks/HealthKit.framework/HealthKit 0x19c9a2000 - 0x19c9d8fff CoreBluetooth arm64e &lt;71cf525d6f3938009736e6dd7d7d973f&gt; /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x19c9d9000 - 0x19c9dbfff libsystem_sandbox.dylib arm64e &lt;f228885d105631ba9f46695dff376ca8&gt; /usr/lib/system/libsystem_sandbox.dylib 0x19cb4b000 - 0x19cbbafff Rapport arm64e &lt;fe139c07630c38b593d86e441427cb8b&gt; /System/Library/PrivateFrameworks/Rapport.framework/Rapport 0x19cbbb000 - 0x19cbfffff OSAnalytics arm64e &lt;b8b2b71cf4ae34d8949eabd110312112&gt; /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics 0x19cc00000 - 0x19cc2ffff MobileInstallation arm64e &lt;05b26f0075de369980aca9e7df2f9d82&gt; /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x19cc30000 - 0x19cccefff Metal arm64e &lt;7a668f30c54a390487d045c8e733789b&gt; /System/Library/Frameworks/Metal.framework/Metal 0x19cccf000 - 0x19ccd4fff IOAccelerator arm64e &lt;de57e082811b3879857aab409f25282e&gt; /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x19ccd5000 - 0x19cce0fff MediaAccessibility arm64e &lt;4cf837ba3e3939a0b701c11b57e57018&gt; /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x19ccff000 - 0x19cd06fff libsystem_dnssd.dylib arm64e &lt;bc92070f9e5a353e8394711ed9921e58&gt; /usr/lib/system/libsystem_dnssd.dylib 0x19cd07000 - 0x19cd0dfff PushKit arm64e &lt;780514342c82358a87f381622cda4ce2&gt; /System/Library/Frameworks/PushKit.framework/PushKit 0x19cd0e000 - 0x19ce1afff FileProvider arm64e &lt;ebd34462ef2e3922be068e13f9661817&gt; /System/Library/Frameworks/FileProvider.framework/FileProvider 0x19ce7c000 - 0x19cf39fff ************ arm64e &lt;3c75e8b31b693c84aa24dbbdd3df580d&gt; /System/Library/Frameworks/************.framework/************ 0x19d3e4000 - 0x19d456fff AppStoreDaemon arm64e &lt;1201521bb3b735bea0e0ac69d53f34ee&gt; /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon 0x19d4b3000 - 0x19d4bbfff SymptomDiagnosticReporter arm64e &lt;db09183f658635f5b4a4cdd0eaa8ec27&gt; /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x19d4bc000 - 0x19d4befff IOSurfaceAccelerator arm64e &lt;ce9d98c62efa3d4292f3ccf2021efed7&gt; /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x19d614000 - 0x19d629fff CoreFollowUp arm64e &lt;4a52560843db32ab86e37fa329c90e2e&gt; /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp 0x19d633000 - 0x19d649fff libcoretls.dylib arm64e &lt;6baa308030e634359da06920f98697b7&gt; /usr/lib/libcoretls.dylib 0x19d6a1000 - 0x19d732fff libate.dylib arm64e &lt;73f96794d55137a7a0488e4b9a38f001&gt; /usr/lib/libate.dylib 0x19e88c000 - 0x19e8f9fff SAObjects arm64e &lt;e6ddfa6f47f53143af9b9f7360839029&gt; /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x19e9b2000 - 0x19e9bffff DataMigration arm64e &lt;01ac5162e4883277a68fcdbd593673c1&gt; /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x19eb7e000 - 0x19eba2fff IconServices arm64e &lt;867c8df587003094a2839ac5fe809d05&gt; /System/Library/PrivateFrameworks/IconServices.framework/IconServices 0x19f068000 - 0x19f069fff WatchdogClient arm64e &lt;91fdf1b39e5e3cb7a53dae03f9a03a66&gt; /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient 0x19f226000 - 0x19f233fff CPMS arm64e &lt;8335d79c147d307a9c2842b828e967f7&gt; /System/Library/PrivateFrameworks/CPMS.framework/CPMS 0x19f3a0000 - 0x19f3edfff MobileBackup arm64e &lt;b45536a71fd136fb9d20119a2da94ca3&gt; /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x19f4a0000 - 0x19f4a7fff CoreTime arm64e &lt;a062cd61c5473925aaef1446720dea88&gt; /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x19fdfb000 - 0x19fe1afff AppConduit arm64e &lt;e03b1b60a2f43a319d6bd07f9fac5f7d&gt; /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit 0x19fe1b000 - 0x19fe34fff IntlPreferences arm64e &lt;bf446a9506f43ac8bd6b18f82c7de7df&gt; /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x1a01f9000 - 0x1a02e8fff CoreBrightness arm64e &lt;deb946c783e93f24b69004f6c3000fc8&gt; /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x1a02e9000 - 0x1a02f0fff libIOReport.dylib arm64e &lt;a6ebc571667130349c536a85b3b27e55&gt; /usr/lib/libIOReport.dylib 0x1a0485000 - 0x1a06e1fff libBNNS.dylib arm64e &lt;65e6102d2db03d118e08c82e922c9bed&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x1a06e2000 - 0x1a06e9fff StudyLog arm64e &lt;72f6a1fa28ce3e568f12ba9bfacad559&gt; /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog 0x1a196a000 - 0x1a197cfff LocalAuthentication arm64e &lt;2a184cac22863dcb96e72cf02c9a22f3&gt; /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication 0x1a19a6000 - 0x1a19b1fff CaptiveNetwork arm64e &lt;cfd3c5d37c6836478aec1112d4dbe39b&gt; /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x1a1b00000 - 0x1a1bd8fff libBLAS.dylib arm64e &lt;119b988d727036d0a3bf23446cfb1bbf&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x1a26f2000 - 0x1a270dfff libtailspin.dylib arm64e &lt;29751538d46f3691ac5c432189321a5e&gt; /usr/lib/libtailspin.dylib 0x1a2859000 - 0x1a2868fff MobileIcons arm64e &lt;88a6455c25e23338b28260a8340b8b2b&gt; /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x1a2a35000 - 0x1a2a7ffff CoreHaptics arm64e &lt;9f1e14d85e1c3757ac27b87cd9ffd194&gt; /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics 0x1a2bbd000 - 0x1a2c53fff CoreSymbolication arm64e &lt;1a5803659d1539a09385ea7b96da1294&gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x1a2c54000 - 0x1a2c5afff IdleTimerServices arm64e &lt;c7e0d2cd5e243ab596a23552e3898168&gt; /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices 0x1a331b000 - 0x1a3363fff LoggingSupport arm64e &lt;c0e18199eaa03cedb564959fee37a1d2&gt; /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport 0x1a35bb000 - 0x1a35c3fff OpenGLES arm64e &lt;3d61a695faa43213a801214a686820f1&gt; /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x1a372e000 - 0x1a3737fff libGFXShared.dylib arm64e &lt;bf425dfe2c64313c8c7da88b658aa6ef&gt; /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x1a3738000 - 0x1a376dfff SharedUtils arm64e &lt;fbde7d5e1b21381eb6f1483fa43e31a3&gt; /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils 0x1a4e3f000 - 0x1a4e7bfff StreamingZip arm64e &lt;42615d7614e53bb8991655d2b3faccaf&gt; /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip 0x1a673b000 - 0x1a6753fff NetworkStatistics arm64e &lt;b9ba4ee1e3d93137aa5cc0df912c4807&gt; /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x1a6bd2000 - 0x1a6bd8fff Netrb arm64e &lt;51adb4be3945341bb7d044610988c08e&gt; /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x1a6bdc000 - 0x1a6c0cfff EAP8021X arm64e &lt;18504c01434034778977dcd6ef252067&gt; /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x1a6c0d000 - 0x1a6c0ffff OSAServicesClient arm64e &lt;3409431b54b131d98905ce9631159533&gt; /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient 0x1a8b1d000 - 0x1a8b1ffff OAuth arm64e &lt;02b838142b8f3e8989150c43aae074c4&gt; /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x1a9606000 - 0x1a9676fff libarchive.2.dylib arm64e &lt;e3a2b2e6872839aab6b0261a0cd004b8&gt; /usr/lib/libarchive.2.dylib 0x1a9772000 - 0x1a9773fff libsystem_coreservices.dylib arm64e &lt;7e6f2b084bbc388381582fc0e464bbf3&gt; /usr/lib/system/libsystem_coreservices.dylib 0x1a9785000 - 0x1a9797fff libmis.dylib arm64e &lt;36fa86f7cae63b4494153102c609642b&gt; /usr/lib/libmis.dylib 0x1a9998000 - 0x1a99a0fff libcopyfile.dylib arm64e &lt;8367654f501639038b072476bea354cd&gt; /usr/lib/system/libcopyfile.dylib 0x1a9d17000 - 0x1a9daefff AccountsDaemon arm64e &lt;03629df64a033caca7184887cfce6b09&gt; /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x1a9daf000 - 0x1a9dbafff AppleIDSSOAuthentication arm64e &lt;33c6c4d62f8a3823b665065d9fd49f37&gt; /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x1a9f14000 - 0x1a9f98fff Symbolication arm64e &lt;b1f1b451d03f3a7b8f442abb7a538d56&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication 0x1aa15c000 - 0x1aa1aafff ChunkingLibrary arm64e &lt;71f54b68aa2b3ec8a5d1f1f0623c5eba&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x1ab209000 - 0x1ab248fff SignpostSupport arm64e &lt;c86e0cb08e8639c3b23963177a775290&gt; /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport 0x1ab4e0000 - 0x1ab4e9fff SignpostCollection arm64e &lt;e74fea7b66f63c4a90464a7642f5b17f&gt; /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection 0x1abc3a000 - 0x1abc44fff URLFormatting arm64e &lt;56eae11f99ab3802ad670b9ce2cbe306&gt; /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting 0x1ac3c3000 - 0x1ac40afff CoreLocationProtobuf arm64e &lt;7f4b6f4237c53c66bf370decc6c0a236&gt; /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf 0x1ac851000 - 0x1ac866fff libEDR arm64e &lt;8df2624d5f403ad3ab39dd638e13978c&gt; /System/Library/PrivateFrameworks/libEDR.framework/libEDR 0x1ad4cc000 - 0x1ad4d9fff libperfcheck.dylib arm64e &lt;6f46d2b898e43ae8a8560e4cd2fb1f36&gt; /usr/lib/libperfcheck.dylib 0x1ad4da000 - 0x1ad4e5fff libAudioStatistics.dylib arm64e &lt;3e633f28bc9132f9bb5c796f0e46e052&gt; /usr/lib/libAudioStatistics.dylib 0x1ad6b4000 - 0x1ad6c4fff caulk arm64e &lt;c6d1ff92a0123431b7cf21b78048da34&gt; /System/Library/PrivateFrameworks/caulk.framework/caulk 0x1ad704000 - 0x1ad70afff MobileSystemServices arm64e &lt;cde4fe2935f93d06b64c199a03f27a7b&gt; /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x1ae83c000 - 0x1ae846fff HID arm64e &lt;c28648e63d323160b5ffcfb454485eac&gt; /System/Library/PrivateFrameworks/HID.framework/HID 0x1ae873000 - 0x1ae8aefff libGLImage.dylib arm64e &lt;3f2af041d7d0385496e297c59cc0763a&gt; /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x1aecbe000 - 0x1aeccffff libSparseBLAS.dylib arm64e &lt;3bf1eac8019639d48a1384ffebae86db&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1aecd0000 - 0x1aece4fff Engram arm64e &lt;ccb3d37bd0b635cf89f12cad15990d09&gt; /System/Library/PrivateFrameworks/Engram.framework/Engram 0x1afb6b000 - 0x1afb7ffff libLinearAlgebra.dylib arm64e &lt;64866b1966a7333cb2b023f618213359&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1afe34000 - 0x1afe42fff CoreAUC arm64e &lt;157f3a160fc63cb8b9b25fe113bad4fb&gt; /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x1b0831000 - 0x1b0877fff PhysicsKit arm64e &lt;e01f35e3a89734f5a2b19907400c9538&gt; /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x1b11f6000 - 0x1b1214fff GenerationalStorage arm64e &lt;c976c03afa273f3d811ddb5358456371&gt; /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x1b16b0000 - 0x1b16b5fff kperf arm64e &lt;41d3e576dccc35aaa80c9c472607e577&gt; /System/Library/PrivateFrameworks/kperf.framework/kperf 0x1b1896000 - 0x1b18d0fff libpcap.A.dylib arm64e &lt;7b3c2d685e1c341da9f788ad908db918&gt; /usr/lib/libpcap.A.dylib 0x1b1c17000 - 0x1b1cbcfff libvDSP.dylib arm64e &lt;c75844ce850b3b5c969839df08a38d43&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1b1d31000 - 0x1b1dbefff SampleAnalysis arm64e &lt;8e7d9ea81d8e33c289658ced7ffbb6a8&gt; /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis 0x1b261f000 - 0x1b261ffff Accelerate arm64e &lt;a1e41bb3629735c1a982f66d173ee8f3&gt; /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1b2620000 - 0x1b2957fff libLAPACK.dylib arm64e &lt;b05560e846dc30699621317b2c64dc56&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1b2958000 - 0x1b295cfff libQuadrature.dylib arm64e &lt;7c1e926466ea3f91beef2e12b946226f&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x1b295d000 - 0x1b29b6fff libvMisc.dylib arm64e &lt;8eabce42ecd9360b870e457b7f49eb5b&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1b29b7000 - 0x1b29b7fff vecLib arm64e &lt;4fb0e1e42854371ca6f5e3d414a40835&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1b2d62000 - 0x1b2d8efff GSS arm64e &lt;ea70273ecf0c3027b6308d12d17b3ab4&gt; /System/Library/Frameworks/GSS.framework/GSS 0x1b2da1000 - 0x1b2dd3fff MPSCore arm64e &lt;600cad3b5d24396db101af5dc920e2d3&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore 0x1b2dd4000 - 0x1b2e51fff MPSImage arm64e &lt;c26b34cc907f349b920aa92d8051acf4&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage 0x1b2e52000 - 0x1b2e74fff MPSMatrix arm64e &lt;0204dda1b1213580b2b4bbae3a431849&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix 0x1b2e75000 - 0x1b2e89fff MPSNDArray arm64e &lt;a401e659b5653fe393d797873bd2f7c0&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray 0x1b2e8a000 - 0x1b301ffff MPSNeuralNetwork arm64e &lt;9ef36fc8b7d13b1abb6c36bd9ab90104&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork 0x1b3020000 - 0x1b3064fff MPSRayIntersector arm64e &lt;e05e566a66db3186aff3aea5afa7da7d&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector 0x1b3065000 - 0x1b3065fff MetalPerformanceShaders arm64e &lt;9f39552439523a55a7004525e511f074&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x1b3072000 - 0x1b3072fff MobileCoreServices arm64e &lt;66b9265aa16c38b2a7b961f3fdd47014&gt; /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1b307d000 - 0x1b307efff libCVMSPluginSupport.dylib arm64e &lt;4cdff3446c9430bba64e076972a466c4&gt; /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x1b307f000 - 0x1b3085fff libCoreFSCache.dylib arm64e &lt;27d6a4087ced3af389c03c362cfa90f8&gt; /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1b3086000 - 0x1b308bfff libCoreVMClient.dylib arm64e &lt;6eb95a63816d323c8b9688b7ff8ca93b&gt; /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x1b3546000 - 0x1b3546fff UIKit arm64e &lt;3f621ddff92b3dc49ab2d6bb6dfbba7f&gt; /System/Library/Frameworks/UIKit.framework/UIKit 0x1b3a75000 - 0x1b3b06fff APFS arm64e &lt;c7d2cee0e7a539a9842cec48eda6ed8a&gt; /System/Library/PrivateFrameworks/APFS.framework/APFS 0x1b3b07000 - 0x1b3b0bfff ASEProcessing arm64e &lt;dcb50e44abdf30d78373e72379cb93b8&gt; /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing 0x1b3cc1000 - 0x1b3cccfff AccountSettings arm64e &lt;fea5c29fe89b3c7a90644330dffbba60&gt; /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings 0x1b4612000 - 0x1b461cfff AppleIDAuthSupport arm64e &lt;99465798d2323880bfa89a865a058082&gt; /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x1b461d000 - 0x1b465ffff AppleJPEG arm64e &lt;a50d3338d64e3502ba6de840d687efc7&gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1b46c2000 - 0x1b46e6fff AppleSauce arm64e &lt;77fdf41c066232a58cc4c9c5bdffaf8a&gt; /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce 0x1b48e7000 - 0x1b4917fff Bom arm64e &lt;08abdf5b9fa1352fa980617a45c6f6d3&gt; /System/Library/PrivateFrameworks/Bom.framework/Bom 0x1b53ac000 - 0x1b53b3fff CommonAuth arm64e &lt;ae89a774330c361c8c75e6777d7205c4&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x1b5942000 - 0x1b594dfff DeviceIdentity arm64e &lt;6da6646005633c68871b9386593ec565&gt; /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity 0x1b5ae4000 - 0x1b5b00fff DocumentManagerCore arm64e &lt;a222357d90b03a8eb1d672a7053be068&gt; /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore 0x1b6459000 - 0x1b686bfff FaceCore arm64e &lt;2f4b56149e0939418a8633f4b9d30e79&gt; /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x1b6940000 - 0x1b6954fff libGSFontCache.dylib arm64e &lt;a9fac902bffa356e99ed26cec0457b41&gt; /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x1b69bb000 - 0x1b69c7fff libhvf.dylib arm64e &lt;894890b89cc63cc195444e7cafa23416&gt; /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x1b7714000 - 0x1b7720fff GraphVisualizer arm64e &lt;77d02cdf60bc30db987a67d09268acda&gt; /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer 0x1b7a4c000 - 0x1b7abdfff Heimdal arm64e &lt;a0114dbd21b53f9da55892380617abf5&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x1b801c000 - 0x1b8023fff InternationalSupport arm64e &lt;b0faa897a6cb3bfcbc6ebb8212efeb1c&gt; /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport 0x1b82cf000 - 0x1b82cffff Marco arm64e &lt;e7b67c926578304a9423cbbc7e6e1446&gt; /System/Library/PrivateFrameworks/Marco.framework/Marco 0x1b87d2000 - 0x1b87e5fff MobileDeviceLink arm64e &lt;215146f949b831a79b37a68186fb8b71&gt; /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x1b8aa4000 - 0x1b8ae4fff OTSVG arm64e &lt;2e695509ae5e3f8c8a96fd2a401958c0&gt; /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG 0x1b9157000 - 0x1b9157fff PhoneNumbers arm64e &lt;ddacb51a287d31dfbfffc0ada574979a&gt; /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers 0x1bac71000 - 0x1bac7dfff SetupAssistantSupport arm64e &lt;ba233c47248c3e63b0e60498d1626123&gt; /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport 0x1bac9c000 - 0x1bac9cfff SignpostMetrics arm64e &lt;6edbaf43b42f322186be10844e633103&gt; /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics 0x1bb624000 - 0x1bb6c7fff TextureIO arm64e &lt;27d7dfc33b0e31abbaeee9587573775c&gt; /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x1bc66d000 - 0x1bcbe4fff libwebrtc.dylib arm64e &lt;36d5ac47ab7d3113a685f12c1fc1d8d2&gt; /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib 0x1bcd8e000 - 0x1bcd96fff kperfdata arm64e &lt;956725ebc8173bffb331e9dcaef958d5&gt; /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata 0x1bcd97000 - 0x1bcde0fff ktrace arm64e &lt;8747f3bba3003d059b939e4a22d4ac00&gt; /System/Library/PrivateFrameworks/ktrace.framework/ktrace 0x1bcdf9000 - 0x1bce05fff perfdata arm64e &lt;475011d9bcd438a3a0c772c0448394e2&gt; /System/Library/PrivateFrameworks/perfdata.framework/perfdata 0x1bd22b000 - 0x1bd55cfff libAWDSupportFramework.dylib arm64e &lt;a3609b2fc8543881b713774523d5ffea&gt; /usr/lib/libAWDSupportFramework.dylib 0x1bd73a000 - 0x1bd8fefff libFosl_dynamic.dylib arm64e &lt;4b887e56258d3c7c91f9195aaf5d3a87&gt; /usr/lib/libFosl_dynamic.dylib 0x1bda3e000 - 0x1bda3ffff libSystem.B.dylib arm64e &lt;7eb470eb09ed34299a429b642b67dbff&gt; /usr/lib/libSystem.B.dylib 0x1bdb49000 - 0x1bdb5efff libapple_nghttp2.dylib arm64e &lt;5bf258441bf1377f906c516023a55153&gt; /usr/lib/libapple_nghttp2.dylib 0x1bdbd8000 - 0x1bdbe8fff libbsm.0.dylib arm64e &lt;7f9235746b1939e3854386d0b4167a1d&gt; /usr/lib/libbsm.0.dylib 0x1bdbe9000 - 0x1bdbf5fff libbz2.1.0.dylib arm64e &lt;ead17294d3653cc1831f87c89ae28d38&gt; /usr/lib/libbz2.1.0.dylib 0x1bdbf6000 - 0x1bdbf6fff libcharset.1.dylib arm64e &lt;ce39247275483d328ede8380a4d63e22&gt; /usr/lib/libcharset.1.dylib 0x1bdc09000 - 0x1bdc20fff libcompression.dylib arm64e &lt;166614b3e6d635b58eeec05cc8691f9b&gt; /usr/lib/libcompression.dylib 0x1bdc21000 - 0x1bdc22fff libcoretls_cfhelpers.dylib arm64e &lt;f003fddee6d8373da423efc278df59bb&gt; /usr/lib/libcoretls_cfhelpers.dylib 0x1bdc23000 - 0x1bdc29fff libcupolicy.dylib arm64e &lt;9d5d8a2b193531e490127757ef2038c0&gt; /usr/lib/libcupolicy.dylib 0x1bdc69000 - 0x1bdc72fff libdscsym.dylib arm64e &lt;073207d7519c3d5697d72a18f1051d64&gt; /usr/lib/libdscsym.dylib 0x1bdcbb000 - 0x1bdcc0fff libheimdal-asn1.dylib arm64e &lt;c513327569cb36688e0d754c8f8659a7&gt; /usr/lib/libheimdal-asn1.dylib 0x1bdcc1000 - 0x1bddb3fff libiconv.2.dylib arm64e &lt;2a7b6979214735cba23b0508a570d932&gt; /usr/lib/libiconv.2.dylib 0x1bddc9000 - 0x1bddd4fff liblockdown.dylib arm64e &lt;792d094d768936b8903cea9f7b8f2cd0&gt; /usr/lib/liblockdown.dylib 0x1bddd5000 - 0x1bddedfff liblzma.5.dylib arm64e &lt;d5582867b5d83f02b14b96d37aa8371c&gt; /usr/lib/liblzma.5.dylib 0x1be173000 - 0x1be1a2fff libncurses.5.4.dylib arm64e &lt;38310ee7d2e931e4a00de28544da7fb5&gt; /usr/lib/libncurses.5.4.dylib 0x1be53e000 - 0x1be556fff libresolv.9.dylib arm64e &lt;17f1d300c4fa33e2aeb2577dc2e43fcc&gt; /usr/lib/libresolv.9.dylib 0x1be560000 - 0x1be592fff libtidy.A.dylib arm64e &lt;f89e9e6b4bac3fdcb8d3f75edaad2df5&gt; /usr/lib/libtidy.A.dylib 0x1be59a000 - 0x1be59dfff libutil.dylib arm64e &lt;76417107bfe731209300a527fe4e352b&gt; /usr/lib/libutil.dylib 0x1be5a2000 - 0x1be5cafff libxslt.1.dylib arm64e &lt;ff19cd1b5ea930b8a0388cc765489fc2&gt; /usr/lib/libxslt.1.dylib 0x1be5cb000 - 0x1be5dcfff libz.1.dylib arm64e &lt;cb7e5c3b57c732c690c2c79c542ef0f9&gt; /usr/lib/libz.1.dylib 0x1be9fe000 - 0x1bea03fff libcache.dylib arm64e &lt;8e7d0a11b0613116bc41e90451bff8ac&gt; /usr/lib/system/libcache.dylib 0x1bea04000 - 0x1bea10fff libcommonCrypto.dylib arm64e &lt;45fa49effaa83e758538a83dde01468d&gt; /usr/lib/system/libcommonCrypto.dylib 0x1bea11000 - 0x1bea14fff libcompiler_rt.dylib arm64e &lt;fd46c7ea9bad30e2b34a1faa3aa731ba&gt; /usr/lib/system/libcompiler_rt.dylib 0x1beae4000 - 0x1beae4fff liblaunch.dylib arm64e &lt;e45ecaf717a63e52aa4d9ad1a0cf62a6&gt; /usr/lib/system/liblaunch.dylib 0x1beae5000 - 0x1beaeafff libmacho.dylib arm64e &lt;fea9cc6a04413d1187d5fcd35c777c84&gt; /usr/lib/system/libmacho.dylib 0x1beaeb000 - 0x1beaecfff libremovefile.dylib arm64e &lt;b98667c390f331dfbd3b37e0e5d61982&gt; /usr/lib/system/libremovefile.dylib 0x1beaed000 - 0x1beaeefff libsystem_featureflags.dylib arm64e &lt;990678b1710b3fdb9ae47e3974e2823d&gt; /usr/lib/system/libsystem_featureflags.dylib 0x1beaef000 - 0x1beb1cfff libsystem_m.dylib arm64e &lt;74d8b216547531e29bd4227ac7e4776d&gt; /usr/lib/system/libsystem_m.dylib 0x1beb1d000 - 0x1beb22fff libunwind.dylib arm64e &lt;1c0ecf551c6137498f02f24cd0e29aa8&gt; /usr/lib/system/libunwind.dylib 0x1bee07000 - 0x1bee72fff NanoRegistry arm64e &lt;6e814a365e413709a8e1fee45a9f864e&gt; /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry 0x1bee73000 - 0x1bee80fff NanoPreferencesSync arm64e &lt;3f7c3ae791f73808ab26bb480cdba728&gt; /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync 0x1bf8ef000 - 0x1bf92afff CryptoTokenKit arm64e &lt;4124d95a9ef23d06aff17ee5eddf7fcb&gt; /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit 0x1c0593000 - 0x1c059dfff PointerUIServices arm64e &lt;d444d2473bf33bfbb3c1a5e94d6887fe&gt; /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices EOF {"app_name":"Pace","timestamp":"2020-06-07 20:05:23.00 -0700","app_version":"2","slice_uuid":"978196fd-ec0a-3b06-9e44-d3cecae6c374","adam_id":1499489602,"build_version":"39","bundleID":"com.neeravkothari.Pace","share_with_app_devs":0,"is_first_party":0,"bug_type":"109","os_version":"iPhone OS 13.5.1 (17F80)","incident_id":"2CC6CB22-70DE-43EC-8BBA-B1C5FDDCDD48","name":"Pace"} Incident Identifier: 2CC6CB22-70DE-43EC-8BBA-B1C5FDDCDD48 CrashReporter Key: 9f8f61c0e7b4a5196eb3a9083de537bb9789ce51 Hardware Model: iPad11,3 Process: Pace [1074] Path: /private/var/containers/Bundle/Application/849A7591-2A0C-4D3F-B4CE-BD8295213316/Pace.app/Pace Identifier: com.neeravkothari.Pace Version: 39 (2) AppStoreTools: 11E608a Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd [1] Coalition: com.neeravkothari.Pace [772] Date/Time: 2020-06-07 20:05:22.7244 -0700 Launch Time: 2020-06-07 19:59:31.3628 -0700 OS Version: iPhone OS 13.5.1 (17F80) Release Type: User Baseband Version: n/a Report Version: 104 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Triggered by Thread: 0 Last Exception Backtrace: (0x188532300 0x188246c1c 0x188421e68 0x18bc24188 0x18bc246e8 0x102bc6710 0x1881d0ec4 0x1881d233c 0x1881de600 0x1884ad6b0 0x1884a82c8 0x1884a78f4 0x1928be604 0x18c67b358 0x102bc2860 0x1883232dc) Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 libsystem_kernel.dylib 0x0000000188318df0 0x1882f2000 + 159216 1 libsystem_pthread.dylib 0x0000000188238930 0x188236000 + 10544 2 libsystem_c.dylib 0x00000001881c6ba4 0x188150000 + 486308 3 libc++abi.dylib 0x00000001882ebf40 0x1882dc000 + 65344 4 libc++abi.dylib 0x00000001882dd8c8 0x1882dc000 + 6344 5 libobjc.A.dylib 0x0000000188246f0c 0x188241000 + 24332 6 libc++abi.dylib 0x00000001882eb3cc 0x1882dc000 + 62412 7 libc++abi.dylib 0x00000001882eb358 0x1882dc000 + 62296 8 libdispatch.dylib 0x00000001881d2350 0x1881cf000 + 13136 9 libdispatch.dylib 0x00000001881de600 0x1881cf000 + 62976 10 CoreFoundation 0x00000001884ad6b0 0x188400000 + 710320 11 CoreFoundation 0x00000001884a82c8 0x188400000 + 688840 12 CoreFoundation 0x00000001884a78f4 0x188400000 + 686324 13 GraphicsServices 0x00000001928be604 0x1928bb000 + 13828 14 UIKitCore 0x000000018c67b358 0x18bc0c000 + 10941272 15 Pace 0x0000000102bc2860 0x102bbc000 + 26720 16 libdyld.dylib 0x00000001883232dc 0x188322000 + 4828 Thread 1 name: com.apple.uikit.eventfetch-thread Thread 1: 0 libsystem_kernel.dylib 0x00000001882f6784 0x1882f2000 + 18308 1 libsystem_kernel.dylib 0x00000001882f5ba8 0x1882f2000 + 15272 2 CoreFoundation 0x00000001884ad314 0x188400000 + 709396 3 CoreFoundation 0x00000001884a80a0 0x188400000 + 688288 4 CoreFoundation 0x00000001884a78f4 0x188400000 + 686324 5 Foundation 0x00000001887f0b18 0x1887e9000 + 31512 6 Foundation 0x00000001887f09f0 0x1887e9000 + 31216 7 UIKitCore 0x000000018c721840 0x18bc0c000 + 11622464 8 Foundation 0x000000018892ac10 0x1887e9000 + 1317904 9 libsystem_pthread.dylib 0x00000001882378fc 0x188236000 + 6396 10 libsystem_pthread.dylib 0x000000018823f9d4 0x188236000 + 39380 Thread 2: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 3: 0 libsystem_pthread.dylib 0x000000018823f9c0 0x188236000 + 39360 Thread 0 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x000000016d2420c0 x5: 0x000000016d242670 x6: 0x000000000000006e x7: 0x0000000000000800 x8: 0x00000000000005b9 x9: 0xea59ca8393054b87 x10: 0x0000000000000002 x11: 0x0000000000000003 x12: 0x0000000000000000 x13: 0x0000000000000035 x14: 0x0000000000000010 x15: 0x0000000000000000 x16: 0x0000000000000148 x17: 0x00000001c8cfe808 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x0000000000000407 x21: 0x0000000102c91960 x22: 0x0000000000000000 x23: 0x0000000000000000 x24: 0x0000000002ffffff x25: 0x0000000102c91960 x26: 0x00000000000020ff x27: 0x0000000000000114 x28: 0x0000000280b5aa80 fp: 0x000000016d2425d0 lr: 0x0000000188238930 sp: 0x000000016d2425b0 pc: 0x0000000188318df0 cpsr: 0x40000000 esr: 0x56000080 Address size fault Binary Images: 0x102bbc000 - 0x102bcffff Pace arm64 &lt;978196fdec0a3b069e44d3cecae6c374&gt; /var/containers/Bundle/Application/849A7591-2A0C-4D3F-B4CE-BD8295213316/Pace.app/Pace 0x102c20000 - 0x102c87fff dyld arm64e &lt;3d545c044e25313eb748ef45647088f7&gt; /usr/lib/dyld 0x104afc000 - 0x104b07fff libobjc-trampolines.dylib arm64e &lt;7fd5d790e34f3b9e91a253f8e9428e91&gt; /usr/lib/libobjc-trampolines.dylib 0x188104000 - 0x18811afff libsystem_trace.dylib arm64e &lt;a97807ab182135b5bec8f26659c6cc07&gt; /usr/lib/system/libsystem_trace.dylib 0x18811b000 - 0x18814efff libxpc.dylib arm64e &lt;33b9156a9ae13385bd0838552a3f3b7f&gt; /usr/lib/system/libxpc.dylib 0x18814f000 - 0x18814ffff libsystem_blocks.dylib arm64e &lt;c98d131c531b333883a989fc3d59d297&gt; /usr/lib/system/libsystem_blocks.dylib 0x188150000 - 0x1881cefff libsystem_c.dylib arm64e &lt;fb392c596c45359192d0191a54ed1f95&gt; /usr/lib/system/libsystem_c.dylib 0x1881cf000 - 0x18820cfff libdispatch.dylib arm64e &lt;cafeee864c943ac98853bfe11f70c0f4&gt; /usr/lib/system/libdispatch.dylib 0x18820d000 - 0x18822efff libsystem_malloc.dylib arm64e &lt;96293dc2b36033f0ba423dc9d93fc8d1&gt; /usr/lib/system/libsystem_malloc.dylib 0x18822f000 - 0x188235fff libsystem_platform.dylib arm64e &lt;bb79768e73ce350c9ba657b0e7546a52&gt; /usr/lib/system/libsystem_platform.dylib 0x188236000 - 0x188240fff libsystem_pthread.dylib arm64e &lt;4cf76cd7dc5b37cf83d746153d0d3962&gt; /usr/lib/system/libsystem_pthread.dylib 0x188241000 - 0x188272fff libobjc.A.dylib arm64e &lt;2d4d3c06e2a8381fbd0026dfb70f07a6&gt; /usr/lib/libobjc.A.dylib 0x188273000 - 0x1882dbfff libcorecrypto.dylib arm64e &lt;39cb305ee1e83f209221e33b0ec85be9&gt; /usr/lib/system/libcorecrypto.dylib 0x1882dc000 - 0x1882f1fff libc++abi.dylib arm64e &lt;5fef611d48453dc5b9f12f9a652810fd&gt; /usr/lib/libc++abi.dylib 0x1882f2000 - 0x188321fff libsystem_kernel.dylib arm64e &lt;42bdcd4102a63529a2710e6402154a44&gt; /usr/lib/system/libsystem_kernel.dylib 0x188322000 - 0x188356fff libdyld.dylib arm64e &lt;e5e56a85e4d6332e9f32fed4b986afe0&gt; /usr/lib/system/libdyld.dylib 0x188357000 - 0x18835ffff libsystem_darwin.dylib arm64e &lt;daf5107bf29a31ca981dc3ea281c7598&gt; /usr/lib/system/libsystem_darwin.dylib 0x188360000 - 0x1883bdfff libc++.1.dylib arm64e &lt;6b6f1c809d373df585ba80d49b2f39d2&gt; /usr/lib/libc++.1.dylib 0x1883be000 - 0x1883fffff libsystem_info.dylib arm64e &lt;e68a14e16a773e5dbd44ececd9fab378&gt; /usr/lib/system/libsystem_info.dylib 0x188400000 - 0x18877dfff CoreFoundation arm64e &lt;af42303f57b63c118f188e80abf7d886&gt; /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x18877e000 - 0x1887e8fff SystemConfiguration arm64e &lt;46f9e302ff713c2587fd4ba889aa0899&gt; /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x1887e9000 - 0x188ab3fff Foundation arm64e &lt;19fab59f6527324585bb905fd4255cde&gt; /System/Library/Frameworks/Foundation.framework/Foundation 0x188ab4000 - 0x188ae6fff libCRFSuite.dylib arm64e &lt;b6a7b94f1fdb3a14a9a4732e2314ed7d&gt; /usr/lib/libCRFSuite.dylib 0x188ae7000 - 0x188c69fff CoreServices arm64e &lt;09cf7ffb7a8c33e18334344471581e9a&gt; /System/Library/Frameworks/CoreServices.framework/CoreServices 0x188c6a000 - 0x188ccbfff libSparse.dylib arm64e &lt;04379c0654c63de9be3be888ba841740&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib 0x188ccc000 - 0x1891c4fff ImageIO arm64e &lt;6b0129bc6b7236b5b32ac945ca006734&gt; /System/Library/Frameworks/ImageIO.framework/ImageIO 0x1891c5000 - 0x1891c7fff ConstantClasses arm64e &lt;50bb035e91b23ebaa87c542f8d80543a&gt; /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x1891c8000 - 0x189361fff CoreText arm64e &lt;d0d4f15628113595a70b67f51dfdb363&gt; /System/Library/Frameworks/CoreText.framework/CoreText 0x189362000 - 0x18949ffff Security arm64e &lt;ed90382611dd38638daf1222acbf7ead&gt; /System/Library/Frameworks/Security.framework/Security 0x1894a0000 - 0x189546fff IOKit arm64e &lt;6e74a48406553baaac567cf7f8eeb98b&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x189547000 - 0x18957ffff libMobileGestalt.dylib arm64e &lt;772c4c0f435b3847be31d9132d23c4bb&gt; /usr/lib/libMobileGestalt.dylib 0x189580000 - 0x1895defff libprotobuf.dylib arm64e &lt;cccb3d5cf8fc32ca9a71fc8b08c6a8c5&gt; /usr/lib/libprotobuf.dylib 0x1895df000 - 0x1895f1fff libprotobuf-lite.dylib arm64e &lt;de6b39620b05337e9a6568da76940855&gt; /usr/lib/libprotobuf-lite.dylib 0x1895f2000 - 0x189851fff libicucore.A.dylib arm64e &lt;f0880583e45d389b9490d5a48d1ffa01&gt; /usr/lib/libicucore.A.dylib 0x189852000 - 0x18987bfff CoreServicesInternal arm64e &lt;cf55cb317e84386ba4a0886c727742cd&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x18987c000 - 0x1898c2fff WirelessDiagnostics arm64e &lt;a646d26a11df38d8b27ed41730fb7002&gt; /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x1898c3000 - 0x1898fffff libAWDSupport.dylib arm64e &lt;e072dd7c37ab3213a936673bd49092bb&gt; /usr/lib/libAWDSupport.dylib 0x189900000 - 0x189d4dfff CoreAudio arm64e &lt;34beccdf330b3ddba3d8db0b396fe416&gt; /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x189d4e000 - 0x18a027fff CoreImage arm64e &lt;ee7c0b05364c3f4c8cb914ee5e0b155f&gt; /System/Library/Frameworks/CoreImage.framework/CoreImage 0x18a163000 - 0x18a2e9fff libsqlite3.dylib arm64e &lt;2bb58dc8e80737c79ad0650fc693e071&gt; /usr/lib/libsqlite3.dylib 0x18a2ea000 - 0x18a31cfff MobileKeyBag arm64e &lt;e5a4993a7f803df9a81c7849eff8e5d5&gt; /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x18a31d000 - 0x18a326fff libsystem_notify.dylib arm64e &lt;178ec12ff99234c3aadb1c742f41c00c&gt; /usr/lib/system/libsystem_notify.dylib 0x18a75f000 - 0x18a79cfff AppSupport arm64e &lt;a23f23466db2307eb0f4f9893ea7054d&gt; /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x18a79d000 - 0x18ac8afff libnetwork.dylib arm64e &lt;7cfe032c6120314ea59fec497e225be5&gt; /usr/lib/libnetwork.dylib 0x18ac8b000 - 0x18ad9cfff ManagedConfiguration arm64e &lt;c0cfce09548e3b638134b2e78d6d6b54&gt; /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x18ad9d000 - 0x18adc7fff CoreServicesStore arm64e &lt;4b4e849003303a4ea7751a1c33639287&gt; /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore 0x18adc8000 - 0x18ade9fff UserManagement arm64e &lt;cd489382cd7837feb28ee4ea1ffe8a3a&gt; /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x18b0a0000 - 0x18b0b6fff ProtocolBuffer arm64e &lt;e033b42d19343f8785d49f24d60a968c&gt; /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x18b0b7000 - 0x18b0d1fff CommonUtilities arm64e &lt;2b5d96016acc3d3389947ed62b94ba4f&gt; /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x18b0d2000 - 0x18b0d2fff libenergytrace.dylib arm64e &lt;b74c2e0e9ed630798472dc5557efabdb&gt; /usr/lib/libenergytrace.dylib 0x18b0d3000 - 0x18b10afff RunningBoardServices arm64e &lt;9ab220e324003e6e881ae340999ee125&gt; /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices 0x18b10b000 - 0x18b18bfff BaseBoard arm64e &lt;05a25e672d0239ac83943294722e4d40&gt; /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x18b6de000 - 0x18b752fff CoreLocation arm64e &lt;16d12cac8947363ea20c00984f351bb5&gt; /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x18b760000 - 0x18b7b6fff Accounts arm64e &lt;2a7126b9ef2e347aa9f873a5a530e39b&gt; /System/Library/Frameworks/Accounts.framework/Accounts 0x18b7c8000 - 0x18bb29fff CFNetwork arm64e &lt;ee91f2c9246439658aab4a986ebe9f72&gt; /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x18bb2a000 - 0x18bc0bfff UIFoundation arm64e &lt;7ac887875fbe3b3fb2604a5719e0855f&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x18bc0c000 - 0x18cd85fff UIKitCore arm64e &lt;32d99abde47b38d8bbd168aea293a9a6&gt; /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 0x18cd86000 - 0x18cd94fff AssertionServices arm64e &lt;2156c4f3f21d37f59a6aa0ace189c550&gt; /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x18cd95000 - 0x18ce6efff CoreTelephony arm64e &lt;4e14850866233b9a83db3a779a362c13&gt; /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x18ce6f000 - 0x18ce74fff AggregateDictionary arm64e &lt;51c324c57a9639199093b3ee6d3f47ac&gt; /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x18ce75000 - 0x18ce8bfff libsystem_asl.dylib arm64e &lt;666510682393344781d2492329fdade4&gt; /usr/lib/system/libsystem_asl.dylib 0x18cf08000 - 0x18d23bfff CoreData arm64e &lt;cb4a2f80940f3b029874bb590aa95bf7&gt; /System/Library/Frameworks/CoreData.framework/CoreData 0x18d4ab000 - 0x18d4d6fff BoardServices arm64e &lt;ca4eb930751c37f99deada1fd24ad507&gt; /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices 0x18d58f000 - 0x18d59dfff libsystem_networkextension.dylib arm64e &lt;02e039c25510308f906d9680ea148016&gt; /usr/lib/system/libsystem_networkextension.dylib 0x18d59e000 - 0x18d5befff CoreAnalytics arm64e &lt;a82e8ceea5173f22be9cdd59fc8a7588&gt; /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics 0x18d738000 - 0x18d787fff SpringBoardServices arm64e &lt;6493723947a636cf86cf8d98993cad00&gt; /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x18d788000 - 0x18d7fefff FrontBoardServices arm64e &lt;0a1b636b96dc3601bf310bdae5650bcb&gt; /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x18d7ff000 - 0x18d928fff Network arm64e &lt;95fa4f1dd9e837d19496ad584d562c64&gt; /System/Library/Frameworks/Network.framework/Network 0x18d986000 - 0x18d98dfff libsystem_symptoms.dylib arm64e &lt;aa16aeb7465b377ab2079d2d1c8a0384&gt; /usr/lib/system/libsystem_symptoms.dylib 0x18d98e000 - 0x18e8d8fff GeoServices arm64e &lt;4fb72abb795b3100aacc20dd243e0788&gt; /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x18e8d9000 - 0x18e8e1fff TCC arm64e &lt;11a57e27c1eb3d8bb3bf7ab8e8013831&gt; /System/Library/PrivateFrameworks/TCC.framework/TCC 0x18e8e2000 - 0x18e93dfff IMFoundation arm64e &lt;cb432c774907353bb792e6d5a6d0a056&gt; /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x18e93e000 - 0x18eab8fff CoreUtils arm64e &lt;01087631a6ee3b84aef8ac27cc7a6ea8&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x18eba3000 - 0x18ebacfff libsystem_containermanager.dylib arm64e &lt;e07e142b51b5363184a3fe871c978c40&gt; /usr/lib/system/libsystem_containermanager.dylib 0x18ebad000 - 0x18ec2bfff AppleAccount arm64e &lt;0f37ea8f74bc354bab82bcff865641cb&gt; /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x18ec2c000 - 0x18ec48fff ApplePushService arm64e &lt;69a77f4b69813820a0a5347c65ba4030&gt; /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x18ec49000 - 0x18ed38fff IDS arm64e &lt;5fc6daac7f273d8c8bed450e2178d640&gt; /System/Library/PrivateFrameworks/IDS.framework/IDS 0x18ed39000 - 0x18ee66fff IDSFoundation arm64e &lt;04ac14bce0f43a9b9ecc94a8a5dbb20b&gt; /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x18ee67000 - 0x18ee68fff libCTGreenTeaLogger.dylib arm64e &lt;7e121690842935eeac4e4b4b51513862&gt; /usr/lib/libCTGreenTeaLogger.dylib 0x18eed0000 - 0x18efd5fff CoreMedia arm64e &lt;4767fc0ff69f3fcd8b24a4cc71da9d6b&gt; /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x18efd6000 - 0x18efe5fff UIKitServices arm64e &lt;68212d5d5105300eb461d207e19b3792&gt; /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices 0x18efe6000 - 0x18f043fff BackBoardServices arm64e &lt;b02bcd818a3b3b3f95158ca45e26cab5&gt; /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x18f044000 - 0x18f29ffff QuartzCore arm64e &lt;d29c2cdeb3253c549f2ad626e512de36&gt; /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x18f2a0000 - 0x18f369fff ColorSync arm64e &lt;102a648773f33a07a1c127c13cedda04&gt; /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x18f36a000 - 0x18f8defff CoreGraphics arm64e &lt;6253a52d23ae3901bddc4bfb72f504e6&gt; /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x18fa19000 - 0x18fa49fff UserNotifications arm64e &lt;59658c67fbf63eef99f4f3319d4bd957&gt; /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x18fa4a000 - 0x18fa6dfff LocationSupport arm64e &lt;396e988006db31f7aa853b3370481968&gt; /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport 0x190263000 - 0x1920dcfff WebCore arm64e &lt;7ab3d89e9b9d35f785317de2d18546a2&gt; /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x1920dd000 - 0x1920f8fff libAccessibility.dylib arm64e &lt;46645fc0e81a31d8ba5610c1327e12de&gt; /usr/lib/libAccessibility.dylib 0x1920f9000 - 0x192105fff AXCoreUtilities arm64e &lt;db2780616e8530bcaea23bb1cd4d4b01&gt; /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities 0x19217f000 - 0x192193fff PowerLog arm64e &lt;e4c868df01bb3f77a5b05f2fea3169c5&gt; /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x192194000 - 0x1921a5fff IOSurface arm64e &lt;040909617bd339659afa4e5f212ea616&gt; /System/Library/Frameworks/IOSurface.framework/IOSurface 0x1921a6000 - 0x1928bafff MediaToolbox arm64e &lt;89c08bbbe8223586a7e9181ba4b22145&gt; /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x1928bb000 - 0x1928c3fff GraphicsServices arm64e &lt;fdd62141ead13c359f519d1f1343f394&gt; /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x192bef000 - 0x192c3efff MobileWiFi arm64e &lt;c68338c35037340086eb614134f08b6d&gt; /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x192c3f000 - 0x192c58fff MobileAsset arm64e &lt;9e17f5352a693649ba81019916974016&gt; /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x192c59000 - 0x192c66fff libGSFont.dylib arm64e &lt;48ef65b1c1bf349e86c205cf2dfe0e86&gt; /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib 0x192c67000 - 0x192c70fff FontServices arm64e &lt;7c8a3ab78537301192d3d564fe3f66fd&gt; /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x192c71000 - 0x192dc0fff libFontParser.dylib arm64e &lt;ba90e8d5cb8d3a07ba705dff1623257e&gt; /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x193708000 - 0x193994fff vImage arm64e &lt;56795edefcc636849857d4fef1351c38&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x193995000 - 0x193bc3fff AudioToolbox arm64e &lt;d8f3f9ee14c736d699f5ae4c8601cc93&gt; /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x193bc4000 - 0x193bf6fff libAudioToolboxUtility.dylib arm64e &lt;6a5891a16cbe35d89a5185ad55a2e2dc&gt; /usr/lib/libAudioToolboxUtility.dylib 0x19403a000 - 0x1940d1fff ShareSheet arm64e &lt;e1f148925b6d3a4b96177b94fd1cfacb&gt; /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet 0x19421f000 - 0x19424dfff DocumentManager arm64e &lt;93d341992cbd36da99de16308f45eb47&gt; /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager 0x1944b4000 - 0x19452ffff AuthKit arm64e &lt;7b25374a85333feb8adf72d83502ab64&gt; /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x194966000 - 0x19497afff libCGInterfaces.dylib arm64e &lt;92ee9188364c366b813cc9a5ec5197a1&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib 0x19497b000 - 0x194adbfff WebKitLegacy arm64e &lt;5874138ba2943cf2915ed9437d86292d&gt; /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x194adc000 - 0x194b48fff TextInput arm64e &lt;684fce4a7e5934bb99dbd37d2b7fe1d6&gt; /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x194bc7000 - 0x194bcafff XCTTargetBootstrap arm64e &lt;ffb8f272656a384fb0d6031be6319d42&gt; /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap 0x195075000 - 0x195397fff AppleMediaServices arm64e &lt;c10c66fcf8633420993f780984e4171b&gt; /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices 0x195874000 - 0x19592dfff CoreUI arm64e &lt;ef7612b0f6aa310488acca8acd56c0cc&gt; /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x195953000 - 0x195989fff CoreVideo arm64e &lt;3a2f162bde1233b0a50817370e047d87&gt; /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x19598a000 - 0x195bc7fff AudioToolboxCore arm64e &lt;c66b51e023b03a289a3b882be3c3d23c&gt; /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore 0x195c0e000 - 0x195c49fff SetupAssistant arm64e &lt;e42a6d429e2c3ac598451c61fcbfcf13&gt; /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant 0x195d0b000 - 0x195d35fff PlugInKit arm64e &lt;ad6bfaff82d53a87bd9d13fe27c80457&gt; /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x1964fd000 - 0x19651afff PrototypeTools arm64e &lt;f3cb253f46663c58a083973ba15600a1&gt; /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x19651b000 - 0x196611fff MediaExperience arm64e &lt;e910c66987ad36d8b0d1d124e587c968&gt; /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience 0x19730f000 - 0x197311fff libapp_launch_measurement.dylib arm64e &lt;91ef3ce15e8f3c648eed091abe7aae59&gt; /usr/lib/libapp_launch_measurement.dylib 0x197427000 - 0x197436fff CrashReporterSupport arm64e &lt;5c571f0d410f37c8b0b5aec581071a62&gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x197508000 - 0x197540fff StoreKit arm64e &lt;934b29dfba403f798d7190cf22cc83a2&gt; /System/Library/Frameworks/StoreKit.framework/StoreKit 0x197541000 - 0x197545fff libsystem_configuration.dylib arm64e &lt;f1780fef1c733699afb4853c2f3a79f3&gt; /usr/lib/system/libsystem_configuration.dylib 0x197736000 - 0x197744fff HangTracer arm64e &lt;7bde4411d11f358ca743b0450546ba87&gt; /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x1977ae000 - 0x1977affff liblangid.dylib arm64e &lt;5a79a1d057833c599ecafc936c2c8c10&gt; /usr/lib/liblangid.dylib 0x1977b0000 - 0x1986d4fff JavaScriptCore arm64e &lt;03568d3096ec314b9c897f0a73da18c6&gt; /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x1986d5000 - 0x198761fff libTelephonyUtilDynamic.dylib arm64e &lt;9ef9c60206823bb4a403b33b872c2455&gt; /usr/lib/libTelephonyUtilDynamic.dylib 0x198777000 - 0x198a04fff StoreServices arm64e &lt;e6aad7d0d2123684b2395a7eed869421&gt; /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x198a05000 - 0x198a0efff IOMobileFramebuffer arm64e &lt;5f441044220e3f4782e0d5179454388b&gt; /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x198d9a000 - 0x198db4fff CoreMaterial arm64e &lt;a2952dbea47a3cb6bbe908d918cb2cd2&gt; /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial 0x198db5000 - 0x198e9efff libxml2.2.dylib arm64e &lt;3485a3aea53a3041a38a3217285bcc11&gt; /usr/lib/libxml2.2.dylib 0x19b9f0000 - 0x19ba1bfff PersistentConnection arm64e &lt;2133bad321263474b738fad8e8d62118&gt; /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x19bd07000 - 0x19bd0ffff CorePhoneNumbers arm64e &lt;67383165bd3331d683c3eb7086e893a3&gt; /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers 0x19be50000 - 0x19be73fff CoreSVG arm64e &lt;c6cfaf954f91313cb0bcb7dad9abe708&gt; /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG 0x19bead000 - 0x19beb7fff MallocStackLogging arm64e &lt;eb2dfe9ec91531598af5c62f46b59794&gt; /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging 0x19c15c000 - 0x19c357fff HealthKit arm64e &lt;f5d157d2ae4b3a14ba005019f5dfd2c5&gt; /System/Library/Frameworks/HealthKit.framework/HealthKit 0x19c9a2000 - 0x19c9d8fff CoreBluetooth arm64e &lt;71cf525d6f3938009736e6dd7d7d973f&gt; /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x19c9d9000 - 0x19c9dbfff libsystem_sandbox.dylib arm64e &lt;f228885d105631ba9f46695dff376ca8&gt; /usr/lib/system/libsystem_sandbox.dylib 0x19cac5000 - 0x19cafdfff TextInputUI arm64e &lt;864864efedf43a3e8f03e97c84e2bc88&gt; /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI 0x19cb4b000 - 0x19cbbafff Rapport arm64e &lt;fe139c07630c38b593d86e441427cb8b&gt; /System/Library/PrivateFrameworks/Rapport.framework/Rapport 0x19cbbb000 - 0x19cbfffff OSAnalytics arm64e &lt;b8b2b71cf4ae34d8949eabd110312112&gt; /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics 0x19cc00000 - 0x19cc2ffff MobileInstallation arm64e &lt;05b26f0075de369980aca9e7df2f9d82&gt; /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x19cc30000 - 0x19cccefff Metal arm64e &lt;7a668f30c54a390487d045c8e733789b&gt; /System/Library/Frameworks/Metal.framework/Metal 0x19cccf000 - 0x19ccd4fff IOAccelerator arm64e &lt;de57e082811b3879857aab409f25282e&gt; /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x19ccd5000 - 0x19cce0fff MediaAccessibility arm64e &lt;4cf837ba3e3939a0b701c11b57e57018&gt; /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x19ccff000 - 0x19cd06fff libsystem_dnssd.dylib arm64e &lt;bc92070f9e5a353e8394711ed9921e58&gt; /usr/lib/system/libsystem_dnssd.dylib 0x19cd07000 - 0x19cd0dfff PushKit arm64e &lt;780514342c82358a87f381622cda4ce2&gt; /System/Library/Frameworks/PushKit.framework/PushKit 0x19cd0e000 - 0x19ce1afff FileProvider arm64e &lt;ebd34462ef2e3922be068e13f9661817&gt; /System/Library/Frameworks/FileProvider.framework/FileProvider 0x19ce7c000 - 0x19cf39fff ************ arm64e &lt;3c75e8b31b693c84aa24dbbdd3df580d&gt; /System/Library/Frameworks/************.framework/************ 0x19d3e4000 - 0x19d456fff AppStoreDaemon arm64e &lt;1201521bb3b735bea0e0ac69d53f34ee&gt; /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon 0x19d4b3000 - 0x19d4bbfff SymptomDiagnosticReporter arm64e &lt;db09183f658635f5b4a4cdd0eaa8ec27&gt; /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x19d4bc000 - 0x19d4befff IOSurfaceAccelerator arm64e &lt;ce9d98c62efa3d4292f3ccf2021efed7&gt; /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x19d614000 - 0x19d629fff CoreFollowUp arm64e &lt;4a52560843db32ab86e37fa329c90e2e&gt; /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp 0x19d633000 - 0x19d649fff libcoretls.dylib arm64e &lt;6baa308030e634359da06920f98697b7&gt; /usr/lib/libcoretls.dylib 0x19d6a1000 - 0x19d732fff libate.dylib arm64e &lt;73f96794d55137a7a0488e4b9a38f001&gt; /usr/lib/libate.dylib 0x19e88c000 - 0x19e8f9fff SAObjects arm64e &lt;e6ddfa6f47f53143af9b9f7360839029&gt; /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x19e9b2000 - 0x19e9bffff DataMigration arm64e &lt;01ac5162e4883277a68fcdbd593673c1&gt; /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x19eb7e000 - 0x19eba2fff IconServices arm64e &lt;867c8df587003094a2839ac5fe809d05&gt; /System/Library/PrivateFrameworks/IconServices.framework/IconServices 0x19f068000 - 0x19f069fff WatchdogClient arm64e &lt;91fdf1b39e5e3cb7a53dae03f9a03a66&gt; /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient 0x19f226000 - 0x19f233fff CPMS arm64e &lt;8335d79c147d307a9c2842b828e967f7&gt; /System/Library/PrivateFrameworks/CPMS.framework/CPMS 0x19f3a0000 - 0x19f3edfff MobileBackup arm64e &lt;b45536a71fd136fb9d20119a2da94ca3&gt; /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x19f4a0000 - 0x19f4a7fff CoreTime arm64e &lt;a062cd61c5473925aaef1446720dea88&gt; /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x19fdfb000 - 0x19fe1afff AppConduit arm64e &lt;e03b1b60a2f43a319d6bd07f9fac5f7d&gt; /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit 0x19fe1b000 - 0x19fe34fff IntlPreferences arm64e &lt;bf446a9506f43ac8bd6b18f82c7de7df&gt; /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x1a01f9000 - 0x1a02e8fff CoreBrightness arm64e &lt;deb946c783e93f24b69004f6c3000fc8&gt; /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x1a02e9000 - 0x1a02f0fff libIOReport.dylib arm64e &lt;a6ebc571667130349c536a85b3b27e55&gt; /usr/lib/libIOReport.dylib 0x1a0485000 - 0x1a06e1fff libBNNS.dylib arm64e &lt;65e6102d2db03d118e08c82e922c9bed&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x1a06e2000 - 0x1a06e9fff StudyLog arm64e &lt;72f6a1fa28ce3e568f12ba9bfacad559&gt; /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog 0x1a196a000 - 0x1a197cfff LocalAuthentication arm64e &lt;2a184cac22863dcb96e72cf02c9a22f3&gt; /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication 0x1a19a6000 - 0x1a19b1fff CaptiveNetwork arm64e &lt;cfd3c5d37c6836478aec1112d4dbe39b&gt; /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x1a1b00000 - 0x1a1bd8fff libBLAS.dylib arm64e &lt;119b988d727036d0a3bf23446cfb1bbf&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x1a26f2000 - 0x1a270dfff libtailspin.dylib arm64e &lt;29751538d46f3691ac5c432189321a5e&gt; /usr/lib/libtailspin.dylib 0x1a2859000 - 0x1a2868fff MobileIcons arm64e &lt;88a6455c25e23338b28260a8340b8b2b&gt; /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x1a2a35000 - 0x1a2a7ffff CoreHaptics arm64e &lt;9f1e14d85e1c3757ac27b87cd9ffd194&gt; /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics 0x1a2bbd000 - 0x1a2c53fff CoreSymbolication arm64e &lt;1a5803659d1539a09385ea7b96da1294&gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x1a2c54000 - 0x1a2c5afff IdleTimerServices arm64e &lt;c7e0d2cd5e243ab596a23552e3898168&gt; /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices 0x1a331b000 - 0x1a3363fff LoggingSupport arm64e &lt;c0e18199eaa03cedb564959fee37a1d2&gt; /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport 0x1a35bb000 - 0x1a35c3fff OpenGLES arm64e &lt;3d61a695faa43213a801214a686820f1&gt; /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x1a372e000 - 0x1a3737fff libGFXShared.dylib arm64e &lt;bf425dfe2c64313c8c7da88b658aa6ef&gt; /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x1a3738000 - 0x1a376dfff SharedUtils arm64e &lt;fbde7d5e1b21381eb6f1483fa43e31a3&gt; /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils 0x1a4e3f000 - 0x1a4e7bfff StreamingZip arm64e &lt;42615d7614e53bb8991655d2b3faccaf&gt; /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip 0x1a673b000 - 0x1a6753fff NetworkStatistics arm64e &lt;b9ba4ee1e3d93137aa5cc0df912c4807&gt; /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x1a6bd2000 - 0x1a6bd8fff Netrb arm64e &lt;51adb4be3945341bb7d044610988c08e&gt; /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x1a6bdc000 - 0x1a6c0cfff EAP8021X arm64e &lt;18504c01434034778977dcd6ef252067&gt; /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x1a6c0d000 - 0x1a6c0ffff OSAServicesClient arm64e &lt;3409431b54b131d98905ce9631159533&gt; /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient 0x1a8b1d000 - 0x1a8b1ffff OAuth arm64e &lt;02b838142b8f3e8989150c43aae074c4&gt; /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x1a9606000 - 0x1a9676fff libarchive.2.dylib arm64e &lt;e3a2b2e6872839aab6b0261a0cd004b8&gt; /usr/lib/libarchive.2.dylib 0x1a9772000 - 0x1a9773fff libsystem_coreservices.dylib arm64e &lt;7e6f2b084bbc388381582fc0e464bbf3&gt; /usr/lib/system/libsystem_coreservices.dylib 0x1a9785000 - 0x1a9797fff libmis.dylib arm64e &lt;36fa86f7cae63b4494153102c609642b&gt; /usr/lib/libmis.dylib 0x1a9998000 - 0x1a99a0fff libcopyfile.dylib arm64e &lt;8367654f501639038b072476bea354cd&gt; /usr/lib/system/libcopyfile.dylib 0x1a9d17000 - 0x1a9daefff AccountsDaemon arm64e &lt;03629df64a033caca7184887cfce6b09&gt; /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x1a9daf000 - 0x1a9dbafff AppleIDSSOAuthentication arm64e &lt;33c6c4d62f8a3823b665065d9fd49f37&gt; /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x1a9f14000 - 0x1a9f98fff Symbolication arm64e &lt;b1f1b451d03f3a7b8f442abb7a538d56&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication 0x1aa15c000 - 0x1aa1aafff ChunkingLibrary arm64e &lt;71f54b68aa2b3ec8a5d1f1f0623c5eba&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x1ab209000 - 0x1ab248fff SignpostSupport arm64e &lt;c86e0cb08e8639c3b23963177a775290&gt; /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport 0x1ab4e0000 - 0x1ab4e9fff SignpostCollection arm64e &lt;e74fea7b66f63c4a90464a7642f5b17f&gt; /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection 0x1abc3a000 - 0x1abc44fff URLFormatting arm64e &lt;56eae11f99ab3802ad670b9ce2cbe306&gt; /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting 0x1ac3c3000 - 0x1ac40afff CoreLocationProtobuf arm64e &lt;7f4b6f4237c53c66bf370decc6c0a236&gt; /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf 0x1ac851000 - 0x1ac866fff libEDR arm64e &lt;8df2624d5f403ad3ab39dd638e13978c&gt; /System/Library/PrivateFrameworks/libEDR.framework/libEDR 0x1ad4cc000 - 0x1ad4d9fff libperfcheck.dylib arm64e &lt;6f46d2b898e43ae8a8560e4cd2fb1f36&gt; /usr/lib/libperfcheck.dylib 0x1ad4da000 - 0x1ad4e5fff libAudioStatistics.dylib arm64e &lt;3e633f28bc9132f9bb5c796f0e46e052&gt; /usr/lib/libAudioStatistics.dylib 0x1ad6b4000 - 0x1ad6c4fff caulk arm64e &lt;c6d1ff92a0123431b7cf21b78048da34&gt; /System/Library/PrivateFrameworks/caulk.framework/caulk 0x1ad704000 - 0x1ad70afff MobileSystemServices arm64e &lt;cde4fe2935f93d06b64c199a03f27a7b&gt; /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x1ae83c000 - 0x1ae846fff HID arm64e &lt;c28648e63d323160b5ffcfb454485eac&gt; /System/Library/PrivateFrameworks/HID.framework/HID 0x1ae873000 - 0x1ae8aefff libGLImage.dylib arm64e &lt;3f2af041d7d0385496e297c59cc0763a&gt; /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x1aecbe000 - 0x1aeccffff libSparseBLAS.dylib arm64e &lt;3bf1eac8019639d48a1384ffebae86db&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1aecd0000 - 0x1aece4fff Engram arm64e &lt;ccb3d37bd0b635cf89f12cad15990d09&gt; /System/Library/PrivateFrameworks/Engram.framework/Engram 0x1afb6b000 - 0x1afb7ffff libLinearAlgebra.dylib arm64e &lt;64866b1966a7333cb2b023f618213359&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1afe34000 - 0x1afe42fff CoreAUC arm64e &lt;157f3a160fc63cb8b9b25fe113bad4fb&gt; /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x1b0831000 - 0x1b0877fff PhysicsKit arm64e &lt;e01f35e3a89734f5a2b19907400c9538&gt; /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x1b11f6000 - 0x1b1214fff GenerationalStorage arm64e &lt;c976c03afa273f3d811ddb5358456371&gt; /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x1b16b0000 - 0x1b16b5fff kperf arm64e &lt;41d3e576dccc35aaa80c9c472607e577&gt; /System/Library/PrivateFrameworks/kperf.framework/kperf 0x1b1896000 - 0x1b18d0fff libpcap.A.dylib arm64e &lt;7b3c2d685e1c341da9f788ad908db918&gt; /usr/lib/libpcap.A.dylib 0x1b1c17000 - 0x1b1cbcfff libvDSP.dylib arm64e &lt;c75844ce850b3b5c969839df08a38d43&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1b1d31000 - 0x1b1dbefff SampleAnalysis arm64e &lt;8e7d9ea81d8e33c289658ced7ffbb6a8&gt; /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis 0x1b261f000 - 0x1b261ffff Accelerate arm64e &lt;a1e41bb3629735c1a982f66d173ee8f3&gt; /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1b2620000 - 0x1b2957fff libLAPACK.dylib arm64e &lt;b05560e846dc30699621317b2c64dc56&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1b2958000 - 0x1b295cfff libQuadrature.dylib arm64e &lt;7c1e926466ea3f91beef2e12b946226f&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x1b295d000 - 0x1b29b6fff libvMisc.dylib arm64e &lt;8eabce42ecd9360b870e457b7f49eb5b&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1b29b7000 - 0x1b29b7fff vecLib arm64e &lt;4fb0e1e42854371ca6f5e3d414a40835&gt; /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1b2d62000 - 0x1b2d8efff GSS arm64e &lt;ea70273ecf0c3027b6308d12d17b3ab4&gt; /System/Library/Frameworks/GSS.framework/GSS 0x1b2da1000 - 0x1b2dd3fff MPSCore arm64e &lt;600cad3b5d24396db101af5dc920e2d3&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore 0x1b2dd4000 - 0x1b2e51fff MPSImage arm64e &lt;c26b34cc907f349b920aa92d8051acf4&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage 0x1b2e52000 - 0x1b2e74fff MPSMatrix arm64e &lt;0204dda1b1213580b2b4bbae3a431849&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix 0x1b2e75000 - 0x1b2e89fff MPSNDArray arm64e &lt;a401e659b5653fe393d797873bd2f7c0&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray 0x1b2e8a000 - 0x1b301ffff MPSNeuralNetwork arm64e &lt;9ef36fc8b7d13b1abb6c36bd9ab90104&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork 0x1b3020000 - 0x1b3064fff MPSRayIntersector arm64e &lt;e05e566a66db3186aff3aea5afa7da7d&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector 0x1b3065000 - 0x1b3065fff MetalPerformanceShaders arm64e &lt;9f39552439523a55a7004525e511f074&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x1b3072000 - 0x1b3072fff MobileCoreServices arm64e &lt;66b9265aa16c38b2a7b961f3fdd47014&gt; /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1b307d000 - 0x1b307efff libCVMSPluginSupport.dylib arm64e &lt;4cdff3446c9430bba64e076972a466c4&gt; /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x1b307f000 - 0x1b3085fff libCoreFSCache.dylib arm64e &lt;27d6a4087ced3af389c03c362cfa90f8&gt; /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1b3086000 - 0x1b308bfff libCoreVMClient.dylib arm64e &lt;6eb95a63816d323c8b9688b7ff8ca93b&gt; /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x1b3546000 - 0x1b3546fff UIKit arm64e &lt;3f621ddff92b3dc49ab2d6bb6dfbba7f&gt; /System/Library/Frameworks/UIKit.framework/UIKit 0x1b3a75000 - 0x1b3b06fff APFS arm64e &lt;c7d2cee0e7a539a9842cec48eda6ed8a&gt; /System/Library/PrivateFrameworks/APFS.framework/APFS 0x1b3b07000 - 0x1b3b0bfff ASEProcessing arm64e &lt;dcb50e44abdf30d78373e72379cb93b8&gt; /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing 0x1b3cc1000 - 0x1b3cccfff AccountSettings arm64e &lt;fea5c29fe89b3c7a90644330dffbba60&gt; /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings 0x1b4612000 - 0x1b461cfff AppleIDAuthSupport arm64e &lt;99465798d2323880bfa89a865a058082&gt; /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x1b461d000 - 0x1b465ffff AppleJPEG arm64e &lt;a50d3338d64e3502ba6de840d687efc7&gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1b46c2000 - 0x1b46e6fff AppleSauce arm64e &lt;77fdf41c066232a58cc4c9c5bdffaf8a&gt; /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce 0x1b48e7000 - 0x1b4917fff Bom arm64e &lt;08abdf5b9fa1352fa980617a45c6f6d3&gt; /System/Library/PrivateFrameworks/Bom.framework/Bom 0x1b53ac000 - 0x1b53b3fff CommonAuth arm64e &lt;ae89a774330c361c8c75e6777d7205c4&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x1b5942000 - 0x1b594dfff DeviceIdentity arm64e &lt;6da6646005633c68871b9386593ec565&gt; /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity 0x1b5ae4000 - 0x1b5b00fff DocumentManagerCore arm64e &lt;a222357d90b03a8eb1d672a7053be068&gt; /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore 0x1b6459000 - 0x1b686bfff FaceCore arm64e &lt;2f4b56149e0939418a8633f4b9d30e79&gt; /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x1b6940000 - 0x1b6954fff libGSFontCache.dylib arm64e &lt;a9fac902bffa356e99ed26cec0457b41&gt; /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x1b69bb000 - 0x1b69c7fff libhvf.dylib arm64e &lt;894890b89cc63cc195444e7cafa23416&gt; /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x1b7714000 - 0x1b7720fff GraphVisualizer arm64e &lt;77d02cdf60bc30db987a67d09268acda&gt; /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer 0x1b7a4c000 - 0x1b7abdfff Heimdal arm64e &lt;a0114dbd21b53f9da55892380617abf5&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x1b801c000 - 0x1b8023fff InternationalSupport arm64e &lt;b0faa897a6cb3bfcbc6ebb8212efeb1c&gt; /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport 0x1b82cf000 - 0x1b82cffff Marco arm64e &lt;e7b67c926578304a9423cbbc7e6e1446&gt; /System/Library/PrivateFrameworks/Marco.framework/Marco 0x1b87d2000 - 0x1b87e5fff MobileDeviceLink arm64e &lt;215146f949b831a79b37a68186fb8b71&gt; /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x1b8aa4000 - 0x1b8ae4fff OTSVG arm64e &lt;2e695509ae5e3f8c8a96fd2a401958c0&gt; /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG 0x1b9157000 - 0x1b9157fff PhoneNumbers arm64e &lt;ddacb51a287d31dfbfffc0ada574979a&gt; /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers 0x1bac71000 - 0x1bac7dfff SetupAssistantSupport arm64e &lt;ba233c47248c3e63b0e60498d1626123&gt; /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport 0x1bac9c000 - 0x1bac9cfff SignpostMetrics arm64e &lt;6edbaf43b42f322186be10844e633103&gt; /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics 0x1bb624000 - 0x1bb6c7fff TextureIO arm64e &lt;27d7dfc33b0e31abbaeee9587573775c&gt; /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x1bc66d000 - 0x1bcbe4fff libwebrtc.dylib arm64e &lt;36d5ac47ab7d3113a685f12c1fc1d8d2&gt; /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib 0x1bcd8e000 - 0x1bcd96fff kperfdata arm64e &lt;956725ebc8173bffb331e9dcaef958d5&gt; /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata 0x1bcd97000 - 0x1bcde0fff ktrace arm64e &lt;8747f3bba3003d059b939e4a22d4ac00&gt; /System/Library/PrivateFrameworks/ktrace.framework/ktrace 0x1bcdf9000 - 0x1bce05fff perfdata arm64e &lt;475011d9bcd438a3a0c772c0448394e2&gt; /System/Library/PrivateFrameworks/perfdata.framework/perfdata 0x1bd22b000 - 0x1bd55cfff libAWDSupportFramework.dylib arm64e &lt;a3609b2fc8543881b713774523d5ffea&gt; /usr/lib/libAWDSupportFramework.dylib 0x1bd73a000 - 0x1bd8fefff libFosl_dynamic.dylib arm64e &lt;4b887e56258d3c7c91f9195aaf5d3a87&gt; /usr/lib/libFosl_dynamic.dylib 0x1bda3e000 - 0x1bda3ffff libSystem.B.dylib arm64e &lt;7eb470eb09ed34299a429b642b67dbff&gt; /usr/lib/libSystem.B.dylib 0x1bdb49000 - 0x1bdb5efff libapple_nghttp2.dylib arm64e &lt;5bf258441bf1377f906c516023a55153&gt; /usr/lib/libapple_nghttp2.dylib 0x1bdbd8000 - 0x1bdbe8fff libbsm.0.dylib arm64e &lt;7f9235746b1939e3854386d0b4167a1d&gt; /usr/lib/libbsm.0.dylib 0x1bdbe9000 - 0x1bdbf5fff libbz2.1.0.dylib arm64e &lt;ead17294d3653cc1831f87c89ae28d38&gt; /usr/lib/libbz2.1.0.dylib 0x1bdbf6000 - 0x1bdbf6fff libcharset.1.dylib arm64e &lt;ce39247275483d328ede8380a4d63e22&gt; /usr/lib/libcharset.1.dylib 0x1bdc09000 - 0x1bdc20fff libcompression.dylib arm64e &lt;166614b3e6d635b58eeec05cc8691f9b&gt; /usr/lib/libcompression.dylib 0x1bdc21000 - 0x1bdc22fff libcoretls_cfhelpers.dylib arm64e &lt;f003fddee6d8373da423efc278df59bb&gt; /usr/lib/libcoretls_cfhelpers.dylib 0x1bdc23000 - 0x1bdc29fff libcupolicy.dylib arm64e &lt;9d5d8a2b193531e490127757ef2038c0&gt; /usr/lib/libcupolicy.dylib 0x1bdc69000 - 0x1bdc72fff libdscsym.dylib arm64e &lt;073207d7519c3d5697d72a18f1051d64&gt; /usr/lib/libdscsym.dylib 0x1bdcbb000 - 0x1bdcc0fff libheimdal-asn1.dylib arm64e &lt;c513327569cb36688e0d754c8f8659a7&gt; /usr/lib/libheimdal-asn1.dylib 0x1bdcc1000 - 0x1bddb3fff libiconv.2.dylib arm64e &lt;2a7b6979214735cba23b0508a570d932&gt; /usr/lib/libiconv.2.dylib 0x1bddc9000 - 0x1bddd4fff liblockdown.dylib arm64e &lt;792d094d768936b8903cea9f7b8f2cd0&gt; /usr/lib/liblockdown.dylib 0x1bddd5000 - 0x1bddedfff liblzma.5.dylib arm64e &lt;d5582867b5d83f02b14b96d37aa8371c&gt; /usr/lib/liblzma.5.dylib 0x1be173000 - 0x1be1a2fff libncurses.5.4.dylib arm64e &lt;38310ee7d2e931e4a00de28544da7fb5&gt; /usr/lib/libncurses.5.4.dylib 0x1be53e000 - 0x1be556fff libresolv.9.dylib arm64e &lt;17f1d300c4fa33e2aeb2577dc2e43fcc&gt; /usr/lib/libresolv.9.dylib 0x1be560000 - 0x1be592fff libtidy.A.dylib arm64e &lt;f89e9e6b4bac3fdcb8d3f75edaad2df5&gt; /usr/lib/libtidy.A.dylib 0x1be59a000 - 0x1be59dfff libutil.dylib arm64e &lt;76417107bfe731209300a527fe4e352b&gt; /usr/lib/libutil.dylib 0x1be5a2000 - 0x1be5cafff libxslt.1.dylib arm64e &lt;ff19cd1b5ea930b8a0388cc765489fc2&gt; /usr/lib/libxslt.1.dylib 0x1be5cb000 - 0x1be5dcfff libz.1.dylib arm64e &lt;cb7e5c3b57c732c690c2c79c542ef0f9&gt; /usr/lib/libz.1.dylib 0x1be9fe000 - 0x1bea03fff libcache.dylib arm64e &lt;8e7d0a11b0613116bc41e90451bff8ac&gt; /usr/lib/system/libcache.dylib 0x1bea04000 - 0x1bea10fff libcommonCrypto.dylib arm64e &lt;45fa49effaa83e758538a83dde01468d&gt; /usr/lib/system/libcommonCrypto.dylib 0x1bea11000 - 0x1bea14fff libcompiler_rt.dylib arm64e &lt;fd46c7ea9bad30e2b34a1faa3aa731ba&gt; /usr/lib/system/libcompiler_rt.dylib 0x1beae4000 - 0x1beae4fff liblaunch.dylib arm64e &lt;e45ecaf717a63e52aa4d9ad1a0cf62a6&gt; /usr/lib/system/liblaunch.dylib 0x1beae5000 - 0x1beaeafff libmacho.dylib arm64e &lt;fea9cc6a04413d1187d5fcd35c777c84&gt; /usr/lib/system/libmacho.dylib 0x1beaeb000 - 0x1beaecfff libremovefile.dylib arm64e &lt;b98667c390f331dfbd3b37e0e5d61982&gt; /usr/lib/system/libremovefile.dylib 0x1beaed000 - 0x1beaeefff libsystem_featureflags.dylib arm64e &lt;990678b1710b3fdb9ae47e3974e2823d&gt; /usr/lib/system/libsystem_featureflags.dylib 0x1beaef000 - 0x1beb1cfff libsystem_m.dylib arm64e &lt;74d8b216547531e29bd4227ac7e4776d&gt; /usr/lib/system/libsystem_m.dylib 0x1beb1d000 - 0x1beb22fff libunwind.dylib arm64e &lt;1c0ecf551c6137498f02f24cd0e29aa8&gt; /usr/lib/system/libunwind.dylib 0x1bee07000 - 0x1bee72fff NanoRegistry arm64e &lt;6e814a365e413709a8e1fee45a9f864e&gt; /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry 0x1bee73000 - 0x1bee80fff NanoPreferencesSync arm64e &lt;3f7c3ae791f73808ab26bb480cdba728&gt; /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync 0x1bf8ef000 - 0x1bf92afff CryptoTokenKit arm64e &lt;4124d95a9ef23d06aff17ee5eddf7fcb&gt; /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit 0x1c0593000 - 0x1c059dfff PointerUIServices arm64e &lt;d444d2473bf33bfbb3c1a5e94d6887fe&gt; /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices EOF
Posted Last updated
.
Post not yet marked as solved
1 Replies
257 Views
I want to submit an app that uses healthkit and that doesn't use icloud (as required by apple). the ipad doesn't support such an app. i have set target device family as iphone is iphone target build settings. my app was rejected for some issue but i learnt from the notes in the resolution center that reviewer was testing it on an ipad. how can i ensure (like in case of whatsapp) that the app doesn't appear on the ipad app store and thus cannot be installed there?
Posted Last updated
.
Post not yet marked as solved
4 Replies
1.6k Views
i have a paid app on the app store which i have changed to free woth inapp purchase. Those users who have purchased the paid app, i want them to get the inapp purchases for free as the app has the same feature with existing features as inapp purchase and exisiting users have already paid for the full version. How can i achieve this?
Posted Last updated
.
Post not yet marked as solved
11 Replies
1.9k Views
I have two NSNumber objects declared as properities in the header file. I am trying to access it and get float value out of it. I get the following error and the code crashes on the first line...Attempt to use unknown classHere is the code... float avgCals=0, avgSteps=0; avgCals = [chartOperator.weeklyAvgCal floatValue]; avgSteps = [chartOperator.weeklyAvgSteps floatValue]; [weeklyAvgStepsLabel setText:[NSString stringWithFormat:@"Avg. Steps: %0.02f",avgSteps]]; [weeklyAvgCalLabel setText:[NSString stringWithFormat:@"Avg. Cals: %0.02f",avgCals]];it crashes at line 2what could be the problem?Hovering mouse pointer over 'chartOperator' shows the object is not nil and so aren't weeklyAvgCal and weeklyAvgSteps.
Posted Last updated
.
Post marked as solved
6 Replies
2.2k Views
Is it possible to keep a trial period for a feature then require a one time in-app purchase - instead of subscription?
Posted Last updated
.
Post marked as solved
1 Replies
193 Views
I am using dot notation to set and get properties of a Managed Object. Upon trying to set is value... nslog shows the right value. when i try to use that value (int64_t type), it is returning an invalid value. Where I should be getting 5000, i get a 4.Here is the code...#ifdef DEBUG NSLog(@"settingsToConsider = %@",settingsToConsider); #endif if (settingsToConsider.goal!=0) { hObject.stepsGoal=settingsToConsider.goal; int64_t goal = settingsToConsider.goal; hObject.percentGoalCompleted = (int64_t)((steps/goal)*100); }The debugger output is as follows...settingsToConsider = (entity: Settings; id: 0xc640439cefdf322b ; data: { date = "2020-04-29 18:30:00 +0000"; goal = 6000; motivationalNotifOn = 1; percentNotifOn = 1; walkerType = 0; weight = 118;i added a breakpoint in the second line of the if statement and upon hovering pointer on goal of settingsToConsider.goal, it shows the value 4 instead of 6000.Any idea what could be wrong?
Posted Last updated
.