Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Fatal crash on iOS when deleting tiles #159

Closed
TraceDeTrail opened this issue Jun 27, 2024 · 34 comments · Fixed by #166
Closed

[BUG] Fatal crash on iOS when deleting tiles #159

TraceDeTrail opened this issue Jun 27, 2024 · 34 comments · Fixed by #166
Labels
bug This issue reports broken functionality or another error external The issue lies in a dependency or Flutter itself

Comments

@TraceDeTrail
Copy link

What is the bug?

Application crashes on IOS when trying to delete or empty the store since using ObjectBox

How can we reproduce it?

The example project reproduces the bug

Do you have a potential solution?

No response

Platforms

iOS 17

Severity

Fatal: Causes the application to crash

@TraceDeTrail TraceDeTrail added bug This issue reports broken functionality or another error needs verification This needs to be verified/tested before fixes (or not) can be made labels Jun 27, 2024
@JaffaKetchup
Copy link
Owner

Hi @TraceDeTrail,
Please post the exact error message. The provided reproduction information is not sufficient: please say your exact reproduction steps, or attach all necessary exported stores so I can test. Unfortunately I do not have an iOS devicde to test on.

@TraceDeTrail
Copy link
Author

Thanks for your quick reply :-)
I have a crash on xCode (DartWorker (177): EXC_BAD_ACCESS (code=1, address=0x12ab68010) , but I can't isolate the error on Visul Studio....

@TraceDeTrail

This comment was marked as off-topic.

@JaffaKetchup
Copy link
Owner

The issue looks like a potential ObjectBox issue, very similar to objectbox/objectbox-dart#379. I wonder whether the fix/Store.attach (which FMTC does indeed use) has broken down. This needs further investigation. Is there no possible more stack trace? Can you create an MRE please, it would be very helpful, and that might allow me to get in touch with the ObjectBox team :)

The second issue has been reported before, but I think it occurs because iOS has a really strict filesystem, and it doesn't want the app to write to the specified location. This isn't directly an FMTC issue, and there's not a lot I can do about that - if you need the functionality, try a different location and make sure you have ALL possible filesystem permissions. But thanks for trying!

@TraceDeTrail
Copy link
Author

TraceDeTrail commented Jun 27, 2024

The last breakpoint I can catch, before the app crashes, is in the deleteTiles function (worker.dart) on the line
await for (final tile in tilesQuery.stream()) {

Here is a MRE (Flutter 3.22.2) :

import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:flutter_map_tile_caching/flutter_map_tile_caching.dart';
import 'package:latlong2/latlong.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await FMTCObjectBoxBackend().initialise();
  await const FMTCStore('mapStore').manage.create();
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Test'),
          actions: [
            IconButton(
              icon: const Icon(Icons.delete),
              onPressed: () {
                const FMTCStore('mapStore').manage.reset();
                //******************CRASH*****************
              },
            )
          ],
        ),
        body: Center(
          child: FlutterMap(
            options:
                const MapOptions(initialCenter: LatLng(46.132947, 6.524380)),
            children: [
              TileLayer(
                  urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
                  userAgentPackageName: 'dev.fleaflet.flutter_map.example',
                  tileProvider: const FMTCStore('mapStore').getTileProvider(
                      settings: FMTCTileProviderSettings(
                          cachedValidDuration: Duration.zero,
                          behavior: CacheBehavior.cacheFirst))),
            ],
          ),
        ),
      ),
    );
  }
}
name: fluttermapcache
description: "A new Flutter project."
publish_to: 'none'
version: 0.1.0

environment:
  sdk: '>=3.4.3 <4.0.0'

dependencies:
  flutter:
    sdk: flutter
  flutter_map: ^7.0.1
  flutter_map_tile_caching: ^9.1.0
  latlong2: ^0.9.1

dev_dependencies:
  flutter_test:
    sdk: flutter
  flutter_lints: ^3.0.0

flutter:
  uses-material-design: true

@JaffaKetchup
Copy link
Owner

Hi @TraceDeTrail,
Thanks for that info, it's quite helpful. To file an ObjectBox report I need a couple more things. Can you try getting the following info:

@TraceDeTrail
Copy link
Author

Can this log help you ?

Incident Identifier: B5871FC0-FB03-4D83-AECC-7EEC52779B67
CrashReporter Key:   8601365fcfb459f3cf864d626a4b6b48a419cbfe
Hardware Model:      iPhone16,1
Process:             Runner [2196]
Path:                /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Runner
Identifier:          dev.jaffaketchup.fmtc.example
Version:             9.1.0 (9.1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           dev.jaffaketchup.fmtc.example [1132]

Date/Time:           2024-06-28 10:06:50.3313 +0200
Launch Time:         2024-06-28 10:06:50.2812 +0200
OS Version:          iPhone OS 17.5.1 (21F90)
Release Type:        User
Baseband Version:    1.60.02
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes: 0x0000000000000001, 0x0000000000000000
VM Region Info: 0 is not in any region.  Bytes before following region: 4335501312
      REGION TYPE                 START - END      [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  
      __TEXT                   1026a8000-1026b4000 [   48K] r-x/r-x SM=COW  /var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Runner
Termination Reason: SIGNAL 11 Segmentation fault: 11
Terminating Process: exc handler [2196]

Triggered by Thread:  0

Thread 0 name:   Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libswiftCore.dylib            	       0x19095f69c swift_getObjectType + 40
1   path_provider_foundation      	       0x10328e748 static PathProviderPlugin.register(with:) + 88
2   path_provider_foundation      	       0x10328e854 @objc static PathProviderPlugin.register(with:) + 56
3   Runner                        	       0x1026ac13c +[GeneratedPluginRegistrant registerWithRegistry:] + 316
4   Runner                        	       0x1026ac1bc AppDelegate.application(_:didFinishLaunchingWithOptions:) + 96
5   Runner                        	       0x1026ac4ac @objc AppDelegate.application(_:didFinishLaunchingWithOptions:) + 196
6   UIKitCore                     	       0x19437c7e4 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 320
7   UIKitCore                     	       0x194379d20 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 2856
8   UIKitCore                     	       0x1942487c0 -[UIApplication _runWithMainScene:transitionContext:completion:] + 856
9   UIKitCore                     	       0x1941fba0c -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 132
10  UIKitCore                     	       0x1940ee7c4 _UIScenePerformActionsWithLifecycleActionMask + 112
11  UIKitCore                     	       0x1942c12ac __101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke + 216
12  UIKitCore                     	       0x1942c102c -[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] + 332
13  UIKitCore                     	       0x19405041c -[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] + 608
14  UIKitCore                     	       0x19401d650 -[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] + 248
15  UIKitCore                     	       0x19401cf78 __186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke + 148
16  UIKitCore                     	       0x19401c924 +[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] + 736
17  UIKitCore                     	       0x19401bf64 _UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion + 224
18  UIKitCore                     	       0x1940efd3c -[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] + 316
19  UIKitCore                     	       0x1940ee574 __64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226 + 612
20  UIKitCore                     	       0x1940edecc -[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] + 216
21  UIKitCore                     	       0x1941b8e7c -[UIScene scene:didUpdateWithDiff:transitionContext:completion:] + 244
22  UIKitCore                     	       0x1941b59e0 -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 508
23  UIKitCore                     	       0x1941b5600 -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 288
24  FrontBoardServices            	       0x1aa935974 -[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:] + 324
25  FrontBoardServices            	       0x1aa935808 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.108 + 280
26  FrontBoardServices            	       0x1aa9316cc -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 168
27  FrontBoardServices            	       0x1aa935cc4 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke + 352
28  libdispatch.dylib             	       0x199b5ddd4 _dispatch_client_callout + 20
29  libdispatch.dylib             	       0x199b6186c _dispatch_block_invoke_direct + 288
30  FrontBoardServices            	       0x1aa932d58 __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 52
31  FrontBoardServices            	       0x1aa932cd8 -[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible] + 240
32  FrontBoardServices            	       0x1aa932bb0 -[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource] + 28
33  CoreFoundation                	       0x191c8b834 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 28
34  CoreFoundation                	       0x191c8b7c8 __CFRunLoopDoSource0 + 176
35  CoreFoundation                	       0x191c892f8 __CFRunLoopDoSources0 + 340
36  CoreFoundation                	       0x191c88484 __CFRunLoopRun + 828
37  CoreFoundation                	       0x191c87cd8 CFRunLoopRunSpecific + 608
38  GraphicsServices              	       0x1d6b381a8 GSEventRunModal + 164
39  UIKitCore                     	       0x1942c090c -[UIApplication _run] + 888
40  UIKitCore                     	       0x1943749d0 UIApplicationMain + 340
41  Runner                        	       0x1026ac624 main + 64
42  dyld                          	       0x1b5339e4c start + 2240

Thread 1:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0

Thread 3 name:   Dispatch queue: com.apple.UIKit.KeyboardManagement
Thread 3:
0   libsystem_kernel.dylib        	       0x1dad6ed0c __ulock_wait + 8
1   libdispatch.dylib             	       0x199b5e7c4 _dlock_wait + 56
2   libdispatch.dylib             	       0x199b5e578 _dispatch_thread_event_wait_slow + 56
3   libdispatch.dylib             	       0x199b6d5b0 __DISPATCH_WAIT_FOR_QUEUE__ + 368
4   libdispatch.dylib             	       0x199b6d15c _dispatch_sync_f_slow + 148
5   UIKitCore                     	       0x1942f34f4 __37-[_UIRemoteKeyboards startConnection]_block_invoke_3 + 144
6   CoreFoundation                	       0x191c55814 __invoking___ + 148
7   CoreFoundation                	       0x191c54860 -[NSInvocation invoke] + 428
8   Foundation                    	       0x190b9d0b4 __NSXPCCONNECTION_IS_CALLING_OUT_TO_REPLY_BLOCK__ + 16
9   Foundation                    	       0x190b9b79c -[NSXPCConnection _decodeAndInvokeReplyBlockWithEvent:sequence:replyInfo:] + 520
10  Foundation                    	       0x190b9f664 __88-[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:]_block_invoke_5 + 188
11  libxpc.dylib                  	       0x1eeb6ef30 _xpc_connection_reply_callout + 116
12  libxpc.dylib                  	       0x1eeb616e0 _xpc_connection_call_reply_async + 80
13  libdispatch.dylib             	       0x199b5de54 _dispatch_client_callout3 + 20
14  libdispatch.dylib             	       0x199b7b740 _dispatch_mach_msg_async_reply_invoke + 344
15  libdispatch.dylib             	       0x199b65284 _dispatch_lane_serial_drain + 368
16  libdispatch.dylib             	       0x199b65f64 _dispatch_lane_invoke + 432
17  libdispatch.dylib             	       0x199b70cb4 _dispatch_root_queue_drain_deferred_wlh + 288
18  libdispatch.dylib             	       0x199b70528 _dispatch_workloop_worker_thread + 404
19  libsystem_pthread.dylib       	       0x1eeb0f934 _pthread_wqthread + 288
20  libsystem_pthread.dylib       	       0x1eeb0c0cc start_wqthread + 8

Thread 4:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0

Thread 8 name:  com.apple.uikit.eventfetch-thread
Thread 8:
0   libsystem_kernel.dylib        	       0x1dad68808 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1dad6c008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1dad6bf20 mach_msg_overwrite + 436
3   libsystem_kernel.dylib        	       0x1dad6bd60 mach_msg + 24
4   CoreFoundation                	       0x191c88f5c __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x191c88600 __CFRunLoopRun + 1208
6   CoreFoundation                	       0x191c87cd8 CFRunLoopRunSpecific + 608
7   Foundation                    	       0x190ba8e4c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
8   Foundation                    	       0x190ba8c9c -[NSRunLoop(NSRunLoop) runUntilDate:] + 64
9   UIKitCore                     	       0x1942d4640 -[UIEventFetcher threadMain] + 420
10  Foundation                    	       0x190bbf718 __NSThread__start__ + 732
11  libsystem_pthread.dylib       	       0x1eeb1106c _pthread_start + 136
12  libsystem_pthread.dylib       	       0x1eeb0c0d8 thread_start + 8

Thread 9:
0   libsystem_pthread.dylib       	       0x1eeb0c0c4 start_wqthread + 0


Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0200000103294ce1   x2: 0x0000000103294ce0   x3: 0x0000000000000000
    x4: 0x0000000000000004   x5: 0x000000001bc00000   x6: 0x00000003010057d0   x7: 0x0000000000000000
    x8: 0x0000000301c04450   x9: 0x000000018b7d458b  x10: 0x00000001726746d3  x11: 0x007f00010b808200
   x12: 0x0000000000000000  x13: 0x000000010b8081f0  x14: 0x00000000000007fb  x15: 0x00000001f29a8158
   x16: 0x000000019095f674  x17: 0x0000000000000002  x18: 0x0000000000000000  x19: 0x0000000000000000
   x20: 0x0000000103294ce0  x21: 0x0000000000000001  x22: 0x0000000000000001  x23: 0x0000000000000000
   x24: 0x0000000000000000  x25: 0x00000001f5488000  x26: 0x00000001f191f000  x27: 0x000000002b870064
   x28: 0x0000000000000018   fp: 0x000000016d755130   lr: 0xf67f00010328e748
    sp: 0x000000016d755120   pc: 0x000000019095f69c cpsr: 0x60001000
   far: 0x0000000000000000  esr: 0x92000006 (Data Abort) byte read Translation fault

Binary Images:
       0x102a6c000 -        0x102a77fff libobjc-trampolines.dylib arm64e  <2e2c05f8377a30899ad91926d284dd03> /private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib
       0x102bec000 -        0x102c87fff DKImagePickerController arm64  <1ecdb497b4e233a48c2eee45298b183e> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/DKImagePickerController.framework/DKImagePickerController
       0x102d70000 -        0x102df7fff DKPhotoGallery arm64  <aff8d1bef9ee37bf815fd3c2199bd0e2> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/DKPhotoGallery.framework/DKPhotoGallery
       0x102eb0000 -        0x103043fff ObjectBox arm64  <48b9c5451972324e9689c7f4b228162b> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/ObjectBox.framework/ObjectBox
       0x1030fc000 -        0x103177fff SDWebImage arm64  <a244716ab89d39269e442c4e40776eb4> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/SDWebImage.framework/SDWebImage
       0x1031fc000 -        0x10321bfff SwiftyGif arm64  <dc18ddb7647936bca3dd5bc739c3cf43> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/SwiftyGif.framework/SwiftyGif
       0x102738000 -        0x10273ffff better_open_file arm64  <d8f4113f33be33acae0756c9f1bbcafb> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/better_open_file.framework/better_open_file
       0x103244000 -        0x103257fff file_picker arm64  <dcad420f87933f76a2cc26957d23fe05> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/file_picker.framework/file_picker
       0x10326c000 -        0x103273fff objectbox_flutter_libs arm64  <16ee9baeb23a3435ac81a81be29d1291> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/objectbox_flutter_libs.framework/objectbox_flutter_libs
       0x103284000 -        0x103293fff path_provider_foundation arm64  <0c198893bd3a34c09d23bdedb373ac3f> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/path_provider_foundation.framework/path_provider_foundation
       0x1032a8000 -        0x10550ffff Flutter arm64  <4c4c445255553144a12f3367756c9f57> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Frameworks/Flutter.framework/Flutter
       0x1026a8000 -        0x1026b3fff Runner arm64  <d4ca1098d3043b2bb0554f604ba4185b> /private/var/containers/Bundle/Application/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927/Runner.app/Runner
       0x19055c000 -        0x190aabfff libswiftCore.dylib arm64e  <d9ad5cc1ca2c3f0a8091652b0df56d14> /usr/lib/swift/libswiftCore.dylib
       0x193eb6000 -        0x1959d6fff UIKitCore arm64e  <1741fa374e53371e8daed611aab0043d> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
       0x1aa91b000 -        0x1aa9dffff FrontBoardServices arm64e  <d57cca9ae582306b8c86687f65cd6e51> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x199b5a000 -        0x199ba0fff libdispatch.dylib arm64e  <81d355df266a3010bab8113b76a206c1> /usr/lib/system/libdispatch.dylib
       0x191c35000 -        0x192162fff CoreFoundation arm64e  <00e76a98210c3cb5930bf236807ff24c> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x1d6b37000 -        0x1d6b3ffff GraphicsServices arm64e  <c19b2aeb6aa83f998a53f76c7a0d98fe> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x1b52fd000 -        0x1b5389ef7 dyld arm64e  <71846eacee653697bf7d790b6a07dcdb> /usr/lib/dyld
               0x0 - 0xffffffffffffffff ??? unknown-arch  <00000000000000000000000000000000> ???
       0x1eeb0b000 -        0x1eeb17ff3 libsystem_pthread.dylib arm64e  <1196b6c3333d3450818ff3663484b8eb> /usr/lib/system/libsystem_pthread.dylib
       0x1dad67000 -        0x1dada0fef libsystem_kernel.dylib arm64e  <13b5134e819c3baab3004856112114cb> /usr/lib/system/libsystem_kernel.dylib
       0x190ae1000 -        0x191656fff Foundation arm64e  <3d3a12e3f5e9361fb00a4a5e8861aa55> /System/Library/Frameworks/Foundation.framework/Foundation
       0x1eeb4f000 -        0x1eeb97fff libxpc.dylib arm64e  <3614a74feda238438092cedb505020f0> /usr/lib/system/libxpc.dylib

EOF

-----------
Full Report
-----------

{"app_name":"Runner","timestamp":"2024-06-28 10:06:50.00 +0200","app_version":"9.1.0","slice_uuid":"d4ca1098-d304-3b2b-b055-4f604ba4185b","build_version":"9.1.0","platform":2,"bundleID":"dev.jaffaketchup.fmtc.example","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"iPhone OS 17.5.1 (21F90)","roots_installed":0,"name":"Runner","incident_id":"B5871FC0-FB03-4D83-AECC-7EEC52779B67"}
{
  "uptime" : 65000,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "iPhone16,1",
  "coalitionID" : 1132,
  "osVersion" : {
    "isEmbedded" : true,
    "train" : "iPhone OS 17.5.1",
    "releaseType" : "User",
    "build" : "21F90"
  },
  "captureTime" : "2024-06-28 10:06:50.3313 +0200",
  "codeSigningMonitor" : 2,
  "incident" : "B5871FC0-FB03-4D83-AECC-7EEC52779B67",
  "pid" : 2196,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2024-06-28 10:06:50.2812 +0200",
  "procStartAbsTime" : 1568616812030,
  "procExitAbsTime" : 1568617887965,
  "procName" : "Runner",
  "procPath" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Runner",
  "bundleInfo" : {"CFBundleShortVersionString":"9.1.0","CFBundleVersion":"9.1.0","CFBundleIdentifier":"dev.jaffaketchup.fmtc.example"},
  "storeInfo" : {"deviceIdentifierForVendor":"1EA20D09-3A64-4DE6-A4FF-F69301A6DE7C","thirdParty":true},
  "parentProc" : "launchd",
  "parentPid" : 1,
  "coalitionName" : "dev.jaffaketchup.fmtc.example",
  "crashReporterKey" : "8601365fcfb459f3cf864d626a4b6b48a419cbfe",
  "wasUnlockedSinceBoot" : 1,
  "isLocked" : 0,
  "codeSigningID" : "dev.jaffaketchup.fmtc.example",
  "codeSigningTeamID" : "ZGGPSFB2S9",
  "codeSigningFlags" : 570434309,
  "codeSigningValidationCategory" : 3,
  "codeSigningTrustLevel" : 4,
  "instructionByteStream" : {"beforePC":"fyMD1fRPvqn9ewGp\/UMAkfMDAKqgAPi24AMTqrz0QZXAAQC1KQAAFA==","atPC":"aAJA+RDNfZLxAxOqMVzt8jAawdrxAxCq8UfB2h8CEetAAABUQI441A=="},
  "basebandVersion" : "1.60.02",
  "vmRegionInfo" : "0 is not in any region.  Bytes before following region: 4335501312\n      REGION TYPE                 START - END      [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                   1026a8000-1026b4000 [   48K] r-x\/r-x SM=COW  \/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Runner",
  "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000000"},
  "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":2196},
  "vmregioninfo" : "0 is not in any region.  Bytes before following region: 4335501312\n      REGION TYPE                 START - END      [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                   1026a8000-1026b4000 [   48K] r-x\/r-x SM=COW  \/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Runner",
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":659141,"threadState":{"x":[{"value":0},{"value":144115192423861473,"symbolLocation":144115188075855873,"symbol":"type metadata for PathProviderPlugin"},{"value":4348005600,"symbolLocation":0,"symbol":"type metadata for PathProviderPlugin"},{"value":0},{"value":4},{"value":465567744},{"value":12901701584},{"value":0},{"value":12914279504},{"value":6635210123,"objc-selector":"init"},{"value":6214338259},{"value":35747326530191872},{"value":0},{"value":4487938544},{"value":2043},{"value":8365179224,"symbolLocation":0,"symbol":"OBJC_CLASS_$_NSObject"},{"value":6720714356,"symbolLocation":0,"symbol":"swift_getObjectType"},{"value":2},{"value":0},{"value":0},{"value":4348005600,"symbolLocation":0,"symbol":"type metadata for PathProviderPlugin"},{"value":1},{"value":1},{"value":0},{"value":0},{"value":8410136576},{"value":8347840512,"symbolLocation":0,"symbol":"OBJC_IVAR_$__UIPreviewActionsController._delegate"},{"value":730267748},{"value":24}],"flavor":"ARM_THREAD_STATE64","lr":{"value":17761915459720505160},"cpsr":{"value":1610616832},"fp":{"value":6131372336},"sp":{"value":6131372320},"esr":{"value":2449473542,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":6720714396,"matchesCrashFrame":1},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":4208284,"symbol":"swift_getObjectType","symbolLocation":40,"imageIndex":12},{"imageOffset":42824,"symbol":"static PathProviderPlugin.register(with:)","symbolLocation":88,"imageIndex":9},{"imageOffset":43092,"symbol":"@objc static PathProviderPlugin.register(with:)","symbolLocation":56,"imageIndex":9},{"imageOffset":16700,"symbol":"+[GeneratedPluginRegistrant registerWithRegistry:]","symbolLocation":316,"imageIndex":11},{"imageOffset":16828,"symbol":"AppDelegate.application(_:didFinishLaunchingWithOptions:)","symbolLocation":96,"imageIndex":11},{"imageOffset":17580,"symbol":"@objc AppDelegate.application(_:didFinishLaunchingWithOptions:)","symbolLocation":196,"imageIndex":11},{"imageOffset":5007332,"symbol":"-[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:]","symbolLocation":320,"imageIndex":13},{"imageOffset":4996384,"symbol":"-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:]","symbolLocation":2856,"imageIndex":13},{"imageOffset":3745728,"symbol":"-[UIApplication _runWithMainScene:transitionContext:completion:]","symbolLocation":856,"imageIndex":13},{"imageOffset":3430924,"symbol":"-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:]","symbolLocation":132,"imageIndex":13},{"imageOffset":2328516,"symbol":"_UIScenePerformActionsWithLifecycleActionMask","symbolLocation":112,"imageIndex":13},{"imageOffset":4240044,"symbol":"__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke","symbolLocation":216,"imageIndex":13},{"imageOffset":4239404,"symbol":"-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:]","symbolLocation":332,"imageIndex":13},{"imageOffset":1680412,"symbol":"-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]","symbolLocation":608,"imageIndex":13},{"imageOffset":1472080,"symbol":"-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:]","symbolLocation":248,"imageIndex":13},{"imageOffset":1470328,"symbol":"__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke","symbolLocation":148,"imageIndex":13},{"imageOffset":1468708,"symbol":"+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:]","symbolLocation":736,"imageIndex":13},{"imageOffset":1466212,"symbol":"_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion","symbolLocation":224,"imageIndex":13},{"imageOffset":2334012,"symbol":"-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]","symbolLocation":316,"imageIndex":13},{"imageOffset":2327924,"symbol":"__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.226","symbolLocation":612,"imageIndex":13},{"imageOffset":2326220,"symbol":"-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:]","symbolLocation":216,"imageIndex":13},{"imageOffset":3157628,"symbol":"-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]","symbolLocation":244,"imageIndex":13},{"imageOffset":3144160,"symbol":"-[UIApplication workspace:didCreateScene:withTransitionContext:completion:]","symbolLocation":508,"imageIndex":13},{"imageOffset":3143168,"symbol":"-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:]","symbolLocation":288,"imageIndex":13},{"imageOffset":108916,"symbol":"-[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:]","symbolLocation":324,"imageIndex":14},{"imageOffset":108552,"symbol":"__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.108","symbolLocation":280,"imageIndex":14},{"imageOffset":91852,"symbol":"-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:]","symbolLocation":168,"imageIndex":14},{"imageOffset":109764,"symbol":"__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke","symbolLocation":352,"imageIndex":14},{"imageOffset":15828,"symbol":"_dispatch_client_callout","symbolLocation":20,"imageIndex":15},{"imageOffset":30828,"symbol":"_dispatch_block_invoke_direct","symbolLocation":288,"imageIndex":15},{"imageOffset":97624,"symbol":"__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":52,"imageIndex":14},{"imageOffset":97496,"symbol":"-[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible]","symbolLocation":240,"imageIndex":14},{"imageOffset":97200,"symbol":"-[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource]","symbolLocation":28,"imageIndex":14},{"imageOffset":354356,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__","symbolLocation":28,"imageIndex":16},{"imageOffset":354248,"symbol":"__CFRunLoopDoSource0","symbolLocation":176,"imageIndex":16},{"imageOffset":344824,"symbol":"__CFRunLoopDoSources0","symbolLocation":340,"imageIndex":16},{"imageOffset":341124,"symbol":"__CFRunLoopRun","symbolLocation":828,"imageIndex":16},{"imageOffset":339160,"symbol":"CFRunLoopRunSpecific","symbolLocation":608,"imageIndex":16},{"imageOffset":4520,"symbol":"GSEventRunModal","symbolLocation":164,"imageIndex":17},{"imageOffset":4237580,"symbol":"-[UIApplication _run]","symbolLocation":888,"imageIndex":13},{"imageOffset":4975056,"symbol":"UIApplicationMain","symbolLocation":340,"imageIndex":13},{"imageOffset":17956,"symbol":"main","symbolLocation":64,"imageIndex":11},{"imageOffset":249420,"symbol":"start","symbolLocation":2240,"imageIndex":18}]},{"id":659142,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6131937280},{"value":6407},{"value":6131400704},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6131937280},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}},{"id":659143,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6132510720},{"value":5891},{"value":6131974144},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6132510720},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}},{"id":659144,"threadState":{"x":[{"value":18446744073709551612},{"value":0},{"value":4294967295},{"value":0},{"value":8365198016,"symbolLocation":0,"symbol":"_dispatch_main_q"},{"value":18},{"value":0},{"value":0},{"value":0},{"value":12896529152},{"value":5},{"value":16383},{"value":68719476736},{"value":9005068950962176},{"value":288230384516971817,"symbolLocation":288230376151711745,"symbol":"OBJC_CLASS_$_NSMethodSignature"},{"value":8365260072,"symbolLocation":0,"symbol":"OBJC_CLASS_$_NSMethodSignature"},{"value":515},{"value":13488280892339831056,"symbolLocation":13488280883974635568,"symbol":"_OS_dispatch_queue_main_vtable"},{"value":0},{"value":4294967295},{"value":0},{"value":6133079872},{"value":16777217},{"value":4410330560},{"value":6133084384},{"value":12896515072},{"value":12896515040},{"value":12896441088},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6873802692},"cpsr":{"value":1073745920},"fp":{"value":6133079680},"sp":{"value":6133079648},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":7966485772},"far":{"value":0}},"queue":"com.apple.UIKit.KeyboardManagement","frames":[{"imageOffset":32012,"symbol":"__ulock_wait","symbolLocation":8,"imageIndex":21},{"imageOffset":18372,"symbol":"_dlock_wait","symbolLocation":56,"imageIndex":15},{"imageOffset":17784,"symbol":"_dispatch_thread_event_wait_slow","symbolLocation":56,"imageIndex":15},{"imageOffset":79280,"symbol":"__DISPATCH_WAIT_FOR_QUEUE__","symbolLocation":368,"imageIndex":15},{"imageOffset":78172,"symbol":"_dispatch_sync_f_slow","symbolLocation":148,"imageIndex":15},{"imageOffset":4445428,"symbol":"__37-[_UIRemoteKeyboards startConnection]_block_invoke_3","symbolLocation":144,"imageIndex":13},{"imageOffset":133140,"symbol":"__invoking___","symbolLocation":148,"imageIndex":16},{"imageOffset":129120,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":16},{"imageOffset":770228,"symbol":"__NSXPCCONNECTION_IS_CALLING_OUT_TO_REPLY_BLOCK__","symbolLocation":16,"imageIndex":22},{"imageOffset":763804,"symbol":"-[NSXPCConnection _decodeAndInvokeReplyBlockWithEvent:sequence:replyInfo:]","symbolLocation":520,"imageIndex":22},{"imageOffset":779876,"symbol":"__88-[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:]_block_invoke_5","symbolLocation":188,"imageIndex":22},{"imageOffset":130864,"symbol":"_xpc_connection_reply_callout","symbolLocation":116,"imageIndex":23},{"imageOffset":75488,"symbol":"_xpc_connection_call_reply_async","symbolLocation":80,"imageIndex":23},{"imageOffset":15956,"symbol":"_dispatch_client_callout3","symbolLocation":20,"imageIndex":15},{"imageOffset":137024,"symbol":"_dispatch_mach_msg_async_reply_invoke","symbolLocation":344,"imageIndex":15},{"imageOffset":45700,"symbol":"_dispatch_lane_serial_drain","symbolLocation":368,"imageIndex":15},{"imageOffset":48996,"symbol":"_dispatch_lane_invoke","symbolLocation":432,"imageIndex":15},{"imageOffset":93364,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":288,"imageIndex":15},{"imageOffset":91432,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":404,"imageIndex":15},{"imageOffset":18740,"symbol":"_pthread_wqthread","symbolLocation":288,"imageIndex":20},{"imageOffset":4300,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":20}]},{"id":659146,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6133657600},{"value":17667},{"value":6133121024},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6133657600},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}},{"id":659147,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6134231040},{"value":21251},{"value":6133694464},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6134231040},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}},{"id":659150,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6135377920},{"value":15363},{"value":6134841344},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6135377920},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}},{"id":659151,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6135951360},{"value":13827},{"value":6135414784},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6135951360},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}},{"id":659152,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":56087977918464},{"value":1841553480},{"value":56087977918464},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":13059},{"value":0},{"value":1},{"value":13059},{"value":2095104},{"value":2043},{"value":2231609353},{"value":18446744073709551569},{"value":2233704460},{"value":0},{"value":4294967295},{"value":2},{"value":56087977918464},{"value":1841553480},{"value":56087977918464},{"value":6136520056},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":7966474248},"cpsr":{"value":4096},"fp":{"value":6136519904},"sp":{"value":6136519824},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":7966459912},"far":{"value":0}},"frames":[{"imageOffset":6152,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":21},{"imageOffset":20488,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":21},{"imageOffset":20256,"symbol":"mach_msg_overwrite","symbolLocation":436,"imageIndex":21},{"imageOffset":19808,"symbol":"mach_msg","symbolLocation":24,"imageIndex":21},{"imageOffset":343900,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":16},{"imageOffset":341504,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":16},{"imageOffset":339160,"symbol":"CFRunLoopRunSpecific","symbolLocation":608,"imageIndex":16},{"imageOffset":818764,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":212,"imageIndex":22},{"imageOffset":818332,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":64,"imageIndex":22},{"imageOffset":4318784,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":420,"imageIndex":13},{"imageOffset":911128,"symbol":"__NSThread__start__","symbolLocation":732,"imageIndex":22},{"imageOffset":24684,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":20},{"imageOffset":4312,"symbol":"thread_start","symbolLocation":8,"imageIndex":20}]},{"id":659153,"frames":[{"imageOffset":4292,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":20}],"threadState":{"x":[{"value":6134804480},{"value":0},{"value":6134267904},{"value":0},{"value":278532},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6134804480},"esr":{"value":0,"description":" Address size fault"},"pc":{"value":8299528388},"far":{"value":0}}}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 4339449856,
    "size" : 49152,
    "uuid" : "2e2c05f8-377a-3089-9ad9-1926d284dd03",
    "path" : "\/private\/preboot\/Cryptexes\/OS\/usr\/lib\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4341022720,
    "size" : 638976,
    "uuid" : "1ecdb497-b4e2-33a4-8c2e-ee45298b183e",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/DKImagePickerController.framework\/DKImagePickerController",
    "name" : "DKImagePickerController"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4342611968,
    "size" : 557056,
    "uuid" : "aff8d1be-f9ee-37bf-815f-d3c2199bd0e2",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/DKPhotoGallery.framework\/DKPhotoGallery",
    "name" : "DKPhotoGallery"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4343922688,
    "size" : 1654784,
    "uuid" : "48b9c545-1972-324e-9689-c7f4b228162b",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/ObjectBox.framework\/ObjectBox",
    "name" : "ObjectBox"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4346331136,
    "size" : 507904,
    "uuid" : "a244716a-b89d-3926-9e44-2c4e40776eb4",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/SDWebImage.framework\/SDWebImage",
    "name" : "SDWebImage"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347379712,
    "size" : 131072,
    "uuid" : "dc18ddb7-6479-36bc-a3dd-5bc739c3cf43",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/SwiftyGif.framework\/SwiftyGif",
    "name" : "SwiftyGif"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4336091136,
    "size" : 32768,
    "uuid" : "d8f4113f-33be-33ac-ae07-56c9f1bbcafb",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/better_open_file.framework\/better_open_file",
    "name" : "better_open_file"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347674624,
    "size" : 81920,
    "uuid" : "dcad420f-8793-3f76-a2cc-26957d23fe05",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/file_picker.framework\/file_picker",
    "name" : "file_picker"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347838464,
    "size" : 32768,
    "uuid" : "16ee9bae-b23a-3435-ac81-a81be29d1291",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/objectbox_flutter_libs.framework\/objectbox_flutter_libs",
    "name" : "objectbox_flutter_libs"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347936768,
    "size" : 65536,
    "uuid" : "0c198893-bd3a-34c0-9d23-bdedb373ac3f",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/path_provider_foundation.framework\/path_provider_foundation",
    "name" : "path_provider_foundation"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4348084224,
    "size" : 36077568,
    "uuid" : "4c4c4452-5555-3144-a12f-3367756c9f57",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Frameworks\/Flutter.framework\/Flutter",
    "name" : "Flutter"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4335501312,
    "size" : 49152,
    "uuid" : "d4ca1098-d304-3b2b-b055-4f604ba4185b",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/88F6B28C-B70B-4B4D-BDCC-71A7D87DB927\/Runner.app\/Runner",
    "name" : "Runner"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6716506112,
    "size" : 5570560,
    "uuid" : "d9ad5cc1-ca2c-3f0a-8091-652b0df56d14",
    "path" : "\/usr\/lib\/swift\/libswiftCore.dylib",
    "name" : "libswiftCore.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6776643584,
    "size" : 28446720,
    "uuid" : "1741fa37-4e53-371e-8dae-d611aab0043d",
    "path" : "\/System\/Library\/PrivateFrameworks\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7156641792,
    "size" : 806912,
    "uuid" : "d57cca9a-e582-306b-8c86-687f65cd6e51",
    "path" : "\/System\/Library\/PrivateFrameworks\/FrontBoardServices.framework\/FrontBoardServices",
    "name" : "FrontBoardServices"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6873784320,
    "size" : 290816,
    "uuid" : "81d355df-266a-3010-bab8-113b76a206c1",
    "path" : "\/usr\/lib\/system\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6740463616,
    "size" : 5431296,
    "uuid" : "00e76a98-210c-3cb5-930b-f236807ff24c",
    "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7897051136,
    "size" : 36864,
    "uuid" : "c19b2aeb-6aa8-3f99-8a53-f76c7a0d98fe",
    "path" : "\/System\/Library\/PrivateFrameworks\/GraphicsServices.framework\/GraphicsServices",
    "name" : "GraphicsServices"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7334776832,
    "size" : 577272,
    "uuid" : "71846eac-ee65-3697-bf7d-790b6a07dcdb",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 8299524096,
    "size" : 53236,
    "uuid" : "1196b6c3-333d-3450-818f-f3663484b8eb",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7966453760,
    "size" : 237552,
    "uuid" : "13b5134e-819c-3baa-b300-4856112114cb",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6722293760,
    "size" : 12017664,
    "uuid" : "3d3a12e3-f5e9-361f-b00a-4a5e8861aa55",
    "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Foundation",
    "name" : "Foundation"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 8299802624,
    "size" : 299008,
    "uuid" : "3614a74f-eda2-3843-8092-cedb505020f0",
    "path" : "\/usr\/lib\/system\/libxpc.dylib",
    "name" : "libxpc.dylib"
  }
],
  "sharedCache" : {
  "base" : 6604193792,
  "size" : 3708649472,
  "uuid" : "a33c56b8-05b4-3cf5-81d3-8c47670d9996"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%)\nWritable regions: Total=585.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=585.7M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                           96K        3 \nCoreAnimation                       32K        2 \nFoundation                          16K        1 \nKernel Alloc Once                   32K        1 \nMALLOC                           579.4M       36 \nMALLOC guard page                  128K        8 \nSTACK GUARD                        160K       10 \nStack                             5904K       10 \nVM_ALLOCATE                        144K        1 \n__AUTH                            1979K      218 \n__AUTH_CONST                      27.1M      552 \n__CTF                               824        1 \n__DATA                            10.3M      558 \n__DATA_CONST                      29.3M      558 \n__DATA_DIRTY                      6214K      519 \n__FONT_DATA                          4K        1 \n__INFO_FILTER                         8        1 \n__LINKEDIT                       400.2M       13 \n__OBJC_RO                         86.8M        1 \n__OBJC_RW                         2755K        1 \n__TEXT                           694.5M      581 \ndyld private memory                272K        1 \nmapped file                       36.7M        5 \nshared memory                       80K        4 \n===========                     =======  ======= \nTOTAL                              1.8G     3087 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "logWritingSignature" : "77e7fff5cc1e2f6960aebd4bccf954cd9a3102ba",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "6010753cf9bfc4000c247bdd",
      "factorPackIds" : {
        "BIFROST_DEV_2" : "6601c4123e8d1f3091ac61c7"
      },
      "deploymentId" : 240000399
    },
    {
      "rolloutId" : "648c94d4ebdf9e3e398fa708",
      "factorPackIds" : {
        "SIRI_UNDERSTANDING_NL_OVERRIDES" : "65a8104b6712a43e7922cab8"
      },
      "deploymentId" : 240000171
    }
  ],
  "experiments" : [
    {
      "treatmentId" : "02e55ba7-6ded-4248-b1f5-24b4f5db3784",
      "experimentId" : "65e06de068da4f6d14fe7770",
      "deploymentId" : 400000002
    },
    {
      "treatmentId" : "55787560-64a5-483e-9e89-1bf0c618865f",
      "experimentId" : "66313da2f6a3c966171ee9cb",
      "deploymentId" : 400000007
    }
  ]
}
}

@JaffaKetchup
Copy link
Owner

Thanks, that looks useful. Interestingly, there is no reference to 'ObjectBox' there, only 'path_provider_foundation'. Is this the same crash the initially reported one where it seemed to crash on this line: await for (final tile in tilesQuery.stream()) {?

@TraceDeTrail
Copy link
Author

Yes, that's it

@JaffaKetchup JaffaKetchup added external The issue lies in a dependency or Flutter itself and removed needs verification This needs to be verified/tested before fixes (or not) can be made labels Jun 29, 2024
@JaffaKetchup
Copy link
Owner

JaffaKetchup commented Jun 30, 2024

Issue filed to 'path_provider': flutter/flutter#151072.

@JaffaKetchup JaffaKetchup changed the title [BUG] Reset or delete store : crash on iOS [BUG] Fatal crash due to 'path_provider' Jun 30, 2024
@JaffaKetchup JaffaKetchup changed the title [BUG] Fatal crash due to 'path_provider' [BUG] Fatal crash due on iOS Jul 1, 2024
@JaffaKetchup
Copy link
Owner

Issue filed to ObjectBox: objectbox/objectbox-dart#654.

@JaffaKetchup JaffaKetchup changed the title [BUG] Fatal crash due on iOS [BUG] Fatal crash on iOS when deleting tiles Jul 12, 2024
@JaffaKetchup
Copy link
Owner

Does this issue occur in release mode? Does it occur when you install the app in debug mode, then detach the debugger and Flutter tools, and just try to open the app?

@TraceDeTrail
Copy link
Author

This issue occurs in debug and release mode. With the version that used Isar, everything worked fine.

@Azzeccagarbugli
Copy link

I'm getting the same issue on iOS indeed, on Android on the other hand everything works as expected 👀

@JaffaKetchup
Copy link
Owner

I would appriciate any additional information!

@JaffaKetchup
Copy link
Owner

JaffaKetchup commented Jul 17, 2024

Can anyone experiencing this issue please try the following:

  1. Add the following dependency override to your pubspec.yaml, then run flutter clean followed by flutter pub get:

    dependency_overrides:
    	flutter_map_tile_caching:
    		git:
    			url: https://github.com/JaffaKetchup/flutter_map_tile_caching.git
    			ref: no-path-provider
  2. Remove any dependency on 'package:path_provider' from any other package (transitive dependencies) or direct dependency.

  3. Verify that the update has worked by seeing that the rootDirectory argument on initialise is now required.

  4. Without using 'package:path_provider', specify a root directory that you know works and is accessible.
    To do this, you may need to temporarily depend on 'path_provider' to print out "(await getApplicationDocumentsDirectory()).absolute.path", then copy the stdout output, then remove the path_provider dependency again, and hardcode this path.

@Azzeccagarbugli
Copy link

I would appriciate any additional information!

These were the information that I was able to collect:

Problem Report for Runner
> Incident Identifier: 6BD5CC6F-5A1E-403E-A5B0-2E0BB838D9AF
> CrashReporter Key:   06D4AD19-4AC8-939F-AABF-5B356CC400F2
> Hardware Model:      Mac14,10
> Process:             Runner [11784]
> Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Runner
> Identifier:          com.citylegends.citylegends.dev
> Version:             1.7.5 (65)
> Code Type:           X86-64 (Native)
> Role:                Foreground
> Parent Process:      launchd_sim [82114]
> Coalition:           com.apple.CoreSimulator.SimDevice.DA49F58D-7CAE-401A-83BF-B3D2A763490F [179723]
> Responsible Process: SimulatorTrampoline [48692]
> 
> Date/Time:           2024-07-17 14:37:17.1226 +0200
> Launch Time:         2024-07-17 14:36:33.3169 +0200
> OS Version:          macOS 14.5 (23F79)
> Release Type:        User
> Report Version:      104
> 
> Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
> Exception Subtype: KERN_INVALID_ADDRESS at 0x000000017a972010
> Exception Codes: 0x0000000000000001, 0x000000017a972010
> VM Region Info: 0x17a972010 is not in any region.  Bytes after previous region: 61457  Bytes before following region: 57328
>       REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
>       mapped file                 17a94e000-17a963000    [   84K] r--/rwx SM=S/A  Object_id=f3e32873
> --->  GAP OF 0x1d000 BYTES
>       VM_ALLOCATE                 17a980000-17aa00000    [  512K] rw-/rwx SM=PRV  
> Termination Reason: SIGNAL 11 Segmentation fault: 11
> Terminating Process: exc handler [11784]
> 
> Triggered by Thread:  31
> 
> Thread 0::  Dispatch queue: com.apple.main-thread
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   GraphicsServices              	       0x11fa2808f GSEventRunModal + 137
> 9   UIKitCore                     	       0x132410ad1 -[UIApplication _run] + 972
> 10  UIKitCore                     	       0x132415551 UIApplicationMain + 123
> 11  Runner                        	       0x100b6256f main + 63 (AppDelegate.swift:6)
> 12  dyld_sim                      	       0x10ae033e0 start_sim + 10
> 13  dyld                          	       0x20265a366 start + 1942
> 
> Thread 1:: com.apple.rosetta.exceptionserver
> 0   ???                           	    0x7ff7ffe97494 ???
> 
> Thread 2:
> 0   ???                           	    0x7ff7ffeb594c ???
> 
> Thread 3:: com.apple.uikit.eventfetch-thread
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   Foundation                    	       0x1145f6cda -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
> 9   Foundation                    	       0x1145f6f58 -[NSRunLoop(NSRunLoop) runUntilDate:] + 72
> 10  UIKitCore                     	       0x1324ee85a -[UIEventFetcher threadMain] + 518
> 11  Foundation                    	       0x114621515 __NSThread__start__ + 1024
> 12  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 13  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 4:
> 0   ???                           	    0x7ff7ffeb594c ???
> 
> Thread 5:
> 0   ???                           	    0x7ff7ffeb594c ???
> 
> Thread 6:: io.flutter.1.ui
> 0   ???                           	       0x10a5b28f8 ???
> 1   <translation info unavailable>	       0x10a388650 ???
> 2   <translation info unavailable>	       0x10a00012d ???
> 3   ???                           	       0x18ed40ba3 ???
> 4   ???                           	       0x18c8e75d5 ???
> 5   ???                           	       0x18ed3cd0d ???
> 6   ???                           	       0x18c8f11d4 ???
> 7   ???                           	       0x18c8f0c06 ???
> 8   ???                           	       0x18c8f07fb ???
> 9   ???                           	       0x18c8f00da ???
> 10  ???                           	       0x18d8181b3 ???
> 11  ???                           	       0x18d817da6 ???
> 12  ???                           	       0x18d81768b ???
> 13  ???                           	       0x18d8173a6 ???
> 14  ???                           	       0x18d816f35 ???
> 15  ???                           	       0x18d816931 ???
> 16  ???                           	       0x1933c7855 ???
> 17  ???                           	       0x18d8155ac ???
> 18  ???                           	       0x18f7a954e ???
> 19  ???                           	       0x18f7a9346 ???
> 20  ???                           	       0x194ae57cc ???
> 21  ???                           	       0x194ad62b2 ???
> 22  ???                           	       0x1968bf705 ???
> 23  ???                           	       0x1735b08ab ???
> 24  ???                           	       0x17d9b0c7d ???
> 25  ???                           	       0x17d9b0b10 ???
> 26  ???                           	       0x17d9b0a6c ???
> 27  ???                           	       0x165483216 ???
> 28  Flutter                       	       0x12653e4ea dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) + 362
> 29  Flutter                       	       0x12653ea8a dart::DartEntry::InvokeCallable(dart::Thread*, dart::Function const&, dart::Array const&, dart::Array const&) + 266
> 30  Flutter                       	       0x1268922ee Dart_InvokeClosure + 1022
> 31  Flutter                       	       0x126328d5f tonic::DartInvoke(_Dart_Handle*, std::initializer_list<_Dart_Handle*>) + 19
> 32  Flutter                       	       0x1264a3cd4 flutter::PlatformConfiguration::BeginFrame(fml::TimePoint, unsigned long long) + 254
> 33  Flutter                       	       0x1264de55b flutter::RuntimeController::BeginFrame(fml::TimePoint, unsigned long long) + 61
> 34  Flutter                       	       0x1262f6fc0 flutter::Animator::BeginFrame(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>) + 554
> 35  Flutter                       	       0x1262fa571 std::_fl::__function::__func<flutter::Animator::AwaitVSync()::$_0, std::_fl::allocator<flutter::Animator::AwaitVSync()::$_0>, void (std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>)>::operator()(std::_fl::unique_ptr<flutter::FrameTimingsRecorder, std::_fl::default_delete<flutter::FrameTimingsRecorder>>&&) + 69
> 36  Flutter                       	       0x126322d2e std::_fl::__function::__func<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0, std::_fl::allocator<flutter::VsyncWaiter::FireCallback(fml::TimePoint, fml::TimePoint, bool)::$_0>, void ()>::operator()() + 130
> 37  Flutter                       	       0x1261b9278 fml::MessageLoopImpl::FlushTasks(fml::FlushType) + 156
> 38  Flutter                       	       0x1261bf762 fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) + 26
> 39  CoreFoundation                	       0x11a04b749 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
> 40  CoreFoundation                	       0x11a04b2d6 __CFRunLoopDoTimer + 801
> 41  CoreFoundation                	       0x11a04aa5a __CFRunLoopDoTimers + 243
> 42  CoreFoundation                	       0x11a0452cc __CFRunLoopRun + 2108
> 43  CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 44  Flutter                       	       0x1261bf89f fml::MessageLoopDarwin::Run() + 65
> 45  Flutter                       	       0x1261b9196 fml::MessageLoopImpl::DoRun() + 22
> 46  Flutter                       	       0x1261be6b1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135
> 47  Flutter                       	       0x1261be453 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27
> 48  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 49  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 7:: io.flutter.1.raster
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   Flutter                       	       0x1261bf89f fml::MessageLoopDarwin::Run() + 65
> 9   Flutter                       	       0x1261b9196 fml::MessageLoopImpl::DoRun() + 22
> 10  Flutter                       	       0x1261be6b1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135
> 11  Flutter                       	       0x1261be453 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27
> 12  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 13  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 8:: io.flutter.1.io
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   Flutter                       	       0x1261bf89f fml::MessageLoopDarwin::Run() + 65
> 9   Flutter                       	       0x1261b9196 fml::MessageLoopImpl::DoRun() + 22
> 10  Flutter                       	       0x1261be6b1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135
> 11  Flutter                       	       0x1261be453 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27
> 12  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 13  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 9:: io.flutter.1.profiler
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   Flutter                       	       0x1261bf89f fml::MessageLoopDarwin::Run() + 65
> 9   Flutter                       	       0x1261b9196 fml::MessageLoopImpl::DoRun() + 22
> 10  Flutter                       	       0x1261be6b1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135
> 11  Flutter                       	       0x1261be453 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27
> 12  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 13  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 10:: io.worker.1
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 11:: io.worker.2
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 12:: io.worker.3
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 13:: io.worker.4
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 14:: io.worker.5
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 15:: io.worker.6
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 16:: io.worker.7
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 17:: io.worker.8
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 18:: io.worker.9
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 19:: io.worker.10
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 20:: io.worker.11
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 21:: io.worker.12
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   Flutter                       	       0x125ebbeda std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 18
> 4   Flutter                       	       0x1261b6403 fml::ConcurrentMessageLoop::WorkerMain() + 167
> 5   Flutter                       	       0x1261b6b7b void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 22:: dart:io EventHandler
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10317338c ???
> 2   Flutter                       	       0x1264b28e8 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 312
> 3   Flutter                       	       0x1264ce713 dart::bin::ThreadStart(void*) + 83
> 4   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 5   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 23:: Dart Profiler ThreadInterrupter
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x12668d91f dart::ThreadInterrupter::ThreadMain(unsigned long) + 303
> 5   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 24:: Dart Profiler SampleBlockProcessor
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x12661c46b dart::SampleBlockProcessor::ThreadMain(unsigned long) + 251
> 5   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 25:: DartWorker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x126558d01 dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*) + 241
> 5   Flutter                       	       0x12668e47d dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 109
> 6   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 7   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 8   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 9   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 26:
> 0   ???                           	    0x7ff7ffeb594c ???
> 
> Thread 27:: com.apple.CoreMotion.MotionThread
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   CoreFoundation                	       0x11a045698 CFRunLoopRun + 40
> 9   CoreMotion                    	       0x1111d0545 0x111009000 + 1865029
> 10  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 11  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 28:: com.apple.NSURLConnectionLoader
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   CoreFoundation                	       0x11a04a863 __CFRunLoopServiceMachPort + 143
> 6   CoreFoundation                	       0x11a044feb __CFRunLoopRun + 1371
> 7   CoreFoundation                	       0x11a0446ad CFRunLoopRunSpecific + 557
> 8   CFNetwork                     	       0x10cc31db3 0x10c9fc000 + 2317747
> 9   Foundation                    	       0x114621515 __NSThread__start__ + 1024
> 10  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 11  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 29:
> 0   ???                           	    0x7ff7ffeb594c ???
> 
> Thread 30:: DartWorker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x12668e62f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543
> 5   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 6   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 7   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 8   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 31 Crashed:: DartWorker
> 0   <translation info unavailable>	       0x10a387fe8 ???
> 1   libsystem_platform.dylib      	       0x1194a0ff3 _sigtramp + 51
> 2   ???                           	       0x18f7a041e ???
> 3   ???                           	       0x193ae75bd ???
> 4   ???                           	       0x193ae74b6 ???
> 5   ???                           	       0x193ae703b ???
> 6   ???                           	       0x193ae6d1f ???
> 7   ???                           	       0x1940491e3 ???
> 8   ???                           	       0x17d993d48 ???
> 9   ???                           	       0x1933c965f ???
> 10  ???                           	       0x18defba25 ???
> 11  ???                           	       0x1968ba975 ???
> 12  ???                           	       0x18a9a5f76 ???
> 13  ???                           	       0x1735b302d ???
> 14  ???                           	       0x1968aeb37 ???
> 15  ???                           	       0x165483216 ???
> 16  Flutter                       	       0x12653e4ea dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) + 362
> 17  Flutter                       	       0x12653fed6 dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&) + 294
> 18  Flutter                       	       0x12655d906 dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>) + 726
> 19  Flutter                       	       0x126583d20 dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) + 304
> 20  Flutter                       	       0x126584198 dart::MessageHandler::TaskCallback() + 488
> 21  Flutter                       	       0x12668e557 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 327
> 22  Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 23  Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 24  libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 25  libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 32:
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x107eabbf4 ???
> 2   libsystem_c.dylib             	       0x11943099b nanosleep + 209
> 3   libsystem_c.dylib             	       0x1194307f7 sleep + 48
> 4   Runner                        	       0x10134eec6 monitorCachedData + 647
> 5   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 6   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 33:: SentryCrash Exception Handler (Secondary)
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x102656034 ???
> 2   libsystem_kernel.dylib        	       0x11952bc88 mach_msg2_internal + 84
> 3   libsystem_kernel.dylib        	       0x119524510 mach_msg_overwrite + 653
> 4   libsystem_kernel.dylib        	       0x11951d6bd mach_msg + 19
> 5   Runner                        	       0x10135ae1c handleExceptions + 185
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 34:: io.sentry.app-hang-tracker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x107eabbf4 ???
> 2   libsystem_c.dylib             	       0x11943099b nanosleep + 209
> 3   Foundation                    	       0x11461fe04 +[NSThread sleepForTimeInterval:] + 163
> 4   Runner                        	       0x10133902d -[SentryANRTracker detectANRs] + 926
> 5   Foundation                    	       0x114621515 __NSThread__start__ + 1024
> 6   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 7   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 35:: DartWorker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x12668e62f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543
> 5   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 6   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 7   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 8   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 36:: DartWorker
> 0   <translation info unavailable>	       0x1035406a4 ???
> 1   Flutter                       	       0x12662556f dart::UntaggedObject::VisitPointersPredefined(dart::ObjectPointerVisitor*, long) + 1359
> 2   Flutter                       	       0x1266b64bd dart::MarkingVisitorBase<true>::DrainMarkingStackWithPauseChecks() + 429
> 3   Flutter                       	       0x1266b6242 dart::ConcurrentMarkTask::Run() + 98
> 4   Flutter                       	       0x12668e557 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 327
> 5   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 6   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 7   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 8   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 37:: DartWorker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x12668e62f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543
> 5   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 6   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 7   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 8   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 38:: DartWorker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x12668e62f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543
> 5   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 6   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 7   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 8   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 39:: DartWorker
> 0   <translation info unavailable>	       0x1035406d4 ???
> 1   Flutter                       	       0x1266253f9 dart::UntaggedObject::VisitPointersPredefined(dart::ObjectPointerVisitor*, long) + 985
> 2   Flutter                       	       0x1266b64bd dart::MarkingVisitorBase<true>::DrainMarkingStackWithPauseChecks() + 429
> 3   Flutter                       	       0x1266b6242 dart::ConcurrentMarkTask::Run() + 98
> 4   Flutter                       	       0x12668e557 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 327
> 5   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 6   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 7   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 8   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 40:: DartWorker
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x119697724 _pthread_cond_wait + 1260
> 3   Flutter                       	       0x126617556 dart::Monitor::WaitMicros(long long) + 134
> 4   Flutter                       	       0x126558d01 dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*) + 241
> 5   Flutter                       	       0x12668e47d dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 109
> 6   Flutter                       	       0x12668e803 dart::ThreadPool::Worker::Main(unsigned long) + 115
> 7   Flutter                       	       0x126616bfe dart::ThreadStart(void*) + 206
> 8   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 9   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> Thread 41:: JavaScriptCore libpas scavenger
> 0   ???                           	       0x102574a78 ???
> 1   <translation info unavailable>	       0x10314bcc4 ???
> 2   libsystem_pthread.dylib       	       0x1196976f3 _pthread_cond_wait + 1211
> 3   JavaScriptCore                	       0x11e61644e scavenger_thread_main + 1374
> 4   libsystem_pthread.dylib       	       0x11969718b _pthread_start + 99
> 5   libsystem_pthread.dylib       	       0x119692ae3 thread_start + 15
> 
> 
> Thread 31 crashed with X86 Thread State (64-bit):
>   rax: 0x0000000000000000  rbx: 0x000000018d5323f1  rcx: 0x0000000000000000  rdx: 0x000000017a972010
>   rdi: 0x000000016bf741f1  rsi: 0x0000000000000010  rbp: 0x00000003090c0218  rsp: 0x00000003090c0208
>    r8: 0x000000016c0a9e88   r9: 0x00000000000000ea  r10: 0x000000010b58b7a1  r11: 0x0000000000000000
>   r12: 0x000000018d532a51  r13: 0x0000000192bf6260  r14: 0x00007f8214026200  r15: 0x000000018d532a21
>   rip: <unavailable>       rfl: 0x0000000000000202
>  tmp0: 0x0000000308fe1000 tmp1: 0x000000000004b58b tmp2: 0x00000001960b58b0
> 
> 
> Binary Images:
>        0x202654000 -        0x2026e4fff dyld (*) <baa6f02e-dff3-3562-8c99-ea2820c91ad9> /usr/lib/dyld
>        0x17b480000 -        0x17b4b4fff com.apple.AutoFillUI (1.0) <e35d4e62-074e-3580-899d-974676307371> /Volumes/VOLUME/*/AutoFillUI.framework/AutoFillUI
>        0x179aa5000 -        0x179ab2fff com.apple.AutoFillCore (1.0) <da6e52c2-7074-3e27-b21c-0536014f256d> /Volumes/VOLUME/*/AutoFillCore.framework/AutoFillCore
>        0x194680000 -        0x194740fff com.apple.TextInputUI (*) <a5e7e801-1164-3cbb-8146-9a74c67c5ba2> /Volumes/VOLUME/*/TextInputUI.framework/TextInputUI
>        0x176dc9000 -        0x176dd1fff libMobileGestaltExtensions.dylib (*) <17e4aaf9-9a10-383d-968c-2cc2f239abef> /Volumes/VOLUME/*/libMobileGestaltExtensions.dylib
>        0x177635000 -        0x177651fff libCGInterfaces.dylib (*) <240695a2-427d-3277-97de-96fea7266ed1> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
>        0x17582a000 -        0x175846fff com.apple.AppSSOCore (1.0) <11ec1b1c-0d59-31a2-8a2d-910ca79a410b> /Volumes/VOLUME/*/AppSSOCore.framework/AppSSOCore
>        0x18aae8000 -        0x18ad6cfff com.apple.RawCamera.bundle (9.20.0) <9aac3d49-5e80-34c0-8eeb-5b7f1edeca28> /Volumes/VOLUME/*/RawCamera.bundle/RawCamera
>        0x174a93000 -        0x174aaefff com.apple.WebPrivacy (41) <564a23a7-f959-37fe-b1c5-dd7962defd9d> /Volumes/VOLUME/*/WebPrivacy.framework/WebPrivacy
>        0x168221000 -        0x168373fff libquic.dylib (*) <921afdb7-36ce-3b0a-a787-69c0aebe6a84> /Volumes/VOLUME/*/libquic.dylib
>        0x10b000000 -        0x10b037fff com.apple.MTLSimDriver (343.19) <0853548e-519c-33b6-9488-87fe7d644450> /Volumes/VOLUME/*/MTLSimDriver.framework/MTLSimDriver
>        0x10b09a000 -        0x10b0c5fff com.apple.gpusw.MetalSerializer (1.0) <7008e527-9623-3aaf-be7b-4e98c53308de> /Volumes/VOLUME/*/MetalSerializer.framework/MetalSerializer
>        0x161fee000 -        0x161ffafff libobjc-trampolines.dylib (*) <a6401717-341d-36ad-bc04-530cab6a900e> /Volumes/VOLUME/*/libobjc-trampolines.dylib
>        0x10b838000 -        0x10b846fff libbz2.1.0.dylib (*) <ca402d63-320d-30a3-bacb-f7c1eed8d061> /Volumes/VOLUME/*/libbz2.1.0.dylib
>        0x10ba2f000 -        0x10baaafff libc++.1.dylib (*) <80c2ea04-79dd-3ff8-baaa-f95de625b385> /Volumes/VOLUME/*/libc++.1.dylib
>        0x10b851000 -        0x10b857fff libiconv.2.dylib (*) <26cd0476-94ea-3fad-af2a-f1a18244d905> /Volumes/VOLUME/*/libiconv.2.dylib
>        0x10beb0000 -        0x10c03efff libsqlite3.dylib (*) <608dfaed-a60f-3fd2-8c1d-7be2ffab19eb> /Volumes/VOLUME/*/libsqlite3.dylib
>        0x10b862000 -        0x10b941fff libxml2.2.dylib (*) <6c4a09c4-f76c-3d37-9137-b87c9ba38ddd> /Volumes/VOLUME/*/libxml2.2.dylib
>        0x10b802000 -        0x10b815fff libz.1.dylib (*) <37b401a9-73e9-3b15-ae0e-ec0107cd5be8> /Volumes/VOLUME/*/libz.1.dylib
>        0x10b81f000 -        0x10b81ffff com.apple.avfoundation (2.0) <e08f1c2f-9741-3a88-8d74-95bb17f3ce63> /Volumes/VOLUME/*/AVFoundation.framework/AVFoundation
>        0x10b82a000 -        0x10b82dfff com.apple.AppTrackingTransparency (1.0) <609fcc65-b5bc-36f9-8086-153048234969> /Volumes/VOLUME/*/AppTrackingTransparency.framework/AppTrackingTransparency
>        0x10bb20000 -        0x10bc70fff com.apple.audio.toolbox.AudioToolbox (1.8) <3e4a40ad-043b-34ef-b080-22859b54911f> /Volumes/VOLUME/*/AudioToolbox.framework/AudioToolbox
>        0x10c9fc000 -        0x10cda3fff com.apple.CFNetwork (1.0) <8ba3746e-9a10-31e7-b01d-51ccf3998fee> /Volumes/VOLUME/*/CFNetwork.framework/CFNetwork
>        0x10e17f000 -        0x10e9eafff com.apple.CoreGraphics (2.0) <ba604dbb-a78f-39db-9aa4-c585e9278cfe> /Volumes/VOLUME/*/CoreGraphics.framework/CoreGraphics
>        0x10c07e000 -        0x10c434fff com.apple.CoreImage (18.0.0) <ed560618-0e08-38cb-b93a-afd2e68c77c7> /Volumes/VOLUME/*/CoreImage.framework/CoreImage
>        0x10c6a3000 -        0x10c826fff com.apple.corelocation (2890.16.16) <ecd0e264-ac8a-3810-83a6-0822b52e7a85> /Volumes/VOLUME/*/CoreLocation.framework/CoreLocation
>        0x10d248000 -        0x10d348fff com.apple.CoreMedia (1.0) <3d2ec2e6-ae3e-3f30-abb1-b14cdaeab67a> /Volumes/VOLUME/*/CoreMedia.framework/CoreMedia
>        0x10ceb6000 -        0x10d00ffff com.apple.CoreTelephony (113) <d7d67c38-c5fd-3016-b24b-6c1529de4da5> /Volumes/VOLUME/*/CoreTelephony.framework/CoreTelephony
>        0x10da02000 -        0x10dbecfff com.apple.CoreText (800.5.0.2) <1ea7b1e0-f22a-353c-a96f-18a1cea6002e> /Volumes/VOLUME/*/CoreText.framework/CoreText
>        0x10b989000 -        0x10b9b7fff com.apple.CoreVideo (1.8) <19e7c21a-2114-3995-9ef5-2ea23c5228fc> /Volumes/VOLUME/*/CoreVideo.framework/CoreVideo
>        0x10bdd3000 -        0x10be0cfff com.facebook.sdk.FBAEMKit (1.0) <26eac3fd-605f-3fc1-90de-ce737bb757d1> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/FBAEMKit.framework/FBAEMKit
>        0x10dd0b000 -        0x10de46fff com.facebook.sdk.FBSDKCoreKit (1.0) <9fe605d7-92db-3aaa-9411-b5c5ae4172ef> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
>        0x10bd63000 -        0x10bd6dfff com.facebook.sdk.FBSDKCoreKitBasics (1.0) <28fa48a8-cd97-39d5-b4e1-2eff52a1c58c> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics
>        0x113f12000 -        0x114a73fff com.apple.Foundation (6.9) <5491c554-518f-3700-8c29-7a99d3b7342a> /Volumes/VOLUME/*/Foundation.framework/Foundation
>        0x10d193000 -        0x10d1d4fff com.apple.LocalAuthentication (1.0) <07dcea08-617e-3b22-b48e-1b4a1d73d923> /Volumes/VOLUME/*/LocalAuthentication.framework/LocalAuthentication
>        0x10fced000 -        0x11014ffff com.apple.MediaPlayer (1.0) <c491ca5e-c76c-308a-a3f0-31dba9401ce3> /Volumes/VOLUME/*/MediaPlayer.framework/MediaPlayer
>        0x10d40d000 -        0x10d5c1fff com.apple.messageui (1.0.0) <bf0a69f6-a053-3bf9-aa68-ea357cd42645> /Volumes/VOLUME/*/MessageUI.framework/MessageUI
>        0x10bd3f000 -        0x10bd3ffff com.apple.MobileCoreServices (1226) <941bd8c0-fe54-35f3-b046-8399db05d760> /Volumes/VOLUME/*/MobileCoreServices.framework/MobileCoreServices
>        0x10ebd0000 -        0x10ed77fff io.objectbox.ObjectBox (1.0) <84e3d4cd-2ab2-31c6-9ee2-4d000c7d4f5b> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/ObjectBox.framework/ObjectBox
>        0x10be64000 -        0x10be73fff com.onesignal.OneSignalCore (1.0) <37fd3b53-c2ca-3d23-858b-6524c58d94fb> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalCore.framework/OneSignalCore
>        0x10bd48000 -        0x10bd4ffff com.onesignal.OneSignalExtension (1.0) <98cc2319-bb2d-3f2f-9950-80ec8d7965eb> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalExtension.framework/OneSignalExtension
>        0x10c8ac000 -        0x10c8bffff com.onesignal.OneSignal-Dynamic (1.0) <8b43dea5-d876-32c8-98ca-f9a45c28f4ee> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalFramework.framework/OneSignalFramework
>        0x10c932000 -        0x10c959fff com.onesignal.OneSignalInAppMessages (1.0) <5428d305-8109-31f5-b185-7d7d82c858f8> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalInAppMessages.framework/OneSignalInAppMessages
>        0x10c8dc000 -        0x10c8fffff com.onesignal.OneSignalLiveActivities (1.0) <7a452ef2-9604-38a0-b0aa-4a5883b9ace3> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalLiveActivities.framework/OneSignalLiveActivities
>        0x10bd86000 -        0x10bd89fff com.onesignal.OneSignalLocation (1.0) <7fda362f-1314-3cee-8955-f7aaba1d3e24> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalLocation.framework/OneSignalLocation
>        0x10c986000 -        0x10c995fff com.onesignal.OneSignalNotifications (1.0) <df6fdf77-e1df-30f5-926f-f0e5e633f145> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalNotifications.framework/OneSignalNotifications
>        0x10c9ae000 -        0x10c9c1fff com.onesignal.OneSignalOSCore (1.0) <5c4cb4bd-77c9-3ab4-85cb-61b7a3948adc> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalOSCore.framework/OneSignalOSCore
>        0x10d745000 -        0x10d758fff com.onesignal.OneSignalOutcomes (1.0) <6b0ac96c-2abf-33f3-8eb9-c854e8f6c35c> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalOutcomes.framework/OneSignalOutcomes
>        0x10d7eb000 -        0x10d83efff com.onesignal.OneSignalUser (1.0) <28551ddc-0a29-36fb-a7b9-35e65708b426> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/OneSignalUser.framework/OneSignalUser
>        0x10f756000 -        0x10fa7bfff com.apple.QuartzCore (1.11) <241e9fe6-ad6c-3c2e-9bbc-a5e634add84e> /Volumes/VOLUME/*/QuartzCore.framework/QuartzCore
>        0x10edd8000 -        0x10f04dfff com.apple.SafariServices (17.5) <a69a67da-d5fa-3c74-9886-db0d0bcb81a9> /Volumes/VOLUME/*/SafariServices.framework/SafariServices
>        0x10f2cf000 -        0x10f471fff com.apple.Security (10.0) <5658bf74-c797-3636-a2ab-95c52dc77053> /Volumes/VOLUME/*/Security.framework/Security
>        0x110a95000 -        0x110c26fff com.apple.StoreKit (1.0) <bfad4392-c5dd-37f7-a663-9b290b804d8c> /Volumes/VOLUME/*/StoreKit.framework/StoreKit
>        0x10e03c000 -        0x10e0b5fff com.apple.SystemConfiguration (1.21) <de97d99c-ccb2-3154-a8d2-6fb74bf1a06d> /Volumes/VOLUME/*/SystemConfiguration.framework/SystemConfiguration
>        0x10bd96000 -        0x10bd96fff com.apple.UIKit (1.0) <07900160-4675-39b2-939c-1229edc1a11e> /Volumes/VOLUME/*/UIKit.framework/UIKit
>        0x11181e000 -        0x111d48fff com.apple.VideoToolbox (1.0) <6a333c4f-a11f-350b-9e57-5fcea08ca2f3> /Volumes/VOLUME/*/VideoToolbox.framework/VideoToolbox
>        0x111e30000 -        0x112c28fff com.apple.WebKit (8618) <506171d6-dcc8-3941-bb31-c74b9eee19e8> /Volumes/VOLUME/*/WebKit.framework/WebKit
>        0x10d900000 -        0x10d963fff com.arthenica.ffmpegkit.FFmpegKit (6.0) <7f332c73-6256-3826-ab4c-9ed0073f1448> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/ffmpegkit.framework/ffmpegkit
>        0x1179df000 -        0x1189cefff com.arthenica.ffmpegkit.Libavcodec (60.3.100) <6432a470-f029-33fa-9978-ded47e39dce5> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libavcodec.framework/libavcodec
>        0x10bd9f000 -        0x10bda6fff com.arthenica.ffmpegkit.Libavdevice (60.1.100) <95f63eb1-492c-34a5-b07c-d625886fb219> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libavdevice.framework/libavdevice
>        0x110d29000 -        0x110f70fff com.arthenica.ffmpegkit.Libavfilter (9.3.100) <4d1435c1-9b3e-3e9c-b955-b1edc2b414ec> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libavfilter.framework/libavfilter
>        0x110771000 -        0x11091cfff com.arthenica.ffmpegkit.Libavformat (60.3.100) <ed4728c8-6ef1-35e3-b424-fea866ef7fcf> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libavformat.framework/libavformat
>        0x10f5c5000 -        0x10f61cfff com.arthenica.ffmpegkit.Libavutil (58.2.100) <3361c4b2-6d31-3a99-a282-516868572156> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libavutil.framework/libavutil
>        0x10ba13000 -        0x10ba22fff com.arthenica.ffmpegkit.Libswresample (4.10.100) <f4318fa4-c1c9-3e77-a038-65ecea0842ab> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libswresample.framework/libswresample
>        0x10d863000 -        0x10d8b2fff com.arthenica.ffmpegkit.Libswscale (7.1.100) <bc48c2e3-a22a-3156-9cab-193dda4136c7> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/libswscale.framework/libswscale
>        0x10bdb7000 -        0x10bdb8fff com.apple.AdSupport (1.0) <73b3642b-821b-3614-9766-d2a32ac087f7> /Volumes/VOLUME/*/AdSupport.framework/AdSupport
>        0x110576000 -        0x110609fff com.apple.AuthenticationServices (12.0) <52257919-666a-313d-998e-e40037c887a8> /Volumes/VOLUME/*/AuthenticationServices.framework/AuthenticationServices
>        0x111009000 -        0x111346fff com.apple.coremotion (2890.16.16) <0370b860-d89e-316a-a81d-b8df1847166f> /Volumes/VOLUME/*/CoreMotion.framework/CoreMotion
>        0x11ce39000 -        0x11e83bfff com.apple.JavaScriptCore (8618) <78d0bb7b-6398-30e8-bb2e-0ea6a437c4f0> /Volumes/VOLUME/*/JavaScriptCore.framework/JavaScriptCore
>        0x111431000 -        0x111598fff com.apple.LinkPresentation (240) <7e412e6d-75ec-3748-be6a-a83f7269ba56> /Volumes/VOLUME/*/LinkPresentation.framework/LinkPresentation
>        0x10fc2b000 -        0x10fc71fff com.apple.UserNotifications (1.0) <83f85a86-88ac-3bc8-88c1-9fb9e70b7b2d> /Volumes/VOLUME/*/UserNotifications.framework/UserNotifications
>        0x10d771000 -        0x10d7abfff libobjc.A.dylib (*) <bfc4cca4-07a8-38de-884c-a747299f2ec8> /Volumes/VOLUME/*/libobjc.A.dylib
>        0x10bdc3000 -        0x10bdc4fff libSystem.B.dylib (*) <1529f047-9620-3144-a4dc-62021d0c0e4e> /Volumes/VOLUME/*/libSystem.B.dylib
>        0x1170fb000 -        0x1172e4fff com.apple.AVKit (1.0) <b10c3707-e7c7-3780-babe-6df5d7ae2f6d> /Volumes/VOLUME/*/AVKit.framework/AVKit
>        0x11694b000 -        0x116d58fff com.apple.CoreData (120) <ce3c8c43-0b8c-3707-986c-7ab0943bdd1b> /Volumes/VOLUME/*/CoreData.framework/CoreData
>        0x119fbd000 -        0x11a34bfff com.apple.CoreFoundation (6.9) <02d074a1-987d-3381-a834-450a0546dec1> /Volumes/VOLUME/*/CoreFoundation.framework/CoreFoundation
>        0x1174be000 -        0x1176cefff com.apple.CoreServices (839) <1ed66680-1d97-3f74-8e73-0baabe07e1f4> /Volumes/VOLUME/*/CoreServices.framework/CoreServices
>        0x1106c4000 -        0x11072bfff com.apple.security.CryptoKit (1.0) <97e25c42-496b-3f1a-a516-c66d7d112222> /Volumes/VOLUME/*/CryptoKit.framework/CryptoKit
>        0x11a655000 -        0x11aaddfff com.apple.ImageIO (3.3.0) <e981958d-d6fb-371a-87c3-cfd10e490a79> /Volumes/VOLUME/*/ImageIO.framework/ImageIO
>        0x11acda000 -        0x11affbfff com.apple.MapKit (1.0) <ee0daaac-3f52-38e7-994f-79e85c28e004> /Volumes/VOLUME/*/MapKit.framework/MapKit
>        0x10d99c000 -        0x10d9b7fff com.apple.MetricKit (1.0) <1bdab494-a840-3217-b534-ff561ac0b4e4> /Volumes/VOLUME/*/MetricKit.framework/MetricKit
>        0x11b2de000 -        0x11b619fff com.apple.Photos (1.0) <3618d4ec-c412-3af5-b2d4-8e64f29f3ae2> /Volumes/VOLUME/*/Photos.framework/Photos
>        0x110969000 -        0x1109a2fff com.apple.PhotosUI (1.0) <5acd5801-9839-32f9-8d50-a77c6dd7ad80> /Volumes/VOLUME/*/PhotosUI.framework/PhotosUI
>        0x1237f3000 -        0x1253dbfff com.apple.SwiftUI (5.5.8) <3d45e119-e200-391b-9470-7d8bbefbd3a7> /Volumes/VOLUME/*/SwiftUI.framework/SwiftUI
>        0x10d8c7000 -        0x10d8dafff com.apple.UniformTypeIdentifiers (709) <53481f04-485a-36d6-8810-d6618abb3ecd> /Volumes/VOLUME/*/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
>        0x1196b2000 -        0x11987afff com.apple.StoreKit.SwiftUI (1.0) <9b8d7745-8051-3f76-9b67-f300d415d3cb> /Volumes/VOLUME/*/_StoreKit_SwiftUI.framework/_StoreKit_SwiftUI
>        0x110a07000 -        0x110a10fff libswiftCoreMIDI.dylib (*) <1b411f52-d58f-317a-9392-ff3bc7fd10df> /Volumes/VOLUME/*/libswiftCoreMIDI.dylib
>        0x10bea5000 -        0x10bea5fff libswiftDataDetection.dylib (*) <4a45e270-bd4a-390e-bac1-430cb6323078> /Volumes/VOLUME/*/libswiftDataDetection.dylib
>        0x10be8c000 -        0x10be8dfff libswiftFileProvider.dylib (*) <610bf629-b395-365f-8e90-ae1edef9c70b> /Volumes/VOLUME/*/libswiftFileProvider.dylib
>        0x10be98000 -        0x10be98fff libswiftMetricKit.dylib (*) <61b10fff-58b3-3bff-92a0-52f94ba100c3> /Volumes/VOLUME/*/libswiftMetricKit.dylib
>        0x10c920000 -        0x10c921fff libswiftOSLog.dylib (*) <6de79b42-be26-350a-b227-bcc8a922be6d> /Volumes/VOLUME/*/libswiftOSLog.dylib
>        0x110a39000 -        0x110a45fff libswiftUniformTypeIdentifiers.dylib (*) <99f19ef6-6aa0-35fc-9217-19938d24f8b8> /Volumes/VOLUME/*/libswiftUniformTypeIdentifiers.dylib
>        0x10c9d6000 -        0x10c9dafff libswiftWebKit.dylib (*) <8192560d-8791-32f4-9bdb-41a0c8647347> /Volumes/VOLUME/*/libswiftWebKit.dylib
>        0x125e6d000 -        0x1280e6fff io.flutter.flutter (1.0) <4c4c446e-5555-3144-a132-2e5e0328417b> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Frameworks/Flutter.framework/Flutter
>        0x10e0fe000 -        0x10e11afff libswiftAVFoundation.dylib (*) <ee297065-fd0e-3751-8cd4-037569eecde7> /Volumes/VOLUME/*/libswiftAVFoundation.dylib
>        0x11ee01000 -        0x11f2adfff libswiftCore.dylib (*) <fc80f64a-706e-3499-a394-f8617cc4f056> /Volumes/VOLUME/*/libswiftCore.dylib
>        0x10e150000 -        0x10e157fff libswiftCoreAudio.dylib (*) <04657875-2047-3f09-84a4-0c25ba81ef19> /Volumes/VOLUME/*/libswiftCoreAudio.dylib
>        0x11175a000 -        0x11175ffff libswiftCoreFoundation.dylib (*) <df596df4-a2a9-34b4-8c3d-cbd4f5b7fee1> /Volumes/VOLUME/*/libswiftCoreFoundation.dylib
>        0x10fcc8000 -        0x10fccefff libswiftCoreGraphics.dylib (*) <e1e4f501-1ddd-367d-b2cd-e21979d44265> /Volumes/VOLUME/*/libswiftCoreGraphics.dylib
>        0x10c9e9000 -        0x10c9e9fff libswiftCoreImage.dylib (*) <d56f838f-9968-3f02-9dce-d105566c3789> /Volumes/VOLUME/*/libswiftCoreImage.dylib
>        0x1116ee000 -        0x1116fffff libswiftCoreLocation.dylib (*) <9440006d-fcac-3082-957f-97aecd2beb54> /Volumes/VOLUME/*/libswiftCoreLocation.dylib
>        0x113e22000 -        0x113e57fff libswiftCoreMedia.dylib (*) <ef692fa7-5f50-3b04-9d6e-3be29898b9fe> /Volumes/VOLUME/*/libswiftCoreMedia.dylib
>        0x10d224000 -        0x10d22afff libswiftDarwin.dylib (*) <24e83333-ebbc-32f4-b7ce-cd1ad184909e> /Volumes/VOLUME/*/libswiftDarwin.dylib
>        0x11178a000 -        0x11179ffff libswiftDispatch.dylib (*) <5e0473c0-c3ff-3bfb-9712-1cfb1372ea49> /Volumes/VOLUME/*/libswiftDispatch.dylib
>        0x10d23d000 -        0x10d23dfff libswiftGLKit.dylib (*) <2597f57c-a4d7-33c0-9bd5-7698d09ac9a8> /Volumes/VOLUME/*/libswiftGLKit.dylib
>        0x10d7d5000 -        0x10d7d6fff libswiftMapKit.dylib (*) <164f0ec5-c8d8-3a8a-ba86-c22a6542d93e> /Volumes/VOLUME/*/libswiftMapKit.dylib
>        0x10d9e1000 -        0x10d9e5fff libswiftMetal.dylib (*) <c7a1b070-7f77-3b6e-ba40-b5ec57286911> /Volumes/VOLUME/*/libswiftMetal.dylib
>        0x110a6e000 -        0x110a70fff libswiftModelIO.dylib (*) <7b33d577-8a60-35f4-9308-7406f06d9874> /Volumes/VOLUME/*/libswiftModelIO.dylib
>        0x110a7f000 -        0x110a82fff libswiftObjectiveC.dylib (*) <19b7a051-b634-3370-846e-79bcb00d7d83> /Volumes/VOLUME/*/libswiftObjectiveC.dylib
>        0x10f749000 -        0x10f74afff libswiftQuartzCore.dylib (*) <68db7864-1726-3b3b-9f5a-c1a63be607b4> /Volumes/VOLUME/*/libswiftQuartzCore.dylib
>        0x113d98000 -        0x113dc5fff libswiftXPC.dylib (*) <d1ecfc9a-2a01-3306-a73e-aa7033f32a77> /Volumes/VOLUME/*/libswiftXPC.dylib
>        0x113c72000 -        0x113cc7fff libswift_Concurrency.dylib (*) <af6112c0-e115-3a15-b4d3-1b35d95e72d7> /Volumes/VOLUME/*/libswift_Concurrency.dylib
>        0x113d37000 -        0x113d4ffff libswiftos.dylib (*) <d6cc4bae-b2d7-382f-9216-fc35132c2462> /Volumes/VOLUME/*/libswiftos.dylib
>        0x117860000 -        0x117881fff libswiftsimd.dylib (*) <4ee82e04-2f2f-3e2b-8f37-9413dd61131e> /Volumes/VOLUME/*/libswiftsimd.dylib
>        0x10d7e1000 -        0x10d7e1fff libswiftFoundation.dylib (*) <ba5a0b93-87b1-3b24-87c2-6b54256de3d8> /Volumes/VOLUME/*/libswiftFoundation.dylib
>        0x10e176000 -        0x10e176fff libswiftUIKit.dylib (*) <f27f9072-86e2-3e84-bdc9-ef534030d019> /Volumes/VOLUME/*/libswiftUIKit.dylib
>        0x111746000 -        0x111746fff libswiftNetwork.dylib (*) <03bfb395-64a9-3473-9080-c7d8643fe093> /Volumes/VOLUME/*/libswiftNetwork.dylib
>        0x111731000 -        0x111736fff libcache.dylib (*) <4886955d-2d8c-34b9-93fb-c30148d85c76> /Volumes/VOLUME/*/libcache.dylib
>        0x1117ef000 -        0x1117fafff libcommonCrypto.dylib (*) <3f2cc1d2-b1b2-3e48-8b0c-ab6c26f748e8> /Volumes/VOLUME/*/libcommonCrypto.dylib
>        0x113d80000 -        0x113d87fff libcompiler_rt.dylib (*) <c3b0a36a-2e74-3fb7-9d08-2c2ea2ba3fd7> /Volumes/VOLUME/*/libcompiler_rt.dylib
>        0x113efb000 -        0x113f04fff libcopyfile.dylib (*) <06aab431-c361-3f66-bb74-fdff05100359> /Volumes/VOLUME/*/libcopyfile.dylib
>        0x1178ba000 -        0x117970fff libcorecrypto.dylib (*) <01d065ba-023a-3f21-bcf9-b9c3086b149b> /Volumes/VOLUME/*/libcorecrypto.dylib
>        0x117020000 -        0x11706bfff libdispatch.dylib (*) <737fcc80-aed1-338a-9314-1c46fe2e790f> /Volumes/VOLUME/*/libdispatch.dylib
>        0x119207000 -        0x11922bfff libdyld.dylib (*) <2c9d8319-b286-32a7-b6ee-12a436ed5725> /Volumes/VOLUME/*/libdyld.dylib
>        0x11180e000 -        0x111813fff libmacho.dylib (*) <e0e96f42-ef26-3aed-977b-c97abc4ca6ae> /Volumes/VOLUME/*/libmacho.dylib
>        0x11174f000 -        0x111750fff libremovefile.dylib (*) <195300a4-b741-3ad9-beea-cadd2e0deee4> /Volumes/VOLUME/*/libremovefile.dylib
>        0x1170b6000 -        0x1170ccfff libsystem_asl.dylib (*) <05e48719-cf00-3dce-8201-a23d94bea9f6> /Volumes/VOLUME/*/libsystem_asl.dylib
>        0x1170df000 -        0x1170e2fff libsystem_blocks.dylib (*) <33eb4413-1872-3672-88e9-93342a9724b5> /Volumes/VOLUME/*/libsystem_blocks.dylib
>        0x1193b7000 -        0x11943bfff libsystem_c.dylib (*) <2ee0fd9c-c1be-3d21-b636-036aa118b528> /Volumes/VOLUME/*/libsystem_c.dylib
>        0x119167000 -        0x11916bfff libsystem_collections.dylib (*) <06415c13-c544-3196-9ec4-e807b387b4b1> /Volumes/VOLUME/*/libsystem_collections.dylib
>        0x1179ce000 -        0x1179d0fff libsystem_configuration.dylib (*) <2d8114be-ad37-34c3-9f95-ac42fb887adc> /Volumes/VOLUME/*/libsystem_configuration.dylib
>        0x119179000 -        0x11919ffff libsystem_containermanager.dylib (*) <8e530043-8f3b-303a-97d0-29ab2f073d1b> /Volumes/VOLUME/*/libsystem_containermanager.dylib
>        0x1191bc000 -        0x1191befff libsystem_coreservices.dylib (*) <e5aed382-e444-3c37-8200-67335d81770a> /Volumes/VOLUME/*/libsystem_coreservices.dylib
>        0x1179aa000 -        0x1179b2fff libsystem_darwin.dylib (*) <17cc7780-f219-3948-940b-5f3a80056e2c> /Volumes/VOLUME/*/libsystem_darwin.dylib
>        0x119253000 -        0x11925bfff libsystem_dnssd.dylib (*) <882c0496-c912-3f85-970b-32059a70d066> /Volumes/VOLUME/*/libsystem_dnssd.dylib
>        0x1191e8000 -        0x1191eafff libsystem_eligibility.dylib (*) <687ddb8a-a3ab-32e8-8c75-16ef2dd1a2b6> /Volumes/VOLUME/*/libsystem_eligibility.dylib
>        0x1191c9000 -        0x1191cbfff libsystem_featureflags.dylib (*) <cd762fea-75fa-388e-b903-3c976307b71e> /Volumes/VOLUME/*/libsystem_featureflags.dylib
>        0x1192ec000 -        0x119310fff libsystem_info.dylib (*) <0e84827f-86b4-3c38-938b-42da4e075703> /Volumes/VOLUME/*/libsystem_info.dylib
>        0x119266000 -        0x1192b8fff libsystem_m.dylib (*) <777805a8-3a24-3fcf-82d5-cca308a7f8fb> /Volumes/VOLUME/*/libsystem_m.dylib
>        0x11932b000 -        0x119369fff libsystem_malloc.dylib (*) <6a5aa2e0-cb90-32e6-8aae-eb103605b17e> /Volumes/VOLUME/*/libsystem_malloc.dylib
>        0x1194d8000 -        0x1194f1fff libsystem_networkextension.dylib (*) <6a166ab7-90b7-3923-8f6a-e8dfd5e4cd8e> /Volumes/VOLUME/*/libsystem_networkextension.dylib
>        0x1192cb000 -        0x1192d5fff libsystem_notify.dylib (*) <611c8d43-b07f-37fc-a8af-b9813bc7090c> /Volumes/VOLUME/*/libsystem_notify.dylib
>        0x11938e000 -        0x119392fff libsystem_sandbox.dylib (*) <c5067ff1-a125-3c84-a65c-5cf187ddeaf5> /Volumes/VOLUME/*/libsystem_sandbox.dylib
>        0x1191d6000 -        0x1191d8fff libsystem_sanitizers.dylib (*) <08314a8b-aa81-3a2a-923c-0698f08b76dc> /Volumes/VOLUME/*/libsystem_sanitizers.dylib
>        0x1191f5000 -        0x1191f5fff libsystem_sim_kernel.dylib (*) <0dc5e75b-80a2-333b-adfb-7213d78ff663> /Volumes/VOLUME/*/libsystem_sim_kernel.dylib
>        0x1193a1000 -        0x1193a4fff libsystem_sim_platform.dylib (*) <474cd631-242b-3e52-a331-6ab4aaba7f15> /Volumes/VOLUME/*/libsystem_sim_platform.dylib
>        0x1192e0000 -        0x1192e0fff libsystem_sim_pthread.dylib (*) <b9679b00-3917-3a2a-83d1-d053c921ff4f> /Volumes/VOLUME/*/libsystem_sim_pthread.dylib
>        0x11946d000 -        0x119485fff libsystem_trace.dylib (*) <5ea354d8-763b-3291-ba99-75db6ec1ed9c> /Volumes/VOLUME/*/libsystem_trace.dylib
>        0x119509000 -        0x119511fff libunwind.dylib (*) <28fd0c92-b82d-3915-bd40-fba3064810a9> /Volumes/VOLUME/*/libunwind.dylib
>        0x119617000 -        0x119653fff libxpc.dylib (*) <0cbe521f-0d3d-3b0d-8151-a5bfa37cfd5f> /Volumes/VOLUME/*/libxpc.dylib
>        0x1194b7000 -        0x1194b7fff libsystem_sim_platform_host.dylib (*) <3fed6c62-b9bb-3c00-8ebe-65d0fc6c8282> /Volumes/VOLUME/*/libsystem_sim_platform_host.dylib
>        0x11949d000 -        0x1194a7fff libsystem_platform.dylib (*) <acde8386-eb3f-36f2-bc5e-069cc59d079c> /usr/lib/system/libsystem_platform.dylib
>        0x11951c000 -        0x119556fff libsystem_kernel.dylib (*) <13597eeb-2ea0-3d48-8be1-dfc4872a784b> /usr/lib/system/libsystem_kernel.dylib
>        0x1194c1000 -        0x1194c1fff libsystem_sim_kernel_host.dylib (*) <5b5dee9f-1370-317b-81c1-4849d49a2372> /Volumes/VOLUME/*/libsystem_sim_kernel_host.dylib
>        0x1194cb000 -        0x1194cbfff libsystem_sim_pthread_host.dylib (*) <07a40d5c-354d-3b82-b0df-401a3c63b381> /Volumes/VOLUME/*/libsystem_sim_pthread_host.dylib
>        0x119691000 -        0x11969cfff libsystem_pthread.dylib (*) <25b2f3eb-07b4-3cb9-9457-2c26210c27c8> /usr/lib/system/libsystem_pthread.dylib
>        0x119960000 -        0x119974fff libc++abi.dylib (*) <04bf6500-45fb-35d3-973f-5a5e8eeae965> /Volumes/VOLUME/*/libc++abi.dylib
>        0x1195a2000 -        0x1195a2fff libcharset.1.dylib (*) <a2d6d84d-d889-398b-95ee-ca8b59b83b64> /Volumes/VOLUME/*/libcharset.1.dylib
>        0x11999a000 -        0x119c35fff libicucore.A.dylib (*) <67d44f7c-e9e4-349b-a2c0-9284d57edbb0> /Volumes/VOLUME/*/libicucore.A.dylib
>        0x11c1c4000 -        0x11c3b7fff com.apple.AVFCore (1.0) <ba0c206f-e7a5-3726-94a9-92324a32f3df> /Volumes/VOLUME/*/AVFCore.framework/AVFCore
>        0x119d57000 -        0x119e9ffff com.apple.audio.AVFAudio (1.0) <5139825b-b0e3-3cdc-9281-62026f97b0de> /Volumes/VOLUME/*/AVFAudio.framework/AVFAudio
>        0x11bdfe000 -        0x11bf41fff com.apple.AVFCapture (1.0) <9b3634f2-3fbe-303f-af37-e128e6c25c65> /Volumes/VOLUME/*/AVFCapture.framework/AVFCapture
>        0x1195ad000 -        0x1195bbfff com.apple.InternationalSupport (1.0) <67a65565-9cee-3fcf-97fb-a5e82c1ed87a> /Volumes/VOLUME/*/InternationalSupport.framework/InternationalSupport
>        0x11bb9a000 -        0x11bc26fff com.apple.SpringBoardServices (1.0) <9a03a96f-a7fc-3d03-a1e0-6e78d5bd52ff> /Volumes/VOLUME/*/SpringBoardServices.framework/SpringBoardServices
>        0x11ba7d000 -        0x11badbfff com.apple.RunningBoardServices (1.0) <8fd9f2b0-1818-3353-ae83-3e2f15b90e44> /Volumes/VOLUME/*/RunningBoardServices.framework/RunningBoardServices
>        0x11bcfc000 -        0x11bd39fff libMobileGestalt.dylib (*) <38625270-9f43-3a94-933e-e5d6e933301e> /Volumes/VOLUME/*/libMobileGestalt.dylib
>        0x11b8be000 -        0x11b985fff com.apple.FrontBoardServices (867.314) <8225141a-18ea-337a-9a1b-5ef24589c734> /Volumes/VOLUME/*/FrontBoardServices.framework/FrontBoardServices
>        0x1195f3000 -        0x1195f9fff com.apple.MediaExperience (1.0) <851b3e9c-8489-377b-b329-e7326b020743> /Volumes/VOLUME/*/MediaExperience.framework/MediaExperience
>        0x1207c8000 -        0x120dc3fff com.apple.MediaToolbox (1.0) <eb44777b-2047-340b-ba39-660b6b2957d6> /Volumes/VOLUME/*/MediaToolbox.framework/MediaToolbox
>        0x119580000 -        0x119582fff com.apple.Celestial (1.0) <69203a4f-7955-3529-a369-1a77f07d2f80> /Volumes/VOLUME/*/Celestial.framework/Celestial
>        0x11c088000 -        0x11c112fff com.apple.audio.midi.CoreMIDI (2.0) <a1391be8-99af-3720-94bb-86bf04b8caec> /Volumes/VOLUME/*/CoreMIDI.framework/CoreMIDI
>        0x11c73c000 -        0x11c761fff com.apple.audio.caulk (1.0) <51b9dd9b-8e6c-3ae5-ba43-c75c1c90cb31> /Volumes/VOLUME/*/caulk.framework/caulk
>        0x11c7cc000 -        0x11cb1ffff com.apple.audio.AudioToolboxCore (1.0) <d892955a-daaa-3f34-aed2-301cd4d5151c> /Volumes/VOLUME/*/AudioToolboxCore.framework/AudioToolboxCore
>        0x119f9a000 -        0x119f9afff com.apple.SoftLinking (1.0) <42fbf52b-a2b0-3b2d-83b2-bb1aa12b960a> /Volumes/VOLUME/*/SoftLinking.framework/SoftLinking
>        0x11cd61000 -        0x11cd9ffff com.apple.audio.AudioSession (1.0) <bdfcbc46-c6a7-3ba7-92da-8eb063f7119f> /Volumes/VOLUME/*/AudioSession.framework/AudioSession
>        0x11bb55000 -        0x11bb67fff libAudioStatistics.dylib (*) <63cd9dea-da1c-3193-becd-82df57768bbd> /Volumes/VOLUME/*/libAudioStatistics.dylib
>        0x1170f2000 -        0x1170f2fff com.apple.Accelerate (1.11) <56d80071-da98-36d4-bf64-a35ed834ce84> /Volumes/VOLUME/*/Accelerate.framework/Accelerate
>        0x119f80000 -        0x119f83fff com.apple.iphonesimulator.SimulatorClient (1.0) <560985c9-bd65-384c-ba30-cad113039045> /Volumes/VOLUME/*/SimulatorClient.framework/SimulatorClient
>        0x11c625000 -        0x11c66bfff com.apple.CoreAutoLayout (1.0) <184182c0-b88c-354e-aa3b-8404d29fafed> /Volumes/VOLUME/*/CoreAutoLayout.framework/CoreAutoLayout
>        0x11f80e000 -        0x11f8e7fff libcompression.dylib (*) <5f4ee410-6982-3625-97a1-95fb3f57ae33> /Volumes/VOLUME/*/libcompression.dylib
>        0x11f8fc000 -        0x11f985fff libarchive.2.dylib (*) <a6d4d5ad-f638-31af-ae5b-2a0f7d3c8b85> /Volumes/VOLUME/*/libarchive.2.dylib
>        0x119f8e000 -        0x119f8ffff liblangid.dylib (*) <7d1d20a5-e5ba-3763-b582-451afb2ce4e7> /Volumes/VOLUME/*/liblangid.dylib
>        0x11f637000 -        0x11f6d3fff com.apple.framework.IOKit (2.0.2) <4b21c9bc-cc8a-3b0f-9d2b-f0c994db9fa5> /Volumes/VOLUME/*/IOKit.framework/Versions/A/IOKit
>        0x11fe4d000 -        0x11ff42fff com.apple.combine (1.0) <b8284243-4a4d-3152-8670-fde006083fd7> /Volumes/VOLUME/*/Combine.framework/Combine
>        0x1200b1000 -        0x1201e3fff com.apple.CollectionsInternal (1.1.0) <4aae4faa-e884-32a5-8612-92b291ef269b> /Volumes/VOLUME/*/CollectionsInternal.framework/CollectionsInternal
>        0x11ba4d000 -        0x11ba55fff com.apple.ReflectionInternal (1.0.0) <d96237a5-823a-37b2-8079-35cd6e26af21> /Volumes/VOLUME/*/ReflectionInternal.framework/ReflectionInternal
>        0x11c6b2000 -        0x11c6c9fff com.apple.RuntimeInternal (1.0.0) <c3fb8b93-11de-315c-97a4-93c9b4bec546> /Volumes/VOLUME/*/RuntimeInternal.framework/RuntimeInternal
>        0x11fbe9000 -        0x11fc6ffff libswift_StringProcessing.dylib (*) <c9466483-b7d0-38f0-b1e2-740ddd0b91a8> /Volumes/VOLUME/*/libswift_StringProcessing.dylib
>        0x11f738000 -        0x11f76afff com.apple.CoreServicesInternal (505) <772ebf12-5d71-3b75-a55d-ec121e79600e> /Volumes/VOLUME/*/CoreServicesInternal.framework/CoreServicesInternal
>        0x11c179000 -        0x11c198fff liblzma.5.dylib (*) <8a428996-d024-319f-996c-8495af9f6ea6> /Volumes/VOLUME/*/liblzma.5.dylib
>        0x11bdd4000 -        0x11bdeefff libapple_nghttp2.dylib (*) <72130ac1-7dd4-3a04-bfde-bee2ed3c473d> /Volumes/VOLUME/*/libapple_nghttp2.dylib
>        0x128f6b000 -        0x129b1cfff com.apple.Network (1.0) <30d0a552-2963-3388-93e1-d4ad4063c153> /Volumes/VOLUME/*/Network.framework/Network
>        0x11c1a6000 -        0x11c1b5fff libbsm.0.dylib (*) <a7d720a9-ea83-338b-bfb3-26d03b04bf9a> /Volumes/VOLUME/*/libbsm.0.dylib
>        0x11f7a9000 -        0x11f7c3fff com.apple.SecurityFoundation (1.0) <b3a14257-0386-3f57-9891-a420b89f0a44> /Volumes/VOLUME/*/SecurityFoundation.framework/SecurityFoundation
>        0x11cde5000 -        0x11cdfdfff com.apple.ProtocolBuffer (1) <cbe050c0-e0d3-3501-969d-736a4c58fdd9> /Volumes/VOLUME/*/ProtocolBuffer.framework/ProtocolBuffer
>        0x11ce1b000 -        0x11ce28fff libCoreEntitlements.dylib (*) <8e8c8f25-cca2-3b10-8c7b-75dd96088efc> /Volumes/VOLUME/*/libCoreEntitlements.dylib
>        0x11faf0000 -        0x11fb3dfff com.apple.MessageSecurity (1.0) <4f32a218-5754-3a9c-9da6-a42f7fd050f0> /Volumes/VOLUME/*/MessageSecurity.framework/MessageSecurity
>        0x11f9fc000 -        0x11fa12fff libcoretls.dylib (*) <a410bd16-10bd-3e75-8b24-c7c95d309813> /Volumes/VOLUME/*/libcoretls.dylib
>        0x119fa4000 -        0x119fa5fff libcoretls_cfhelpers.dylib (*) <706989e1-ccb3-3f2b-8b04-ee0eb7dff233> /Volumes/VOLUME/*/libcoretls_cfhelpers.dylib
>        0x119faf000 -        0x119faffff libnetwork.dylib (*) <66079ea4-2194-3875-bfc6-c1728d4edad6> /Volumes/VOLUME/*/libnetwork.dylib
>        0x1204fd000 -        0x1205a9fff libswift_RegexParser.dylib (*) <afcb0059-6d3f-332c-9cba-312461e094a0> /Volumes/VOLUME/*/libswift_RegexParser.dylib
>        0x11bb89000 -        0x11bb8dfff libheimdal-asn1.dylib (*) <eb98678b-be99-3b5b-84a2-1b2fa2b8953c> /Volumes/VOLUME/*/libheimdal-asn1.dylib
>        0x11fa25000 -        0x11fa2cfff com.apple.GraphicsServices (1.0) <fff86afc-201a-3f20-a34a-0ff583b33181> /Volumes/VOLUME/*/GraphicsServices.framework/GraphicsServices
>        0x11fa40000 -        0x11fa49fff libGSFont.dylib (*) <bf30a380-dd6f-39e4-9119-527eb42235be> /Volumes/VOLUME/*/FontServices.framework/libGSFont.dylib
>        0x11f9a2000 -        0x11f9b3fff FontServices (*) <00912eb7-3e80-3bb7-8218-0fb9adb6e425> /Volumes/VOLUME/*/FontServices.framework/FontServices
>        0x12024a000 -        0x12029afff libGSFontCache.dylib (*) <2f85aa97-1df7-38fb-ba71-3c0b5bd73367> /Volumes/VOLUME/*/FontServices.framework/libGSFontCache.dylib
>        0x11fa5d000 -        0x11fa80fff libAccessibility.dylib (*) <2ddfe1ce-0c12-3c83-9026-035082193ee9> /Volumes/VOLUME/*/libAccessibility.dylib
>        0x120665000 -        0x1206a9fff com.apple.OTSVG (1.0) <061db913-95f4-3830-925d-53c206d62e28> /Volumes/VOLUME/*/OTSVG.framework/OTSVG
>        0x121581000 -        0x1216cefff libFontParser.dylib (*) <f6a20562-d472-34ba-b75a-798029cae52c> /Volumes/VOLUME/*/FontServices.framework/libFontParser.dylib
>        0x11fac0000 -        0x11fad1fff com.apple.MediaAccessibility (1.0) <d02a7a34-b08f-398e-accd-7177a96eecae> /Volumes/VOLUME/*/MediaAccessibility.framework/MediaAccessibility
>        0x11fb97000 -        0x11fbaefff com.apple.accessibility.AXCoreUtilities (1.0) <0ace0ed7-b757-338b-a03b-e0b1509f1845> /Volumes/VOLUME/*/AXCoreUtilities.framework/AXCoreUtilities
>        0x1227ee000 -        0x123341fff com.apple.vImage (8.1) <b5103878-3f12-35af-9ee0-2abac816fbb3> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vImage.framework/vImage
>        0x11ba74000 -        0x11ba74fff com.apple.Accelerate.vecLib (3.11) <c130da3a-fd99-3d6b-9267-088975600f41> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/vecLib
>        0x1212b1000 -        0x12141dfff libvMisc.dylib (*) <a6331079-fb82-3200-92ac-916f01fbf973> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
>        0x1210ae000 -        0x121281fff libvDSP.dylib (*) <72feef7e-6ba4-3f1e-8770-73d9450220a9> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
>        0x121b18000 -        0x121ceefff libBLAS.dylib (*) <4c4dfc6e-e22d-354a-b5ff-8e93d01f06f0> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
>        0x12c528000 -        0x12d8a2fff libLAPACK.dylib (*) <3c6bb8f0-3320-3f85-a46e-6c991c6b77ea> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
>        0x11f9d1000 -        0x11f9e6fff libLinearAlgebra.dylib (*) <5f23ae0e-1952-372f-9ed0-ac25db3a0587> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
>        0x11fd52000 -        0x11fd64fff libSparseBLAS.dylib (*) <ea7db3d3-0c21-38f0-98b0-b4e004368d92> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
>        0x11fd33000 -        0x11fd38fff libQuadrature.dylib (*) <107831b3-7080-3f92-9d56-d5296e759542> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
>        0x12b495000 -        0x12c047fff libBNNS.dylib (*) <75bc3a95-3a0f-3d7c-8176-466c9409be2e> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
>        0x11fd73000 -        0x11fdeafff libSparse.dylib (*) <f4e1c69e-3a3b-319a-bc93-0d4c088d636b> /Volumes/VOLUME/*/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
>        0x121d12000 -        0x1222a2fff com.apple.MIL (3304.6) <29d8e5b6-d5e6-3931-903c-e3165e19c167> /Volumes/VOLUME/*/MIL.framework/MIL
>        0x11fe06000 -        0x11fe15fff com.apple.IOSurface (352.50.1) <7f6c6ba3-12d7-3372-ab7a-80cb3b70a7bf> /Volumes/VOLUME/*/IOSurface.framework/IOSurface
>        0x120495000 -        0x1204dffff com.apple.AppleJPEG (1.0) <992dd666-ffe2-354e-8204-43ed31aa86d7> /Volumes/VOLUME/*/AppleJPEG.framework/AppleJPEG
>        0x121440000 -        0x12146bfff com.apple.analyticsd (1.0) <4b4ab877-c985-3dc5-850c-2b0987fda114> /Volumes/VOLUME/*/CoreAnalytics.framework/CoreAnalytics
>        0x120752000 -        0x12076cfff libexpat.1.dylib (*) <09f97a69-2236-39e1-a740-251615b54d9f> /Volumes/VOLUME/*/libexpat.1.dylib
>        0x1217e9000 -        0x121972fff com.apple.ColorSync (4.13.0) <c18e4076-b11b-3c3c-ab2e-fbc8860059b4> /Volumes/VOLUME/*/ColorSync.framework/ColorSync
>        0x1219c6000 -        0x121aecfff libate.dylib (*) <660ec865-501e-3c7d-b631-b0005723e2a1> /Volumes/VOLUME/*/libate.dylib
>        0x12077b000 -        0x120786fff libhvf.dylib (*) <e80761bd-2951-37e8-96aa-58c410312527> /Volumes/VOLUME/*/FontServices.framework/libhvf.dylib
>        0x1206fb000 -        0x12071dfff com.apple.applesauce (1.0) <3879b114-b02a-3f4e-930f-961bf139b7d5> /Volumes/VOLUME/*/AppleSauce.framework/AppleSauce
>        0x11fd0d000 -        0x11fd1bfff libperfcheck.dylib (*) <6b1d1ef8-9cde-3e7b-90f0-fdebb29532b7> /Volumes/VOLUME/*/libperfcheck.dylib
>        0x1214f6000 -        0x121502fff com.apple.perfdata (1.0) <14f0bdd7-2750-3721-8211-0153c6a706e5> /Volumes/VOLUME/*/perfdata.framework/perfdata
>        0x1226d7000 -        0x122768fff com.apple.InstalledContentLibrary (1.0) <1322a782-210d-3456-9961-af86424cbeb6> /Volumes/VOLUME/*/InstalledContentLibrary.framework/InstalledContentLibrary
>        0x1234f1000 -        0x12352dfff com.apple.CSStore (1141.1) <e5a8f460-58fd-3b9a-a980-d7aee9e3d487> /Volumes/VOLUME/*/CoreServicesStore.framework/CoreServicesStore
>        0x11c72e000 -        0x11c731fff com.apple.MobileSystemServices (1.0) <cd024604-2d02-330f-9e90-0abb44cc9828> /Volumes/VOLUME/*/MobileSystemServices.framework/MobileSystemServices
>        0x12072d000 -        0x120734fff com.apple.ist.IdleTimerServices (1.0) <51e19636-d035-3a4e-8f06-bb9e10a0160b> /Volumes/VOLUME/*/IdleTimerServices.framework/IdleTimerServices
>        0x123560000 -        0x123634fff com.apple.BaseBoard (652.301) <45a39c62-aab4-343e-80d4-70b4e56645e2> /Volumes/VOLUME/*/BaseBoard.framework/BaseBoard
>        0x123405000 -        0x12346afff com.apple.BoardServices (1.0) <d191b9bb-e055-3a78-8631-cef0af84c7be> /Volumes/VOLUME/*/BoardServices.framework/BoardServices
>        0x12a323000 -        0x12a3b2fff com.apple.BackBoardServices (1.0) <3f410f31-0c47-3a40-a6fc-b960316b1920> /Volumes/VOLUME/*/BackBoardServices.framework/BackBoardServices
>        0x12a0a3000 -        0x12a0dbfff com.apple.MobileInstallation (2.0) <af878fe6-eea1-320f-8a9c-7c3963f5a134> /Volumes/VOLUME/*/MobileInstallation.framework/MobileInstallation
>        0x12151f000 -        0x12152bfff com.apple.AssertionServices (1.0) <b63cfe3d-d51d-32fb-b635-97ef01c80fb6> /Volumes/VOLUME/*/AssertionServices.framework/AssertionServices
>        0x1236eb000 -        0x123758fff com.apple.bom (14.0) <1fad969e-b704-3ae0-9bdd-be55c44c787f> /Volumes/VOLUME/*/Bom.framework/Bom
>        0x12a228000 -        0x12a293fff libParallelCompression.dylib (*) <9f8e0ff0-4d75-3a47-8cfc-9dabd3910fa8> /Volumes/VOLUME/*/libParallelCompression.dylib
>        0x12a10e000 -        0x12a1adfff libAppleArchive.dylib (*) <20b21a89-959a-30d8-8f73-0452f5b51720> /Volumes/VOLUME/*/libAppleArchive.dylib
>        0x11fbdb000 -        0x11fbdbfff com.apple.perf.apple.SignpostMetrics (1.0) <2e8b5e86-33e3-3899-bb76-364ba629b692> /Volumes/VOLUME/*/SignpostMetrics.framework/SignpostMetrics
>        0x12a784000 -        0x12a864fff com.apple.Symbolication (15.3) <0b7417aa-1aee-39f7-86dd-2b3769c96ed6> /Volumes/VOLUME/*/Symbolication.framework/Symbolication
>        0x12d97a000 -        0x12db58fff com.apple.Metal (343.19) <ad2f3bbe-c626-3927-a393-14e78a35c89e> /Volumes/VOLUME/*/Metal.framework/Metal
>        0x1207a9000 -        0x1207b5fff com.apple.opengles (21.0.19) <3e973907-e9de-3e05-8055-30085e70a7e0> /Volumes/VOLUME/*/OpenGLES.framework/OpenGLES
>        0x11fe37000 -        0x11fe3dfff com.apple.CoreSimulator.SimFramebufferClient (943) <e900eef3-d508-33a2-bf11-760b2b029634> /Volumes/VOLUME/*/SimFramebufferClient.framework/SimFramebufferClient
>        0x12a45c000 -        0x12a56efff com.apple.CoreSymbolication (15.3) <1994c506-035c-3b16-ab48-3f76807d53b1> /Volumes/VOLUME/*/CoreSymbolication.framework/CoreSymbolication
>        0x1214da000 -        0x1214e4fff com.apple.MallocStackLogging (1.0) <810c992a-bfad-3437-99dc-8c9df3069043> /Volumes/VOLUME/*/MallocStackLogging.framework/MallocStackLogging
>        0x11fd42000 -        0x11fd48fff libCoreFSCache.dylib (*) <5c9d5d25-5657-357a-85dd-836edcb34ad1> /Volumes/VOLUME/*/OpenGLES.framework/libCoreFSCache.dylib
>        0x123781000 -        0x1237cafff libllvm-flatbuffers.dylib (*) <f2ae68c7-5642-3fad-99a9-83a339a6e95a> /Volumes/VOLUME/*/libllvm-flatbuffers.dylib
>        0x1204f2000 -        0x1204f3fff libGPUCompilerUtils.dylib (*) <975b57e6-c229-3e0c-ae28-1dc31cab42d9> /Volumes/VOLUME/*/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib
>        0x121544000 -        0x12154cfff libGFXShared.dylib (*) <58451228-eac5-351a-a11c-23143d7db599> /Volumes/VOLUME/*/OpenGLES.framework/libGFXShared.dylib
>        0x12a1d4000 -        0x12a213fff libGLImage.dylib (*) <46c6d003-9e05-3999-96bb-9b1033b30c8d> /Volumes/VOLUME/*/OpenGLES.framework/libGLImage.dylib
>        0x12129d000 -        0x12129ffff libCVMSPluginSupport.dylib (*) <3b94b964-6c12-3ed9-a92b-4fe7fd9acc18> /Volumes/VOLUME/*/OpenGLES.framework/libCVMSPluginSupport.dylib
>        0x12155b000 -        0x121563fff libCoreVMClient.dylib (*) <ce5f594d-bb28-397e-9a70-2ce5088a96c5> /Volumes/VOLUME/*/OpenGLES.framework/libCoreVMClient.dylib
>        0x1301c4000 -        0x130fb6fff libLLVMContainer.dylib (*) <6cf48061-b546-3028-b59e-b96e24658631> /Volumes/VOLUME/*/OpenGLES.framework/libLLVMContainer.dylib
>        0x12a915000 -        0x12ad77fff com.apple.audio.CoreAudio (5.0) <f9d8a3a6-bf75-38b8-8486-3dfa3a42a5ff> /Volumes/VOLUME/*/CoreAudio.framework/CoreAudio
>        0x1234b1000 -        0x1234b9fff com.apple.CoreTime (*) <a1ecfe09-8e8c-3a0d-8154-480dfddddb04> /Volumes/VOLUME/*/CoreTime.framework/CoreTime
>        0x12a2b2000 -        0x12a2eafff libAudioToolboxUtility.dylib (*) <e96b7808-56e0-3723-b2c7-518c911d7489> /Volumes/VOLUME/*/libAudioToolboxUtility.dylib
>        0x1234c9000 -        0x1234d0fff com.apple.OSAServicesClient (1.0) <1d2c4bff-6fed-31b4-a158-cf3d6d94a962> /Volumes/VOLUME/*/OSAServicesClient.framework/OSAServicesClient
>        0x12149f000 -        0x1214b2fff com.apple.TCC (1.0) <e4c7aa5f-b4bd-39cb-a356-8380c7319931> /Volumes/VOLUME/*/TCC.framework/TCC
>        0x12a71f000 -        0x12a752fff libSessionUtility.dylib (*) <e28b3b85-09c4-3d83-9e4c-77f2f3ee10b5> /Volumes/VOLUME/*/AudioSession.framework/libSessionUtility.dylib
>        0x121572000 -        0x121572fff com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0) <16479512-3321-3969-9110-f3484d134a31> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/MetalPerformanceShaders
>        0x12a690000 -        0x12a69efff com.apple.GraphVisualizer (1.0) <69688374-6a00-31bc-b02c-65238d67a9fd> /Volumes/VOLUME/*/GraphVisualizer.framework/GraphVisualizer
>        0x12b2e9000 -        0x12b395fff com.apple.MetalPerformanceShaders.MPSCore (1.0) <bbaef7cc-fe5f-34a5-a446-edabcf4fb22c> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
>        0x12b10c000 -        0x12b1b1fff com.apple.MetalPerformanceShaders.MPSImage (1.0) <02533f19-73b7-310f-9ce1-674d16073fa1> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
>        0x12c0ec000 -        0x12c3f4fff com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0) <21fc453a-26ac-3c15-8a7a-37a956e1ddf3> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
>        0x12a6ae000 -        0x12a6e2fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0) <751b0bd1-9752-3778-a154-bc03d97bf3f9> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
>        0x12b243000 -        0x12b2a1fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0) <de82d84a-51a8-3bee-bbf4-1307552c9372> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
>        0x12e1f5000 -        0x12e33cfff com.apple.MetalPerformanceShaders.MPSNDArray (1.0) <faf5999a-789b-3892-a082-2e8948b83bab> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
>        0x12a64b000 -        0x12a65ffff com.apple.MPSFunctions (1.0) <2ec166d5-17b4-3b6c-ade8-33c3ac537b9d> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions
>        0x12b445000 -        0x12b45cfff com.apple.MPSBenchmarkLoop (1.0) <c916d65f-f6bb-37b6-b431-1ec5658d359a> /Volumes/VOLUME/*/MetalPerformanceShaders.framework/Frameworks/MPSBenchmarkLoop.framework/MPSBenchmarkLoop
>        0x121b07000 -        0x121b07fff com.apple.AggregateDictionary (1.0) <244c0f60-7a91-328d-9c00-ba11f3794105> /Volumes/VOLUME/*/AggregateDictionary.framework/AggregateDictionary
>        0x12deae000 -        0x12dfc5fff com.apple.gpusw.MetalTools (1.0) <4cc37d38-0224-3b2c-8eec-7c6e7887d0b1> /Volumes/VOLUME/*/MetalTools.framework/MetalTools
>        0x12e5bd000 -        0x12e680fff com.apple.CMPhoto (1.0) <277ee03a-0cd7-3868-820c-0ff4e84d46ff> /Volumes/VOLUME/*/CMPhoto.framework/CMPhoto
>        0x12eb66000 -        0x12edf6fff com.apple.cmphoto.AppleJPEGXL (1.0) <a049c00c-9ca3-3e5f-883e-5657cc8904c5> /Volumes/VOLUME/*/AppleJPEGXL.framework/AppleJPEGXL
>        0x12e3a6000 -        0x12e419fff com.apple.CMCapture (1.0) <1f136075-c507-37a3-8fbd-812c5f221d93> /Volumes/VOLUME/*/CMCapture.framework/CMCapture
>        0x12e94e000 -        0x12ea57fff com.apple.Quagga (190.1) <e7ea725a-c851-3dd4-a55b-b646197ea182> /Volumes/VOLUME/*/Quagga.framework/Quagga
>        0x12e177000 -        0x12e184fff com.apple.CMCaptureCore (1.0) <ec9667bf-3afe-3872-924d-506d568b709c> /Volumes/VOLUME/*/CMCaptureCore.framework/CMCaptureCore
>        0x12e4bc000 -        0x12e4fbfff com.apple.CMImaging (1.0) <f67cd0a9-ad89-337e-a79c-0958b318cad9> /Volumes/VOLUME/*/CMImaging.framework/CMImaging
>        0x12e873000 -        0x12e8e5fff com.apple.LoggingSupport (1.0) <ed9154c8-ea93-381f-8c20-38fe2182bf92> /Volumes/VOLUME/*/LoggingSupport.framework/LoggingSupport
>        0x12f2bc000 -        0x12f3edfff com.apple.managedconfiguration (1.0) <9bf7c52f-94a1-3659-944a-28a0d2587da9> /Volumes/VOLUME/*/ManagedConfiguration.framework/ManagedConfiguration
>        0x12b3db000 -        0x12b3f7fff com.apple.UserManagement (1.0) <fe3beed8-c257-33aa-add7-ed83fb13dc08> /Volumes/VOLUME/*/UserManagement.framework/UserManagement
>        0x12ea93000 -        0x12ead2fff com.apple.devicemanagementclient.DMCUtilities (1.0) <051dcae0-3b8d-3c4d-a065-0e395ee08d8d> /Volumes/VOLUME/*/DMCUtilities.framework/DMCUtilities
>        0x12e6c8000 -        0x12e745fff com.apple.Accounts (113) <2252b6db-4d8a-30cf-8aea-9d68c2857eb6> /Volumes/VOLUME/*/Accounts.framework/Accounts
>        0x12e7b4000 -        0x12e7f4fff com.apple.AppSupport (1.0.0) <efde4253-08e9-3b35-9f60-33959b5f909d> /Volumes/VOLUME/*/AppSupport.framework/AppSupport
>        0x12b2c1000 -        0x12b2ccfff com.apple.datamigration (1.0) <ad82295e-aa2f-364d-b2c1-a001c8b1b417> /Volumes/VOLUME/*/DataMigration.framework/DataMigration
>        0x12b417000 -        0x12b42bfff com.apple.FeatureFlagsSupport (1.0) <501d58af-0465-3c56-991d-a65746f51651> /Volumes/VOLUME/*/FeatureFlagsSupport.framework/FeatureFlagsSupport
>        0x12c4c4000 -        0x12c4e6fff com.apple.devicemanagementclient.MDMClientLibrary (1.0) <8d9f291f-0554-3e5e-8d1c-3621565a148c> /Volumes/VOLUME/*/MDMClientLibrary.framework/MDMClientLibrary
>        0x12efff000 -        0x12f06ffff com.apple.private.NanoRegistry (1.0) <f9ef392c-8048-3780-b4eb-923b163217da> /Volumes/VOLUME/*/NanoRegistry.framework/NanoRegistry
>        0x12a66f000 -        0x12a677fff com.apple.devicemanagementclient.DEPClientLibrary (1.0) <4b7c1301-7f23-3d06-b3c9-dcca52b146aa> /Volumes/VOLUME/*/DEPClientLibrary.framework/DEPClientLibrary
>        0x12a705000 -        0x12a70dfff com.apple.CorePhoneNumbers (1.0) <26b95b62-076c-3ef0-ba77-cb7b793df2bd> /Volumes/VOLUME/*/CorePhoneNumbers.framework/CorePhoneNumbers
>        0x1227d8000 -        0x1227d9fff libCTGreenTeaLogger.dylib (*) <1c1f9c96-0158-3c59-9e77-55810b4de8e2> /Volumes/VOLUME/*/libCTGreenTeaLogger.dylib
>        0x137412000 -        0x13912afff com.apple.GeoServices (1.0) <134fb6aa-9a35-37a9-b61f-bacac68351a2> /Volumes/VOLUME/*/GeoServices.framework/GeoServices
>        0x12e53a000 -        0x12e56bfff com.apple.locationsupport (2890.16.16) <803e35f3-da1c-3937-83d2-54d0fa66d138> /Volumes/VOLUME/*/LocationSupport.framework/LocationSupport
>        0x12ee2a000 -        0x12eefbfff com.apple.CoreBluetooth (1.0) <c71d2927-2324-34fd-a4dc-a23d10420305> /Volumes/VOLUME/*/CoreBluetooth.framework/CoreBluetooth
>        0x1237e1000 -        0x1237e4fff com.apple.GeoServices (1.0) <4d8cef89-b030-315c-b632-6b1062e53166> /Volumes/VOLUME/*/GeoServicesCore.framework/GeoServicesCore
>        0x1234e4000 -        0x1234e4fff com.apple.PhoneNumbers (1.0) <87acb227-8a27-35db-8cc4-b4b1c11e3128> /Volumes/VOLUME/*/PhoneNumbers.framework/PhoneNumbers
>        0x12fa2f000 -        0x12fba7fff com.apple.CoreUtils (7.4.2) <9cb04365-f9b0-3248-88bf-d5cb67b3698c> /Volumes/VOLUME/*/CoreUtils.framework/CoreUtils
>        0x12eb1c000 -        0x12eb37fff com.apple.CoreUtilsExtras (7.4.2) <e63deb68-96d3-3f45-9d43-5bbb79427d39> /Volumes/VOLUME/*/CoreUtilsExtras.framework/CoreUtilsExtras
>        0x12b478000 -        0x12b47efff libcupolicy.dylib (*) <f65c1104-bac1-3d7d-a836-9f25e3bfdbfe> /Volumes/VOLUME/*/libcupolicy.dylib
>        0x12f500000 -        0x12f543fff libTelephonyUtilDynamic.dylib (*) <edcd0cdc-8ab5-33ad-98df-71ced1ac35f4> /Volumes/VOLUME/*/libTelephonyUtilDynamic.dylib
>        0x12e58c000 -        0x12e5a0fff com.apple.commonutilities (8.0) <553690ec-fa72-344a-bbf5-226b3f828d11> /Volumes/VOLUME/*/CommonUtilities.framework/CommonUtilities
>        0x12f5a9000 -        0x12f5f2fff com.apple.DocumentManager (1.0) <ff4f9cb3-b22a-37f2-8722-18ce3c0f7bdd> /Volumes/VOLUME/*/DocumentManager.framework/DocumentManager
>        0x12f642000 -        0x12f7f1fff com.apple.FileProvider (1835.120.53) <d8444c68-7307-3ae9-8893-19605121c2fc> /Volumes/VOLUME/*/FileProvider.framework/FileProvider
>        0x1313ea000 -        0x133217fff com.apple.UIKitCore (1.0) <1d84d490-3f73-3a20-ab06-93726e3e4f47> /Volumes/VOLUME/*/UIKitCore.framework/UIKitCore
>        0x134e0f000 -        0x134f32fff com.apple.ShareSheet (1937.60.71.2.4) <a5a204aa-32ce-3e2d-962c-b63431a46790> /Volumes/VOLUME/*/ShareSheet.framework/ShareSheet
>        0x12f0e5000 -        0x12f181fff com.apple.PrintKitUI (1.0) <457d478f-3bd4-39e1-9215-e854503267dd> /Volumes/VOLUME/*/PrintKitUI.framework/PrintKitUI
>        0x12f95e000 -        0x12f9bafff com.apple.IconServices (493) <1223b1cb-63b4-3182-968c-ebcb79b1ceb2> /Volumes/VOLUME/*/IconServices.framework/IconServices
>        0x12e83d000 -        0x12e851fff libprequelite.dylib (*) <fb7940a3-3ff9-33cb-9351-1a58d82ec88b> /Volumes/VOLUME/*/libprequelite.dylib
>        0x12f210000 -        0x12f240fff com.apple.DocumentManagerCore (1.0) <18afed39-80c0-36d5-8fdf-425fd9675b66> /Volumes/VOLUME/*/DocumentManagerCore.framework/DocumentManagerCore
>        0x135c78000 -        0x135fe7fff com.apple.Sharing (1937.60.71.2.4) <1951bcb9-0423-3793-99ee-297b963f28b6> /Volumes/VOLUME/*/Sharing.framework/Sharing
>        0x135068000 -        0x1351ccfff com.apple.UIFoundation (1.0) <e00fb03a-9fdb-3019-aad6-8020cf940a0a> /Volumes/VOLUME/*/UIFoundation.framework/UIFoundation
>        0x12efa9000 -        0x12efbcfff com.apple.CollectionViewCore (1.0) <d0e6f064-0e14-3efb-b62e-f38eddfd2ec9> /Volumes/VOLUME/*/CollectionViewCore.framework/CollectionViewCore
>        0x12efda000 -        0x12efe2fff com.apple.PushKit (1.0) <600f1098-a67e-3100-9158-493ec95b584d> /Volumes/VOLUME/*/PushKit.framework/PushKit
>        0x12c514000 -        0x12c518fff com.apple.dt.XCTTargetBootstrap (17.5) <0490c48c-a49b-30d8-a849-aee7f232bdef> /Volumes/VOLUME/*/XCTTargetBootstrap.framework/XCTTargetBootstrap
>        0x12fcba000 -        0x12fe2ffff com.apple.WebKitLegacy (8618) <dcf02c24-161d-383a-962e-87a13d65150c> /Volumes/VOLUME/*/WebKitLegacy.framework/WebKitLegacy
>        0x12e1e7000 -        0x12e1e9fff libapp_launch_measurement.dylib (*) <37184cc8-c1e7-3feb-af24-2c1359e52947> /Volumes/VOLUME/*/libapp_launch_measurement.dylib
>        0x12f282000 -        0x12f292fff com.apple.PointerUIServices (1.0) <b2c78ba3-4520-3455-b38a-2b98f8d42e17> /Volumes/VOLUME/*/PointerUIServices.framework/PointerUIServices
>        0x130110000 -        0x13014cfff com.apple.BacklightServices (1.0) <28283382-e05f-35fc-9382-68fc7b4a9634> /Volumes/VOLUME/*/BacklightServices.framework/BacklightServices
>        0x130082000 -        0x1300a5fff com.apple.CoreMaterial (1.0) <904f67c0-424e-3e80-a6f1-18d7d70c0eb7> /Volumes/VOLUME/*/CoreMaterial.framework/CoreMaterial
>        0x12ffd9000 -        0x130010fff com.apple.Pasteboard (1.0) <1271fe72-21fe-3024-b515-43706ad84995> /Volumes/VOLUME/*/Pasteboard.framework/Pasteboard
>        0x12eb54000 -        0x12eb56fff com.apple.DataDetection (8.0) <6cf8b51c-831e-390b-a576-c86bf95f5fe0> /Volumes/VOLUME/*/DataDetection.framework/DataDetection
>        0x1356ed000 -        0x1357a5fff com.apple.FrontBoard (867.314) <a7fe8757-193a-365e-8f70-96df19e9fcff> /Volumes/VOLUME/*/FrontBoard.framework/FrontBoard
>        0x13540f000 -        0x13543efff com.apple.RemoteTextInput (1.0) <f44ecb92-750a-33f9-b8a2-0dc8b6c7c0ee> /Volumes/VOLUME/*/RemoteTextInput.framework/RemoteTextInput
>        0x13547b000 -        0x1354b1fff com.apple.CoreSVG (1.0) <2b9c9632-f351-3f56-a657-c72afe520c2f> /Volumes/VOLUME/*/CoreSVG.framework/CoreSVG
>        0x13535b000 -        0x135374fff com.apple.Accessibility (1.0) <5371a867-5ae0-335a-8506-98fd49d6ba7c> /Volumes/VOLUME/*/Accessibility.framework/Accessibility
>        0x1352db000 -        0x135301fff com.apple.IntlPreferences (1.0) <ac705c77-96b4-3fd1-af76-9e03aa887327> /Volumes/VOLUME/*/IntlPreferences.framework/IntlPreferences
>        0x1354e1000 -        0x135551fff com.apple.SFSymbolsFramework (1) <479ff17a-a5c2-3eb6-a3f5-c850e4cec9e9> /Volumes/VOLUME/*/SFSymbols.framework/SFSymbols
>        0x13004f000 -        0x130059fff com.apple.Symbols (1.0) <fc92fd4f-cd7b-3fcd-a374-4e2bce07b463> /Volumes/VOLUME/*/Symbols.framework/Symbols
>        0x136294000 -        0x13634dfff com.apple.ExtensionFoundation (97) <adb93fb4-f62c-3a97-ab14-8b91d68a30b6> /Volumes/VOLUME/*/ExtensionFoundation.framework/ExtensionFoundation
>        0x136412000 -        0x13650ffff com.apple.CoreUI (1.0) <8d8e91cf-86fb-3ad1-a978-28d2f0cbf523> /Volumes/VOLUME/*/CoreUI.framework/CoreUI
>        0x135afe000 -        0x135bb5fff com.apple.MobileAssets (1.0) <7e99b0ea-8f07-31b1-8532-b07d353a1194> /Volumes/VOLUME/*/MobileAsset.framework/MobileAsset
>        0x13597b000 -        0x1359d0fff com.apple.PhysicsKit (*) <2c567809-0d3a-372b-83b2-4ff3bb556c1c> /Volumes/VOLUME/*/PhysicsKit.framework/PhysicsKit
>        0x135681000 -        0x1356a6fff com.apple.PrototypeTools (1.0) <78770921-77f9-3cea-b62d-3b01417cd694> /Volumes/VOLUME/*/PrototypeTools.framework/PrototypeTools
>        0x136a67000 -        0x136b2cfff com.apple.TextInput (1.0) <534f746a-26fd-32ac-a054-e5349b13d356> /Volumes/VOLUME/*/TextInput.framework/TextInput
>        0x136c94000 -        0x136da7fff com.apple.RenderBox (5.4.37) <5f9aa4ea-dbe0-3559-8626-5e316b0a2516> /Volumes/VOLUME/*/RenderBox.framework/RenderBox
>        0x135a0c000 -        0x135a37fff com.apple.UIKitServices (1.0) <c3c58709-7b88-3a2a-a878-44c1d796f90d> /Volumes/VOLUME/*/UIKitServices.framework/UIKitServices
>        0x1301a3000 -        0x1301abfff com.apple.dt.DeveloperToolsSupport (21.40.2) <0593b63a-ea90-3059-8b6f-106a0fdecdcc> /Volumes/VOLUME/*/DeveloperToolsSupport.framework/DeveloperToolsSupport
>        0x136e84000 -        0x136f4efff libswiftAccelerate.dylib (*) <567d4c17-45bf-341e-bd31-9b8a22695dd8> /Volumes/VOLUME/*/libswiftAccelerate.dylib
>        0x135853000 -        0x135918fff com.apple.TextureIO (3.10.10) <dd97d930-6fd7-3d20-86ef-d1cf06511db5> /Volumes/VOLUME/*/TextureIO.framework/TextureIO
>        0x142dd2000 -        0x145b69fff com.apple.WebCore (8618) <4b3780ab-0321-3651-a935-10806cccf9f3> /Volumes/VOLUME/*/WebCore.framework/WebCore
>        0x135a7d000 -        0x135aa5fff libxslt.1.dylib (*) <4b6e939a-fb5e-30e6-b952-680a299bed40> /Volumes/VOLUME/*/libxslt.1.dylib
>        0x13afa4000 -        0x13b2f6fff libANGLE-shared.dylib (*) <f2e6a8ce-f233-3bc9-b018-d04fc1c93349> /Volumes/VOLUME/*/WebCore.framework/Frameworks/libANGLE-shared.dylib
>        0x1365f8000 -        0x1367d4fff com.apple.WebGPU (8618) <28beab8d-5e05-30d9-ba93-6d6263178f99> /Volumes/VOLUME/*/WebGPU.framework/WebGPU
>        0x13d262000 -        0x13dec3fff libwebrtc.dylib (*) <2019cb6c-12a4-3cb1-a4b6-ef0c3aeba2a7> /Volumes/VOLUME/*/WebCore.framework/Frameworks/libwebrtc.dylib
>        0x13b4e4000 -        0x13b76cfff com.apple.NetworkExtension (1.0) <027e9e61-e0a3-387d-a6a3-8ab5224876d6> /Volumes/VOLUME/*/NetworkExtension.framework/NetworkExtension
>        0x135329000 -        0x135330fff com.apple.URLFormatting (240) <d94e8ce5-ac64-32d4-8ae1-bd1e73730c33> /Volumes/VOLUME/*/URLFormatting.framework/URLFormatting
>        0x12f2b0000 -        0x12f2b1fff com.apple.CaptiveNetworkSupport (13.0) <3412fec5-0a6a-30b8-8604-6b94eddfd218> /Volumes/VOLUME/*/CaptiveNetwork.framework/CaptiveNetwork
>        0x13692f000 -        0x136966fff libnetworkextension.dylib (*) <0956d6f1-829a-3e0f-aa23-088f364aeb75> /Volumes/VOLUME/*/libnetworkextension.dylib
>        0x1300d2000 -        0x1300e0fff com.apple.SystemWake (1.0) <5d03f83d-12fc-33e4-88c2-65edc4bf75fd> /Volumes/VOLUME/*/SystemWake.framework/SystemWake
>        0x13686e000 -        0x1368dbfff com.apple.security.CryptoKit-Private (1.0) <5959cd46-1cb3-3970-8a8f-12a1bc1a8fd8> /Volumes/VOLUME/*/CryptoKitPrivate.framework/CryptoKitPrivate
>        0x13006e000 -        0x130072fff com.apple.security.CryptoKit-C-Bridging (1.0) <cc480fda-a50b-3867-bde6-fb7889d87903> /Volumes/VOLUME/*/CryptoKitCBridging.framework/CryptoKitCBridging
>        0x13698b000 -        0x1369ddfff com.apple.CryptoTokenKit (1.0) <56e6c629-ae04-3db2-b019-f480a451d38a> /Volumes/VOLUME/*/CryptoTokenKit.framework/CryptoTokenKit
>        0x1300f9000 -        0x1300fafff libswiftCryptoTokenKit.dylib (*) <27751e83-c52d-3685-8211-8ed353d5609d> /Volumes/VOLUME/*/libswiftCryptoTokenKit.dylib
>        0x13715b000 -        0x137197fff com.apple.pluginkit.framework (1.0) <46bc5fb5-427b-3610-8d33-b062552147f0> /Volumes/VOLUME/*/PlugInKit.framework/PlugInKit
>        0x13a522000 -        0x13a563fff com.apple.LocalAuthenticationCore (*) <761c26d1-d3ce-3b33-9962-d6e13d2dba61> /Volumes/VOLUME/*/LocalAuthenticationCore.framework/LocalAuthenticationCore
>        0x1371c1000 -        0x1371e6fff com.apple.CoreAuthentication.SharedUtils (1.0) <642e30fa-7312-30f9-a802-674fa48e1293> /Volumes/VOLUME/*/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
>        0x13539c000 -        0x1353abfff com.apple.OSLog (1.0) <e98e6527-3e70-3d1a-838e-572ab13b5746> /Volumes/VOLUME/*/OSLog.framework/OSLog
>        0x13720f000 -        0x1372fbfff com.apple.InternalSwiftProtobuf (1.0) <5c51b08e-f43f-3142-b688-f2d1a2970565> /Volumes/VOLUME/*/InternalSwiftProtobuf.framework/InternalSwiftProtobuf
>        0x137088000 -        0x1370c4fff com.apple.datadetectorscore (8.0) <4f8cc3f8-0aff-3503-bd8e-d76022f9859f> /Volumes/VOLUME/*/DataDetectorsCore.framework/DataDetectorsCore
>        0x1370fa000 -        0x13711cfff com.apple.GenerationalStorage (2.0) <ff00c8a5-47af-3417-a42c-8286268c1277> /Volumes/VOLUME/*/GenerationalStorage.framework/GenerationalStorage
>        0x13a9b7000 -        0x13aab3fff com.apple.CoreNLP (1.0) <4afbbbf4-3815-3579-936e-0290bebd0207> /Volumes/VOLUME/*/CoreNLP.framework/CoreNLP
>        0x13736c000 -        0x1373c3fff libmecab.dylib (*) <0d9231ef-0f8a-32ab-8bcc-c8a4e757ff07> /Volumes/VOLUME/*/libmecab.dylib
>        0x13a6bf000 -        0x13a6effff libCRFSuite.dylib (*) <9ef0669e-05fd-30f6-8bc4-5e515bbd21f7> /Volumes/VOLUME/*/libCRFSuite.dylib
>        0x13533f000 -        0x135341fff libgermantok.dylib (*) <15154311-61a4-32f6-8f9c-453cf78a22b1> /Volumes/VOLUME/*/libgermantok.dylib
>        0x130105000 -        0x130106fff libThaiTokenizer.dylib (*) <1f7b52e5-00bd-3940-9330-3c19b1e4b6fc> /Volumes/VOLUME/*/libThaiTokenizer.dylib
>        0x13a70e000 -        0x13a72bfff com.apple.IconFoundation (493) <cf95a8b4-ec64-3864-8c92-ac4de53bdc68> /Volumes/VOLUME/*/IconFoundation.framework/IconFoundation
>        0x13594b000 -        0x135957fff com.apple.mobileicons.framework (1.0) <fb39a0cc-fc17-31f5-b08a-1b48d40c70f8> /Volumes/VOLUME/*/MobileIcons.framework/MobileIcons
>        0x13534c000 -        0x135350fff com.apple.LinguisticData (1.0) <f6e93cd6-c9e8-319c-a08a-8ddbece19645> /Volumes/VOLUME/*/LinguisticData.framework/LinguisticData
>        0x135abc000 -        0x135accfff com.apple.NanoPreferencesSync (1.0) <ebdb34e3-1397-3074-a53e-4c34f9ea47e0> /Volumes/VOLUME/*/NanoPreferencesSync.framework/NanoPreferencesSync
>        0x13a618000 -        0x13a641fff com.apple.AppConduit (1.0) <ff9fc8fd-5ddd-3833-9237-a8d220c2bcb4> /Volumes/VOLUME/*/AppConduit.framework/AppConduit
>        0x13ab82000 -        0x13abddfff com.apple.SoftwareUpdateCoreSupport (1.0) <4e2aef57-b072-37df-8abe-0f1ac70108e5> /Volumes/VOLUME/*/SoftwareUpdateCoreSupport.framework/SoftwareUpdateCoreSupport
>        0x13a669000 -        0x13a67dfff com.apple.SoftwareUpdateCoreConnect (1.0) <ca89ad5c-fca2-3ecb-8824-a95e2e46b022> /Volumes/VOLUME/*/SoftwareUpdateCoreConnect.framework/SoftwareUpdateCoreConnect
>        0x13a81b000 -        0x13a853fff com.apple.StreamingZip (1.0) <e6b61c73-00a0-37de-b5ca-53531697f198> /Volumes/VOLUME/*/StreamingZip.framework/StreamingZip
>        0x135c4e000 -        0x135c58fff com.apple.AppleIDSSOAuthentication (1.0) <75e1a1a0-a3e9-3b24-986a-f79f1d75d939> /Volumes/VOLUME/*/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
>        0x13e206000 -        0x13e7bdfff com.apple.AppleMediaServices (1.0) <17c24c2e-2e0a-3108-b44b-24d8517f2991> /Volumes/VOLUME/*/AppleMediaServices.framework/AppleMediaServices
>        0x13ac5c000 -        0x13ad53fff com.apple.AuthKit (1.0) <b0f8a044-960b-3804-8bed-415b38fe1869> /Volumes/VOLUME/*/AuthKit.framework/AuthKit
>        0x13a7c3000 -        0x13a7dafff com.apple.BluetoothManager (1.0) <96e0629d-7f4f-3591-adba-813f06d34eb0> /Volumes/VOLUME/*/BluetoothManager.framework/BluetoothManager
>        0x1356da000 -        0x1356ddfff libutil.dylib (*) <abe4da59-af41-3820-948a-f128ac0e75d3> /Volumes/VOLUME/*/libutil.dylib
>        0x13bbe8000 -        0x13bc9afff com.apple.Rapport (5.5.0) <72231081-1f30-349a-95aa-5138e3777ff2> /Volumes/VOLUME/*/Rapport.framework/Rapport
>        0x13a753000 -        0x13a769fff com.apple.AAAFoundation (1.0) <64d16435-8157-324a-914e-cef818c0870f> /Volumes/VOLUME/*/AAAFoundation.framework/AAAFoundation
>        0x136a3d000 -        0x136a48fff com.apple.AppleIDAuthSupport (1.0) <63c1b78e-cc21-34f0-a779-27076e06c170> /Volumes/VOLUME/*/AppleIDAuthSupport.framework/AppleIDAuthSupport
>        0x13b91f000 -        0x13ba99fff com.apple.AppleAccount (1.0) <37fbbc7c-0a9d-3221-9026-17605106b13a> /Volumes/VOLUME/*/AppleAccount.framework/AppleAccount
>        0x13c1b5000 -        0x13c357fff com.apple.ids (10.0) <5381b60c-e57b-31b7-a2ee-82539eae53d4> /Volumes/VOLUME/*/IDS.framework/IDS
>        0x13a791000 -        0x13a7a9fff libresolv.9.dylib (*) <38f57538-f944-34f2-b193-174c74ae2b0a> /Volumes/VOLUME/*/libresolv.9.dylib
>        0x120748000 -        0x120748fff com.apple.FeatureFlags (1.0) <0d391188-8c7b-332b-931c-63b3e60415c6> /Volumes/VOLUME/*/FeatureFlags.framework/FeatureFlags
>        0x135ae5000 -        0x135aeafff libswiftCompression.dylib (*) <70fdd7c5-709b-32e9-91fb-b1dcc00d2d7e> /Volumes/VOLUME/*/libswiftCompression.dylib
>        0x13a87b000 -        0x13a8c2fff com.apple.SetupAssistant (1.0) <6f40f25e-82a0-3d8d-9b5f-09d9d751e6dc> /Volumes/VOLUME/*/SetupAssistant.framework/SetupAssistant
>        0x13a913000 -        0x13a93bfff com.apple.aps.framework (4.0) <f8d584e2-1748-339b-825b-5c483d04a894> /Volumes/VOLUME/*/ApplePushService.framework/ApplePushService
>        0x13a967000 -        0x13a97dfff com.apple.setupandmigration.SetupAssistantSupport (1.0) <5e35e930-5a94-39dd-ae3f-f49337816c42> /Volumes/VOLUME/*/SetupAssistantSupport.framework/SetupAssistantSupport
>        0x13af20000 -        0x13af43fff com.apple.icloud.FindMyDevice (1.0) <02131a38-a702-3b4a-b0a5-be62e755cc89> /Volumes/VOLUME/*/FindMyDevice.framework/FindMyDevice
>        0x13bb9a000 -        0x13bbbefff com.apple.RTCReporting (13.1.47) <4259ceb1-73cb-3f90-9d47-e87a16da89f0> /Volumes/VOLUME/*/RTCReporting.framework/RTCReporting
>        0x13c3fc000 -        0x13c893fff com.apple.BiomeLibrary (*) <354b36ce-1640-3641-a9d1-062adc9b298a> /Volumes/VOLUME/*/BiomeLibrary.framework/BiomeLibrary
>        0x13cc4d000 -        0x13cf90fff com.apple.cloudkit.CloudKit (2160.17.1) <751b8284-a007-3bc1-b376-8d023d2015af> /Volumes/VOLUME/*/CloudKit.framework/CloudKit
>        0x13596c000 -        0x13596dfff libBASupport.dylib (*) <b2b2cb30-f411-30ba-b4e1-537c76540c0e> /Volumes/VOLUME/*/libBASupport.dylib
>        0x13ae6b000 -        0x13aebbfff com.apple.C2 (1.3) <e3f466d3-a766-3aaa-a084-51e958f24832> /Volumes/VOLUME/*/C2.framework/C2
>        0x13beae000 -        0x13bf08fff com.apple.ProtectedCloudStorage (1.0) <9323dc84-3d68-3286-a713-7b7aa82ecf3b> /Volumes/VOLUME/*/ProtectedCloudStorage.framework/ProtectedCloudStorage
>        0x13bd45000 -        0x13bd77fff com.apple.CoreTransferable (1.0.1) <253f810a-09ad-3752-a608-e9eee2fad6ff> /Volumes/VOLUME/*/CoreTransferable.framework/CoreTransferable
>        0x13be02000 -        0x13be2cfff com.apple.security.octagontrust (1.0) <f4893809-6ccb-3cc1-b0b2-f0ed9c4af6dc> /Volumes/VOLUME/*/OctagonTrust.framework/OctagonTrust
>        0x13be53000 -        0x13be6efff com.apple.icloud.FMCoreLite (1.0) <c1dfe460-0597-33eb-bb72-13302f91b143> /Volumes/VOLUME/*/FMCoreLite.framework/FMCoreLite
>        0x14019b000 -        0x140724fff com.apple.biome.BiomeStreams (1.0) <f0732910-d880-3482-a561-88d99f4698f8> /Volumes/VOLUME/*/BiomeStreams.framework/BiomeStreams
>        0x13c047000 -        0x13c080fff com.apple.biome.BiomeStorage (1.0) <0336db2a-5a9b-365a-9abd-69b588257c7b> /Volumes/VOLUME/*/BiomeStorage.framework/BiomeStorage
>        0x13bf5a000 -        0x13bf97fff com.apple.biome.BiomeFoundation (1.0) <cbbb298e-c294-3b97-b528-1b24972e7d71> /Volumes/VOLUME/*/BiomeFoundation.framework/BiomeFoundation
>        0x13d1a6000 -        0x13d1fbfff com.apple.PoirotSchematizer (1.0) <611c0727-de5d-304d-8236-9a473dde40d8> /Volumes/VOLUME/*/PoirotSchematizer.framework/PoirotSchematizer
>        0x13691e000 -        0x136922fff com.apple.biome.BiomeSync (1.0) <6a930fe2-9042-370b-b949-58d2908dad2d> /Volumes/VOLUME/*/BiomeSync.framework/BiomeSync
>        0x13bfd6000 -        0x13bff3fff com.apple.biome.BiomeFlexibleStorage (1.0) <e25c2ca9-de98-35c0-9ca2-0feadc8ab790> /Volumes/VOLUME/*/BiomeFlexibleStorage.framework/BiomeFlexibleStorage
>        0x13c13b000 -        0x13c153fff com.apple.biome.BiomeDSL (1.0) <0fe438f3-5b4a-33aa-8a33-bc5cb558b866> /Volumes/VOLUME/*/BiomeDSL.framework/BiomeDSL
>        0x13ed4a000 -        0x13edaafff com.apple.biome.BiomePubSub (1.0) <312789d8-a857-35b0-87e1-107a6127f6e7> /Volumes/VOLUME/*/BiomePubSub.framework/BiomePubSub
>        0x13af76000 -        0x13af8cfff com.apple.biome.BiomeSequence (1.0) <cef2fa3f-9660-3ef7-be5c-db7fb5745075> /Volumes/VOLUME/*/BiomeSequence.framework/BiomeSequence
>        0x13eb7b000 -        0x13ec04fff com.apple.proactive.support.ProactiveSupport (1.0) <47f82204-747a-334b-8673-8a4d02beb4a0> /Volumes/VOLUME/*/ProactiveSupport.framework/ProactiveSupport
>        0x13c0b6000 -        0x13c0defff com.apple.PoirotSQLite (1.0) <4d1c2141-8edd-3452-b1e2-55df2c1dbc74> /Volumes/VOLUME/*/PoirotSQLite.framework/PoirotSQLite
>        0x13713f000 -        0x137141fff com.apple.InternationalTextSearch (1.0) <46c5b925-b9c7-3bf2-a41b-88d7eff93867> /Volumes/VOLUME/*/InternationalTextSearch.framework/InternationalTextSearch
>        0x13ec81000 -        0x13ece9fff com.apple.imfoundation (10.0) <580862f2-63a7-36db-a710-072adbb746b2> /Volumes/VOLUME/*/IMFoundation.framework/IMFoundation
>        0x13f5e6000 -        0x13f866fff com.apple.idsfoundation (10.0) <fd933216-824e-3db9-abc4-5044c37aad42> /Volumes/VOLUME/*/IDSFoundation.framework/IDSFoundation
>        0x13ef33000 -        0x13ef84fff com.apple.facetimeservices (10.0) <3c1fac1c-6f3c-3e7d-a601-225a395f9ae4> /Volumes/VOLUME/*/FTServices.framework/FTServices
>        0x13c016000 -        0x13c02cfff com.apple.Engram (1.0) <b1265e63-a9e1-3d7b-ae03-d5f26e4b8172> /Volumes/VOLUME/*/Engram.framework/Engram
>        0x1227e4000 -        0x1227e4fff com.apple.marco (10.0) <8376524b-23d1-399a-9ea6-cedc2e016d44> /Volumes/VOLUME/*/Marco.framework/Marco
>        0x1301ba000 -        0x1301bafff com.apple.ftawd (8.0) <4c2e24bd-cde7-31fc-bd54-4a8614ebc0a8> /Volumes/VOLUME/*/FTAWD.framework/FTAWD
>        0x13efb3000 -        0x13eff0fff com.apple.MobileBluetooth (1.0) <ad8bf19a-8d5e-34dd-b885-f13d380a7135> /Volumes/VOLUME/*/MobileBluetooth.framework/MobileBluetooth
>        0x13f33b000 -        0x13f3f7fff com.apple.CoreSuggestions (1.0) <6fa4c215-333c-3a85-8f22-fba84bfdadcf> /Volumes/VOLUME/*/CoreSuggestions.framework/CoreSuggestions
>        0x13f9d2000 -        0x13fa7afff com.apple.AuthenticationServicesCore (1.0) <eec49c6e-e20c-3c09-b1d0-d28c176ff764> /Volumes/VOLUME/*/AuthenticationServicesCore.framework/AuthenticationServicesCore
>        0x13ee2f000 -        0x13ee74fff com.apple.QuickLookThumbnailing (1.0) <7997e706-1c70-3109-9ff5-62d7f42688ec> /Volumes/VOLUME/*/QuickLookThumbnailing.framework/QuickLookThumbnailing
>        0x13f1a7000 -        0x13f206fff com.apple.OnBoardingKit (1.0) <c19a3359-6597-358a-8fb4-89bf03da3354> /Volumes/VOLUME/*/OnBoardingKit.framework/OnBoardingKit
>        0x140cda000 -        0x140e02fff com.apple.preferences-framework (1) <41d8c808-6901-34c1-9145-91c3be36fd6d> /Volumes/VOLUME/*/Preferences.framework/Preferences
>        0x13fe6d000 -        0x13ff5efff com.apple.WebBookmarks (8618) <301d6aff-9656-3753-903a-33e55893f043> /Volumes/VOLUME/*/WebBookmarks.framework/WebBookmarks
>        0x142124000 -        0x1425aafff com.apple.ContactsUI (1.0.0) <29395839-88fd-3c19-926d-6d867d6722b0> /Volumes/VOLUME/*/ContactsUI.framework/ContactsUI
>        0x1373ef000 -        0x1373f6fff com.apple.CertUI (1.0) <8f73663e-a2da-3d50-b6b9-1597f03548f8> /Volumes/VOLUME/*/CertUI.framework/CertUI
>        0x147326000 -        0x147723fff com.apple.PencilKit (1.0) <e0b4274e-8b62-3f82-82b8-b5e6f5d9bd85> /Volumes/VOLUME/*/PencilKit.framework/PencilKit
>        0x13f01f000 -        0x13f097fff com.apple.ContactsAutocompleteUI (1.0) <a56da75f-9d08-3c3f-be1a-60001d8a91f1> /Volumes/VOLUME/*/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
>        0x141683000 -        0x1418b5fff com.apple.Passwords.PasswordManagerUI.framework (1.0) <8f527403-1738-3535-afb7-aa505c343df8> /Volumes/VOLUME/*/PasswordManagerUI.framework/PasswordManagerUI
>        0x13fafe000 -        0x13fbb2fff com.apple.AddressBook.ContactsFoundation (8.0) <8c2bf4a3-04df-3376-9b2c-f0887588720c> /Volumes/VOLUME/*/ContactsFoundation.framework/ContactsFoundation
>        0x13f4bd000 -        0x13f51bfff com.apple.DeviceManagement (1.0) <e3ade086-5637-3197-bf9c-32f40b497c43> /Volumes/VOLUME/*/DeviceManagement.framework/DeviceManagement
>        0x13c0fc000 -        0x13c10bfff com.apple.BiometricKit2 (1.0) <ce1aa285-d437-3f5f-882d-6e9cea2de8c7> /Volumes/VOLUME/*/BiometricKit.framework/BiometricKit
>        0x149b70000 -        0x14a36dfff com.apple.PassKitCore (1.0) <5c85be89-65e1-3e40-8ec9-93baf5a5ada2> /Volumes/VOLUME/*/PassKitCore.framework/PassKitCore
>        0x13fcc6000 -        0x13fd92fff com.apple.AppStoreComponents (1.0) <06c2efcd-2d19-3dd9-b46c-8639ce37ef79> /Volumes/VOLUME/*/AppStoreComponents.framework/AppStoreComponents
>        0x141a39000 -        0x141bacfff com.apple.mobilesafari.framework (17.5) <5d310bab-8eaa-379d-b816-226f77867c6a> /Volumes/VOLUME/*/MobileSafari.framework/MobileSafari
>        0x140f24000 -        0x141166fff com.apple.Safari.Shared.UI (8618) <198c40e1-6083-36d1-a016-e8ffb4a7e4b9> /Volumes/VOLUME/*/SafariSharedUI.framework/SafariSharedUI
>        0x13eec6000 -        0x13eef8fff com.apple.SafariFoundation (8618) <e3f70abf-d5e4-3ee7-9732-66488925f508> /Volumes/VOLUME/*/SafariFoundation.framework/SafariFoundation
>        0x148321000 -        0x148536fff com.apple.contacts (1.0) <b48421f8-364d-31d2-9a5d-cb3d35e1cecc> /Volumes/VOLUME/*/Contacts.framework/Contacts
>        0x141d1f000 -        0x141ecafff com.apple.TelephonyUtilities (1.0) <f46efc3f-a736-391b-8802-52d8bfa565a0> /Volumes/VOLUME/*/TelephonyUtilities.framework/TelephonyUtilities
>        0x13f114000 -        0x13f132fff com.apple.WebUI (1.0) <e03e9f40-d4ae-355f-acba-6c45a4aa3b2a> /Volumes/VOLUME/*/WebUI.framework/WebUI
>        0x148765000 -        0x148daafff com.apple.Intents (1.0) <8d7b1ddb-24ec-3a65-97d8-71176f8554c3> /Volumes/VOLUME/*/Intents.framework/Intents
>        0x141376000 -        0x141471fff com.apple.CoreSpotlight (1.0) <2cb52549-b9c1-3d90-a5a8-ce058a7b386e> /Volumes/VOLUME/*/CoreSpotlight.framework/CoreSpotlight
>        0x14001a000 -        0x14003ffff com.apple.proactive.support.ProactiveEventTracker (1.0) <dc7c1c58-4c6a-3100-8d38-3808e89e9670> /Volumes/VOLUME/*/ProactiveEventTracker.framework/ProactiveEventTracker
>        0x13c178000 -        0x13c187fff com.apple.IntentsFoundation (1.0) <45e4ac5f-5b0b-3cc7-bf4c-e84c1a15685e> /Volumes/VOLUME/*/IntentsFoundation.framework/IntentsFoundation
>        0x13f265000 -        0x13f2a9fff com.apple.spotlight.metadata.utilities (1.0) <f422a622-e921-3527-b7c3-ca4767dfb2bf> /Volumes/VOLUME/*/MetadataUtilities.framework/MetadataUtilities
>        0x13a69e000 -        0x13a6aafff com.apple.spotlight.CSExattrCrypto (1.0) <f889fc8b-1337-3cec-8a5c-05296d9ee9cf> /Volumes/VOLUME/*/CSExattrCrypto.framework/CSExattrCrypto
>        0x142a04000 -        0x142b06fff com.apple.Safari.Core (8618) <f0a34029-35ea-31e6-b019-8e97aa6b707f> /Volumes/VOLUME/*/SafariCore.framework/SafariCore
>        0x142c13000 -        0x142cb3fff com.apple.AuthKitUI (1.0) <f8e131bb-dc41-3288-a7c2-d17360e1528b> /Volumes/VOLUME/*/AuthKitUI.framework/AuthKitUI
>        0x141568000 -        0x14159ffff com.apple.AppSSO (1.0) <b19643c6-d23d-3268-9a2f-a20956edfd69> /Volumes/VOLUME/*/AppSSO.framework/AppSSO
>        0x147d06000 -        0x147d9bfff com.apple.CallKit (1.0) <0f02377a-7559-3d3f-87db-af1255a92309> /Volumes/VOLUME/*/CallKit.framework/CallKit
>        0x14011f000 -        0x140145fff com.apple.LocalAuthenticationPrivateUI (1.0) <059908ee-f788-3505-99d0-fd0546827924> /Volumes/VOLUME/*/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
>        0x147e3d000 -        0x147eadfff com.apple.FamilyCircle (1.0) <f78d8a6e-d6a2-3561-88ff-fa6eb4480ea0> /Volumes/VOLUME/*/FamilyCircle.framework/FamilyCircle
>        0x1415d4000 -        0x141601fff com.apple.CBORLibrary (1.0) <cb39975f-c3cc-3298-b313-6da751cf1af6> /Volumes/VOLUME/*/CBORLibrary.framework/CBORLibrary
>        0x147f1e000 -        0x148006fff com.apple.Lexicon-framework (1.0) <88207b4e-8e96-3534-9cb4-3e04b9530268> /Volumes/VOLUME/*/Lexicon.framework/Lexicon
>        0x13f15a000 -        0x13f17cfff com.apple.SharedWebCredentials (1001) <9cf66dd5-8289-3560-a254-36e13678a363> /Volumes/VOLUME/*/SharedWebCredentials.framework/SharedWebCredentials
>        0x147a7f000 -        0x147b27fff com.apple.AddressBookLegacy (1.0) <37f210e8-945f-3e44-bf8a-ed24e23a21d6> /Volumes/VOLUME/*/AddressBookLegacy.framework/AddressBookLegacy
>        0x141629000 -        0x141643fff com.apple.CellularPlanManager (1.0) <c1b31059-8aae-320f-a893-1d4ee3e67713> /Volumes/VOLUME/*/CellularPlanManager.framework/CellularPlanManager
>        0x147bb4000 -        0x147c73fff com.apple.ClassKit (1.2) <9f8263fe-3ffa-3ab1-a4bc-6119e221c59a> /Volumes/VOLUME/*/ClassKit.framework/ClassKit
>        0x1494b8000 -        0x14984ffff com.apple.VN (7.0.53) <63999a5f-4437-338d-a026-9fb3a7914cb9> /Volumes/VOLUME/*/Vision.framework/Vision
>        0x14006d000 -        0x1400a5fff com.apple.contacts.vCard (1.0) <5b61ceb1-f92d-34dc-9322-8ccecdfae30b> /Volumes/VOLUME/*/vCard.framework/vCard
>        0x142064000 -        0x1420a3fff com.apple.dataaccess.dataaccessexpress.framework (1.0) <97d88a38-b737-3c81-9e66-fbe8a10803ac> /Volumes/VOLUME/*/DataAccessExpress.framework/DataAccessExpress
>        0x13a7f7000 -        0x13a7fafff com.apple.contacts.ContactsMetrics (1) <c53a2334-654b-3925-ac05-5eca8ec3876e> /Volumes/VOLUME/*/ContactsMetrics.framework/ContactsMetrics
>        0x148172000 -        0x1481b6fff com.apple.iCalendar (7.0) <7d7d93b0-a32b-32f4-b8d9-f5361c12e369> /Volumes/VOLUME/*/iCalendar.framework/iCalendar
>        0x14af18000 -        0x14aff1fff com.apple.CloudDocs (1.0) <ca6ed256-7b3e-318b-8493-a193992ad31b> /Volumes/VOLUME/*/CloudDocs.framework/CloudDocs
>        0x148206000 -        0x14823ffff com.apple.VisionCore (7.0.53) <6e75a9b5-a346-3e85-bcc4-ca9aaf0822ed> /Volumes/VOLUME/*/VisionCore.framework/VisionCore
>        0x14c2fe000 -        0x14ca4afff libfaceCore.dylib (*) <bd836db9-ddf1-3b15-916b-10e7bc7b10bc> /Volumes/VOLUME/*/Vision.framework/libfaceCore.dylib
>        0x13d223000 -        0x13d23cfff com.apple.Futhark (1.0) <3553907a-7ce8-3b4a-a95c-99ae8dc6b1ab> /Volumes/VOLUME/*/Futhark.framework/Futhark
>        0x14803d000 -        0x1480befff com.apple.acg.InertiaCam (1.0) <0e3ce57b-b1ca-3245-a3c5-a85827cf1e71> /Volumes/VOLUME/*/InertiaCam.framework/InertiaCam
>        0x14ccb3000 -        0x14d0d5fff com.apple.CoreML (1.0) <209801d4-c865-3f87-89d3-35369779c83d> /Volumes/VOLUME/*/CoreML.framework/CoreML
>        0x14b8e4000 -        0x14bb43fff com.apple.TextRecognition (1.0) <0385aacb-84cb-3776-a10b-95e184e46989> /Volumes/VOLUME/*/TextRecognition.framework/TextRecognition
>        0x14fae2000 -        0x150812fff com.apple.vision.EspressoFramework (1.0) <c149c00d-4c97-3e09-8e3e-0bc9fe2cd540> /Volumes/VOLUME/*/Espresso.framework/Espresso
>        0x13f2f7000 -        0x13f310fff com.apple.mlcompiler.services (3304.5.1) <32168188-25d5-3684-8a68-62affb447bf3> /Volumes/VOLUME/*/MLCompilerServices.framework/MLCompilerServices
>        0x1480ef000 -        0x148154fff com.apple.mlcompiler.runtime (3304.5.1) <4aeae527-de26-334b-82aa-dd81884c5847> /Volumes/VOLUME/*/MLCompilerRuntime.framework/MLCompilerRuntime
>        0x14abec000 -        0x14ad0ffff com.apple.CoreML.MLAssetIO (1.0) <2ec63139-0590-32a5-baad-31492c5ca659> /Volumes/VOLUME/*/MLAssetIO.framework/MLAssetIO
>        0x14b320000 -        0x14b425fff com.apple.CVNLP (1.0) <4b6463f3-db88-335e-b934-b3b46273cc54> /Volumes/VOLUME/*/CVNLP.framework/CVNLP
>        0x14b0a7000 -        0x14b23dfff com.apple.LanguageModeling (1.0) <b1264552-b490-3f77-8f21-fb7005de6442> /Volumes/VOLUME/*/LanguageModeling.framework/LanguageModeling
>        0x14b5e0000 -        0x14b63dfff com.apple.NaturalLanguage (1.0) <5a2dbd59-296a-3579-b07b-b5a66bd5af6f> /Volumes/VOLUME/*/NaturalLanguage.framework/NaturalLanguage
>        0x14d3c7000 -        0x14d644fff com.apple.Montreal (1.0) <8a230765-5948-3d15-ba7b-d1478ff2bf90> /Volumes/VOLUME/*/Montreal.framework/Montreal
>        0x142d5b000 -        0x142d8bfff com.apple.CoreEmoji (1.0) <c479a4fc-6771-3025-a83d-ca1e2d9a1fd7> /Volumes/VOLUME/*/CoreEmoji.framework/CoreEmoji
>        0x13f5bb000 -        0x13f5ccfff libcmph.dylib (*) <c90c7e40-8d50-3c3c-88aa-293c443266ef> /Volumes/VOLUME/*/libcmph.dylib
>        0x148280000 -        0x1482cdfff com.apple.AAAFoundationSwift (1.0) <406f7ebe-ffc9-34f0-b8f9-1de7e0311ea8> /Volumes/VOLUME/*/AAAFoundationSwift.framework/AAAFoundationSwift
>        0x14b69a000 -        0x14b788fff com.apple.RemoteUI (1.0) <e13f3de4-28d6-3342-8900-2d04eefc96e2> /Volumes/VOLUME/*/RemoteUI.framework/RemoteUI
>        0x13fe49000 -        0x13fe53fff com.apple.xpc.AppServerSupport (1.0) <56068545-b725-3033-9aac-98f366947217> /Volumes/VOLUME/*/AppServerSupport.framework/AppServerSupport
>        0x14ae7b000 -        0x14aecdfff com.apple.CorePrediction (1.0) <7dc163ba-2b09-387e-921d-a821b319adb2> /Volumes/VOLUME/*/CorePrediction.framework/CorePrediction
>        0x14c10b000 -        0x14c21ffff com.apple.PDFKit (1.0) <82004df0-c822-3a9e-8290-17b578688ef8> /Volumes/VOLUME/*/PDFKit.framework/PDFKit
>        0x14b460000 -        0x14b4c5fff com.apple.Safari.SafeBrowsing (8618) <dc9912cd-d691-3d51-ab6c-902676eee925> /Volumes/VOLUME/*/SafariSafeBrowsing.framework/SafariSafeBrowsing
>        0x14bf12000 -        0x14bf9ffff com.apple.InstallCoordination (1.0) <5a4cf8fe-7d90-3aa3-a3cd-fb9d37adefb4> /Volumes/VOLUME/*/InstallCoordination.framework/InstallCoordination
>        0x14bd1b000 -        0x14bdc6fff com.apple.AppStoreDaemon (1.0) <f84ff295-0d7c-3a1f-a88e-e05ff4b2b144> /Volumes/VOLUME/*/AppStoreDaemon.framework/AppStoreDaemon
>        0x149b2b000 -        0x149b4afff com.apple.ServiceExtensions (1.0) <14017e17-22e9-3b05-9f12-e326655bac55> /Volumes/VOLUME/*/ServiceExtensions.framework/ServiceExtensions
>        0x14b296000 -        0x14b2b9fff com.apple.BrowserEngineKit (1.0) <99cac446-dabb-3106-8973-0be5bb9c42e8> /Volumes/VOLUME/*/BrowserEngineKit.framework/BrowserEngineKit
>        0x13714c000 -        0x137150fff com.apple.CoreOptimization (1.0) <0868883b-8e10-36b1-99c3-d9702174eef9> /Volumes/VOLUME/*/CoreOptimization.framework/CoreOptimization
>        0x13a9a5000 -        0x13a9a5fff com.apple.CorePDF (5.0) <234295f0-15ef-315a-b5ee-7aab28bdf8bc> /Volumes/VOLUME/*/CorePDF.framework/CorePDF
>        0x13c1a0000 -        0x13c1a5fff com.apple.RevealCore (1.0) <cab6a34f-9642-3efe-b2e8-5ee4fb91f2ca> /Volumes/VOLUME/*/RevealCore.framework/RevealCore
>        0x1420e9000 -        0x1420f8fff com.apple.coretelephony.CTCarrierSpace (1.0) <2bd15832-96b1-3bbe-a5cb-4218d4b99a48> /Volumes/VOLUME/*/CTCarrierSpace.framework/CTCarrierSpace
>        0x13a80a000 -        0x13a80cfff com.apple.ServiceExtensionsCore (1.0) <e5ad14ef-558d-342f-89a2-a714c93346b4> /Volumes/VOLUME/*/ServiceExtensionsCore.framework/ServiceExtensionsCore
>        0x13be9c000 -        0x13be9efff com.apple.BrowserEngineCore (1.0) <c66a1f7a-3afa-3f46-ad61-ea71438c734e> /Volumes/VOLUME/*/BrowserEngineCore.framework/BrowserEngineCore
>        0x14da2c000 -        0x14db5efff com.apple.LiftUI (1.2) <964e7169-e4f7-3edb-b83a-1c7f227559f4> /Volumes/VOLUME/*/LiftUI.framework/LiftUI
>        0x1400fc000 -        0x140108fff libswiftObservation.dylib (*) <9a79180c-88f6-3477-8892-cf19b7cfc7f6> /Volumes/VOLUME/*/libswiftObservation.dylib
>        0x14c006000 -        0x14c06ffff com.apple.AXRuntime (1.0.0) <6edf59f3-fa87-3e07-a038-ad403ae4d251> /Volumes/VOLUME/*/AXRuntime.framework/AXRuntime
>        0x14b841000 -        0x14b859fff com.apple.RecapPerformanceTesting (17) <8e28c7a2-b825-3fe5-8a49-1bfb3da43329> /Volumes/VOLUME/*/RecapPerformanceTesting.framework/RecapPerformanceTesting
>        0x14b53e000 -        0x14b57cfff com.apple.AttributeGraph (5.4.16) <dd9623e5-12af-32ca-ae42-17bbf21ad1c7> /Volumes/VOLUME/*/AttributeGraph.framework/AttributeGraph
>        0x14d781000 -        0x14d7b2fff libswiftCoreML.dylib (*) <ab050270-2da0-3412-9be5-7a1ee6957969> /Volumes/VOLUME/*/libswiftCoreML.dylib
>        0x140171000 -        0x140177fff libswiftVision.dylib (*) <2876f3b0-0898-30a3-bb40-d8c8f2401e12> /Volumes/VOLUME/*/libswiftVision.dylib
>        0x13d24c000 -        0x13d24efff libAXSafeCategoryBundle.dylib (*) <6dc5abd9-b49c-3e4f-ab52-2f94e4172661> /Volumes/VOLUME/*/libAXSafeCategoryBundle.dylib
>        0x14b2e3000 -        0x14b2fdfff com.apple.cryptokit.Chirp (1.0) <35e350f6-2237-34b9-9165-5c9ee2c50a13> /Volumes/VOLUME/*/Chirp.framework/Chirp
>        0x14d68a000 -        0x14d6e5fff com.apple.RemoteManagement (1.0) <1dd85e59-887a-3d74-912c-25d502b0e574> /Volumes/VOLUME/*/RemoteManagement.framework/RemoteManagement
>        0x14dc18000 -        0x14dc7dfff com.apple.RemoteManagementModel (1.0) <d31f87cc-e847-30c7-8476-20c2ceb21a8e> /Volumes/VOLUME/*/RemoteManagementModel.framework/RemoteManagementModel
>        0x14d8f4000 -        0x14d92efff com.apple.RemoteManagementStore (1.0) <17d86dfd-1780-36ca-8edb-4537ee673544> /Volumes/VOLUME/*/RemoteManagementStore.framework/RemoteManagementStore
>        0x147cdc000 -        0x147ce6fff com.apple.RemoteManagementProtocol (1.0) <c605babf-980f-3ef3-ad61-774bb5ee0230> /Volumes/VOLUME/*/RemoteManagementProtocol.framework/RemoteManagementProtocol
>        0x14b883000 -        0x14b8b0fff com.apple.AppSupportUI (1.0) <3d5a8c0f-e9fe-3d0d-bf3b-86e8469ce67b> /Volumes/VOLUME/*/AppSupportUI.framework/AppSupportUI
>        0x14b5b4000 -        0x14b5c2fff com.apple.PersonaUI (1.0) <cfba18ba-0527-30a9-b37e-3000af3d661d> /Volumes/VOLUME/*/PersonaUI.framework/PersonaUI
>        0x13f323000 -        0x13f327fff com.apple.communicationsfilter (10.0) <236018b6-742e-3a76-a3ee-e3b58f53550e> /Volumes/VOLUME/*/CommunicationsFilter.framework/CommunicationsFilter
>        0x14bea9000 -        0x14bec1fff com.apple.contacts.donation (1.0) <8ba3719b-4f44-3c33-be4c-bc38b6a18ce9> /Volumes/VOLUME/*/ContactsDonation.framework/ContactsDonation
>        0x14df32000 -        0x14df83fff com.apple.EmojiFoundation (1.0) <8648848b-f266-32cf-bb11-635fd07d92bc> /Volumes/VOLUME/*/EmojiFoundation.framework/EmojiFoundation
>        0x14dd1d000 -        0x14ddb3fff com.apple.Contacts.ContactsUICore (1.0) <44ff3543-41d6-3cba-be75-c3249049bb95> /Volumes/VOLUME/*/ContactsUICore.framework/ContactsUICore
>        0x14beeb000 -        0x14bef8fff com.apple.SensitiveContentAnalysisUI (1.0) <b3ea0a0f-90e2-3529-9b40-4e53a48dbc96> /Volumes/VOLUME/*/SensitiveContentAnalysisUI.framework/SensitiveContentAnalysisUI
>        0x148305000 -        0x14830dfff com.apple.SensitiveContentAnalysis (1.0) <f3caa9ee-aaa4-3a4b-a1a5-09b84d78744a> /Volumes/VOLUME/*/SensitiveContentAnalysis.framework/SensitiveContentAnalysis
>        0x14e2b2000 -        0x14e397fff com.apple.findmy.framework.FindMyLocate (1.0) <9d829fe0-ea89-36bf-8997-847dfd27d8aa> /Volumes/VOLUME/*/FindMyLocate.framework/FindMyLocate
>        0x14af00000 -        0x14af06fff com.apple.MonogramPoster (1.0) <3f573fdf-e633-3f0b-a29c-114202b748fb> /Volumes/VOLUME/*/MonogramPoster.framework/MonogramPoster
>        0x14d7fd000 -        0x14d854fff com.apple.TemplateKit (1.0) <f6112447-9cc0-35c1-9ddd-84a889fcf728> /Volumes/VOLUME/*/TemplateKit.framework/TemplateKit
>        0x14d968000 -        0x14d9b1fff com.apple.TipsNext (8.0) <2f4896dd-311e-303e-9882-bac08b72c922> /Volumes/VOLUME/*/TipsNext.framework/TipsNext
>        0x14e035000 -        0x14e15cfff com.apple.PhotosFormats (1.0) <71efd6e1-310e-37c9-8e3a-39a44f70a184> /Volumes/VOLUME/*/PhotosFormats.framework/PhotosFormats
>        0x14c0d1000 -        0x14c0dafff libswiftIntents.dylib (*) <d1bf2e4c-8e1e-3202-a177-df1dd797b15c> /Volumes/VOLUME/*/libswiftIntents.dylib
>        0x14d8ad000 -        0x14d8b8fff com.apple.PersonaKit (1.0) <1cd8c694-196e-31a0-ad49-fd6191f5b4bb> /Volumes/VOLUME/*/PersonaKit.framework/PersonaKit
>        0x14de72000 -        0x14debbfff com.apple.Transparency (1.0) <b91608e0-ccb5-3a97-ad5d-3825d41643fd> /Volumes/VOLUME/*/Transparency.framework/Transparency
>        0x14ec13000 -        0x14ee51fff com.apple.CoreDuet (1.0) <6ba91f1c-6bbb-37fb-9ee2-e9562dcb51e7> /Volumes/VOLUME/*/CoreDuet.framework/CoreDuet
>        0x14d72b000 -        0x14d738fff com.apple.corerecents (1.0) <3740d996-55b4-304a-a0ae-e0dafa7cf69a> /Volumes/VOLUME/*/CoreRecents.framework/CoreRecents
>        0x14e551000 -        0x14e5acfff com.apple.osanalytics.OSAnalytics (1.0) <ff392bd1-a9cb-33b8-a109-627de546a317> /Volumes/VOLUME/*/OSAnalytics.framework/OSAnalytics
>        0x135c6c000 -        0x135c6dfff com.apple.CoreDuetDaemonProtocol (1.0) <83eefe3a-d9f1-3cd7-a3f8-0aa49424d585> /Volumes/VOLUME/*/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
>        0x14e4cc000 -        0x14e4f7fff com.apple.CoreFollowUp (1.0) <1fb17c0c-cf49-3d9b-a4d3-7d35a3d9643b> /Volumes/VOLUME/*/CoreFollowUp.framework/CoreFollowUp
>        0x141670000 -        0x141672fff com.apple.ftclientservices (10.0) <80957513-63f5-3faf-aacc-52a5b0ca8d89> /Volumes/VOLUME/*/FTClientServices.framework/FTClientServices
>        0x14e402000 -        0x14e425fff com.apple.ManagedSettingsObjC (150) <23f1108b-cdaf-38ae-b59e-cda0fcddc335> /Volumes/VOLUME/*/ManagedSettingsObjC.framework/ManagedSettingsObjC
>        0x14c0f1000 -        0x14c0fcfff com.apple.findmy.framework.FindMyCommon (1.0) <42bdd5ec-f233-3eaf-9940-c6f17ca46da0> /Volumes/VOLUME/*/FindMyCommon.framework/FindMyCommon
>        0x14e796000 -        0x14e817fff com.apple.findmy.framework.FindMyBase (1.0) <675e329a-54b9-3c3e-8454-663981b7e1d5> /Volumes/VOLUME/*/FindMyBase.framework/FindMyBase
>        0x14e5f7000 -        0x14e670fff com.apple.TrialProto (1.0) <174ec652-1fa5-3a96-92ba-dd9ceb4f6ac7> /Volumes/VOLUME/*/TrialProto.framework/TrialProto
>        0x14f020000 -        0x14f0d3fff com.apple.trial (1.0) <67bf30de-d269-3cf8-b811-0794ec60aab6> /Volumes/VOLUME/*/Trial.framework/Trial
>        0x14d9e5000 -        0x14d9fefff com.apple.siri.flatbuffer.AppleFlatBuffers (*) <c474ea5d-c1e0-3e0d-b8f7-cfc71a30ec96> /Volumes/VOLUME/*/AppleFlatBuffers.framework/AppleFlatBuffers
>        0x14eac1000 -        0x14eb92fff com.apple.TipKitCore (8.0) <e0c1d751-d6a0-3d8e-b13a-2425bb189bb1> /Volumes/VOLUME/*/TipKitCore.framework/TipKitCore
>        0x14f17f000 -        0x14f22bfff com.apple.MMCS (1.3) <e35daf13-c081-3d72-86a5-29e89bd667f9> /Volumes/VOLUME/*/MMCS.framework/MMCS
>        0x14d756000 -        0x14d761fff com.apple.PhotoFoundation (9.0) <98273f91-8d70-301e-88f1-5f5e8569adf5> /Volumes/VOLUME/*/PhotoFoundation.framework/PhotoFoundation
>        0x14e70e000 -        0x14e759fff com.apple.CacheDelete (1.0) <551cf1c5-47b0-3e81-9639-a77774694365> /Volumes/VOLUME/*/CacheDelete.framework/CacheDelete
>        0x14e9c8000 -        0x14ea17fff com.apple.ChunkingLibrary (2150.13.1) <9acfca72-7da1-3042-9eea-3b161d0f3c6a> /Volumes/VOLUME/*/ChunkingLibrary.framework/ChunkingLibrary
>        0x14e463000 -        0x14e481fff com.apple.AssetCacheServices (134) <f4eef72f-3495-35eb-a861-d73a5a032e1f> /Volumes/VOLUME/*/AssetCacheServices.framework/AssetCacheServices
>        0x14d8cd000 -        0x14d8cffff com.apple.corebrightness (1.0) <0999cb29-15d7-3138-b709-273916c667e1> /Volumes/VOLUME/*/CoreBrightness.framework/CoreBrightness
>        0x14e932000 -        0x14e95afff com.apple.NetAppsUtilities (1.0) <29a009af-9627-3664-be9a-a5ccc65eee60> /Volumes/VOLUME/*/NetAppsUtilities.framework/NetAppsUtilities
>        0x14e8d7000 -        0x14e8ecfff com.apple.settingsandcoreapps.SettingsFoundation (1.0) <77fcec93-e46e-3523-9f09-ed8febe472b7> /Volumes/VOLUME/*/SettingsFoundation.framework/SettingsFoundation
>        0x14e86a000 -        0x14e89cfff libAWDSupport.dylib (*) <e1b9254c-eaae-332d-9535-d56fcdb6b709> /Volumes/VOLUME/*/libAWDSupport.dylib
>        0x14e98d000 -        0x14e99dfff libprotobuf-lite.dylib (*) <d0449ef4-ab25-3222-b269-560f0c802f82> /Volumes/VOLUME/*/libprotobuf-lite.dylib
>        0x14f42d000 -        0x14f487fff libprotobuf.dylib (*) <e140bb9e-04be-3b2c-b5ad-112c77695c7d> /Volumes/VOLUME/*/libprotobuf.dylib
>        0x14f4f0000 -        0x14f78dfff com.apple.Safari.Shared (8618) <7788aa88-3dc8-3875-bddf-a25c7687df08> /Volumes/VOLUME/*/SafariShared.framework/SafariShared
>        0x14f29a000 -        0x14f2f1fff com.apple.WebBookmarksSwift (17.5) <d90fe318-8eb0-3c54-b5d3-76780d871da2> /Volumes/VOLUME/*/WebBookmarksSwift.framework/WebBookmarksSwift
>        0x1512d3000 -        0x1513b4fff com.apple.siri.parsec.CoreParsec (1.0) <e742af18-03da-3b7f-a061-3c24ac221598> /Volumes/VOLUME/*/CoreParsec.framework/CoreParsec
>        0x15246c000 -        0x1528d4fff com.apple.SearchFoundation (1.0) <e0baa9a1-6349-3a64-8a59-884dedf7e8a5> /Volumes/VOLUME/*/SearchFoundation.framework/SearchFoundation
>        0x14ea73000 -        0x14ea8bfff com.apple.contextkit.ContextKit (1.0) <713ac9a2-604d-3e93-ba23-3ebb387a3354> /Volumes/VOLUME/*/ContextKit.framework/ContextKit
>        0x150f1d000 -        0x150f53fff com.apple.UsageTracking (3.0) <cd94fe7a-9570-3a9c-963f-db94ad073218> /Volumes/VOLUME/*/UsageTracking.framework/UsageTracking
>        0x1514a1000 -        0x151553fff com.apple.ScreenTimeCore (3.0) <8c52771a-e112-3a54-a0ff-1e32b30a32f7> /Volumes/VOLUME/*/ScreenTimeCore.framework/ScreenTimeCore
>        0x14f9d4000 -        0x14fa29fff com.apple.CloudSubscriptionFeatures (1.0) <45e2a60a-bd89-3158-a3ac-6f94b982159f> /Volumes/VOLUME/*/CloudSubscriptionFeatures.framework/CloudSubscriptionFeatures
>        0x150f7e000 -        0x151124fff com.apple.framework.calculate (1.4) <62006a93-f458-345f-adeb-fe4dd6e48721> /Volumes/VOLUME/*/Calculate.framework/Calculate
>        0x1548ee000 -        0x155283fff com.apple.PegasusAPI (1.0) <0b4aa25e-a763-3b21-b43d-639044285d10> /Volumes/VOLUME/*/PegasusAPI.framework/PegasusAPI
>        0x14d8de000 -        0x14d8e2fff com.apple.contextkit.ContextKitCore (1.0) <4f1e1ebc-7ead-338a-a0e4-eb8411dab9f7> /Volumes/VOLUME/*/ContextKitCore.framework/ContextKitCore
>        0x151157000 -        0x1511bcfff com.apple.Catalyst (1.0) <615a2aaa-9856-3004-abb1-7ad906ab8c98> /Volumes/VOLUME/*/Catalyst.framework/Catalyst
>        0x14e284000 -        0x14e295fff com.apple.framework.ctcategories (1.0) <85f3e2d1-5e42-3e8d-998c-3a60400fc284> /Volumes/VOLUME/*/Categories.framework/Categories
>        0x151762000 -        0x1517b4fff com.apple.coreduetcontext (1.0) <65767358-82a0-3765-a149-1be229a05d3a> /Volumes/VOLUME/*/CoreDuetContext.framework/CoreDuetContext
>        0x15180b000 -        0x151bbdfff com.apple.MediaRemote (1.0) <2dbac831-6d62-318e-a6e1-18a258ff0be3> /Volumes/VOLUME/*/MediaRemote.framework/MediaRemote
>        0x151606000 -        0x151682fff com.apple.MediaServices (1.0) <700b3b03-3a6e-3c7c-a70d-1860b36441b1> /Volumes/VOLUME/*/MediaServices.framework/MediaServices
>        0x14f3d2000 -        0x14f3f9fff com.apple.persistentconnection (1.0) <d6d695e5-2be1-3f21-aa7d-4b0343957efa> /Volumes/VOLUME/*/PersistentConnection.framework/PersistentConnection
>        0x14da16000 -        0x14da1bfff com.apple.imtransferservices (10.0) <dc23ce85-a6f6-3023-b599-024c243a0bb2> /Volumes/VOLUME/*/IMTransferServices.framework/IMTransferServices
>        0x142dc4000 -        0x142dc7fff com.apple.incomingcallfilter (10.0) <6fcb5719-29bc-309e-88c6-bd6f449729ab> /Volumes/VOLUME/*/IncomingCallFilter.framework/IncomingCallFilter
>        0x152ca9000 -        0x152cf7fff com.apple.calls.NeighborhoodActivityConduit (1.0) <f7824dbf-e2c7-39f5-b099-5f09751c8e9a> /Volumes/VOLUME/*/NeighborhoodActivityConduit.framework/NeighborhoodActivityConduit
>        0x151f33000 -        0x15204bfff com.apple.ConfigurationEngineModel (1.0) <cc5e488e-733f-3460-9237-29834b660e74> /Volumes/VOLUME/*/ConfigurationEngineModel.framework/ConfigurationEngineModel
>        0x152388000 -        0x15240bfff com.apple.DeviceActivity (3.0) <6a082d61-6b24-38eb-9a77-b945c5c0be41> /Volumes/VOLUME/*/DeviceActivity.framework/DeviceActivity
>        0x15220e000 -        0x152294fff com.apple.ManagedSettings (150) <d2f41cc8-96f5-3cde-b469-093c0ff1f885> /Volumes/VOLUME/*/ManagedSettings.framework/ManagedSettings
>        0x14df14000 -        0x14df1efff com.apple.ManagedSettingsSupport (150) <5bb9a216-2342-335c-8236-b8e9b7073f4b> /Volumes/VOLUME/*/ManagedSettingsSupport.framework/ManagedSettingsSupport
>        0x142117000 -        0x142119fff com.apple.OAuth (25) <1bd306ef-ffa9-34d5-99a2-d4a8a61b208d> /Volumes/VOLUME/*/OAuth.framework/OAuth
>        0x15399d000 -        0x153b2afff com.apple.GroupActivities (1) <ad1ea757-9cd1-386f-91b3-54b1530679e9> /Volumes/VOLUME/*/GroupActivities.framework/GroupActivities
>        0x153078000 -        0x1530e1fff com.apple.Pegasus (1.0) <0dbbec95-5f46-365d-a9c6-9992064b77bc> /Volumes/VOLUME/*/Pegasus.framework/Pegasus
>        0x14fa5e000 -        0x14fa90fff com.apple.cloudkit.CloudKitCode (1.0) <1e116671-3326-398b-adbb-a3042aada9d3> /Volumes/VOLUME/*/CloudKitCode.framework/CloudKitCode
>        0x156d2c000 -        0x157036fff com.apple.CopresenceCore (1) <0ab12ec5-e8a1-35a3-90d0-1180aca6d189> /Volumes/VOLUME/*/CopresenceCore.framework/CopresenceCore
>        0x15123a000 -        0x15128ffff com.apple.cloudkit.CloudAsset (*) <a0e6f5e3-ec6d-39d5-9dd2-153ffe1608d9> /Volumes/VOLUME/*/CloudAsset.framework/CloudAsset
>        0x15314d000 -        0x1531acfff com.apple.CarKit (1.0) <270847bd-d6b5-39f6-913c-84a783f22cfb> /Volumes/VOLUME/*/CarKit.framework/CarKit
>        0x1557b5000 -        0x155eebfff com.apple.AVConference (3.0) <53296b15-01af-323b-9281-1ffa3179d8c8> /Volumes/VOLUME/*/AVConference.framework/AVConference
>        0x151705000 -        0x151729fff com.apple.StatusKit (1.0) <6e8fd324-e08c-3e45-b762-cb17c379bb04> /Volumes/VOLUME/*/StatusKit.framework/StatusKit
>        0x152eba000 -        0x152ed4fff com.apple.ExternalAccessory (1.0.0) <771a7f9d-4966-341e-acbf-675fe80ddfc1> /Volumes/VOLUME/*/ExternalAccessory.framework/ExternalAccessory
>        0x152efd000 -        0x152f15fff com.apple.IAP (1.0) <1a38b9ab-3973-3bfe-81c2-866f1a8050e2> /Volumes/VOLUME/*/IAP.framework/IAP
>        0x1522de000 -        0x15231cfff com.apple.ICE (3.0) <f70e48a2-bbde-3993-aae1-080588e91072> /Volumes/VOLUME/*/AVConference.framework/Frameworks/ICE.framework/ICE
>        0x137406000 -        0x137406fff com.apple.LegacyHandle (3.0) <cc05a773-a4a4-3e26-aa90-3b07c94aaa4f> /Volumes/VOLUME/*/AVConference.framework/Frameworks/LegacyHandle.framework/LegacyHandle
>        0x14e4a3000 -        0x14e4a9fff com.apple.SimpleKeyExchange (3.0) <c17a25f9-4d4e-3e4a-b3f0-647e9eaf5283> /Volumes/VOLUME/*/AVConference.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
>        0x13a7b8000 -        0x13a7b8fff com.apple.snatmap (3.0) <7422625f-93b6-329e-93c6-b17b0096e4dd> /Volumes/VOLUME/*/AVConference.framework/Frameworks/snatmap.framework/snatmap
>        0x153504000 -        0x1535bdfff com.apple.ViceroyTrace (3.0) <15fafd97-751b-3fca-abab-4ae5838a0c31> /Volumes/VOLUME/*/AVConference.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
>        0x152333000 -        0x15234bfff com.apple.MaterialKit (1.0) <abaf252e-063c-3ed0-bc92-6591e0b7e28b> /Volumes/VOLUME/*/MaterialKit.framework/MaterialKit
>        0x153220000 -        0x15340dfff com.apple.ModelIO (265.2.3) <424509d2-fc4b-348d-8c09-fefcd372968d> /Volumes/VOLUME/*/ModelIO.framework/ModelIO
>        0x152fc9000 -        0x152fe5fff com.apple.MetalKit (165.2) <01865f20-23ec-388a-bbf6-52692451acad> /Volumes/VOLUME/*/MetalKit.framework/MetalKit
>        0x153668000 -        0x1538e7fff com.apple.CoreHandwriting (161) <2ee3dcf7-39d1-32f1-a3ae-8a1c28fc8788> /Volumes/VOLUME/*/CoreHandwriting.framework/CoreHandwriting
>        0x152f3c000 -        0x152f68fff com.apple.BaseBoardUI (652.301) <9cde1084-cf98-33c3-9467-eff6c4be6160> /Volumes/VOLUME/*/BaseBoardUI.framework/BaseBoardUI
>        0x159b81000 -        0x15a835fff libusd_ms.dylib (*) <d2ebe07f-14f3-3331-a2a7-45679ca734c6> /Volumes/VOLUME/*/libusd_ms.dylib
>        0x13c130000 -        0x13c130fff com.apple.USDLib_FormatLoaderProxy (1.0) <3d03f04b-02d0-3486-8df2-d5477e7383d7> /Volumes/VOLUME/*/USDLib_FormatLoaderProxy.framework/USDLib_FormatLoaderProxy
>        0x1541c9000 -        0x1542b1fff com.apple.ProofReader (2.4) <d76c9518-1a2a-3980-a120-eec6fa81a9b8> /Volumes/VOLUME/*/ProofReader.framework/ProofReader
>        0x154322000 -        0x1545c0fff libmecabra.dylib (*) <d9bbd622-39ae-3a4d-91ad-db11552d725a> /Volumes/VOLUME/*/libmecabra.dylib
>        0x14e4b7000 -        0x14e4b9fff com.apple.ConstantClasses (1.0) <f910294d-3b24-383c-aff7-1654cfd18ea3> /Volumes/VOLUME/*/ConstantClasses.framework/ConstantClasses
>        0x14e52b000 -        0x14e530fff libChineseTokenizer.dylib (*) <1dd4cbc4-3a10-395d-87a2-5d13170fef0a> /Volumes/VOLUME/*/libChineseTokenizer.dylib
>        0x154689000 -        0x15470bfff com.apple.EmailCore (11.0) <614ddc09-ecd6-324e-90f3-8360810d28fd> /Volumes/VOLUME/*/EmailCore.framework/EmailCore
>        0x153f18000 -        0x154014fff com.apple.Email (11.0) <a666179e-ab9b-3417-bc4e-5a14987d8eb5> /Volumes/VOLUME/*/Email.framework/Email
>        0x14e8b4000 -        0x14e8befff com.apple.EmailAddressing (11.0) <0126ebdd-9cf4-37bc-8745-d99245a0af48> /Volumes/VOLUME/*/EmailAddressing.framework/EmailAddressing
>        0x15410d000 -        0x154156fff com.apple.contacts.ContactsAutocomplete (1.0) <9bf8d32b-ef63-3885-ae53-990a7704a200> /Volumes/VOLUME/*/ContactsAutocomplete.framework/ContactsAutocomplete
>        0x15632a000 -        0x156378fff com.apple.MIME (2.0) <b9b5346b-8faa-3897-8af5-be009a324ba9> /Volumes/VOLUME/*/MIME.framework/MIME
>        0x154790000 -        0x15481bfff com.apple.EmailFoundation (11.0) <36ea4270-ab68-3d8d-87ff-bcf615a26be2> /Volumes/VOLUME/*/EmailFoundation.framework/EmailFoundation
>        0x153009000 -        0x153036fff com.apple.GSS (4.0) <7ea90aeb-5dba-3c08-9978-e7def5fb2624> /Volumes/VOLUME/*/GSS.framework/GSS
>        0x1548b6000 -        0x1548cbfff com.apple.performance.DiagnosticRequest (1.4) <428442d7-58fa-32de-9683-8ef6364f33ec> /Volumes/VOLUME/*/DiagnosticRequest.framework/DiagnosticRequest
>        0x156539000 -        0x1565acfff com.apple.Heimdal (4.0) <31e2a946-a2fa-3b52-b65c-d0491e70670b> /Volumes/VOLUME/*/Heimdal.framework/Heimdal
>        0x14e53f000 -        0x14e546fff com.apple.CommonAuth (4.0) <ed48b0a4-1023-33a7-8717-e371ba840fd7> /Volumes/VOLUME/*/CommonAuth.framework/CommonAuth
>        0x1568f1000 -        0x1569c4fff com.apple.NetworkServiceProxyFramework (1.0) <5cf5f87c-65ca-3954-bd44-3f66faee6e1e> /Volumes/VOLUME/*/NetworkServiceProxy.framework/NetworkServiceProxy
>        0x1565ed000 -        0x1566befff libboringssl.dylib (*) <dd4b7a30-daf3-34fc-8c07-1d43f008f5fd> /Volumes/VOLUME/*/libboringssl.dylib
>        0x153481000 -        0x1534dffff libusrtcp.dylib (*) <1acbce6f-3e10-3892-a285-4f67ec4b7dc1> /Volumes/VOLUME/*/libusrtcp.dylib
>        0x1564ba000 -        0x1564f3fff com.apple.awd (1.0) <02780057-86cf-37c3-a795-6ac7afbfc80c> /Volumes/VOLUME/*/WirelessDiagnostics.framework/WirelessDiagnostics
>        0x156a71000 -        0x156b8dfff libAWDSupportFramework.dylib (*) <4a5bc7cb-2330-3def-a873-9b2e0a4d12ec> /Volumes/VOLUME/*/libAWDSupportFramework.dylib
>        0x14e9bc000 -        0x14e9bdfff com.apple.MessageSupport (1.0) <11c8b422-c1f4-32d8-b290-e83fa62e8575> /Volumes/VOLUME/*/MessageSupport.framework/MessageSupport
>        0x15644c000 -        0x156463fff com.apple.MailServices (1.0) <b8996432-3e2b-3152-81ac-03f70ebaa743> /Volumes/VOLUME/*/MailServices.framework/MailServices
>        0x15b066000 -        0x15bc13fff com.apple.Message (2.0) <897928cf-dac7-3f4b-a7c4-7fa2e3ce9925> /Volumes/VOLUME/*/Message.framework/Message
>        0x1563c7000 -        0x1563e9fff com.apple.VisionKit (1.0) <2d935326-fb09-3979-b534-11807731eea2> /Volumes/VOLUME/*/VisionKit.framework/VisionKit
>        0x156786000 -        0x1567effff com.apple.DoNotDisturb (1.0) <285e1744-589b-34b3-98f9-e751215c6768> /Volumes/VOLUME/*/DoNotDisturb.framework/DoNotDisturb
>        0x15685c000 -        0x15687bfff com.apple.MailSupport (11.0) <36939913-d7d5-3bda-8ef0-d6a8ae5268d6> /Volumes/VOLUME/*/MailSupport.framework/MailSupport
>        0x157979000 -        0x1579cffff com.apple.Synapse (1.0) <f0647bb2-f860-3959-8447-3d9817464bf4> /Volumes/VOLUME/*/Synapse.framework/Synapse
>        0x1577fe000 -        0x157864fff com.apple.dataaccess.framework (1.0) <fc0c9822-0ea6-30d9-9482-97d1e5c757f6> /Volumes/VOLUME/*/DataAccess.framework/DataAccess
>        0x1583a2000 -        0x15865cfff com.apple.EmailDaemon (1.0) <79b2bcc6-7c67-387c-b0f6-ea9edcf8bdb4> /Volumes/VOLUME/*/EmailDaemon.framework/EmailDaemon
>        0x158855000 -        0x158a24fff com.apple.eventkit (1.0.0) <76b48932-fd69-3d29-9144-139808294bd5> /Volumes/VOLUME/*/EventKit.framework/EventKit
>        0x1578c7000 -        0x1578edfff libswiftSwiftOnoneSupport.dylib (*) <cebdcb01-e375-30fe-b6bc-028181c33d4b> /Volumes/VOLUME/*/libswiftSwiftOnoneSupport.dylib
>        0x157ae0000 -        0x157af7fff libswiftSystem.dylib (*) <78be0b4d-1c6d-3ab1-97ab-d35dfb1248c1> /Volumes/VOLUME/*/libswiftSystem.dylib
>        0x157caf000 -        0x157d15fff com.apple.UserActivity (551) <8c27e030-d5e9-3275-86d1-7942ad683eaa> /Volumes/VOLUME/*/UserActivity.framework/UserActivity
>        0x156cdb000 -        0x156cfefff com.apple.Notes (2.11) <d4e9c1e6-54a1-3c6b-8b7a-e1497fb277f6> /Volumes/VOLUME/*/Notes.framework/Notes
>        0x157b38000 -        0x157bc1fff com.apple.CalendarFoundation (8.0) <a722dfcb-3ea7-3529-82b5-3e73be15ba82> /Volumes/VOLUME/*/CalendarFoundation.framework/CalendarFoundation
>        0x158130000 -        0x158244fff com.apple.CalendarDatabase (1.0) <cd26c54f-c82a-317b-9e70-6c23adf6b50d> /Volumes/VOLUME/*/CalendarDatabase.framework/CalendarDatabase
>        0x157f83000 -        0x15800afff com.apple.coredav (1.0.1) <d26e9cf1-3922-3e23-9226-2b258a971bbd> /Volumes/VOLUME/*/CoreDAV.framework/CoreDAV
>        0x14e906000 -        0x14e914fff com.apple.NotesUIServices (1.0) <d7fb30c9-1175-3978-9edc-737427c706ba> /Volumes/VOLUME/*/NotesUIServices.framework/NotesUIServices
>        0x158b9d000 -        0x158bfffff com.apple.NotesSupport (2.11) <11ed3cf9-201e-325e-87af-25eb660d051f> /Volumes/VOLUME/*/NotesSupport.framework/NotesSupport
>        0x1593ce000 -        0x15964dfff com.apple.AppIntents (1.0) <8f8a4184-9c02-399e-b48b-993eff7f02cc> /Volumes/VOLUME/*/AppIntents.framework/AppIntents
>        0x157928000 -        0x15794afff com.apple.-AppIntents-SwiftUI (1.0) <f13c6a8c-5375-3643-b363-916d269d4374> /Volumes/VOLUME/*/_AppIntents_SwiftUI.framework/_AppIntents_SwiftUI
>        0x157d68000 -        0x157e41fff com.apple.LinkServices (1.0) <4c1e20e8-af16-398a-b533-c22189b484ea> /Volumes/VOLUME/*/LinkServices.framework/LinkServices
>        0x158c6a000 -        0x158ec8fff com.apple.AssistantServices (1.0) <4669031f-7e5d-3ee4-bbec-004065c72744> /Volumes/VOLUME/*/AssistantServices.framework/AssistantServices
>        0x15917a000 -        0x1592a0fff com.apple.LinkMetadata (1.0) <f6649a1b-6015-3f1c-a511-fa5dc126f08b> /Volumes/VOLUME/*/LinkMetadata.framework/LinkMetadata
>        0x157c53000 -        0x157c74fff com.apple.IntentsCore (1.0) <dbf72203-6d62-3ad7-9967-16c3c88238b8> /Volumes/VOLUME/*/IntentsCore.framework/IntentsCore
>        0x157a2d000 -        0x157a68fff com.apple.siri.koa (1.0) <ee4f123a-bc37-32c4-989d-59e7b882dcd3> /Volumes/VOLUME/*/Koa.framework/Koa
>        0x157eed000 -        0x157f22fff com.apple.IntelligencePlatformLibrary (*) <4b8c96cd-d1c2-35f2-8b0a-11a7a4ae1ceb> /Volumes/VOLUME/*/IntelligencePlatformLibrary.framework/IntelligencePlatformLibrary
>        0x159903000 -        0x159955fff com.apple.biome.CascadeSets (1.0) <5874b735-d8ca-3172-817a-394b6f63381b> /Volumes/VOLUME/*/CascadeSets.framework/CascadeSets
>        0x15c9e6000 -        0x15caa3fff com.apple.SAObjects (1.0) <2fc99fa8-f948-380a-8709-872f696426c2> /Volumes/VOLUME/*/SAObjects.framework/SAObjects
>        0x15f553000 -        0x15fecbfff com.apple.siri.SiriInstrumentation (1.0) <68d8cf19-f7a3-3672-a8da-4f074c679475> /Volumes/VOLUME/*/SiriInstrumentation.framework/SiriInstrumentation
>        0x159794000 -        0x15983ffff com.apple.siri.SiriAnalytics (1.0) <de2d4e4b-c8cd-3917-9020-f72c190bbb94> /Volumes/VOLUME/*/SiriAnalytics.framework/SiriAnalytics
>        0x15c56b000 -        0x15c6cffff com.apple.siri.SiriTTSService (1.0) <c8e12ecf-e553-37d8-bf7b-a4e875ae53f4> /Volumes/VOLUME/*/SiriTTSService.framework/SiriTTSService
>        0x15808d000 -        0x1580d2fff com.apple.crossdevicearbitration (1.0) <72307da3-27ef-3415-a078-d55e63b698e6> /Volumes/VOLUME/*/SiriCrossDeviceArbitration.framework/SiriCrossDeviceArbitration
>        0x15c0be000 -        0x15c122fff com.apple.voiceservices (1.0.0) <a7a39754-31eb-3557-8f47-ede7e0007502> /Volumes/VOLUME/*/VoiceServices.framework/VoiceServices
>        0x157a8b000 -        0x157ab0fff com.apple.skp.FeedbackLogger (1.0) <3dc61886-4a67-3e4f-922a-91a416f29682> /Volumes/VOLUME/*/FeedbackLogger.framework/FeedbackLogger
>        0x152447000 -        0x152457fff com.apple.AtomicsInternal (1.1.0) <d14d5d7f-1333-3222-8bc6-ad7b62fb5302> /Volumes/VOLUME/*/AtomicsInternal.framework/AtomicsInternal
>        0x15830b000 -        0x158323fff com.apple.Osprey (1.0) <0eecd8f1-da48-303f-9720-bdd990694c6e> /Volumes/VOLUME/*/Osprey.framework/Osprey
>        0x1608d3000 -        0x16127bfff com.apple.siri.tts.SiriTTS (1) <6d17b49a-c6fc-3027-8897-2d9979bd08ad> /Volumes/VOLUME/*/SiriTTS.framework/SiriTTS
>        0x152f9e000 -        0x152fa6fff com.apple.siri.SiriPowerInstrumentation (1) <f5ed4f83-70d2-392d-b2e3-691fbf5802a6> /Volumes/VOLUME/*/SiriPowerInstrumentation.framework/SiriPowerInstrumentation
>        0x14ebf1000 -        0x14ebf8fff libswiftNaturalLanguage.dylib (*) <8bb13b0a-2912-32fa-9e47-c44107045021> /Volumes/VOLUME/*/libswiftNaturalLanguage.dylib
>        0x1568b4000 -        0x1568d1fff libedit.3.dylib (*) <b6f8314e-4a1b-3071-9913-2ae340ee481d> /Volumes/VOLUME/*/libedit.3.dylib
>        0x159365000 -        0x159397fff libncurses.5.4.dylib (*) <6f355bd4-981f-30c9-a78c-3cd6de798478> /Volumes/VOLUME/*/libncurses.5.4.dylib
>        0x15c190000 -        0x15c1fdfff com.apple.crossdevicearbitration.feedback (1.0) <aa91a538-badb-3c02-9e9a-2bc371eeaaf9> /Volumes/VOLUME/*/SiriCrossDeviceArbitrationFeedback.framework/SiriCrossDeviceArbitrationFeedback
>        0x15c253000 -        0x15c2dcfff com.apple.UnifiedAssetFramework (1.0) <1e17d809-c869-3b28-aed9-4be8b160860c> /Volumes/VOLUME/*/UnifiedAssetFramework.framework/UnifiedAssetFramework
>        0x15c32f000 -        0x15c38dfff com.apple.CalDAV (8.0) <47636352-1781-33d9-81d7-83dd510172f7> /Volumes/VOLUME/*/CalDAV.framework/CalDAV
>        0x1599b0000 -        0x159a4ffff com.apple.CalendarDaemon (1.0) <8799185b-83b4-3c02-b636-f7a4c3fb2fc1> /Volumes/VOLUME/*/CalendarDaemon.framework/CalendarDaemon
>        0x14fac9000 -        0x14facefff com.apple.SpotlightReceiver (1.0) <756a800c-fe31-3c6c-a7f4-825643f8ba45> /Volumes/VOLUME/*/SpotlightReceiver.framework/SpotlightReceiver
>        0x159af8000 -        0x159b1efff com.apple.MailKit (1.0) <f2d79c13-accb-39f5-a55c-eb5e591dbb48> /Volumes/VOLUME/*/MailKit.framework/MailKit
>        0x15c7b9000 -        0x15c8a1fff com.apple.DocumentCamera (1.0) <37433c51-7717-31a5-b63a-152471f0eee6> /Volumes/VOLUME/*/DocumentCamera.framework/DocumentCamera
>        0x15d343000 -        0x15d469fff com.apple.VisionKitCore (1.0) <c27d0ecf-927f-3847-8df8-40a1248961f9> /Volumes/VOLUME/*/VisionKitCore.framework/VisionKitCore
>        0x15c4b7000 -        0x15c4e4fff com.apple.VisionKit.VisionKitInternal (1.0) <dcd3809b-0e5a-3320-aa72-5682837c79fe> /Volumes/VOLUME/*/VisionKitInternal.framework/VisionKitInternal
>        0x15c405000 -        0x15c446fff com.apple.CameraEditKit (1.0) <5f924f0e-6c35-3f8f-a2e6-7477daf07322> /Volumes/VOLUME/*/CameraEditKit.framework/CameraEditKit
>        0x15c967000 -        0x15c996fff com.apple.MediaAnalysisServices (1.0) <d11089ee-0484-3d2e-83ef-a9df84160a8f> /Volumes/VOLUME/*/MediaAnalysisServices.framework/MediaAnalysisServices
>        0x14eaae000 -        0x14eaaffff libswiftMetalKit.dylib (*) <c6dd7dbe-7c9a-3594-b9ae-6eebd48fb1c3> /Volumes/VOLUME/*/libswiftMetalKit.dylib
>        0x15d595000 -        0x15d68ffff com.apple.PhotoLibraryServicesCore (1.0) <737a1480-454e-37d4-9e88-157b53e432fa> /Volumes/VOLUME/*/PhotoLibraryServicesCore.framework/PhotoLibraryServicesCore
>        0x15ce76000 -        0x15d080fff com.apple.CloudPhotoLibrary (1.0) <a07dccc9-34e2-3eed-a6aa-805a6c65a67f> /Volumes/VOLUME/*/CloudPhotoLibrary.framework/CloudPhotoLibrary
>        0x153972000 -        0x15397efff com.apple.CloudPhotoServices (1.0) <00e26fbb-5246-330d-bef4-8e2437af3637> /Volumes/VOLUME/*/CloudPhotoServices.framework/CloudPhotoServices
>        0x15db36000 -        0x15dc55fff com.apple.CoreMediaStream (1.0) <b6ac2720-48a9-3bfa-8881-bb5d3e25c747> /Volumes/VOLUME/*/CoreMediaStream.framework/CoreMediaStream
>        0x1598b3000 -        0x1598cefff com.apple.CPAnalytics (1.0) <0c1e179f-9069-3b3b-af77-32afb86b1f65> /Volumes/VOLUME/*/CPAnalytics.framework/CPAnalytics
>        0x15d783000 -        0x15d7bbfff com.apple.ImageCaptureCore (1873.5.2.1.1) <a9243a31-e47c-3063-91cb-7c13b7745381> /Volumes/VOLUME/*/ImageCaptureCore.framework/ImageCaptureCore
>        0x15d802000 -        0x15d838fff com.apple.photo.MediaConversionService (9.0) <1842ea05-1723-3ec0-8559-20ef318180e4> /Volumes/VOLUME/*/MediaConversionService.framework/MediaConversionService
>        0x15dd0b000 -        0x15e5f6fff com.apple.PhotoLibraryServices (1.0) <c21356e2-c894-3a59-8839-178594a6df05> /Volumes/VOLUME/*/PhotoLibraryServices.framework/PhotoLibraryServices
>        0x15d879000 -        0x15d8c5fff libswiftDemangle.dylib (*) <e7ac974b-73e4-3013-97b2-4a9f14b21f06> /Volumes/VOLUME/*/libswiftDemangle.dylib
>        0x15c50d000 -        0x15c52bfff com.apple.mediastream (1.0) <9962c59b-4583-314c-a0dc-af86e9ec8729> /Volumes/VOLUME/*/MediaStream.framework/MediaStream
>        0x15d8e0000 -        0x15d9d8fff com.apple.NLP (1.0) <667ae158-affa-374b-bb8f-c2fce41bbb81> /Volumes/VOLUME/*/NLP.framework/NLP
>        0x15da72000 -        0x15daaafff com.apple.PhotosImagingFoundation (9.0) <a0c783bc-4ff9-3fc9-90cd-e8c7438d23ce> /Volumes/VOLUME/*/PhotosImagingFoundation.framework/PhotosImagingFoundation
>        0x15d2b9000 -        0x15d2d8fff com.apple.SensitiveContentAnalysisML (1.0) <0d7c94a6-2db1-39da-821c-e02227c174ea> /Volumes/VOLUME/*/SensitiveContentAnalysisML.framework/SensitiveContentAnalysisML
>        0x15ed94000 -        0x15ee02fff com.apple.ToneLibrary (1.0) <e055f37f-f403-3ece-8175-7a2745508bc1> /Volumes/VOLUME/*/ToneLibrary.framework/ToneLibrary
>        0x163f4d000 -        0x164b38fff com.apple.private.EmbeddedAcousticRecognition (1.0) <38494533-a171-3e4c-9a9e-6dfe26030d12> /Volumes/VOLUME/*/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
>        0x15ee5b000 -        0x15f1f5fff com.apple.SDAPI (1.0) <e09ab5d9-3ac3-308a-8d81-36d70c01ab8a> /Volumes/VOLUME/*/SDAPI.framework/SDAPI
>        0x16200a000 -        0x162291fff com.apple.iTunesCloud (1.0) <8167ce2a-1802-35e0-8b11-17f2f087f1ca> /Volumes/VOLUME/*/iTunesCloud.framework/iTunesCloud
>        0x152373000 -        0x152379fff com.apple.AVRouting (1.0) <8d6643a1-0856-34a3-8d46-628717092204> /Volumes/VOLUME/*/AVRouting.framework/AVRouting
>        0x15305e000 -        0x153062fff com.apple.DAAPKit (1.0) <eed8a61a-92d5-394d-baaf-61418b614d61> /Volumes/VOLUME/*/DAAPKit.framework/DAAPKit
>        0x15d222000 -        0x15d26bfff com.apple.Settings (164.5.4.2) <71cb3def-6922-34b9-be9d-1df3a1c59134> /Volumes/VOLUME/*/Settings.framework/Settings
>        0x15f36a000 -        0x15f3a8fff com.apple.ExtensionKit (97) <93f12501-18f0-3dac-b2a0-92140e3a5bc9> /Volumes/VOLUME/*/ExtensionKit.framework/ExtensionKit
>        0x15648b000 -        0x156497fff com.apple.CloudSettings (1.0) <0ecefe7a-9291-322d-beb5-87b67836013d> /Volumes/VOLUME/*/CloudSettings.framework/CloudSettings
>        0x151754000 -        0x151756fff com.apple.hsaauthenticationserver (8.0) <b331f376-6196-303d-86bb-9dbd8ce7729e> /Volumes/VOLUME/*/HSAAuthentication.framework/HSAAuthentication
>        0x15ecb8000 -        0x15ece1fff com.apple.AddressBook (1.0) <fb71dafb-d1be-3959-adbb-f6b48ab0a5d7> /Volumes/VOLUME/*/AddressBook.framework/AddressBook
>        0x15f427000 -        0x15f4bdfff com.apple.coreidv.CoreIDV (6.504) <dd1535a7-c7bf-3c13-b5b7-fdceaff0b73f> /Volumes/VOLUME/*/CoreIDV.framework/CoreIDV
>        0x161657000 -        0x161aabfff com.apple.JetEngine (1.0) <fb32792c-3fb2-3ec5-9004-2c8fd5bb5f6f> /Volumes/VOLUME/*/JetEngine.framework/JetEngine
>        0x1624d5000 -        0x1625aefff com.apple.JetUI (1.0) <e29453fd-1fff-39d5-b46a-02d7f36493b0> /Volumes/VOLUME/*/JetUI.framework/JetUI
>        0x15daef000 -        0x15db08fff com.apple.JetPack (1.0) <2ce87c74-cc08-3ad6-bd51-57327ac7c7ba> /Volumes/VOLUME/*/JetPack.framework/JetPack
>        0x161e64000 -        0x161ed0fff com.apple.signpost.SignpostSupport (1.125.1) <51a82fb2-2a5c-32d6-a0a2-d411e8dee2eb> /Volumes/VOLUME/*/SignpostSupport.framework/SignpostSupport
>        0x161c7c000 -        0x161d05fff com.apple.itunesstore (*) <ca614c1b-193c-35fd-9bd2-aece880ee368> /Volumes/VOLUME/*/iTunesStore.framework/iTunesStore
>        0x162e6c000 -        0x163073fff com.apple.storeservices (*) <635ffd72-fd7b-3e83-9425-6e38c3acf143> /Volumes/VOLUME/*/StoreServices.framework/StoreServices
>        0x1629d5000 -        0x162af2fff com.apple.-JetEngine-SwiftUI (1.0) <66e8f41f-cdd7-36c2-89cf-339a523d3d96> /Volumes/VOLUME/*/_JetEngine_SwiftUI.framework/_JetEngine_SwiftUI
>        0x162ba8000 -        0x162c9afff com.apple.GeoAnalytics (1.0) <fefcdaa4-cf82-32ae-a7bb-584e6aff7b25> /Volumes/VOLUME/*/GeoAnalytics.framework/GeoAnalytics
>        0x162635000 -        0x1627a4fff com.apple.Navigation (1.0) <18c65207-b334-3c3d-9edb-6098b363885b> /Volumes/VOLUME/*/Navigation.framework/Navigation
>        0x1684ed000 -        0x1692e6fff com.apple.VectorKit (1.0) <a143c651-1b3a-3fbc-be40-81f2f43b7f83> /Volumes/VOLUME/*/VectorKit.framework/VectorKit
>        0x15ebf2000 -        0x15ec33fff com.apple.VirtualGarage (1.0) <8b0f3242-94b7-3688-a683-9f18d7605e7e> /Volumes/VOLUME/*/VirtualGarage.framework/VirtualGarage
>        0x162d39000 -        0x162dc7fff com.apple.proactive.PersonalizationPortrait (1.0) <2f4e1313-738e-31fa-96c4-6adab4535393> /Volumes/VOLUME/*/PersonalizationPortrait.framework/PersonalizationPortrait
>        0x1638da000 -        0x163b0ffff com.apple.imcore (10.0) <81d532ff-30ab-32d2-994a-684d9aa8b162> /Volumes/VOLUME/*/IMCore.framework/IMCore
>        0x1534f6000 -        0x1534f7fff com.apple.ParsecSubscriptionServiceSupport (1.0) <5f8fe4af-fc24-361d-8e01-8d030fa9444d> /Volumes/VOLUME/*/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
>        0x158364000 -        0x15837bfff com.apple.proactive.PersonalIntelligenceCore (1.0) <be3b1080-53f1-3055-af18-0e53e5253281> /Volumes/VOLUME/*/PersonalIntelligenceCore.framework/PersonalIntelligenceCore
>        0x1636a0000 -        0x163808fff com.apple.IMDPersistence (10.0) <685d49dc-adf5-3b3a-8d21-2ff72cde309f> /Volumes/VOLUME/*/IMDPersistence.framework/IMDPersistence
>        0x163273000 -        0x1633c7fff com.apple.imsharedutilities (10.0) <67f2df1f-9ab4-327b-8dd4-ac40b6e0d744> /Volumes/VOLUME/*/IMSharedUtilities.framework/IMSharedUtilities
>        0x159b51000 -        0x159b60fff com.apple.CoreSDB (10.0) <a19facca-95e2-3a91-99f7-8875e1d9a60a> /Volumes/VOLUME/*/CoreSDB.framework/CoreSDB
>        0x1564a7000 -        0x1564acfff com.apple.idskvstore (10.0) <e52c127b-c60a-33fc-b940-9559628f398c> /Volumes/VOLUME/*/IDSKVStore.framework/IDSKVStore
>        0x15d2ff000 -        0x15d323fff com.apple.AskToCore (1.0) <2e7d6bd0-3fef-3818-8c8d-1adb45d57989> /Volumes/VOLUME/*/AskToCore.framework/AskToCore
>        0x15ed12000 -        0x15ed42fff libtidy.A.dylib (*) <6976db49-6bdb-30db-b344-ad1419f0d1f0> /Volumes/VOLUME/*/libtidy.A.dylib
>        0x1593b1000 -        0x1593b9fff com.apple.ClarityFoundation (*) <5b332a0d-cb3d-31ea-8bc8-abd9e671f5cb> /Volumes/VOLUME/*/ClarityFoundation.framework/ClarityFoundation
>        0x15c491000 -        0x15c497fff com.apple.UserSafety (1.0) <44a111e1-11a2-3113-a925-02b69e746596> /Volumes/VOLUME/*/UserSafety.framework/UserSafety
>        0x15ec6b000 -        0x15ec7ffff com.apple.RegulatoryDomainFramework (1.0) <7f97f05b-b042-3019-8e57-be5898b45503> /Volumes/VOLUME/*/RegulatoryDomain.framework/RegulatoryDomain
>        0x157c9c000 -        0x157c9ffff com.apple.TipsNextServices (8.0) <fd304aa0-6e8d-3c86-9ff1-61487d0bb94a> /Volumes/VOLUME/*/TipsNextServices.framework/TipsNextServices
>        0x161e0b000 -        0x161e2afff com.apple.internal.LocalStatusKit (1.0) <c363cd20-7f9b-304d-9116-aefd57885d54> /Volumes/VOLUME/*/LocalStatusKit.framework/LocalStatusKit
>        0x1634bd000 -        0x163580fff com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework (1.0) <a2c1d21b-65d0-3195-b4de-3488b717d383> /Volumes/VOLUME/*/VideoSubscriberAccount.framework/VideoSubscriberAccount
>        0x163dec000 -        0x163e53fff com.apple.amp-ae-eng.MetricsKit (2.8.10) <ba6e7d26-d996-32f2-ad72-68fd4c3b7fd3> /Volumes/VOLUME/*/MetricsKit.framework/MetricsKit
>        0x1628f9000 -        0x162943fff com.apple.MediaPlatform (1.0) <eb9b86ed-6e13-30cb-a9cd-664b34e8bb8a> /Volumes/VOLUME/*/MediaPlatform.framework/MediaPlatform
>        0x165e8e000 -        0x166202fff com.apple.MediaLibraryCore (1.0) <53ffb618-df4d-3480-87aa-adb29e47b9e5> /Volumes/VOLUME/*/MediaLibraryCore.framework/MediaLibraryCore
>        0x1663f6000 -        0x1666f1fff com.apple.MusicLibrary (1.0.0) <0579da23-3aac-335b-a394-8aeee70b92f4> /Volumes/VOLUME/*/MusicLibrary.framework/MusicLibrary
>        0x161d82000 -        0x161daffff com.apple.HomeSharing (1.0) <bbce0fd6-aa8e-3cff-9bf8-c79ebc7c1b98> /Volumes/VOLUME/*/HomeSharing.framework/HomeSharing
>        0x15ec8f000 -        0x15ec95fff com.apple.appstore.foundation (1.0) <41decc2c-0bc5-3c76-8b13-056f65efe655> /Volumes/VOLUME/*/AppStoreFoundation.framework/AppStoreFoundation
>        0x15ed60000 -        0x15ed6bfff com.apple.AppStoreOverlays (1.0) <bbc8c0f8-49e3-34a5-8289-dfdc8adbcb89> /Volumes/VOLUME/*/AppStoreOverlays.framework/AppStoreOverlays
>        0x163c1e000 -        0x163cd5fff com.apple.ActivityKit (1.0) <fcefb269-eac5-3b36-ac07-4c9c567d8dea> /Volumes/VOLUME/*/ActivityKit.framework/ActivityKit
>        0x161ded000 -        0x161df6fff com.apple.internal.SessionFoundation (1.0) <922f5a03-ec1d-3c46-be00-8fe2d2c64025> /Volumes/VOLUME/*/SessionFoundation.framework/SessionFoundation
>        0x161f54000 -        0x161f94fff com.apple.PhotosPlayer (1.0) <5eedefbe-dd42-3bce-84de-e09e206435af> /Volumes/VOLUME/*/PhotosPlayer.framework/PhotosPlayer
>        0x163d6d000 -        0x163d9afff com.apple.GLKit (129) <c5ac3c88-9e8e-3913-b03b-5893cdc576ff> /Volumes/VOLUME/*/GLKit.framework/GLKit
>        0x100b5d000 -        0x101779fff com.citylegends.citylegends.dev (1.7.5) <a91cebce-1071-3362-9498-cc66ea4fb1b1> /Users/USER/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Bundle/Application/AB7E678D-65F8-44B9-BCE0-285B4D86B4AE/Runner.app/Runner
>        0x10ae02000 -        0x10ae5cfff dyld_sim (*) <0a2ea2cc-8e7f-3953-a752-65d9ba23780f> /Volumes/VOLUME/*/dyld_sim
>                0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
> 
> Error Formulating Crash Report:
> dyld_process_snapshot_get_shared_cache failed
> PC register does not match crashing frame (0x0 vs 0x10A387FE8)
> 
> EOF
Flutter Debugger
[        ] Lost connection to device.
[   +1 ms] DevFS: Deleting filesystem on the device
(file:///Users/azzeccagarbugli/Library/Developer/CoreSimulator/Devices/DA49F58D-7CAE-401A-83BF-B3D2A763490F/data/Containers/Data/Application/76C01
BF9-43C7-4B67-AE69-3B208787B21F/tmp/flutter-appUBZF06/flutter-app/)
[ +255 ms] Ignored error while cleaning up DevFS: TimeoutException after 0:00:00.250000: Future not completed

[   +7 ms] "flutter run" took 94,921ms.
[ +118 ms] ensureAnalyticsSent: 64ms
[        ] Running 1 shutdown hook
[   +3 ms] Shutdown hooks complete
[   +1 ms] exiting with code 0

Can anyone experiencing this issue please try the following:

  1. Add the following dependency override to your pubspec.yaml, then run flutter clean followed by flutter pub get:
    dependency_overrides:
    	flutter_map_tile_caching:
    		git:
    			url: https://github.com/JaffaKetchup/flutter_map_tile_caching.git
    			ref: no-path-provider
  2. Remove any dependency on 'package:path_provider' from any other package (transitive dependencies) or direct dependency.
  3. Verify that the update has worked by seeing that the rootDirectory argument on initialise is now required.
  4. Without using 'package:path_provider', specify a root directory that you know works and is accessible.
    To do this, you may need to temporarily depend on 'path_provider' to print out "(await getApplicationDocumentsDirectory()).absolute.path", then copy the stdout output, then remove the path_provider dependency again, and hardcode this path.

I'll try this as soon as possible, for now, I just disabled the feature on iOS.

If I can help you any further just let me know 🫶🏻

@TraceDeTrail
Copy link
Author

Can anyone experiencing this issue please try the following:

1. Add the following dependency override to your pubspec.yaml, then run `flutter clean` followed by  `flutter pub get`:
   ```yaml
   dependency_overrides:
   	flutter_map_tile_caching:
   		git:
   			url: https://github.com/JaffaKetchup/flutter_map_tile_caching.git
   			ref: no-path-provider
   ```

2. Remove any dependency on 'package:path_provider' from any other package (transitive dependencies) or direct dependency.

3. Verify that the update has worked by seeing that the `rootDirectory` argument on `initialise` is now required.

4. Without using 'package:path_provider', specify a root directory that you know works and is accessible.
   To do this, you may need to temporarily depend on 'path_provider' to print out "`(await getApplicationDocumentsDirectory()).absolute.path`", then copy the stdout output, then remove the path_provider dependency again, and hardcode this path.

I get this error :
Error (Xcode): ../../../../../.pub-cache/git/flutter_map_tile_caching-856021766efb3a99a540829dd1eb1b8ee8baf32a/lib/src/backend/backend_access.dart:34:38: Error: Expected an identifier, but got '^'.

@JaffaKetchup
Copy link
Owner

JaffaKetchup commented Jul 17, 2024

Please try using that as a normal dependency and remove the existing one? Looks like it's getting confused. Make sure you flutter clean. If that doesn't work, clone the repo, verify it's on that branch, then depend on it locally. I know (99%) there are no syntax errors, and I didn't even touch that area.

I need to make the distinction as to whether it's an ObjectBox or path_provider issue.

@TraceDeTrail
Copy link
Author

TraceDeTrail commented Jul 17, 2024

I've already done that... Here's the pubspec.yaml

name: fluttermapcache
description: "A new Flutter project."
publish_to: 'none'
version: 0.1.0

environment:
  sdk: '>=3.4.3 <4.0.0'

dependencies:
  flutter:
    sdk: flutter
  flutter_map: ^7.0.1
  latlong2: ^0.9.1
  flutter_map_tile_caching:
    git:
      url: https://github.com/JaffaKetchup/flutter_map_tile_caching.git
      ref: no-path-provider



dev_dependencies:
  flutter_test:
    sdk: flutter
  flutter_lints: ^3.0.0
  build_runner: ^2.0.0

flutter:
  uses-material-design: true

@JaffaKetchup
Copy link
Owner

JaffaKetchup commented Jul 17, 2024

Please flutter clean then get if you haven't.

If that doesn't work, clone the repo, verify it's on that branch, then depend on it locally. I know (99%: tests are passing and example app is fine) there are no syntax errors, and I didn't even touch that area.

I need to make the distinction as to whether it's an ObjectBox or path_provider issue.

@TraceDeTrail
Copy link
Author

TraceDeTrail commented Jul 17, 2024

I clones the repo locally (the rootDirectory argument is required) ; the app crashes again EXC_BAD_ACCESS (no dependency on path_provider)...

I don't know if this helps, but when I catch all the exceptions, I get this error:
UniqueViolationException (ObjectBoxException: object put failed: Unique constraint for ObjectBoxStore.name would be violated by putting object with ID 2 because same property value already exists in object with ID 1)

@JaffaKetchup
Copy link
Owner

JaffaKetchup commented Jul 17, 2024

UniqueViolationException (ObjectBoxException: object put failed: Unique constraint for ObjectBoxStore.name would be violated by putting object with ID 2 because same property value already exists in object with ID 1)

This is expected. It is fully internally handled and part of normal functioning. It occurs when you try to create a store multiple times (but FMTC silences this error).

Can you post the iOS logs again (like #159 (comment)), using the new setup?

Thanks for all the help!

@TraceDeTrail
Copy link
Author

Sorry for my late reply...

Incident Identifier: B452A390-9AB5-4193-BBC0-15B51196DEFD
CrashReporter Key:   CEA94218-1E7F-438D-744A-436684725299
Hardware Model:      MacBookPro18,1
Process:             Runner [35630]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/3670BCA9-9427-4606-A51A-B7B003183CB7/data/Containers/Bundle/Application/751D0656-2922-4725-BCBE-CF1DAF49865F/Runner.app/Runner
Identifier:          com.example.fluttermapcache
Version:             0.1.0 (0.1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [23892]
Coalition:           com.apple.CoreSimulator.SimDevice.3670BCA9-9427-4606-A51A-B7B003183CB7 [759152]
Responsible Process: SimulatorTrampoline [3118]

Date/Time:           2024-07-17 23:12:43.9141 +0200
Launch Time:         2024-07-17 23:12:30.2014 +0200
OS Version:          macOS 14.4.1 (23E224)
Release Type:        User
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x000000011fcd0010
Exception Codes: 0x0000000000000001, 0x000000011fcd0010
VM Region Info: 0x11fcd0010 is not in any region.  Bytes after previous region: 245777  Bytes before following region: 196592
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      mapped file                 11d314000-11fc94000    [ 41.5M] r--/rwx SM=COW  Object_id=63308fd3
--->  GAP OF 0x6c000 BYTES
      VM_ALLOCATE                 11fd00000-11fd80000    [  512K] rw-/rwx SM=PRV  
Termination Reason: SIGNAL 11 Segmentation fault: 11
Terminating Process: exc handler [35630]

Triggered by Thread:  30

Thread 0::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1010fd798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1010f58e8 mach_msg + 20
4   CoreFoundation                	       0x1803c5ed8 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803c05b8 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803bfd28 CFRunLoopRunSpecific + 572
7   GraphicsServices              	       0x18986ebc0 GSEventRunModal + 160
8   UIKitCore                     	       0x102087fdc -[UIApplication _run] + 868
9   UIKitCore                     	       0x10208bc54 UIApplicationMain + 124
10  Runner                        	       0x100023d40 main + 64 (AppDelegate.swift:5)
11  dyld_sim                      	       0x100199558 start_sim + 20
12  dyld                          	       0x1004020e0 start + 2360

Thread 1:
0   libsystem_pthread.dylib       	       0x1002b65cc start_wqthread + 0

Thread 2:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1010fd798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1010f58e8 mach_msg + 20
4   CoreFoundation                	       0x1803c5ed8 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803c05b8 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803bfd28 CFRunLoopRunSpecific + 572
7   Foundation                    	       0x180dafa98 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8   Foundation                    	       0x180dafcbc -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9   UIKitCore                     	       0x10212a304 -[UIEventFetcher threadMain] + 404
10  Foundation                    	       0x180dd627c __NSThread__start__ + 720
11  libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 3:
0   libsystem_pthread.dylib       	       0x1002b65cc start_wqthread + 0

Thread 4:: io.flutter.1.ui
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1010fd798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1010f58e8 mach_msg + 20
4   CoreFoundation                	       0x1803c5ed8 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803c05b8 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803bfd28 CFRunLoopRunSpecific + 572
7   Flutter                       	       0x108d49880 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x108d427bc fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x108d484b8 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 184
10  Flutter                       	       0x108d481c4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 5:: io.flutter.1.raster
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1010fd798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1010f58e8 mach_msg + 20
4   CoreFoundation                	       0x1803c5ed8 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803c05b8 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803bfd28 CFRunLoopRunSpecific + 572
7   Flutter                       	       0x108d49880 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x108d427bc fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x108d484b8 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 184
10  Flutter                       	       0x108d481c4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 6:: io.flutter.1.io
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1010fd798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1010f58e8 mach_msg + 20
4   CoreFoundation                	       0x1803c5ed8 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803c05b8 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803bfd28 CFRunLoopRunSpecific + 572
7   Flutter                       	       0x108d49880 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x108d427bc fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x108d484b8 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 184
10  Flutter                       	       0x108d481c4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 7:: io.flutter.1.profiler
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1010fd798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1010f58e8 mach_msg + 20
4   CoreFoundation                	       0x1803c5ed8 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803c05b8 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803bfd28 CFRunLoopRunSpecific + 572
7   Flutter                       	       0x108d49880 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x108d427bc fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x108d484b8 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 184
10  Flutter                       	       0x108d481c4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 8:: io.worker.1
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 9:: io.worker.2
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 10:: io.worker.3
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 11:: io.worker.4
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 12:: io.worker.5
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 13:: io.worker.6
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 14:: io.worker.7
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 15:: io.worker.8
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 16:: io.worker.9
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 17:: io.worker.10
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9cc _pthread_cond_wait + 1216
2   Flutter                       	       0x108a891bc std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x108d3f6b0 fml::ConcurrentMessageLoop::WorkerMain() + 128
4   Flutter                       	       0x108d3fdd0 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 184
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 18:: dart:io EventHandler
0   libsystem_kernel.dylib        	       0x1010fb0ec kevent + 8
1   Flutter                       	       0x10900f898 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 300
2   Flutter                       	       0x10902b740 dart::bin::ThreadStart(void*) + 88
3   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
4   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 19:: Dart Profiler ThreadInterrupter
0   libsystem_kernel.dylib        	       0x1010f5570 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x101106b80 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x101122484 thread_suspend + 108
3   Flutter                       	       0x1091d3fd4 dart::ThreadInterrupter::InterruptThread(dart::OSThread*) + 76
4   Flutter                       	       0x1091d3da4 dart::ThreadInterrupter::ThreadMain(unsigned long) + 480
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 20:: Dart Profiler SampleBlockProcessor
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x10916b6b4 dart::SampleBlockProcessor::ThreadMain(unsigned long) + 284
4   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
5   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 21:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1090b13e4 dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*) + 140
4   Flutter                       	       0x1091d478c dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 136
5   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
6   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
7   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
8   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 22:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 23:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 24:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 25:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 26:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 27:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 28:: DartWorker
0   libsystem_kernel.dylib        	       0x1010f8a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1002bb9f8 _pthread_cond_wait + 1260
2   Flutter                       	       0x109166fa0 dart::Monitor::WaitMicros(long long) + 128
3   Flutter                       	       0x1091d48ec dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 488
4   Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8

Thread 29::  Dispatch queue: connection Queue
0   libxpc.dylib                  	       0x1800b71f8 DYLD-STUB$$kdebug_trace + 0
1   libxpc.dylib                  	       0x1800a6ff4 _xpc_transaction_begin_impl + 60
2   libxpc.dylib                  	       0x1800a70e8 _xpc_transaction_begin + 60
3   libxpc.dylib                  	       0x180094dc8 _xpc_connection_unpack_message + 84
4   libxpc.dylib                  	       0x180095b8c _xpc_connection_mach_event + 884
5   libdispatch.dylib             	       0x180143df0 _dispatch_client_callout4 + 16
6   libdispatch.dylib             	       0x180160cb0 _dispatch_mach_msg_invoke + 620
7   libdispatch.dylib             	       0x18014bbcc _dispatch_lane_serial_drain + 336
8   libdispatch.dylib             	       0x180161d70 _dispatch_mach_invoke + 464
9   libdispatch.dylib             	       0x18014bbcc _dispatch_lane_serial_drain + 336
10  libdispatch.dylib             	       0x18014c9b4 _dispatch_lane_invoke + 388
11  libdispatch.dylib             	       0x180157d40 _dispatch_root_queue_drain_deferred_wlh + 276
12  libdispatch.dylib             	       0x18015738c _dispatch_workloop_worker_thread + 448
13  libsystem_pthread.dylib       	       0x1002b7814 _pthread_wqthread + 284
14  libsystem_pthread.dylib       	       0x1002b65d4 start_wqthread + 8

Thread 30 Crashed:: DartWorker
0   ???                           	       0x1276cb268 ???
1   ???                           	       0x1276cac88 ???
2   ???                           	       0x1276ca364 ???
3   ???                           	       0x1276ca20c ???
4   ???                           	       0x125419190 ???
5   ???                           	       0x1276c9468 ???
6   ???                           	       0x12542d94c ???
7   ???                           	       0x124ec0418 ???
8   ???                           	       0x1276e9f30 ???
9   ???                           	       0x125632858 ???
10  ???                           	       0x125631f10 ???
11  ???                           	       0x1256318b0 ???
12  ???                           	       0x125630dfc ???
13  ???                           	       0x125630b34 ???
14  ???                           	       0x118cbabac ???
15  ???                           	       0x118cb9fa8 ???
16  ???                           	       0x10c703834 ???
17  Flutter                       	       0x10909760c dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&) + 388
18  Flutter                       	       0x10909908c dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&) + 304
19  Flutter                       	       0x1090b5b78 dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>) + 696
20  Flutter                       	       0x1090d9680 dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) + 308
21  Flutter                       	       0x1090d9ae8 dart::MessageHandler::TaskCallback() + 516
22  Flutter                       	       0x1091d4848 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 324
23  Flutter                       	       0x1091d4aa0 dart::ThreadPool::Worker::Main(unsigned long) + 116
24  Flutter                       	       0x109166724 dart::ThreadStart(void*) + 204
25  libsystem_pthread.dylib       	       0x1002bb414 _pthread_start + 104
26  libsystem_pthread.dylib       	       0x1002b65e0 thread_start + 8


Thread 30 crashed with ARM Thread State (64-bit):
    x0: 0x000000012aee2049   x1: 0x0000000000000000   x2: 0x000000011fcd0010   x3: 0x0000000000000076
    x4: 0x0000000000000000   x5: 0x000000012979c2a1   x6: 0x000000012979af58   x7: 0x0000000000000df8
    x8: 0x0000000000000007   x9: 0x000000000000171a  x10: 0x0000000171a59bf0  x11: 0x0000000000000000
   x12: 0x0000000000000000  x13: 0x0000000000000000  x14: 0x00000000e10a7007  x15: 0x0000000171a5a0d0
   x16: 0x000000011fcd0010  x17: 0x000000012979b0b1  x18: 0x0000000000000000  x19: 0x0000000171a5a910
   x20: 0x0000000171a5a930  x21: 0x000000010d81d400  x22: 0x0000000100f08081  x23: 0x000000010ac3c840
   x24: 0x000000012979c411  x25: 0x0000000171977000  x26: 0x000000010d81d400  x27: 0x000000012979c3e0
   x28: 0x0000000800000000   fp: 0x0000000171a5a0e0   lr: 0x00000001276cac88
    sp: 0x0000000171977000   pc: 0x00000001276cb268 cpsr: 0x20001000
   far: 0x000000011fcd0010  esr: 0x92000007 (Data Abort) byte read Translation fault

Binary Images:
       0x1003fc000 -        0x100487fff dyld (*) <f6dd3ec2-85a4-3ab1-8486-b189cd980ebe> /usr/lib/dyld
       0x10063c000 -        0x100647fff libobjc-trampolines.dylib (*) <13823d40-f83a-3ddf-8c9c-4391bdc3d01f> /Volumes/VOLUME/*/libobjc-trampolines.dylib
       0x1012e4000 -        0x10146ffff io.objectbox.ObjectBox (1.0) <32dacb0a-5b69-31a5-bdef-016e72263486> /Users/USER/Library/Developer/CoreSimulator/Devices/3670BCA9-9427-4606-A51A-B7B003183CB7/data/Containers/Bundle/Application/751D0656-2922-4725-BCBE-CF1DAF49865F/Runner.app/Frameworks/ObjectBox.framework/ObjectBox
       0x1000e8000 -        0x1000ebfff org.cocoapods.objectbox-flutter-libs (0.0.1) <b3977c39-1323-335c-b5f3-6fcee0cba4cb> /Users/USER/Library/Developer/CoreSimulator/Devices/3670BCA9-9427-4606-A51A-B7B003183CB7/data/Containers/Bundle/Application/751D0656-2922-4725-BCBE-CF1DAF49865F/Runner.app/Frameworks/objectbox_flutter_libs.framework/objectbox_flutter_libs
       0x100124000 -        0x10012bfff org.cocoapods.path-provider-foundation (0.0.1) <47784a1e-6a84-3594-8d9a-2065285047bb> /Users/USER/Library/Developer/CoreSimulator/Devices/3670BCA9-9427-4606-A51A-B7B003183CB7/data/Containers/Bundle/Application/751D0656-2922-4725-BCBE-CF1DAF49865F/Runner.app/Frameworks/path_provider_foundation.framework/path_provider_foundation
       0x1062d8000 -        0x107d37fff com.apple.SwiftUI (5.0.83.1.105) <ff92863f-3762-39a2-bc7b-1fe45e10df0e> /Volumes/VOLUME/*/SwiftUI.framework/SwiftUI
       0x100100000 -        0x100103fff com.apple.UIKit (1.0) <27dd141d-93eb-389a-a9de-20322a90a2be> /Volumes/VOLUME/*/UIKit.framework/UIKit
       0x108a3c000 -        0x10abeffff io.flutter.flutter (1.0) <4c4c4499-5555-3144-a1f6-284bfba9e05a> /Users/USER/Library/Developer/CoreSimulator/Devices/3670BCA9-9427-4606-A51A-B7B003183CB7/data/Containers/Bundle/Application/751D0656-2922-4725-BCBE-CF1DAF49865F/Runner.app/Frameworks/Flutter.framework/Flutter
       0x10010c000 -        0x10010ffff libswiftUIKit.dylib (*) <c0fccd8d-6ec4-387b-8afb-9d266194cd4f> /Volumes/VOLUME/*/libswiftUIKit.dylib
       0x100144000 -        0x10014bfff libsystem_platform.dylib (*) <eb59fb24-006e-3669-8f54-e7f7008e8fa4> /usr/lib/system/libsystem_platform.dylib
       0x1010f4000 -        0x10112ffff libsystem_kernel.dylib (*) <dbeef39a-ea6a-3357-ae67-ac1095e798df> /usr/lib/system/libsystem_kernel.dylib
       0x1002b4000 -        0x1002c3fff libsystem_pthread.dylib (*) <daf62c24-9691-3850-9c40-0e9011ea8547> /usr/lib/system/libsystem_pthread.dylib
       0x1002f0000 -        0x100337fff com.apple.DocumentManager (1.0) <aff49d72-caeb-34ee-a2e9-ab7687bbca03> /Volumes/VOLUME/*/DocumentManager.framework/DocumentManager
       0x1014d0000 -        0x102e0ffff com.apple.UIKitCore (1.0) <6b64a343-f832-3b1d-a6c3-f8ed32b35a83> /Volumes/VOLUME/*/UIKitCore.framework/UIKitCore
       0x1051f4000 -        0x1052fbfff com.apple.ShareSheet (1936.10.1.2.18) <00908d3a-bef2-3e76-b148-637416cf26d3> /Volumes/VOLUME/*/ShareSheet.framework/ShareSheet
       0x10115c000 -        0x1011e3fff com.apple.PrintKitUI (1.0) <8bcb57a4-5419-3d3a-94cd-fe0749aadd3d> /Volumes/VOLUME/*/PrintKitUI.framework/PrintKitUI
       0x104d20000 -        0x104ec3fff com.apple.WebKitLegacy (8616) <ab615706-59b1-3450-8cf6-a9af3bf00f63> /Volumes/VOLUME/*/WebKitLegacy.framework/WebKitLegacy
       0x10f56c000 -        0x110bcbfff com.apple.JavaScriptCore (8616) <0b317b8d-2b5f-39e8-b04f-a3d1f4a7cf98> /Volumes/VOLUME/*/JavaScriptCore.framework/JavaScriptCore
       0x11930c000 -        0x11bc57fff com.apple.WebCore (8616) <c796454a-0fac-3697-8b06-291cb7af0e44> /Volumes/VOLUME/*/WebCore.framework/WebCore
       0x10ba58000 -        0x10bdf3fff libANGLE-shared.dylib (*) <288dffed-ecee-39e9-b1c6-cc28ea58b453> /Volumes/VOLUME/*/WebCore.framework/Frameworks/libANGLE-shared.dylib
       0x105098000 -        0x10516ffff com.apple.WebGPU (8616) <d6fb20f0-c561-37cb-8fed-381418ee02b3> /Volumes/VOLUME/*/WebGPU.framework/WebGPU
       0x105474000 -        0x105eebfff libwebrtc.dylib (*) <c7252466-0045-3c4b-a449-1eccf559cb7f> /Volumes/VOLUME/*/WebCore.framework/Frameworks/libwebrtc.dylib
       0x100260000 -        0x100277fff com.apple.RecapPerformanceTesting (17) <74c6711c-e770-3875-81b6-a7aaca7bf050> /Volumes/VOLUME/*/RecapPerformanceTesting.framework/RecapPerformanceTesting
       0x100164000 -        0x10017ffff com.apple.mlcompiler.services (95) <bab278e9-61f1-388a-abf6-a24e9e5d58f4> /Volumes/VOLUME/*/MLCompilerServices.framework/MLCompilerServices
       0x100020000 -        0x100027fff com.example.fluttermapcache (0.1.0) <f1b6fbb5-ac39-3c9c-8b87-6a9c502d577d> /Users/USER/Library/Developer/CoreSimulator/Devices/3670BCA9-9427-4606-A51A-B7B003183CB7/data/Containers/Bundle/Application/751D0656-2922-4725-BCBE-CF1DAF49865F/Runner.app/Runner
       0x100198000 -        0x1001dffff dyld_sim (*) <993f9bdb-7b52-3b18-92a3-55f3471b53e5> /Volumes/VOLUME/*/dyld_sim
       0x180339000 -        0x1806ebfff com.apple.CoreFoundation (6.9) <c665e05f-5989-30d1-b748-7688b8590d39> /Volumes/VOLUME/*/CoreFoundation.framework/CoreFoundation
       0x18986b000 -        0x189873fff com.apple.GraphicsServices (1.0) <ba53ab8f-c1b1-315f-b8f0-95f69385bf2a> /Volumes/VOLUME/*/GraphicsServices.framework/GraphicsServices
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x18076b000 -        0x18121ffff com.apple.Foundation (6.9) <508eec71-652e-35bc-b02c-7dff66ccd20a> /Volumes/VOLUME/*/Foundation.framework/Foundation
       0x1800c5000 -        0x18013ffff libsystem_c.dylib (*) <bfe8c5e8-6304-311e-86bb-69c45f0f96bb> /Volumes/VOLUME/*/libsystem_c.dylib
       0x180086000 -        0x1800c0fff libxpc.dylib (*) <9890e957-84a4-3af5-8028-cc758799fdf9> /Volumes/VOLUME/*/libxpc.dylib
       0x180140000 -        0x180185fff libdispatch.dylib (*) <5161220e-c794-3f5a-a4b4-52630f7c4665> /Volumes/VOLUME/*/libdispatch.dylib

EOF

-----------
Full Report
-----------

{"app_name":"Runner","timestamp":"2024-07-17 23:12:46.00 +0200","app_version":"0.1.0","slice_uuid":"f1b6fbb5-ac39-3c9c-8b87-6a9c502d577d","build_version":"0.1.0","platform":7,"bundleID":"com.example.fluttermapcache","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.4.1 (23E224)","roots_installed":0,"name":"Runner","incident_id":"B452A390-9AB5-4193-BBC0-15B51196DEFD"}
{
  "uptime" : 580000,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 502,
  "deployVersion" : 210,
  "modelCode" : "MacBookPro18,1",
  "coalitionID" : 759152,
  "osVersion" : {
    "train" : "macOS 14.4.1",
    "build" : "23E224",
    "releaseType" : "User"
  },
  "captureTime" : "2024-07-17 23:12:43.9141 +0200",
  "codeSigningMonitor" : 1,
  "incident" : "B452A390-9AB5-4193-BBC0-15B51196DEFD",
  "pid" : 35630,
  "translated" : false,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2024-07-17 23:12:30.2014 +0200",
  "procStartAbsTime" : 14041682246838,
  "procExitAbsTime" : 14042010298215,
  "procName" : "Runner",
  "procPath" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3670BCA9-9427-4606-A51A-B7B003183CB7\/data\/Containers\/Bundle\/Application\/751D0656-2922-4725-BCBE-CF1DAF49865F\/Runner.app\/Runner",
  "bundleInfo" : {"CFBundleShortVersionString":"0.1.0","CFBundleVersion":"0.1.0","CFBundleIdentifier":"com.example.fluttermapcache"},
  "storeInfo" : {"deviceIdentifierForVendor":"C7A4C0C3-57A0-5C87-BB25-7E87773B669F","thirdParty":true},
  "parentProc" : "launchd_sim",
  "parentPid" : 23892,
  "coalitionName" : "com.apple.CoreSimulator.SimDevice.3670BCA9-9427-4606-A51A-B7B003183CB7",
  "crashReporterKey" : "CEA94218-1E7F-438D-744A-436684725299",
  "responsiblePid" : 3118,
  "responsibleProc" : "SimulatorTrampoline",
  "codeSigningID" : "com.example.fluttermapcache",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570425861,
  "codeSigningValidationCategory" : 10,
  "codeSigningTrustLevel" : 4294967295,
  "instructionByteStream" : {"beforePC":"8WG\/qRtzQvh7BwDRUB9A+f8BEOuJAQBUoQ9A+SJwQPihC0D5UASBiw==","atPC":"AwJAuWB8f9O7A1\/4ewcA0e8DHar9ecGowANf1kUzQvkEAIDSXv9A+Q=="},
  "wakeTime" : 10701,
  "sleepWakeUUID" : "0849DF14-2740-48F7-9BF1-1E3C61537BA7",
  "sip" : "enabled",
  "vmRegionInfo" : "0x11fcd0010 is not in any region.  Bytes after previous region: 245777  Bytes before following region: 196592\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      mapped file                 11d314000-11fc94000    [ 41.5M] r--\/rwx SM=COW  Object_id=63308fd3\n--->  GAP OF 0x6c000 BYTES\n      VM_ALLOCATE                 11fd00000-11fd80000    [  512K] rw-\/rwx SM=PRV  ",
  "exception" : {"codes":"0x0000000000000001, 0x000000011fcd0010","rawCodes":[1,4828495888],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x000000011fcd0010"},
  "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":35630},
  "vmregioninfo" : "0x11fcd0010 is not in any region.  Bytes after previous region: 245777  Bytes before following region: 196592\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      mapped file                 11d314000-11fc94000    [ 41.5M] r--\/rwx SM=COW  Object_id=63308fd3\n--->  GAP OF 0x6c000 BYTES\n      VM_ALLOCATE                 11fd00000-11fd80000    [  512K] rw-\/rwx SM=PRV  ",
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":65,"task_for_pid":14},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "faultingThread" : 30,
  "threads" : [{"id":29735451,"threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":37396280246272},{"value":0},{"value":37396280246272},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":8707},{"value":0},{"value":1},{"value":8707},{"value":3072},{"value":0},{"value":2199023255552},{"value":18446744073709551569},{"value":2199023256066},{"value":0},{"value":4294967295},{"value":2},{"value":37396280246272},{"value":0},{"value":37396280246272},{"value":6171775336},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":4096},"fp":{"value":6171775184},"sp":{"value":6171775104},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":10},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":10},{"imageOffset":577240,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":26},{"imageOffset":554424,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":26},{"imageOffset":552232,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":26},{"imageOffset":15296,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":27},{"imageOffset":12287964,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":13},{"imageOffset":12303444,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":13},{"imageOffset":15680,"sourceLine":5,"sourceFile":"AppDelegate.swift","symbol":"main","imageIndex":24,"symbolLocation":64},{"imageOffset":5464,"symbol":"start_sim","symbolLocation":20,"imageIndex":25},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":0}]},{"id":29735523,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":11}],"threadState":{"x":[{"value":6172340224},{"value":3335},{"value":6171803648},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6172340224},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4297811404},"far":{"value":0}}},{"id":29735526,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":69282117451776},{"value":0},{"value":69282117451776},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":16131},{"value":0},{"value":1},{"value":16131},{"value":3072},{"value":0},{"value":0},{"value":18446744073709551569},{"value":2},{"value":0},{"value":4294967295},{"value":2},{"value":69282117451776},{"value":0},{"value":69282117451776},{"value":6174055800},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":4096},"fp":{"value":6174055648},"sp":{"value":6174055568},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":10},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":10},{"imageOffset":577240,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":26},{"imageOffset":554424,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":26},{"imageOffset":552232,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":26},{"imageOffset":6572696,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":29},{"imageOffset":6573244,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":29},{"imageOffset":12952324,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":404,"imageIndex":13},{"imageOffset":6730364,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":29},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735529,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":11}],"threadState":{"x":[{"value":6175780864},{"value":21251},{"value":6175244288},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6175780864},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4297811404},"far":{"value":0}}},{"id":29735607,"name":"io.flutter.1.ui","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":97869419773952},{"value":0},{"value":97869419773952},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":22787},{"value":0},{"value":1},{"value":22787},{"value":3072},{"value":0},{"value":177021372071936},{"value":18446744073709551569},{"value":177021372113154},{"value":0},{"value":4294967295},{"value":2},{"value":97869419773952},{"value":0},{"value":97869419773952},{"value":6177923064},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":4096},"fp":{"value":6177922912},"sp":{"value":6177922832},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":10},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":10},{"imageOffset":577240,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":26},{"imageOffset":554424,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":26},{"imageOffset":552232,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":26},{"imageOffset":3201152,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":7},{"imageOffset":3172284,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":7},{"imageOffset":3196088,"symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","symbolLocation":184,"imageIndex":7},{"imageOffset":3195332,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735608,"name":"io.flutter.1.raster","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":128655745351680},{"value":0},{"value":128655745351680},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":29955},{"value":0},{"value":1},{"value":29955},{"value":3072},{"value":0},{"value":1099511627776},{"value":18446744073709551569},{"value":1099511628034},{"value":0},{"value":4294967295},{"value":2},{"value":128655745351680},{"value":0},{"value":128655745351680},{"value":6180069368},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":4096},"fp":{"value":6180069216},"sp":{"value":6180069136},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":10},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":10},{"imageOffset":577240,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":26},{"imageOffset":554424,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":26},{"imageOffset":552232,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":26},{"imageOffset":3201152,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":7},{"imageOffset":3172284,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":7},{"imageOffset":3196088,"symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","symbolLocation":184,"imageIndex":7},{"imageOffset":3195332,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735609,"name":"io.flutter.1.io","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":105566001168384},{"value":0},{"value":105566001168384},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":24579},{"value":0},{"value":1},{"value":24579},{"value":3072},{"value":0},{"value":3298534883328},{"value":18446744073709551569},{"value":3298534884098},{"value":0},{"value":4294967295},{"value":2},{"value":105566001168384},{"value":0},{"value":105566001168384},{"value":6182215672},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":4096},"fp":{"value":6182215520},"sp":{"value":6182215440},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":10},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":10},{"imageOffset":577240,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":26},{"imageOffset":554424,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":26},{"imageOffset":552232,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":26},{"imageOffset":3201152,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":7},{"imageOffset":3172284,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":7},{"imageOffset":3196088,"symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","symbolLocation":184,"imageIndex":7},{"imageOffset":3195332,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735610,"name":"io.flutter.1.profiler","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":116561117446144},{"value":0},{"value":116561117446144},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":27139},{"value":0},{"value":1},{"value":27139},{"value":3072},{"value":0},{"value":0},{"value":18446744073709551569},{"value":2},{"value":0},{"value":4294967295},{"value":2},{"value":116561117446144},{"value":0},{"value":116561117446144},{"value":6184361976},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":4096},"fp":{"value":6184361824},"sp":{"value":6184361744},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":10},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":10},{"imageOffset":577240,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":26},{"imageOffset":554424,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":26},{"imageOffset":552232,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":26},{"imageOffset":3201152,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":7},{"imageOffset":3172284,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":7},{"imageOffset":3196088,"symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","symbolLocation":184,"imageIndex":7},{"imageOffset":3195332,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735620,"name":"io.worker.1","threadState":{"x":[{"value":4},{"value":0},{"value":26112},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6184939000},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":126976},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6184939744},{"value":0},{"value":0},{"value":26112},{"value":26112},{"value":28672},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6184939120},"sp":{"value":6184938976},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735621,"name":"io.worker.2","threadState":{"x":[{"value":4},{"value":0},{"value":26880},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6185512440},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":262144},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6185513184},{"value":0},{"value":0},{"value":26880},{"value":26880},{"value":28928},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6185512560},"sp":{"value":6185512416},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735622,"name":"io.worker.3","threadState":{"x":[{"value":4},{"value":0},{"value":25856},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6186085880},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":28672},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6186086624},{"value":0},{"value":0},{"value":25856},{"value":25856},{"value":28416},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6186086000},"sp":{"value":6186085856},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735623,"name":"io.worker.4","threadState":{"x":[{"value":4},{"value":0},{"value":26880},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6186659320},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":22528},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6186660064},{"value":0},{"value":0},{"value":26880},{"value":26880},{"value":29440},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6186659440},"sp":{"value":6186659296},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735624,"name":"io.worker.5","threadState":{"x":[{"value":4},{"value":0},{"value":25344},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6187232760},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":247808},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6187233504},{"value":0},{"value":0},{"value":25344},{"value":25344},{"value":27904},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6187232880},"sp":{"value":6187232736},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735625,"name":"io.worker.6","threadState":{"x":[{"value":4},{"value":0},{"value":26880},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6187806200},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":118784},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6187806944},{"value":0},{"value":0},{"value":26880},{"value":26880},{"value":29184},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6187806320},"sp":{"value":6187806176},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735626,"name":"io.worker.7","threadState":{"x":[{"value":4},{"value":0},{"value":27136},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6188379640},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":223232},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6188380384},{"value":0},{"value":0},{"value":27136},{"value":27136},{"value":29696},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6188379760},"sp":{"value":6188379616},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735627,"name":"io.worker.8","threadState":{"x":[{"value":4},{"value":0},{"value":27392},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6188953080},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":260096},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6188953824},{"value":0},{"value":0},{"value":27392},{"value":27392},{"value":29952},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6188953200},"sp":{"value":6188953056},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735628,"name":"io.worker.9","threadState":{"x":[{"value":4},{"value":0},{"value":25600},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6189526520},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":272384},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6189527264},{"value":0},{"value":0},{"value":25600},{"value":25600},{"value":28160},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6189526640},"sp":{"value":6189526496},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735629,"name":"io.worker.10","threadState":{"x":[{"value":260},{"value":0},{"value":27648},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6190099960},{"value":0},{"value":4502620160},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":118784},{"value":0},{"value":4502620136},{"value":4502620200},{"value":6190100704},{"value":0},{"value":0},{"value":27648},{"value":27648},{"value":30208},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832908},"cpsr":{"value":1610616832},"fp":{"value":6190100080},"sp":{"value":6190099936},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":11},{"imageOffset":315836,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":7},{"imageOffset":3159728,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":128,"imageIndex":7},{"imageOffset":3161552,"symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":184,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735631,"name":"dart:io EventHandler","threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":6191197464},{"value":16},{"value":6191196424},{"value":0},{"value":0},{"value":59000000},{"value":0},{"value":6443262104,"symbolLocation":284,"symbol":"clock_gettime_nsec_np"},{"value":0},{"value":0},{"value":256},{"value":256},{"value":0},{"value":363},{"value":1004953628021504},{"value":0},{"value":105553156180992},{"value":6191196424},{"value":67108864},{"value":2147483647},{"value":274877907},{"value":4294966296},{"value":1000000},{"value":1160289153},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4446025880},"cpsr":{"value":536875008},"fp":{"value":6191198064},"sp":{"value":6191196400},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312772844},"far":{"value":0}},"frames":[{"imageOffset":28908,"symbol":"kevent","symbolLocation":8,"imageIndex":10},{"imageOffset":6109336,"symbol":"dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long)","symbolLocation":300,"imageIndex":7},{"imageOffset":6223680,"symbol":"dart::bin::ThreadStart(void*)","symbolLocation":88,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735634,"name":"Dart Profiler ThreadInterrupter","threadState":{"x":[{"value":0},{"value":8589934595},{"value":103079220499},{"value":177034257024163},{"value":15483357102080},{"value":177034256973824},{"value":44},{"value":0},{"value":18446744073709550527},{"value":7508278053964083822},{"value":105553150941624},{"value":29735634},{"value":1792},{"value":7696581396224},{"value":256},{"value":0},{"value":18446744073709551569},{"value":2670713744489984},{"value":0},{"value":0},{"value":44},{"value":177034256973824},{"value":15483357102080},{"value":177034257024163},{"value":6192295200},{"value":103079220499},{"value":8589934595},{"value":8589934595},{"value":1}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4312820608},"cpsr":{"value":1610616832},"fp":{"value":6192295184},"sp":{"value":6192295104},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312749424},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":10},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":10},{"imageOffset":189572,"symbol":"thread_suspend","symbolLocation":108,"imageIndex":10},{"imageOffset":7962580,"symbol":"dart::ThreadInterrupter::InterruptThread(dart::OSThread*)","symbolLocation":76,"imageIndex":7},{"imageOffset":7962020,"symbol":"dart::ThreadInterrupter::ThreadMain(unsigned long)","symbolLocation":480,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735635,"name":"Dart Profiler SampleBlockProcessor","threadState":{"x":[{"value":260},{"value":0},{"value":256},{"value":0},{"value":0},{"value":160},{"value":0},{"value":100000000},{"value":30209},{"value":0},{"value":105553159258248},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":105553150891408},{"value":0},{"value":105553159258224},{"value":105553159258288},{"value":1},{"value":100000000},{"value":0},{"value":256},{"value":30209},{"value":30464},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6193392256},"sp":{"value":6193392112},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7534260,"symbol":"dart::SampleBlockProcessor::ThreadMain(unsigned long)","symbolLocation":284,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735754,"name":"DartWorker","threadState":{"x":[{"value":260},{"value":0},{"value":234240},{"value":0},{"value":0},{"value":160},{"value":61},{"value":0},{"value":234241},{"value":0},{"value":4498413824},{"value":8796093024258},{"value":2048},{"value":0},{"value":2048},{"value":8796093024256},{"value":305},{"value":538624},{"value":0},{"value":4498413800},{"value":4498413864},{"value":1},{"value":0},{"value":61},{"value":234240},{"value":234241},{"value":234496},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6197782960},"sp":{"value":6197782816},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":6771684,"symbol":"dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*)","symbolLocation":140,"imageIndex":7},{"imageOffset":7964556,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":136,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735947,"name":"DartWorker","threadState":{"x":[{"value":4},{"value":0},{"value":12544},{"value":0},{"value":0},{"value":160},{"value":5},{"value":0},{"value":12544},{"value":0},{"value":4300314096},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":761856},{"value":0},{"value":4300314072},{"value":4300314136},{"value":1},{"value":0},{"value":5},{"value":12544},{"value":12544},{"value":13056},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6198880768},"sp":{"value":6198880624},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29735948,"name":"DartWorker","threadState":{"x":[{"value":260},{"value":0},{"value":12288},{"value":0},{"value":0},{"value":160},{"value":5},{"value":0},{"value":12288},{"value":0},{"value":4300314096},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":892928},{"value":0},{"value":4300314072},{"value":4300314136},{"value":1},{"value":0},{"value":5},{"value":12288},{"value":12288},{"value":12800},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6199978496},"sp":{"value":6199978352},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29737133,"name":"DartWorker","threadState":{"x":[{"value":4},{"value":0},{"value":436992},{"value":0},{"value":0},{"value":160},{"value":4},{"value":996265000},{"value":436992},{"value":0},{"value":4500533520},{"value":41781441865218},{"value":9728},{"value":0},{"value":9728},{"value":41781441865216},{"value":305},{"value":16384},{"value":0},{"value":4500533496},{"value":4500533560},{"value":1},{"value":996265000},{"value":4},{"value":436992},{"value":436992},{"value":438016},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6173436416},"sp":{"value":6173436272},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29737134,"name":"DartWorker","threadState":{"x":[{"value":4},{"value":0},{"value":436736},{"value":0},{"value":0},{"value":160},{"value":4},{"value":994830000},{"value":436736},{"value":0},{"value":4500533520},{"value":41781441865218},{"value":9728},{"value":0},{"value":9728},{"value":41781441865216},{"value":305},{"value":22528},{"value":0},{"value":4500533496},{"value":4500533560},{"value":1},{"value":994830000},{"value":4},{"value":436736},{"value":436736},{"value":437760},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6175156736},"sp":{"value":6175156592},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29737135,"name":"DartWorker","threadState":{"x":[{"value":4},{"value":0},{"value":436992},{"value":0},{"value":0},{"value":160},{"value":5},{"value":0},{"value":436992},{"value":0},{"value":4500533520},{"value":41781441865218},{"value":9728},{"value":0},{"value":9728},{"value":41781441865216},{"value":305},{"value":8192},{"value":0},{"value":4500533496},{"value":4500533560},{"value":1},{"value":0},{"value":5},{"value":436992},{"value":436992},{"value":438272},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6194489856},"sp":{"value":6194489712},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29737136,"name":"DartWorker","threadState":{"x":[{"value":4},{"value":0},{"value":435968},{"value":0},{"value":0},{"value":160},{"value":5},{"value":0},{"value":435968},{"value":0},{"value":4500533520},{"value":41781441865218},{"value":9728},{"value":0},{"value":9728},{"value":41781441865216},{"value":305},{"value":10240},{"value":0},{"value":4500533496},{"value":4500533560},{"value":1},{"value":0},{"value":5},{"value":435968},{"value":435968},{"value":437248},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6195587584},"sp":{"value":6195587440},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29737154,"name":"DartWorker","threadState":{"x":[{"value":260},{"value":0},{"value":436480},{"value":0},{"value":0},{"value":160},{"value":4},{"value":987331000},{"value":436480},{"value":0},{"value":4500533520},{"value":41781441865218},{"value":9728},{"value":0},{"value":9728},{"value":41781441865216},{"value":305},{"value":22528},{"value":0},{"value":4500533496},{"value":4500533560},{"value":1},{"value":987331000},{"value":4},{"value":436480},{"value":436480},{"value":437504},{"value":1000},{"value":4476252160,"symbolLocation":6752,"symbol":"dart::Symbols::symbol_handles_"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4297832952},"cpsr":{"value":2684358656},"fp":{"value":6196685312},"sp":{"value":6196685168},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4312762992},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":10},{"imageOffset":31224,"symbol":"_pthread_cond_wait","symbolLocation":1260,"imageIndex":11},{"imageOffset":7516064,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":128,"imageIndex":7},{"imageOffset":7964908,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":488,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]},{"id":29737158,"threadState":{"x":[{"value":687865884},{"value":35630},{"value":1},{"value":0},{"value":0},{"value":6200516592},{"value":6200549360},{"value":132097},{"value":1},{"value":4313022464,"symbolLocation":0,"symbol":"_current_pid"},{"value":0},{"value":4},{"value":4177002496},{"value":6444033882},{"value":6444018024,"symbolLocation":280,"symbol":"_os_workgroup_with_workload_id_attr_default"},{"value":9005137670438912},{"value":4312750736,"symbolLocation":0,"symbol":"__getpid"},{"value":9005159145275393},{"value":0},{"value":4295787600},{"value":687865884},{"value":0},{"value":105553150971088},{"value":0},{"value":2},{"value":0},{"value":0},{"value":105553140508160},{"value":4351}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6443134964},"cpsr":{"value":536875008},"fp":{"value":6200550592},"sp":{"value":6200550560},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6443201016},"far":{"value":0}},"queue":"connection Queue","frames":[{"imageOffset":201208,"symbol":"DYLD-STUB$$kdebug_trace","symbolLocation":0,"imageIndex":31},{"imageOffset":135156,"symbol":"_xpc_transaction_begin_impl","symbolLocation":60,"imageIndex":31},{"imageOffset":135400,"symbol":"_xpc_transaction_begin","symbolLocation":60,"imageIndex":31},{"imageOffset":60872,"symbol":"_xpc_connection_unpack_message","symbolLocation":84,"imageIndex":31},{"imageOffset":64396,"symbol":"_xpc_connection_mach_event","symbolLocation":884,"imageIndex":31},{"imageOffset":15856,"symbol":"_dispatch_client_callout4","symbolLocation":16,"imageIndex":32},{"imageOffset":134320,"symbol":"_dispatch_mach_msg_invoke","symbolLocation":620,"imageIndex":32},{"imageOffset":48076,"symbol":"_dispatch_lane_serial_drain","symbolLocation":336,"imageIndex":32},{"imageOffset":138608,"symbol":"_dispatch_mach_invoke","symbolLocation":464,"imageIndex":32},{"imageOffset":48076,"symbol":"_dispatch_lane_serial_drain","symbolLocation":336,"imageIndex":32},{"imageOffset":51636,"symbol":"_dispatch_lane_invoke","symbolLocation":388,"imageIndex":32},{"imageOffset":97600,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":276,"imageIndex":32},{"imageOffset":95116,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":448,"imageIndex":32},{"imageOffset":14356,"symbol":"_pthread_wqthread","symbolLocation":284,"imageIndex":11},{"imageOffset":9684,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":11}]},{"triggered":true,"id":29737325,"name":"DartWorker","threadState":{"x":[{"value":5015216201},{"value":0},{"value":4828495888},{"value":118},{"value":0},{"value":4990812833},{"value":4990807896},{"value":3576},{"value":7},{"value":5914},{"value":6201646064},{"value":0},{"value":0},{"value":0},{"value":3775557639},{"value":6201647312},{"value":4828495888},{"value":4990808241},{"value":0},{"value":6201649424},{"value":6201649456},{"value":4521579520},{"value":4310728833},{"value":4475570240,"symbolLocation":16,"symbol":"vtable for dart::TransitionToGenerated"},{"value":4990813201},{"value":6200717312},{"value":4521579520},{"value":4990813152},{"value":34359738368}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4956400776},"cpsr":{"value":536875008},"fp":{"value":6201647328},"sp":{"value":6200717312},"esr":{"value":2449473543,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":4956402280,"matchesCrashFrame":1},"far":{"value":4828495888}},"frames":[{"imageOffset":4956402280,"imageIndex":28},{"imageOffset":4956400776,"imageIndex":28},{"imageOffset":4956398436,"imageIndex":28},{"imageOffset":4956398092,"imageIndex":28},{"imageOffset":4920021392,"imageIndex":28},{"imageOffset":4956394600,"imageIndex":28},{"imageOffset":4920105292,"imageIndex":28},{"imageOffset":4914414616,"imageIndex":28},{"imageOffset":4956528432,"imageIndex":28},{"imageOffset":4922222680,"imageIndex":28},{"imageOffset":4922220304,"imageIndex":28},{"imageOffset":4922218672,"imageIndex":28},{"imageOffset":4922215932,"imageIndex":28},{"imageOffset":4922215220,"imageIndex":28},{"imageOffset":4710968236,"imageIndex":28},{"imageOffset":4710965160,"imageIndex":28},{"imageOffset":4503648308,"imageIndex":28},{"imageOffset":6665740,"symbol":"dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&)","symbolLocation":388,"imageIndex":7},{"imageOffset":6672524,"symbol":"dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&)","symbolLocation":304,"imageIndex":7},{"imageOffset":6790008,"symbol":"dart::IsolateMessageHandler::HandleMessage(std::_fl::unique_ptr<dart::Message, std::_fl::default_delete<dart::Message>>)","symbolLocation":696,"imageIndex":7},{"imageOffset":6936192,"symbol":"dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool)","symbolLocation":308,"imageIndex":7},{"imageOffset":6937320,"symbol":"dart::MessageHandler::TaskCallback()","symbolLocation":516,"imageIndex":7},{"imageOffset":7964744,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":324,"imageIndex":7},{"imageOffset":7965344,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":7},{"imageOffset":7513892,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":11},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":11}]}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 4299145216,
    "size" : 573440,
    "uuid" : "f6dd3ec2-85a4-3ab1-8486-b189cd980ebe",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4301504512,
    "size" : 49152,
    "uuid" : "13823d40-f83a-3ddf-8c9c-4391bdc3d01f",
    "path" : "\/Volumes\/VOLUME\/*\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4314775552,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "io.objectbox.ObjectBox",
    "size" : 1622016,
    "uuid" : "32dacb0a-5b69-31a5-bdef-016e72263486",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3670BCA9-9427-4606-A51A-B7B003183CB7\/data\/Containers\/Bundle\/Application\/751D0656-2922-4725-BCBE-CF1DAF49865F\/Runner.app\/Frameworks\/ObjectBox.framework\/ObjectBox",
    "name" : "ObjectBox",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4295917568,
    "CFBundleShortVersionString" : "0.0.1",
    "CFBundleIdentifier" : "org.cocoapods.objectbox-flutter-libs",
    "size" : 16384,
    "uuid" : "b3977c39-1323-335c-b5f3-6fcee0cba4cb",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3670BCA9-9427-4606-A51A-B7B003183CB7\/data\/Containers\/Bundle\/Application\/751D0656-2922-4725-BCBE-CF1DAF49865F\/Runner.app\/Frameworks\/objectbox_flutter_libs.framework\/objectbox_flutter_libs",
    "name" : "objectbox_flutter_libs",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4296163328,
    "CFBundleShortVersionString" : "0.0.1",
    "CFBundleIdentifier" : "org.cocoapods.path-provider-foundation",
    "size" : 32768,
    "uuid" : "47784a1e-6a84-3594-8d9a-2065285047bb",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3670BCA9-9427-4606-A51A-B7B003183CB7\/data\/Containers\/Bundle\/Application\/751D0656-2922-4725-BCBE-CF1DAF49865F\/Runner.app\/Frameworks\/path_provider_foundation.framework\/path_provider_foundation",
    "name" : "path_provider_foundation",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4398612480,
    "CFBundleShortVersionString" : "5.0.83.1.105",
    "CFBundleIdentifier" : "com.apple.SwiftUI",
    "size" : 27656192,
    "uuid" : "ff92863f-3762-39a2-bc7b-1fe45e10df0e",
    "path" : "\/Volumes\/VOLUME\/*\/SwiftUI.framework\/SwiftUI",
    "name" : "SwiftUI",
    "CFBundleVersion" : "5.0.83.1.105"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4296015872,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.UIKit",
    "size" : 16384,
    "uuid" : "27dd141d-93eb-389a-a9de-20322a90a2be",
    "path" : "\/Volumes\/VOLUME\/*\/UIKit.framework\/UIKit",
    "name" : "UIKit",
    "CFBundleVersion" : "7082.1.112"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4439916544,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "io.flutter.flutter",
    "size" : 35340288,
    "uuid" : "4c4c4499-5555-3144-a1f6-284bfba9e05a",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3670BCA9-9427-4606-A51A-B7B003183CB7\/data\/Containers\/Bundle\/Application\/751D0656-2922-4725-BCBE-CF1DAF49865F\/Runner.app\/Frameworks\/Flutter.framework\/Flutter",
    "name" : "Flutter",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4296065024,
    "size" : 16384,
    "uuid" : "c0fccd8d-6ec4-387b-8afb-9d266194cd4f",
    "path" : "\/Volumes\/VOLUME\/*\/libswiftUIKit.dylib",
    "name" : "libswiftUIKit.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4296294400,
    "size" : 32768,
    "uuid" : "eb59fb24-006e-3669-8f54-e7f7008e8fa4",
    "path" : "\/usr\/lib\/system\/libsystem_platform.dylib",
    "name" : "libsystem_platform.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4312743936,
    "size" : 245760,
    "uuid" : "dbeef39a-ea6a-3357-ae67-ac1095e798df",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4297801728,
    "size" : 65536,
    "uuid" : "daf62c24-9691-3850-9c40-0e9011ea8547",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4298047488,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.DocumentManager",
    "size" : 294912,
    "uuid" : "aff49d72-caeb-34ee-a2e9-ab7687bbca03",
    "path" : "\/Volumes\/VOLUME\/*\/DocumentManager.framework\/DocumentManager",
    "name" : "DocumentManager",
    "CFBundleVersion" : "305.1.1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4316790784,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.UIKitCore",
    "size" : 26476544,
    "uuid" : "6b64a343-f832-3b1d-a6c3-f8ed32b35a83",
    "path" : "\/Volumes\/VOLUME\/*\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore",
    "CFBundleVersion" : "7082.1.112"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4380901376,
    "CFBundleShortVersionString" : "1936.10.1.2.18",
    "CFBundleIdentifier" : "com.apple.ShareSheet",
    "size" : 1081344,
    "uuid" : "00908d3a-bef2-3e76-b148-637416cf26d3",
    "path" : "\/Volumes\/VOLUME\/*\/ShareSheet.framework\/ShareSheet",
    "name" : "ShareSheet",
    "CFBundleVersion" : "1936.10.1.2.18"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4313169920,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.PrintKitUI",
    "size" : 557056,
    "uuid" : "8bcb57a4-5419-3d3a-94cd-fe0749aadd3d",
    "path" : "\/Volumes\/VOLUME\/*\/PrintKitUI.framework\/PrintKitUI",
    "name" : "PrintKitUI",
    "CFBundleVersion" : "32"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4375838720,
    "CFBundleShortVersionString" : "8616",
    "CFBundleIdentifier" : "com.apple.WebKitLegacy",
    "size" : 1720320,
    "uuid" : "ab615706-59b1-3450-8cf6-a9af3bf00f63",
    "path" : "\/Volumes\/VOLUME\/*\/WebKitLegacy.framework\/WebKitLegacy",
    "name" : "WebKitLegacy",
    "CFBundleVersion" : "8616.1.27.10.13"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4552310784,
    "CFBundleShortVersionString" : "8616",
    "CFBundleIdentifier" : "com.apple.JavaScriptCore",
    "size" : 23461888,
    "uuid" : "0b317b8d-2b5f-39e8-b04f-a3d1f4a7cf98",
    "path" : "\/Volumes\/VOLUME\/*\/JavaScriptCore.framework\/JavaScriptCore",
    "name" : "JavaScriptCore",
    "CFBundleVersion" : "8616.1.27.10.13"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4717592576,
    "CFBundleShortVersionString" : "8616",
    "CFBundleIdentifier" : "com.apple.WebCore",
    "size" : 43302912,
    "uuid" : "c796454a-0fac-3697-8b06-291cb7af0e44",
    "path" : "\/Volumes\/VOLUME\/*\/WebCore.framework\/WebCore",
    "name" : "WebCore",
    "CFBundleVersion" : "8616.1.27.10.13"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4490362880,
    "size" : 3784704,
    "uuid" : "288dffed-ecee-39e9-b1c6-cc28ea58b453",
    "path" : "\/Volumes\/VOLUME\/*\/WebCore.framework\/Frameworks\/libANGLE-shared.dylib",
    "name" : "libANGLE-shared.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4379475968,
    "CFBundleShortVersionString" : "8616",
    "CFBundleIdentifier" : "com.apple.WebGPU",
    "size" : 884736,
    "uuid" : "d6fb20f0-c561-37cb-8fed-381418ee02b3",
    "path" : "\/Volumes\/VOLUME\/*\/WebGPU.framework\/WebGPU",
    "name" : "WebGPU",
    "CFBundleVersion" : "8616.1.27.10.13"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4383522816,
    "size" : 10977280,
    "uuid" : "c7252466-0045-3c4b-a449-1eccf559cb7f",
    "path" : "\/Volumes\/VOLUME\/*\/WebCore.framework\/Frameworks\/libwebrtc.dylib",
    "name" : "libwebrtc.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4297457664,
    "CFBundleShortVersionString" : "17",
    "CFBundleIdentifier" : "com.apple.RecapPerformanceTesting",
    "size" : 98304,
    "uuid" : "74c6711c-e770-3875-81b6-a7aaca7bf050",
    "path" : "\/Volumes\/VOLUME\/*\/RecapPerformanceTesting.framework\/RecapPerformanceTesting",
    "name" : "RecapPerformanceTesting",
    "CFBundleVersion" : "17"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4296425472,
    "CFBundleShortVersionString" : "95",
    "CFBundleIdentifier" : "com.apple.mlcompiler.services",
    "size" : 114688,
    "uuid" : "bab278e9-61f1-388a-abf6-a24e9e5d58f4",
    "path" : "\/Volumes\/VOLUME\/*\/MLCompilerServices.framework\/MLCompilerServices",
    "name" : "MLCompilerServices",
    "CFBundleVersion" : "95"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4295098368,
    "CFBundleShortVersionString" : "0.1.0",
    "CFBundleIdentifier" : "com.example.fluttermapcache",
    "size" : 32768,
    "uuid" : "f1b6fbb5-ac39-3c9c-8b87-6a9c502d577d",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3670BCA9-9427-4606-A51A-B7B003183CB7\/data\/Containers\/Bundle\/Application\/751D0656-2922-4725-BCBE-CF1DAF49865F\/Runner.app\/Runner",
    "name" : "Runner",
    "CFBundleVersion" : "0.1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4296638464,
    "size" : 294912,
    "uuid" : "993f9bdb-7b52-3b18-92a3-55f3471b53e5",
    "path" : "\/Volumes\/VOLUME\/*\/dyld_sim",
    "name" : "dyld_sim"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6445830144,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 3878912,
    "uuid" : "c665e05f-5989-30d1-b748-7688b8590d39",
    "path" : "\/Volumes\/VOLUME\/*\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2048.1.101"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6602272768,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.GraphicsServices",
    "size" : 36864,
    "uuid" : "ba53ab8f-c1b1-315f-b8f0-95f69385bf2a",
    "path" : "\/Volumes\/VOLUME\/*\/GraphicsServices.framework\/GraphicsServices",
    "name" : "GraphicsServices",
    "CFBundleVersion" : "1.0"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6450229248,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 11227136,
    "uuid" : "508eec71-652e-35bc-b02c-7dff66ccd20a",
    "path" : "\/Volumes\/VOLUME\/*\/Foundation.framework\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "2048.1.101"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6443257856,
    "size" : 503808,
    "uuid" : "bfe8c5e8-6304-311e-86bb-69c45f0f96bb",
    "path" : "\/Volumes\/VOLUME\/*\/libsystem_c.dylib",
    "name" : "libsystem_c.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6442999808,
    "size" : 241664,
    "uuid" : "9890e957-84a4-3af5-8028-cc758799fdf9",
    "path" : "\/Volumes\/VOLUME\/*\/libxpc.dylib",
    "name" : "libxpc.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6443761664,
    "size" : 286720,
    "uuid" : "5161220e-c794-3f5a-a4b4-52630f7c4665",
    "path" : "\/Volumes\/VOLUME\/*\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  }
],
  "sharedCache" : {
  "base" : 6442450944,
  "size" : 1538359296,
  "uuid" : "c4dd9af5-ef60-309e-abb7-899ba3afa5e7"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=895.0M resident=0K(0%) swapped_out_or_unallocated=895.0M(100%)\nWritable regions: Total=824.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=824.7M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                          128K        5 \nCoreAnimation                       16K        1 \nFoundation                          16K        1 \nIOSurface                         35.6M        4 \nKernel Alloc Once                   32K        1 \nMALLOC                           628.3M       79 \nMALLOC guard page                  128K        8 \nSTACK GUARD                       56.5M       31 \nStack                             36.0M       32 \nVM_ALLOCATE                      133.0M      326 \n__DATA                            11.4M      351 \n__DATA_CONST                      36.1M      364 \n__DATA_DIRTY                       107K        9 \n__FONT_DATA                          4K        1 \n__LINKEDIT                       449.1M       27 \n__OBJC_RO                         31.5M        1 \n__OBJC_RW                          945K        1 \n__TEXT                           445.9M      376 \ndyld private memory                4.6G       11 \nmapped file                       86.0M       20 \nshared memory                       16K        1 \n===========                     =======  ======= \nTOTAL                              6.5G     1651 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "name" : "DartWorker"
  }
},
  "logWritingSignature" : "9eb64f5fcaabf510b28dae48369b4fe7db03c293",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "64b21a7351cbb02ce3442e4e",
      "factorPackIds" : {
        "REMINDERS_GROCERY" : "659475af5595a45664475f23"
      },
      "deploymentId" : 240000037
    },
    {
      "rolloutId" : "5ffde50ce2aacd000d47a95f",
      "factorPackIds" : {

      },
      "deploymentId" : 240000419
    }
  ],
  "experiments" : [
    {
      "treatmentId" : "c47ab4cc-c9c3-4b5d-a87c-e2433ce02597",
      "experimentId" : "6639bc6ba73d460582162323",
      "deploymentId" : 400000006
    }
  ]
}
}

@RedHappyLlama
Copy link

Hi @JaffaKetchup,

I guess we just need to wait for the ObjectBox issue to be resolved? Is there a workaround that can be used? I guess there is not currently a released version of flutter_map_tile_caching that works with flutter_map v7 that does not have this bug? Thanks!

@JaffaKetchup
Copy link
Owner

Hi @RedHappyLlama,
Yes, unfortunately this is an issue with ObjectBox and there is no workaround.
If you can provide any extra info, that would be great!

@RedHappyLlama
Copy link

Hi @JaffaKetchup, what info do you need that could help?

I believe the V6-backport iteration is the most recent stable iOS version? Could you use elements from that for iOS only in your latest version? I know that still works on the latest iOS as it's what I'm still using. Although it may not be the fastest theoretical version, it could be a stable fix until the ObjectBox issue is resolved? I appreciate a lot has changed since V6 so unlikely to be feasible.

@JaffaKetchup
Copy link
Owner

There's no more information I could use for now, but I'll have a look tonight (BST) to see whether I can implement an alternative solution, so it would be useful to have someone that could test. Maybe if you're open to chatting on Discord?

Its not possible to use any part of v6 in any version after v6. v6 used a filesystem storage mechanism, which is why it was slow, but more reliable. Now I look back on it, maybe using the filesystem wasn't so bad after all :D. Maybe I can implement an alternative backend at some point, but I really hope it's not necessary, since it will be difficult and even slower to implement the 'tiles-across-stores' functionality.

@JaffaKetchup
Copy link
Owner

I would appriciate it if someone could test out #166! Just needs a dependency replacement pointing to the git branch 'fix-deletetiles', no other changes to code.

@zigapovhe
Copy link

@JaffaKetchup Looks like your fix (in #166) is working! My app was crashing every time I've tried to remove a store, but after switching to this branch I am not able to replicate the crash or any errors in the console!

@JaffaKetchup
Copy link
Owner

JaffaKetchup commented Aug 19, 2024

Thanks for testing @zigapovhe. Quick question, do you use the import functionality on iOS (and if you do, I'm assuming it was working)?

@JaffaKetchup
Copy link
Owner

Fixed in v9.1.3.

Although this is an issue with ObjectBox, I've found another method that works. Although streaming would be more efficient, this seems to have negligible effect.

@zigapovhe
Copy link

Thanks for testing @zigapovhe. Quick question, do you use the import functionality on iOS (and if you do, I'm assuming it was working)?

I don't use import functionality, so sorry :P No idea.

@RedHappyLlama
Copy link

Thanks for resolving @JaffaKetchup !!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue reports broken functionality or another error external The issue lies in a dependency or Flutter itself
Projects
None yet
5 participants