-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCrash.rtf
7070 lines (7069 loc) · 561 KB
/
Crash.rtf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{\rtf1\ansi\ansicpg1252\cocoartf2709
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
{\*\expandedcolortbl;;}
\paperw11900\paperh16840\margl1440\margr1440\vieww11520\viewh8400\viewkind0
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
\f0\fs24 \cf0 -------------------------------------\
Translated Report (Full Report Below)\
-------------------------------------\
\
Incident Identifier: BFA6E8F7-CF97-4C0F-9C6A-D75F120ECB0D\
CrashReporter Key: 3E18D5CC-615B-E82C-1213-5179218DBCFA\
Hardware Model: Macmini9,1\
Process: Swatched [43734]\
Path: /Users/USER/Library/Developer/CoreSimulator/Devices/C21F0312-680B-43B5-AF47-BC7E2A26BD86/data/Containers/Bundle/Application/65C9063B-1585-4CA7-82A6-1839D380BC0E/Swatched.app/Swatched\
Identifier: com.swatched\
Version: 1.0.5 (20)\
Code Type: ARM-64 (Native)\
Role: Foreground\
Parent Process: launchd_sim [634]\
Coalition: com.apple.CoreSimulator.SimDevice.C21F0312-680B-43B5-AF47-BC7E2A26BD86 [694]\
Responsible Process: SimulatorTrampoline [602]\
\
Date/Time: 2023-07-27 15:24:55.0452 +0530\
Launch Time: 2023-07-27 15:22:33.0617 +0530\
OS Version: macOS 13.4.1 (22F770820d)\
Release Type: User\
Report Version: 104\
\
Exception Type: EXC_CRASH (SIGKILL)\
Exception Codes: 0x0000000000000000, 0x0000000000000000\
Termination Reason: FRONTBOARD 2343432205 \
<RBSTerminateContext| domain:10 code:0x8BADF00D explanation:[application<com.swatched>:43734] failed to terminate gracefully after 5.0s\
ProcessVisibility: Unknown\
ProcessState: Running\
WatchdogEvent: process-exit\
WatchdogVisibility: Background\
WatchdogCPUStatistics: (\
"Elapsed total CPU time (seconds): 6.680 (user 4.070, system 2.610), 14% CPU",\
"Elapsed application CPU time (seconds): 0.526, 1% CPU"\
) reportType:CrashLog maxTerminationResistance:Interactive>\
\
Triggered by Thread: 0\
\
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 CoreFoundation 0x10f3e5a18 __CFRunLoopServiceMachPort + 156\
5 CoreFoundation 0x10f3e008c __CFRunLoopRun + 1152\
6 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
7 Foundation 0x10cc230c8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208\
8 Foundation 0x10cc232ec -[NSRunLoop(NSRunLoop) runUntilDate:] + 60\
9 Swatched 0x104c8b95c +[RNSplashScreen show] + 228\
10 Swatched 0x1043f974c -[AppDelegate application:didFinishLaunchingWithOptions:] + 428 (AppDelegate.mm:62)\
11 UIKitCore 0x12db81090 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 292\
12 UIKitCore 0x12db825d8 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 2776\
13 UIKitCore 0x12db87298 -[UIApplication _runWithMainScene:transitionContext:completion:] + 856\
14 UIKitCore 0x12d2f0770 -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 104\
15 UIKitCore 0x12d7b2f4c _UIScenePerformActionsWithLifecycleActionMask + 92\
16 UIKitCore 0x12d2f1008 __101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke + 188\
17 UIKitCore 0x12d2f0bdc -[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] + 320\
18 UIKitCore 0x12d2f0e60 -[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] + 588\
19 UIKitCore 0x12d2f08d0 -[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] + 248\
20 UIKitCore 0x12d2fbc5c __186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke + 140\
21 UIKitCore 0x12d6ccbb4 +[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:] + 656\
22 UIKitCore 0x12d7c8ce4 _UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion + 196\
23 UIKitCore 0x12d2fb968 -[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] + 288\
24 UIKitCore 0x12d168188 __64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.189 + 552\
25 UIKitCore 0x12d166f8c -[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] + 208\
26 UIKitCore 0x12d167e44 -[UIScene scene:didUpdateWithDiff:transitionContext:completion:] + 220\
27 UIKitCore 0x12db85f58 -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 496\
28 UIKitCore 0x12d6f2574 -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 260\
29 FrontBoardServices 0x113736dc4 -[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:] + 316\
30 FrontBoardServices 0x11375cac8 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.59 + 92\
31 FrontBoardServices 0x1137428ac -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 160\
32 FrontBoardServices 0x11375c750 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke + 296\
33 libdispatch.dylib 0x10c6bb768 _dispatch_client_callout + 16\
34 libdispatch.dylib 0x10c6bf6a4 _dispatch_block_invoke_direct + 376\
35 FrontBoardServices 0x11377bfac __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 44\
36 FrontBoardServices 0x11377bea0 -[FBSSerialQueue _targetQueue_performNextIfPossible] + 176\
37 FrontBoardServices 0x11377bfe0 -[FBSSerialQueue _performNextFromRunLoopSource] + 24\
38 CoreFoundation 0x10f3e61dc __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24\
39 CoreFoundation 0x10f3e6124 __CFRunLoopDoSource0 + 172\
40 CoreFoundation 0x10f3e5894 __CFRunLoopDoSources0 + 232\
41 CoreFoundation 0x10f3dff00 __CFRunLoopRun + 756\
42 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
43 GraphicsServices 0x112a27c98 GSEventRunModal + 160\
44 UIKitCore 0x12db845d4 -[UIApplication _run] + 868\
45 UIKitCore 0x12db885cc UIApplicationMain + 124\
46 Swatched 0x1043f9fb4 main + 100 (main.m:7)\
47 dyld_sim 0x10740dfa0 start_sim + 20\
48 dyld 0x107521f28 start + 2236\
\
Thread 1:: com.apple.uikit.eventfetch-thread\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 CoreFoundation 0x10f3e5a18 __CFRunLoopServiceMachPort + 156\
5 CoreFoundation 0x10f3e008c __CFRunLoopRun + 1152\
6 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
7 Foundation 0x10cc230c8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208\
8 Foundation 0x10cc232ec -[NSRunLoop(NSRunLoop) runUntilDate:] + 60\
9 UIKitCore 0x12dc236e0 -[UIEventFetcher threadMain] + 424\
10 Foundation 0x10cc48aac __NSThread__start__ + 704\
11 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
12 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 2:: com.google.firebase.crashlytics.MachExceptionServer\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 Swatched 0x1044d0774 FIRCLSMachExceptionReadMessage + 80\
5 Swatched 0x1044d06ac FIRCLSMachExceptionServer + 52\
6 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
7 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 3:: com.apple.CFStream.LegacyThread\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 CoreFoundation 0x10f3e5a18 __CFRunLoopServiceMachPort + 156\
5 CoreFoundation 0x10f3e008c __CFRunLoopRun + 1152\
6 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
7 CoreFoundation 0x10f4096bc _legacyStreamRunLoop_workThread + 260\
8 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
9 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 4:: com.facebook.SocketRocket.NetworkThread\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 CoreFoundation 0x10f3e5a18 __CFRunLoopServiceMachPort + 156\
5 CoreFoundation 0x10f3e008c __CFRunLoopRun + 1152\
6 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
7 Foundation 0x10cc230c8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208\
8 Swatched 0x104a2ee04 -[SRRunLoopThread main] + 260\
9 Foundation 0x10cc48aac __NSThread__start__ + 704\
10 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
11 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 5:: com.apple.NSURLConnectionLoader\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 CoreFoundation 0x10f3e5a18 __CFRunLoopServiceMachPort + 156\
5 CoreFoundation 0x10f3e008c __CFRunLoopRun + 1152\
6 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
7 CFNetwork 0x108c9bae8 0x108a8c000 + 2161384\
8 Foundation 0x10cc48aac __NSThread__start__ + 704\
9 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
10 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 6:: com.apple.CFSocket.private\
0 libsystem_kernel.dylib 0x10ef3f6fc __select + 8\
1 CoreFoundation 0x10f3faa54 __CFSocketManager + 612\
2 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
3 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 7:\
0 libsystem_pthread.dylib 0x10ef9a634 start_wqthread + 0\
\
Thread 8:\
0 libsystem_pthread.dylib 0x10ef9a634 start_wqthread + 0\
\
Thread 9:\
0 libsystem_pthread.dylib 0x10ef9a634 start_wqthread + 0\
\
Thread 10:: com.facebook.react.JavaScript\
0 libsystem_kernel.dylib 0x10ef35190 mach_msg2_trap + 8\
1 libsystem_kernel.dylib 0x10ef46258 mach_msg2_internal + 76\
2 libsystem_kernel.dylib 0x10ef3d398 mach_msg_overwrite + 540\
3 libsystem_kernel.dylib 0x10ef35500 mach_msg + 20\
4 CoreFoundation 0x10f3e5a18 __CFRunLoopServiceMachPort + 156\
5 CoreFoundation 0x10f3e008c __CFRunLoopRun + 1152\
6 CoreFoundation 0x10f3df7f4 CFRunLoopRunSpecific + 584\
7 Swatched 0x104858d18 +[RCTCxxBridge runRunLoop] + 736\
8 Foundation 0x10cc48aac __NSThread__start__ + 704\
9 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
10 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 11:: hades\
0 libsystem_kernel.dylib 0x10ef38694 __psynch_cvwait + 8\
1 libsystem_pthread.dylib 0x10ef9f9e4 _pthread_cond_wait + 1220\
2 libc++.1.dylib 0x107330920 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24\
3 hermes 0x109fe67c4 0x109ecc000 + 1157060\
4 hermes 0x109fe6578 0x109ecc000 + 1156472\
5 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
6 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 12:\
0 libsystem_pthread.dylib 0x10ef9a634 start_wqthread + 0\
\
Thread 13:\
0 libsystem_pthread.dylib 0x10ef9a634 start_wqthread + 0\
\
Thread 14:\
0 libsystem_pthread.dylib 0x10ef9a634 start_wqthread + 0\
\
Thread 15:: hermes-chrome-inspector-conn\
0 libsystem_kernel.dylib 0x10ef38694 __psynch_cvwait + 8\
1 libsystem_pthread.dylib 0x10ef9f9e4 _pthread_cond_wait + 1220\
2 libc++.1.dylib 0x107330920 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24\
3 Swatched 0x104dded40 void std::__1::condition_variable::wait<facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1>(std::__1::unique_lock<std::__1::mutex>&, facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1) + 64\
4 Swatched 0x104ddeb5c facebook::hermes::inspector::detail::SerialExecutor::runLoop() + 112\
5 Swatched 0x104de199c facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0::operator()() const + 28\
6 Swatched 0x104de1960 decltype(static_cast<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(fp)()) std::__1::__invoke<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&) + 24\
7 Swatched 0x104de1918 void std::__1::__invoke_void_return_wrapper<void, true>::__call<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&) + 28\
8 Swatched 0x104de18f0 std::__1::__function::__alloc_func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()() + 28\
9 Swatched 0x104de0308 std::__1::__function::__func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()() + 28\
10 Swatched 0x104870b38 std::__1::__function::__value_func<void ()>::operator()() const + 60\
11 Swatched 0x104870af0 std::__1::function<void ()>::operator()() const + 24\
12 Swatched 0x104ccc3e8 facebook::hermes::inspector::detail::Thread::run(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>) + 32\
13 Swatched 0x104ccd294 decltype(static_cast<void (*>(fp)(static_cast<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>>(fp0), static_cast<std::__1::function<void ()>>(fp0))) std::__1::__invoke<void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>(void (*&&)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>&&, std::__1::function<void ()>&&) + 100\
14 Swatched 0x104ccd1e4 void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>, 2ul, 3ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>&, std::__1::__tuple_indices<2ul, 3ul>) + 76\
15 Swatched 0x104ccc894 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>>(void*) + 84\
16 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
17 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
Thread 16:: hermes-inspector\
0 libsystem_kernel.dylib 0x10ef38694 __psynch_cvwait + 8\
1 libsystem_pthread.dylib 0x10ef9f9e4 _pthread_cond_wait + 1220\
2 libc++.1.dylib 0x107330920 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24\
3 Swatched 0x104dded40 void std::__1::condition_variable::wait<facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1>(std::__1::unique_lock<std::__1::mutex>&, facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1) + 64\
4 Swatched 0x104ddeb5c facebook::hermes::inspector::detail::SerialExecutor::runLoop() + 112\
5 Swatched 0x104de199c facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0::operator()() const + 28\
6 Swatched 0x104de1960 decltype(static_cast<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(fp)()) std::__1::__invoke<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&) + 24\
7 Swatched 0x104de1918 void std::__1::__invoke_void_return_wrapper<void, true>::__call<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&) + 28\
8 Swatched 0x104de18f0 std::__1::__function::__alloc_func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()() + 28\
9 Swatched 0x104de0308 std::__1::__function::__func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()() + 28\
10 Swatched 0x104870b38 std::__1::__function::__value_func<void ()>::operator()() const + 60\
11 Swatched 0x104870af0 std::__1::function<void ()>::operator()() const + 24\
12 Swatched 0x104ccc3e8 facebook::hermes::inspector::detail::Thread::run(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>) + 32\
13 Swatched 0x104ccd294 decltype(static_cast<void (*>(fp)(static_cast<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>>(fp0), static_cast<std::__1::function<void ()>>(fp0))) std::__1::__invoke<void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>(void (*&&)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>&&, std::__1::function<void ()>&&) + 100\
14 Swatched 0x104ccd1e4 void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>, 2ul, 3ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>&, std::__1::__tuple_indices<2ul, 3ul>) + 76\
15 Swatched 0x104ccc894 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>>(void*) + 84\
16 libsystem_pthread.dylib 0x10ef9f428 _pthread_start + 116\
17 libsystem_pthread.dylib 0x10ef9a648 thread_start + 8\
\
\
Thread 0 crashed with ARM Thread State (64-bit):\
x0: 0x0000000010004005 x1: 0x0000000807000806 x2: 0x0000000000000000 x3: 0x0000280300000000\
x4: 0x0000000000000000 x5: 0x0000280300000000 x6: 0x0000000000000c00 x7: 0x00000000ffffffff\
x8: 0xfffffffffffffbbf x9: 0x0000000000002803 x10: 0x0000000000000000 x11: 0x0000000400000000\
x12: 0x0000000000000c00 x13: 0x0000000000002803 x14: 0x0000000000000000 x15: 0x00003c0000000000\
x16: 0xffffffffffffffd1 x17: 0x00003c0000003c02 x18: 0x0000000000000000 x19: 0x00000000ffffffff\
x20: 0x0000000000000c00 x21: 0x0000280300000000 x22: 0x0000000000000000 x23: 0x0000280300000000\
x24: 0x000000016ba06de0 x25: 0x0000000000000000 x26: 0x0000000807000806 x27: 0x0000000807000806\
x28: 0x0000000007000806 fp: 0x000000016ba06b30 lr: 0x000000010ef46258\
sp: 0x000000016ba06ae0 pc: 0x000000010ef35190 cpsr: 0x60001000\
far: 0x00000001e138c030 esr: 0x56000080 Address size fault\
\
Binary Images:\
0x10751c000 - 0x1075abfff dyld (*) <2237410f-d39c-30ce-9a94-13aacb66b766> /usr/lib/dyld\
0x10740c000 - 0x10745bfff dyld_sim (*) <1772df31-9df3-36cc-a3c6-b34fd26bffe5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim\
0x1043f4000 - 0x104fd7fff com.swatched (1.0.5) <cf492339-c79d-3c9e-8402-27f588a2d6f5> /Users/USER/Library/Developer/CoreSimulator/Devices/C21F0312-680B-43B5-AF47-BC7E2A26BD86/data/Containers/Bundle/Application/65C9063B-1585-4CA7-82A6-1839D380BC0E/Swatched.app/Swatched\
0x107324000 - 0x10737ffff libc++.1.dylib (*) <0f7cacf5-28e6-356c-95d2-6caab944290b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib\
0x107614000 - 0x10762ffff libc++abi.dylib (*) <0910da7d-c457-3815-b689-1b1134e1f888> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib\
0x107d94000 - 0x108017fff libicucore.A.dylib (*) <2adcfd82-acc2-3b5d-aff4-1af0b1b935fc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libicucore.A.dylib\
0x107a1c000 - 0x107bb7fff libsqlite3.dylib (*) <8277baca-4142-3bab-b7a1-fabfc9b987a1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libsqlite3.dylib\
0x107654000 - 0x10765bfff libswiftCoreGraphics.dylib (*) <b0516732-1c10-3f49-9274-636a1c5d9ad2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreGraphics.dylib\
0x1073e8000 - 0x1073fbfff libz.1.dylib (*) <6f052406-30ff-3782-9363-0fc861ab1b39> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libz.1.dylib\
0x107684000 - 0x10779ffff com.apple.audio.toolbox.AudioToolbox (1.8) <91f936aa-c0b2-3dfa-ab97-e7b4c0c99483> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox\
0x108a8c000 - 0x108e0ffff com.apple.CFNetwork (1399) <edb4f97c-7130-3593-916f-73559d4e0f7f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork\
0x108134000 - 0x10872bfff com.apple.CoreGraphics (2.0) <4b7be1c4-b9c6-33c4-b8d9-fd21d477a95d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics\
0x10940c000 - 0x10951ffff com.apple.CoreTelephony (113) <2796e214-963f-35ba-be4a-d8b4e6c007b6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony\
0x108f3c000 - 0x1090f3fff com.apple.CoreText (751) <c107a560-5195-3a18-9338-f26fd0fbdcc4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreText.framework/CoreText\
0x10c764000 - 0x10d01bfff com.apple.Foundation (6.9) <532aae62-f6cf-3de2-8988-170389a83ad5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation\
0x10a3a0000 - 0x10a7fffff com.apple.ImageIO (3.3.0) <7a2f7768-ccfc-312e-a7a2-2885aadc8885> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageIO.framework/ImageIO\
0x10aa14000 - 0x10bd6bfff com.apple.JavaScriptCore (8614) <21d148db-d8df-3c62-8623-bf3318b3c4b3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore\
0x10749c000 - 0x1074cffff com.apple.LocalAuthentication (1.0) <f98014e3-0c87-35ad-b47b-3fa0d4550f25> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication\
0x1078ac000 - 0x1078affff com.apple.MobileCoreServices (1226) <739cf78b-015f-3990-8035-a4a03ca3c78e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices\
0x10c248000 - 0x10c503fff com.apple.QuartzCore (1.11) <9b52a9bc-71eb-3c63-aa74-72f8a6c93d5b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuartzCore.framework/QuartzCore\
0x10e044000 - 0x10e247fff com.apple.SafariServices (16.1) <b57f80a5-f5bc-3294-b78e-3cd8aad6d03f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/SafariServices\
0x109c00000 - 0x109d77fff com.apple.Security (10.0) <b4a7b31d-a6b9-39d4-874d-e244f5c9e837> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Security.framework/Security\
0x1078c4000 - 0x10793bfff com.apple.SystemConfiguration (1.21) <970b6549-7fd0-322f-8f14-936d36e5ad01> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration\
0x107894000 - 0x107897fff com.apple.UIKit (1.0) <3a60b8a2-486c-30b4-a81c-b5e2c6d2d893> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit\
0x109ecc000 - 0x10a1b3fff dev.hermesengine.iphonesimulator (0.12.0) <c30f5dd9-ac2a-34b9-930f-91dae853c5a9> /Users/USER/Library/Developer/CoreSimulator/Devices/C21F0312-680B-43B5-AF47-BC7E2A26BD86/data/Containers/Bundle/Application/65C9063B-1585-4CA7-82A6-1839D380BC0E/Swatched.app/Frameworks/hermes.framework/hermes\
0x107bfc000 - 0x107c5bfff com.apple.AuthenticationServices (12.0) <776bd3bf-aa72-34ce-b825-d913d71d4681> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices\
0x107cf8000 - 0x107d37fff com.apple.UserNotifications (1.0) <4f71564f-2991-3da8-a427-3b491b8c3a54> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UserNotifications.framework/UserNotifications\
0x10798c000 - 0x1079c3fff libobjc.A.dylib (*) <ebfccc66-96d4-34d3-86b4-a0b3937a18ac> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib\
0x10787c000 - 0x10787ffff libSystem.B.dylib (*) <cca65ff4-d6ee-3cd3-a70d-4ed95b3a07e7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libSystem.B.dylib\
0x108898000 - 0x10889bfff com.apple.avfoundation (2.0) <5cfd5449-7f8d-3565-bcec-c2d59bcca673> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/AVFoundation\
0x109680000 - 0x1097dbfff com.apple.AVKit (1.0) <c07c2063-3a88-37cd-afaa-c5e69be24709> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVKit.framework/AVKit\
0x107a04000 - 0x107a07fff com.apple.Accelerate (1.11) <1a10959d-75bd-3ef9-859b-12900713a630> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Accelerate\
0x10f360000 - 0x10f70ffff com.apple.CoreFoundation (6.9) <b02805dc-7bce-3571-8eb6-ff671506488b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation\
0x10fb20000 - 0x10fe2ffff com.apple.CoreImage (15.0) <152231c0-adef-3507-9cca-688a8eb68535> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreImage.framework/CoreImage\
0x1088ac000 - 0x108993fff com.apple.CoreMedia (1.0) <842bf7f8-4d4e-3acb-b27f-9d4536c3c480> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMedia.framework/CoreMedia\
0x10ebc8000 - 0x10ee5bfff com.apple.coremotion (2780.0.17.0.2) <f040eb9d-3a65-3945-90dc-55aa75ff18f3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMotion.framework/CoreMotion\
0x10e508000 - 0x10e6dbfff com.apple.CoreServices (839) <0315e395-91fa-3cad-8fdd-455292fb4af0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreServices.framework/CoreServices\
0x108a4c000 - 0x108a5bfff com.apple.MediaAccessibility (1.0) <b00b465b-35cc-344f-920f-da8cae9fcffb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility\
0x109280000 - 0x109297fff com.apple.MetricKit (1.0) <bd44d717-327d-3062-8c56-0f1beed8a304> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetricKit.framework/MetricKit\
0x110c08000 - 0x110eabfff com.apple.Photos (1.0) <f99d851e-cb6a-3a1e-8482-ec8a758fd8da> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Photos.framework/Photos\
0x1091fc000 - 0x109223fff com.apple.PhotosUI (1.0) <beee525f-55b6-3284-9a48-86b7531cf3d8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PhotosUI.framework/PhotosUI\
0x113d98000 - 0x1147c3fff com.apple.WebKit (8614) <ada71275-d50d-3495-809f-2fa0719363c0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/WebKit.framework/WebKit\
0x1100dc000 - 0x110553fff libswiftCore.dylib (*) <4519f814-140a-3742-a724-e428cc1d7bd6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCore.dylib\
0x109330000 - 0x109337fff libswiftCoreFoundation.dylib (*) <11d10201-cfb4-3b06-bb3c-6c538d2e656d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreFoundation.dylib\
0x1079f0000 - 0x1079f3fff libswiftCoreImage.dylib (*) <eafafe51-a358-3b5d-8349-3bc63341f35c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreImage.dylib\
0x109304000 - 0x10930ffff libswiftDarwin.dylib (*) <b0de2f0e-f5f1-329c-8956-c4b55d91b738> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftDarwin.dylib\
0x108a78000 - 0x108a7bfff libswiftDataDetection.dylib (*) <0afe04cd-cdf5-37be-a5b0-fe1895d598c9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftDataDetection.dylib\
0x109368000 - 0x10937ffff libswiftDispatch.dylib (*) <5b73cedd-df31-3a84-ba65-9580f1bf1176> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftDispatch.dylib\
0x109264000 - 0x109267fff libswiftFileProvider.dylib (*) <90b667e0-7374-37f5-8e15-defd6e8d0884> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftFileProvider.dylib\
0x1092c4000 - 0x1092cbfff libswiftMetal.dylib (*) <f2eaa2a7-a429-350c-a472-77bf974598cf> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftMetal.dylib\
0x1099a4000 - 0x1099a7fff libswiftObjectiveC.dylib (*) <9d011511-f76c-32e1-8a54-a6f633a61356> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftObjectiveC.dylib\
0x1092ec000 - 0x1092effff libswiftQuartzCore.dylib (*) <7321dc11-deb2-34c1-bd34-9bdb16ac188a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftQuartzCore.dylib\
0x1099c0000 - 0x109a27fff libswiftUIKit.dylib (*) <e33a963a-8527-3551-b027-5714319c2e82> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftUIKit.dylib\
0x107a10000 - 0x107a13fff libswiftFoundation.dylib (*) <088dcf0e-c93f-3085-be11-3bb1d903284a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftFoundation.dylib\
0x1093ec000 - 0x1093f3fff libcache.dylib (*) <00fd85ab-a56f-3616-8275-027b2166d3de> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcache.dylib\
0x109b5c000 - 0x109b6bfff libcommonCrypto.dylib (*) <742eed08-89ec-3014-8f3b-775fbdcde840> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcommonCrypto.dylib\
0x109b14000 - 0x109b17fff libcompiler_rt.dylib (*) <f6acbb39-c075-38ea-8372-a05d468e8228> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcompiler_rt.dylib\
0x1093c8000 - 0x1093d3fff libcopyfile.dylib (*) <d7b7a36d-2a24-3eef-b47c-50ac22d5faa0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcopyfile.dylib\
0x10e890000 - 0x10e917fff libcorecrypto.dylib (*) <7893c2ca-4cf3-3e4f-9fa1-732819495a30> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcorecrypto.dylib\
0x10c6b8000 - 0x10c6fffff libdispatch.dylib (*) <2cd267ae-adf6-3f56-897a-04baff62b34f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib\
0x109b84000 - 0x109ba7fff libdyld.dylib (*) <386c2546-24ab-3800-9686-a0306437cc59> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdyld.dylib\
0x109bd0000 - 0x109bd7fff libmacho.dylib (*) <8b199d74-9424-3f45-b1fb-fa5712e98d22> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libmacho.dylib\
0x109b44000 - 0x109b47fff libremovefile.dylib (*) <74ab61da-3c46-377f-bf42-670372a0058e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libremovefile.dylib\
0x10a240000 - 0x10a257fff libsystem_asl.dylib (*) <8102f577-405e-391e-8706-110939e325c4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_asl.dylib\
0x109b28000 - 0x109b2bfff libsystem_blocks.dylib (*) <a641f1b1-cbb7-3b50-a31c-1caa7017795f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_blocks.dylib\
0x10a270000 - 0x10a2effff libsystem_c.dylib (*) <bb937670-480a-35f7-8422-2cb8216b06d7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib\
0x109be4000 - 0x109bebfff libsystem_collections.dylib (*) <4b617f17-8de6-31f7-848d-4a200a1d86ce> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_collections.dylib\
0x10a20c000 - 0x10a20ffff libsystem_configuration.dylib (*) <dd41952b-1a06-3a5c-9b59-5e4669cd0d1e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_configuration.dylib\
0x10a324000 - 0x10a353fff libsystem_containermanager.dylib (*) <4a3abfdb-b5e0-3294-857d-ef920607bc10> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_containermanager.dylib\
0x10a220000 - 0x10a223fff libsystem_coreservices.dylib (*) <4372ea11-9e09-3075-be55-36c31dba2954> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_coreservices.dylib\
0x10a1e8000 - 0x10a1f3fff libsystem_darwin.dylib (*) <18bf0175-40ac-3a87-89b3-f508a29611e0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_darwin.dylib\
0x10a378000 - 0x10a383fff libsystem_dnssd.dylib (*) <99827dc7-5113-3c6a-a7ef-b005d5fb2877> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_dnssd.dylib\
0x10c750000 - 0x10c753fff libsystem_featureflags.dylib (*) <c1c261b6-9b9a-3961-ac49-4fb46d6e8afd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_featureflags.dylib\
0x10e9d0000 - 0x10e9f7fff libsystem_info.dylib (*) <9eb3814c-b483-3dc2-8b2b-fb2fe88edd30> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_info.dylib\
0x10e948000 - 0x10e97ffff libsystem_m.dylib (*) <69b70b93-a3f2-33f0-9a99-084562a3c0b3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_m.dylib\
0x10eab0000 - 0x10eadbfff libsystem_malloc.dylib (*) <9dc17fe4-0899-3161-90f7-a0e08811e142> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_malloc.dylib\
0x10e994000 - 0x10e9abfff libsystem_networkextension.dylib (*) <7fe55a6f-e29e-3f20-b9d1-7851659560a7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_networkextension.dylib\
0x10ea4c000 - 0x10ea57fff libsystem_notify.dylib (*) <b045d197-2e5c-341d-a2ae-eb716565bf33> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_notify.dylib\
0x10ea68000 - 0x10ea6bfff libsystem_sandbox.dylib (*) <294ad306-3b41-30ec-a4fc-29406cffd88c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sandbox.dylib\
0x10ea80000 - 0x10ea83fff libsystem_sim_kernel.dylib (*) <e86c713f-d4cc-3abd-bd32-a26093dc0055> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel.dylib\
0x10ea98000 - 0x10ea9bfff libsystem_sim_platform.dylib (*) <67a3e008-144f-3cf5-b643-53c5224be7da> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform.dylib\
0x10eb00000 - 0x10eb03fff libsystem_sim_pthread.dylib (*) <8ea35aab-4ed4-31d6-95f4-cc7ca41ec886> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread.dylib\
0x10ea18000 - 0x10ea2ffff libsystem_trace.dylib (*) <81029b42-ad41-3973-98ff-613787d86da4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_trace.dylib\
0x10eb48000 - 0x10eb53fff libunwind.dylib (*) <4d5a5775-db25-3155-a36d-4adefe251260> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libunwind.dylib\
0x10f020000 - 0x10f057fff libxpc.dylib (*) <3f18c9de-fa26-39f9-b70f-e36dcb8671e7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libxpc.dylib\
0x10eb34000 - 0x10eb37fff libsystem_sim_platform_host.dylib (*) <d7e52142-17bd-3a7d-affe-e93b6cd1373c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform_host.dylib\
0x10eb64000 - 0x10eb6bfff libsystem_platform.dylib (*) <ab5567c0-de17-35cb-85e0-70e49539125b> /usr/lib/system/libsystem_platform.dylib\
0x10ef34000 - 0x10ef6bfff libsystem_kernel.dylib (*) <4440d44a-2ab3-3da1-9d8b-42f51e44b45b> /usr/lib/system/libsystem_kernel.dylib\
0x10eb84000 - 0x10eb87fff libsystem_sim_kernel_host.dylib (*) <a7975bd4-566a-3e37-a518-38046ac903f4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel_host.dylib\
0x10eb94000 - 0x10eb97fff libsystem_sim_pthread_host.dylib (*) <959877ea-5028-32a4-a6c3-78c63001fedc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread_host.dylib\
0x10ef98000 - 0x10efa7fff libsystem_pthread.dylib (*) <ba7c01fe-353b-3146-a7c6-f2bb8a0fa842> /usr/lib/system/libsystem_pthread.dylib\
0x10f098000 - 0x10f1dffff libFontParser.dylib (*) <51049906-24e7-369a-bb72-5c28376e41ce> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib\
0x110a50000 - 0x110a83fff libMobileGestalt.dylib (*) <72f34bb3-fd28-3914-8295-552e6f8acde9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestalt.dylib\
0x10efd4000 - 0x10efe3fff com.apple.IOSurface (334.0.1) <c5a68111-cd3d-3889-a7db-21d9a3999ddc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOSurface.framework/IOSurface\
0x1108d4000 - 0x1109b7fff libxml2.2.dylib (*) <41ac5489-2338-32a6-93da-7efd3114c49e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxml2.2.dylib\
0x110a08000 - 0x110a13fff libhvf.dylib (*) <4dc28804-2e6e-3f6e-862b-b43f2f031331> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib\
0x10eba4000 - 0x10eba7fff com.apple.SoftLinking (1.0) <97f11466-ef16-3512-8c3c-b0d4962a0f90> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking\
0x110b14000 - 0x110bdffff libcompression.dylib (*) <586ab4fb-aa8b-3427-aaf1-9781e7a5ed3e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcompression.dylib\
0x112264000 - 0x1125dffff com.apple.vImage (8.1) <03f73e00-125b-3210-b80b-3a1c93f13d25> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage\
0x109400000 - 0x109403fff com.apple.Accelerate.vecLib (3.11) <c10077b8-4c21-39cb-9624-799a3bda90fd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib\
0x10f320000 - 0x10f33bfff liblzma.5.dylib (*) <2d51a9d5-a1ab-3d7f-a608-f5f39888d092> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblzma.5.dylib\
0x1113b0000 - 0x11140ffff libvMisc.dylib (*) <f6bec5bc-d93b-350d-94cb-cee28240cadb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib\
0x1111a8000 - 0x111277fff libvDSP.dylib (*) <7416362b-4125-3dde-8b5d-bfc6fbf262f9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib\
0x111294000 - 0x11133ffff libBLAS.dylib (*) <2c17ec6c-47fd-3655-b8f7-1333ea1216a9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib\
0x111b80000 - 0x111e93fff libLAPACK.dylib (*) <3a9c785c-9684-3252-9b19-88b27bef5311> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib\
0x111420000 - 0x111437fff libLinearAlgebra.dylib (*) <201a239f-3ed9-3621-8f10-b3451e52e510> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib\
0x11144c000 - 0x11145ffff libSparseBLAS.dylib (*) <18b91d5d-2172-3404-971f-3f3129f2d936> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib\
0x10eb18000 - 0x10eb1ffff libQuadrature.dylib (*) <2734cc82-f874-3e10-b7de-6e564c1b4b1b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib\
0x111474000 - 0x1118f7fff libBNNS.dylib (*) <e47f9d81-6b16-361b-8752-df0a429137f4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib\
0x111a4c000 - 0x111ab3fff libSparse.dylib (*) <0667a423-26db-3cc3-bbee-6527562a1c46> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib\
0x112fd0000 - 0x113287fff com.apple.MIL (4.28) <925da67f-df02-33bc-bd00-cfb3271f4c8d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MIL.framework/MIL\
0x111ad4000 - 0x111b03fff com.apple.CoreServicesInternal (505) <2f547554-bf83-39e1-95b1-21f6662048e0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal\
0x11193c000 - 0x11197ffff com.apple.CoreAutoLayout (1.0) <a031e826-4c22-3971-8525-b08a6bd99754> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout\
0x112038000 - 0x1120bbfff libarchive.2.dylib (*) <c8ce6332-71ce-3202-bf65-7fe1f4ef1ea0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libarchive.2.dylib\
0x10ebb4000 - 0x10ebb7fff liblangid.dylib (*) <ea9fbd29-26ca-3eaa-be22-f9344d9e94b6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblangid.dylib\
0x111ee8000 - 0x111f7ffff com.apple.framework.IOKit (2.0.2) <3b8d7b34-bca5-3f3d-b424-35f2604eb5c2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit\
0x112afc000 - 0x112bf3fff com.apple.combine (1.0) <236c30e3-d604-32e1-bb2c-df2e374effae> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Combine.framework/Combine\
0x1119d0000 - 0x1119dbfff libswiftXPC.dylib (*) <2d7472cb-d40c-3dff-b38b-7d6461bea4e3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftXPC.dylib\
0x112648000 - 0x11268ffff libswift_Concurrency.dylib (*) <042a1d71-f740-38d9-bfb7-570dd0d35bd3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswift_Concurrency.dylib\
0x1120e0000 - 0x11216ffff libswift_StringProcessing.dylib (*) <b8c1c678-8f36-3839-ac4b-a2e7f5eddb07> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswift_StringProcessing.dylib\
0x111358000 - 0x11136ffff libswiftos.dylib (*) <34754cf3-8187-34f0-89d3-3f94dae410ad> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftos.dylib\
0x111b44000 - 0x111b5bfff libapple_nghttp2.dylib (*) <760d6a82-eede-3ded-a21f-9d0429f772fb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapple_nghttp2.dylib\
0x10a234000 - 0x10a237fff libnetwork.dylib (*) <65609129-d408-34e9-994d-455d298ea2a3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetwork.dylib\
0x116f50000 - 0x1179e3fff com.apple.Network (1.0) <f34f4f0e-1ed5-3db3-bb1d-8503919c67cb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Network.framework/Network\
0x111fec000 - 0x111ffffff libbsm.0.dylib (*) <c6daf6d7-4545-3daf-bf20-89f2993ae28c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbsm.0.dylib\
0x1127d4000 - 0x1127f3fff com.apple.SecurityFoundation (1.0) <1151aebb-16a2-3221-90c2-51cf2a1c394b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation\
0x1119f8000 - 0x111a13fff com.apple.ProtocolBuffer (1) <c5fa7b2f-d56f-3029-ac1d-088810e60796> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer\
0x112014000 - 0x11201bfff libCoreEntitlements.dylib (*) <610b05dc-d7f4-34a0-9b1b-607c9e40cc99> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCoreEntitlements.dylib\
0x112848000 - 0x11286ffff com.apple.MessageSecurity (1.0) <d810bfe0-3533-33da-9a66-6e7d33dc8ba8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MessageSecurity.framework/MessageSecurity\
0x11221c000 - 0x112233fff libcoretls.dylib (*) <ef459a70-c748-36ba-8681-fc1fd2f007c0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls.dylib\
0x10f008000 - 0x10f00bfff libcoretls_cfhelpers.dylib (*) <d971f776-7e52-398d-a9ad-a7bb6c1fc1ea> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls_cfhelpers.dylib\
0x11224c000 - 0x112253fff libheimdal-asn1.dylib (*) <c50ef9a4-6222-370b-9548-925fd73f8108> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libheimdal-asn1.dylib\
0x11272c000 - 0x11273bfff libbz2.1.0.dylib (*) <87fd0cce-860a-3810-b369-13497b6468e0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbz2.1.0.dylib\
0x112d68000 - 0x112e5bfff libiconv.2.dylib (*) <a279162d-5115-3288-975c-94bd80872962> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libiconv.2.dylib\
0x10f34c000 - 0x10f34ffff libcharset.1.dylib (*) <865f7660-0abb-3a09-bd8a-fb7dab11aa0e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcharset.1.dylib\
0x1128b8000 - 0x11295ffff libswift_RegexParser.dylib (*) <59234620-2922-3695-94c3-bc1e9018c39a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswift_RegexParser.dylib\
0x115398000 - 0x11560bfff com.apple.audio.AudioToolboxCore (1.0) <46afc2eb-44ac-340f-9cf9-6d658879a1bc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore\
0x11274c000 - 0x11278bfff com.apple.audio.AudioSession (1.0) <aa80d3fa-0325-30b4-95e4-ee681cb00ad4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AudioSession.framework/AudioSession\
0x1126f0000 - 0x1126f7fff com.apple.MediaExperience (1.0) <46521e7e-a3f8-3c94-a2c6-f9d7d8bc561c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience\
0x112a88000 - 0x112a9bfff com.apple.TCC (1.0) <f7f7336b-f8be-3d8d-919a-fe51a31ca5d8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TCC.framework/TCC\
0x112e78000 - 0x112ef7fff com.apple.SpringBoardServices (1.0) <a8762d5b-4a6e-31d6-b367-96ebc0fa33e9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices\
0x113730000 - 0x1137c3fff com.apple.FrontBoardServices (812.8.1) <14769e50-ce51-31db-b411-e82036ae4427> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices\
0x112abc000 - 0x112acbfff libAudioStatistics.dylib (*) <c9988478-5f6b-35f5-968a-9dead81cd453> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioStatistics.dylib\
0x11358c000 - 0x1135b3fff com.apple.audio.caulk (1.0) <fb733640-62a7-3f93-94e7-36c5cd814852> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/caulk.framework/caulk\
0x116780000 - 0x116bc3fff com.apple.audio.CoreAudio (5.0) <8cded82f-edf1-3106-a2fc-507312e5d5dc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreAudio.framework/CoreAudio\
0x11361c000 - 0x11364ffff libAudioToolboxUtility.dylib (*) <7e9920b7-9d3b-31a0-b9fd-8e8f20d01a7a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioToolboxUtility.dylib\
0x113484000 - 0x113493fff com.apple.AssertionServices (1.0) <63e65590-159f-3451-b927-7731150a90df> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices\
0x1134b0000 - 0x11351ffff com.apple.audio.midi.CoreMIDI (2.0) <f8d38c36-fc1d-368c-a42c-9048bf55750c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMIDI.framework/CoreMIDI\
0x112a60000 - 0x112a67fff com.apple.OSAServicesClient (1.0) <f1fd8636-de05-3dc8-ae79-c4d919649b6c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient\
0x113688000 - 0x11368ffff com.apple.ist.IdleTimerServices (1.0) <0cad3116-c131-32bd-9ce0-2febe72a6db6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices\
0x113b4c000 - 0x113bf3fff com.apple.BaseBoard (617.8) <cf16c64e-3fe6-355d-b6ff-ab724a055fcd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard\
0x1139cc000 - 0x113a1ffff com.apple.BoardServices (1.0) <c3409b2b-aac8-3e71-b35d-71340ebd2740> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BoardServices.framework/BoardServices\
0x11388c000 - 0x11390bfff com.apple.BackBoardServices (1.0) <e374fc69-0ca5-35a5-bcb2-852a2da78574> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices\
0x112a24000 - 0x112a2ffff com.apple.GraphicsServices (1.0) <66f66f45-e32d-348b-9833-1f04b12a4703> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices\
0x113a6c000 - 0x113abffff com.apple.RunningBoardServices (1.0) <944d3b91-17e0-374b-a900-5e1f3ae8a611> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices\
0x1136a8000 - 0x1136ebfff com.apple.AppleJPEG (1.0) <d1d70029-bf43-3af8-8776-70ed29e3b3c9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG\
0x113d08000 - 0x113d23fff libexpat.1.dylib (*) <448efe95-a211-3ca9-975c-9de520f21e77> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libexpat.1.dylib\
0x115a0c000 - 0x115ad3fff com.apple.ColorSync (4.13.0) <676c4f53-bd31-3a61-8e71-170cea2ab70c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ColorSync.framework/ColorSync\
0x115b24000 - 0x115babfff libate.dylib (*) <fbf2fcb1-6507-33a2-8f94-490ba10e74bc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libate.dylib\
0x1158c4000 - 0x1158fbfff com.apple.MobileInstallation (2.0) <910d3f35-9939-3cfd-8dd3-302c5c6b7a81> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation\
0x115d98000 - 0x115e0bfff com.apple.InstalledContentLibrary (1.0) <1797289f-e735-3bba-9ce2-833ec790a90c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/InstalledContentLibrary\
0x1157e0000 - 0x11583ffff com.apple.bom (14.0) <b9228183-a5a8-39e1-81dd-763fde7268e6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Bom.framework/Bom\
0x110a3c000 - 0x110a3ffff com.apple.MobileSystemServices (1.0) <3806ba41-ba0c-316f-a9aa-4bb6dd6d3651> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices\
0x11593c000 - 0x1159a3fff libParallelCompression.dylib (*) <6f576997-b329-30a7-8e44-3bc82344ee73> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libParallelCompression.dylib\
0x115c9c000 - 0x115cd3fff com.apple.CSStore (1141.1) <ef17db84-f327-3af0-9c4d-da89d09b9b1e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore\
0x113708000 - 0x113713fff libGSFont.dylib (*) <c6edc87a-3e98-3cc7-bd45-2d33400e12af> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib\
0x113cb0000 - 0x113cbffff com.apple.FontServices (1.0) <2eddf262-40e3-3933-9154-062ed6d0d96f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/FontServices\
0x11622c000 - 0x11626bfff libGSFontCache.dylib (*) <2677b55e-9a5b-393f-baf7-95dbc1c6f482> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib\
0x115bc4000 - 0x115bf7fff libAccessibility.dylib (*) <a6d0da3a-c9fd-3712-894f-a04cf2c5260c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAccessibility.dylib\
0x115fb4000 - 0x115ff3fff com.apple.OTSVG (1.0) <2cad18df-a2f3-342d-8eb6-c95a94e02a37> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG\
0x113d34000 - 0x113d47fff com.apple.UniformTypeIdentifiers (709) <a2faa722-712e-3298-9656-6f7cb4c6d890> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers\
0x11586c000 - 0x11588bfff com.apple.accessibility.AXCoreUtilities (1.0) <038525fc-427d-3624-aef1-af4ef5af6530> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities\
0x113d68000 - 0x113d77fff libperfcheck.dylib (*) <961acc52-6c90-361a-a6bb-950039d9b409> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libperfcheck.dylib\
0x1159cc000 - 0x1159d7fff com.apple.perfdata (1.0) <d6d691e4-dfc2-38a1-94f9-a890f0b8b876> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/perfdata.framework/perfdata\
0x115d0c000 - 0x115d3ffff libSessionUtility.dylib (*) <428cab1a-f7f2-3505-8d4a-13b119591a8e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib\
0x115f4c000 - 0x115f77fff com.apple.analyticsd (1.0) <6ed97b04-67a2-3380-85bb-5282595a9f67> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics\
0x115c3c000 - 0x115c5ffff com.apple.applesauce (1.0) <5f02e6e8-baeb-303f-bc49-e0a0336eaf5b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce\
0x112a48000 - 0x112a4ffff com.apple.iphonesimulator.SimulatorClient (1.0) <2da07ccb-6884-3bbc-b7a8-21227d9ac9bf> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient\
0x111a38000 - 0x111a3bfff com.apple.perf.apple.SignpostMetrics (1.0) <c0e51c0a-a2cd-30af-aada-32f846ba11e3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics\
0x115e88000 - 0x115ebbfff com.apple.CoreVideo (1.8) <72f001ca-05a0-3dda-81cd-8016800b6ad7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreVideo.framework/CoreVideo\
0x118634000 - 0x1187affff com.apple.Metal (306.2.5) <0bc07021-aaf1-34ef-b39a-cd2e2777e2f5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal\
0x115c74000 - 0x115c83fff com.apple.opengles (20.0.32) <5f2bfcb3-8e43-3f8d-b438-ffce6117449d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/OpenGLES\
0x113ce4000 - 0x113cebfff com.apple.CoreSimulator.SimFramebufferClient (822) <f5f3a150-7819-30c1-8e07-be5e147d57e1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimFramebufferClient.framework/SimFramebufferClient\
0x112718000 - 0x11271ffff libCoreFSCache.dylib (*) <fad6ad98-b907-3eac-86d0-917a75e842bf> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib\
0x115ef0000 - 0x115f2bfff libllvm-flatbuffers.dylib (*) <5a66a00a-cc4e-3a1c-9e66-de9b333a4fb1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libllvm-flatbuffers.dylib\
0x113578000 - 0x11357ffff libGPUCompilerUtils.dylib (*) <01f2817e-78f1-3dc4-a0e6-996b830f388a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib\
0x115d74000 - 0x115d7ffff libGFXShared.dylib (*) <c8d4527d-45fb-35b4-bced-1628abf8e64d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib\
0x1160e4000 - 0x11611ffff libGLImage.dylib (*) <ebc710db-9c43-3a48-b3a6-b2e054b947ca> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib\
0x1159f8000 - 0x1159fbfff libCVMSPluginSupport.dylib (*) <c52947a1-09c2-3676-b61b-2a6d8c388c2d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib\
0x116084000 - 0x11608ffff libCoreVMClient.dylib (*) <91c15296-760c-3f86-96db-ad90363fff89> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib\
0x11ad2c000 - 0x11b9cbfff libLLVMContainer.dylib (*) <ab2e1db7-ac05-3931-bd42-f1da65f75750> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib\
0x1160a4000 - 0x1160abfff com.apple.CoreTime (*) <ae88b5bf-43e8-3bc1-b8b7-1b1ebea59814> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime\
0x1160c0000 - 0x1160c7fff libcupolicy.dylib (*) <a499d746-aed2-3a42-8338-00f33cd733aa> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcupolicy.dylib\
0x116134000 - 0x11617bfff libTelephonyUtilDynamic.dylib (*) <76e70b5d-e310-3191-b85c-acec3830b137> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libTelephonyUtilDynamic.dylib\
0x11604c000 - 0x116063fff com.apple.commonutilities (8.0) <89d0b16b-8b8b-3a93-b6ca-9dfe6e1b9beb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities\
0x116494000 - 0x1164b7fff com.apple.CoreAuthentication.SharedUtils (1.0) <10ee65b4-e0f7-3de9-9f98-38ed3c903f60> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils\
0x116648000 - 0x11668ffff com.apple.CryptoTokenKit (1.0) <afaabf4d-0758-3c1f-9574-4f2fec7885d1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit\
0x1163f8000 - 0x11642bfff com.apple.pluginkit.framework (1.0) <1115b005-c41b-3866-b41d-ca1163d5bd58> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit\
0x118038000 - 0x1180e3fff com.apple.CoreSuggestions (1.0) <a86b7e1e-fc0f-3b64-ba1a-fbbe7afeb221> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions\
0x11645c000 - 0x116467fff com.apple.mobileicons.framework (1.0) <2c4e42ae-878d-3c22-9deb-3013835a95fa> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons\
0x1164e8000 - 0x11655bfff com.apple.AuthenticationServicesCore (1.0) <db1924aa-32cd-304b-bae6-6c83894f8638> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/AuthenticationServicesCore.framework/AuthenticationServicesCore\
0x1165d0000 - 0x1165fbfff com.apple.DocumentManagerCore (1.0) <1ad56c9c-2064-30cc-8d75-d4e343f50c82> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore\
0x117e6c000 - 0x117eaffff com.apple.QuickLookThumbnailing (1.0) <5c5bb888-149f-3133-a38f-3ee3acd75433> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing\
0x117d34000 - 0x117d7ffff com.apple.OnBoardingKit (1.0) <69e75356-38b1-31e2-af94-876cb315b5ff> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit\
0x1181c4000 - 0x1182d3fff com.apple.preferences-framework (1) <853e4a72-b48d-3ec0-b9c0-13425c122c57> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Preferences.framework/Preferences\
0x118444000 - 0x1184fbfff com.apple.WebBookmarks (8614) <3ddfe639-5c48-3bbd-aaef-9e381d4bbb84> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks\
0x11982c000 - 0x119b0ffff com.apple.ContactsUI (1.0.0) <ab848613-e3ff-3a4d-b806-7e9065914968> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ContactsUI.framework/ContactsUI\
0x1166fc000 - 0x116707fff com.apple.CertUI (1.0) <d5a5967b-70e5-388b-beaa-5737d0989436> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CertUI.framework/CertUI\
0x118ac0000 - 0x118df3fff com.apple.PencilKit (1.0) <17ed3fd5-bd32-34e0-b0d3-d01bd267fc4f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PencilKit.framework/PencilKit\
0x116720000 - 0x116723fff com.apple.Celestial (1.0) <122113ba-1c4d-3a97-b35f-09dd84716f12> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Celestial.framework/Celestial\
0x117f10000 - 0x117f5bfff com.apple.IconServices (552) <79858f89-07ec-3988-b929-973da4c0d910> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IconServices.framework/IconServices\
0x1194bc000 - 0x11956ffff com.apple.AuthKit (1.0) <24a83de6-3dbb-3276-807e-c61894bdae7a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit\
0x11936c000 - 0x1193bffff com.apple.DeviceManagement (1.0) <8d001d82-d57b-3abe-a443-e9a553c30f55> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement\
0x11a3ac000 - 0x11a4affff com.apple.mobilesafari.framework (16.1) <44ef2328-3c4e-3fce-926b-a82388886b06> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/MobileSafari.framework/MobileSafari\
0x117df0000 - 0x117e17fff com.apple.UIKitServices (1.0) <ce6279c7-6b4f-3a2c-9bbc-ff114a549eda> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices\
0x119f04000 - 0x11a0d7fff com.apple.Safari.Shared.UI (8614) <13925c6a-ba73-3a81-9124-bde155e0bef6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI\
0x117fd0000 - 0x117ff3fff com.apple.SafariFoundation (8614) <6a393e6d-cfe0-3d3e-b444-ed4e6a1a8f86> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation\
0x11cd48000 - 0x11d0bffff com.apple.MediaPlayer (1.0) <89778652-2b21-317b-b015-ec6bc3d8db69> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaPlayer.framework/MediaPlayer\
0x11a614000 - 0x11a8cbfff com.apple.MapKit (1.0) <8ec0f627-c653-30d7-9add-aecd7fc7b1a1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MapKit.framework/MapKit\
0x11c1c4000 - 0x11c26bfff com.apple.TextInput (1.0) <cabc1eb8-6cca-37f4-a7ee-8d7c3e9862f5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInput.framework/TextInput\
0x11917c000 - 0x11925ffff com.apple.corelocation (2780.0.17.0.2) <faf09d23-cb19-3a97-ad36-130e72283b1d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocation.framework/CoreLocation\
0x1192cc000 - 0x11930ffff com.apple.awd (1.0) <60d99886-ce86-3723-a69b-8b63f5b0c413> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics\
0x11bde4000 - 0x11bf87fff com.apple.contacts (1.0) <199ff8e9-bf69-3fd5-b6e8-1c4cffb85b49> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Contacts.framework/Contacts\
0x11c83c000 - 0x11c943fff com.apple.managedconfiguration (1.0) <77e89ab1-ec47-3995-946d-4918f90999f0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration\
0x11c3bc000 - 0x11c503fff com.apple.TelephonyUtilities (1.0) <4d0ebc47-937c-3861-9bad-d86243662efa> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities\
0x11978c000 - 0x1197cffff com.apple.AppSupport (1.0.0) <a353ecd1-45ef-3e2e-974b-c4927e3284db> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport\
0x1185bc000 - 0x1185dbfff com.apple.WebUI (1.0) <5a23054f-1ae2-33a1-9cff-39ab8f3bd0bb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebUI.framework/WebUI\
0x11dab0000 - 0x11dc0bfff com.apple.FileProvider (730.40.50) <b6a4a674-eaf3-39ee-946a-764976066eb1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/FileProvider.framework/FileProvider\
0x1238d4000 - 0x125227fff com.apple.GeoServices (1.0) <1aa56f3e-e8a9-3b75-a85c-0d8cce9848ea> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices\
0x11f72c000 - 0x11fc77fff com.apple.Intents (1.0) <fd207677-2acc-3905-9349-1fdec4f76cba> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Intents.framework/Intents\
0x119668000 - 0x1196e3fff com.apple.proactive.support.ProactiveSupport (1.0) <2fa50699-04a7-3d23-a615-a4885ae22951> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport\
0x116200000 - 0x116203fff com.apple.PhoneNumbers (1.0) <28209dad-68e4-3265-a670-f458875b7115> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers\
0x11ca84000 - 0x11cb37fff com.apple.CoreSpotlight (1.0) <49e4188b-0d85-3569-8b29-06145968ddfd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight\
0x11a30c000 - 0x11a32ffff com.apple.proactive.support.ProactiveEventTracker (1.0) <d34f3678-863e-350b-85d7-63d8231a5c0e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker\
0x1161e0000 - 0x1161e3fff com.apple.GeoServices (1.0) <dc8799d1-b300-3451-be0b-69230f28c445> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore\
0x11ac0c000 - 0x11ac8bfff com.apple.CoreLocationProtobuf (1) <c23f5765-a0ed-3452-98c5-126565f75546> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf\
0x118610000 - 0x11861bfff com.apple.CorePhoneNumbers (1.0) <f95ddcbd-4cf1-384c-a623-c3d4c0b1104d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers\
0x116214000 - 0x116217fff libCTGreenTeaLogger.dylib (*) <6a2e9e2c-9955-360e-b726-2b39167691e2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCTGreenTeaLogger.dylib\
0x116748000 - 0x116757fff com.apple.IntentsFoundation (1.0) <1f37ea22-5872-3e79-bf73-caa244aa8a47> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation\
0x119468000 - 0x11946bfff com.apple.AggregateDictionary (1.0) <8b1891df-aa82-39c8-9ef2-1aec3e4f812a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary\
0x11947c000 - 0x119487fff com.apple.InternationalSupport (1.0) <aee2b3f0-1575-3f8a-9de4-ec3834eb80fc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport\
0x11c754000 - 0x11c787fff com.apple.locationsupport (2780.0.17.0.2) <ffbcc5da-e2c1-34ab-82b9-f0c7f0853c27> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport\
0x11d79c000 - 0x11d83bfff com.apple.CoreBluetooth (1.0) <9cea7959-ce4f-3a47-bd58-54e099c8f47b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth\
0x11e2ac000 - 0x11e40ffff com.apple.CoreUtils (7.1) <e9519c08-d2d0-36da-8e33-7c1a55d60eb2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils\
0x11a368000 - 0x11a383fff com.apple.CoreUtilsExtras (7.1) <fab9f8d4-dc47-3cf1-808f-b7a4767ed029> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras\
0x11cc28000 - 0x11cc93fff com.apple.MobileAssets (1.0) <b58c17a9-b774-33c1-9a40-c3bf67acaa1e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset\
0x11934c000 - 0x11934ffff com.apple.InternationalTextSearch (1.0) <8544a6ad-ee97-3b66-bb83-b73c66e5eb99> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch\
0x11c7b0000 - 0x11c7d3fff com.apple.RTCReporting (13.1.47) <5ffbaff0-0aff-3f92-8788-1393be6e2336> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting\
0x11d508000 - 0x11d5d7fff com.apple.CoreNLP (1.0) <7a830c6d-535a-3fa9-a628-5a2dcc9573a8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP\
0x11d68c000 - 0x11d6dbfff com.apple.SoftwareUpdateCoreSupport (1.0) <1930bebc-ea71-39e6-b49f-ebca04304a9e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework/SoftwareUpdateCoreSupport\
0x11c718000 - 0x11c72bfff com.apple.SoftwareUpdateCoreConnect (1.0) <828b0cb8-cdbc-3cd9-8478-81073cd9258d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework/SoftwareUpdateCoreConnect\
0x11c6a4000 - 0x11c6e3fff com.apple.StreamingZip (1.0) <8eec8b76-9988-3bcb-9fab-f8db5488b6a5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip\
0x11d9e4000 - 0x11da17fff com.apple.devicemanagementclient.DMCUtilities (1.0) <0e6505e3-5be0-3fcf-9360-821933b26234> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities\
0x11d8e8000 - 0x11d953fff com.apple.Accounts (113) <574c116c-70d8-3af3-a6d7-376bb0e2791c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accounts.framework/Accounts\
0x11c7fc000 - 0x11c80bfff com.apple.datamigration (1.0) <d3c3cf71-8a8d-3143-bc95-e6ba78a30f9e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration\
0x11cd14000 - 0x11cd27fff com.apple.FeatureFlagsSupport (1.0) <528d4dc3-077e-3611-a140-846d4ee96870> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport\
0x11de24000 - 0x11de43fff com.apple.devicemanagementclient.MDMClientLibrary (1.0) <ca7a8080-aa8d-3e24-be5c-44fb2f83de80> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary\
0x11de78000 - 0x11de9ffff com.apple.UserManagement (1.0) <af8ee9e0-b6c2-38be-a7af-ce9259b18163> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement\
0x11d764000 - 0x11d76bfff com.apple.devicemanagementclient.DEPClientLibrary (1.0) <90a8b1a0-6850-3edf-8122-067fc5d9eaee> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DEPClientLibrary.framework/DEPClientLibrary\
0x1203e4000 - 0x12072bfff com.apple.CoreData (120) <da26c8ee-6be8-30c5-bf1d-2ec4e6f50f4e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreData.framework/CoreData\
0x11dd88000 - 0x11dddffff libmecab.dylib (*) <7ffed9ed-c9d6-388e-aacb-af29b58f6201> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecab.dylib\
0x11df68000 - 0x11df97fff libCRFSuite.dylib (*) <fda3b61e-bd7c-3cc4-8a3c-dc4fee1ae4b4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCRFSuite.dylib\
0x119770000 - 0x119773fff libgermantok.dylib (*) <025761d8-9b68-3fa6-b69a-97d5f10a639b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libgermantok.dylib\
0x110bf8000 - 0x110bfbfff libThaiTokenizer.dylib (*) <9eea41c0-6a81-31b6-9707-2d8c602ff62a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libThaiTokenizer.dylib\
0x11dec8000 - 0x11df07fff com.apple.spotlight.metadata.utilities (1.0) <ef48575b-ad0a-3186-a608-d1adba771384> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities\
0x11da68000 - 0x11da73fff libswiftUniformTypeIdentifiers.dylib (*) <4488ff49-eb7d-32da-923e-58e2515b8e17> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftUniformTypeIdentifiers.dylib\
0x11e044000 - 0x11e063fff com.apple.GenerationalStorage (2.0) <84da0fa4-b193-37d2-9a8d-bb80ef561dc6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage\
0x11e08c000 - 0x11e1a3fff com.apple.InternalSwiftProtobuf (1.0) <16307360-cab2-344e-8b95-eba4e8863145> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf\
0x11dfbc000 - 0x11dfd7fff com.apple.IconFoundation (552) <082134c5-9130-328a-9f6b-787a846b734e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation\
0x11e904000 - 0x11e9ebfff com.apple.CoreUI (1.0) <bfe26ed7-6390-3033-9b23-90b8365243cc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI\
0x11e728000 - 0x11e7c7fff com.apple.TextureIO (3.10.10) <00ad8810-0468-39a4-a264-e552c92787f3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO\
0x11e220000 - 0x11e253fff com.apple.CoreSVG (1.0) <99cf9f06-1dbf-3906-b57a-93c1f517261b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG\
0x120a14000 - 0x120dbbfff com.apple.VideoToolbox (1.0) <57abb068-c4ff-38af-afbe-accf9cad4d3c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox\
0x11e008000 - 0x11e013fff com.apple.GraphVisualizer (1.0) <ae09c92f-ed24-3c04-bddd-377831c73f2b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer\
0x11e548000 - 0x11e607fff com.apple.Safari.Core (8614) <58ff8dca-0fe9-3b2b-8595-87766c1e3c20> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariCore.framework/SafariCore\
0x11ed08000 - 0x11ed7bfff com.apple.AuthKitUI (1.0) <d9f57d44-dc25-363d-be40-4f8315266a90> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI\
0x11eaec000 - 0x11eb1bfff com.apple.AppSSO (1.0) <044181d6-5eb9-3eee-a2d7-6a72f0d33df9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSSO.framework/AppSSO\
0x11eb58000 - 0x11ebdffff com.apple.CallKit (1.0) <5f9ea47b-91dc-3c1c-9ddb-99ca91aebf4f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CallKit.framework/CallKit\
0x11eca0000 - 0x11ecc3fff com.apple.LocalAuthenticationPrivateUI (1.0) <400c3cc0-3cdb-373f-8d32-e46f21714c97> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI\
0x120e90000 - 0x121013fff com.apple.Sharing (1847.2.10) <1a432691-b6b1-33f6-9d8c-6a7166bc2fa3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Sharing.framework/Sharing\
0x1211e0000 - 0x121447fff com.apple.cloudkit.CloudKit (2020.16) <2fc586c6-d0f1-3c44-950d-fe03de76e547> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CloudKit.framework/CloudKit\
0x11ee20000 - 0x11ee67fff com.apple.Lexicon-framework (1.0) <39b59e52-f4ec-3a9a-b845-9bfdc89bff83> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Lexicon.framework/Lexicon\
0x11e288000 - 0x11e293fff com.apple.URLFormatting (212) <edfb2e84-ef0a-3bfe-91c7-5fce19b0c9b2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting\
0x11d788000 - 0x11d78bfff libBASupport.dylib (*) <ea570491-429d-38a1-994b-b4721d985066> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libBASupport.dylib\
0x11f314000 - 0x11f44bfff com.apple.AppleAccount (1.0) <3974d40a-f5bf-33b9-917e-707303d6c797> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount\
0x11ee84000 - 0x11eeabfff com.apple.aps.framework (4.0) <e1db3a12-e496-3e8a-80e5-82c9948a6f7e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService\
0x11e800000 - 0x11e843fff com.apple.C2 (1.3) <18fcc67f-8166-3b80-a3e4-d19bade40d25> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/C2.framework/C2\
0x11f558000 - 0x11f683fff com.apple.cloudkit.CloudKitDistributedSync (1.0) <0918b658-5959-36a1-9cdd-c58cf01e7c96> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/CloudKitDistributedSync\
0x11f03c000 - 0x11f08ffff com.apple.ProtectedCloudStorage (1.0) <14988ce9-b5ef-30b8-8e24-a8cb4bed6cbf> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage\
0x11e8dc000 - 0x11e8e3fff com.apple.PushKit (1.0) <01d24e0b-7e79-386f-a1d6-291fb8e487bd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PushKit.framework/PushKit\
0x11f0ec000 - 0x11f117fff com.apple.CoreTransferable (1.0.1) <bd884c8e-a0dd-3b01-8bb6-1515c0800d09> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTransferable.framework/CoreTransferable\
0x11f190000 - 0x11f1e7fff com.apple.security.CryptoKit (1.0) <c65c95a2-d18f-3e5d-9dd5-178959e9e088> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CryptoKit.framework/CryptoKit\
0x111b70000 - 0x111b73fff com.apple.FeatureFlags (1.0) <726fb218-315b-3fd5-bfe8-dcc625293a0e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags\
0x11ef80000 - 0x11ef9bfff libswiftAVFoundation.dylib (*) <d1042471-9baa-3a42-acb8-373b8bb22bf5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftAVFoundation.dylib\
0x11e8a0000 - 0x11e8a7fff libswiftCoreAudio.dylib (*) <f9440e7e-68e0-3eab-a94b-fa2ae2b52889> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreAudio.dylib\
0x11d9cc000 - 0x11d9cffff libswiftCoreLocation.dylib (*) <2468b8c4-31f5-3522-b96a-a71cbbf6f353> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreLocation.dylib\
0x11efd0000 - 0x11efdbfff libswiftCoreMIDI.dylib (*) <96c2e556-007a-3151-a298-4841feacc6af> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreMIDI.dylib\
0x11f228000 - 0x11f25bfff libswiftCoreMedia.dylib (*) <2227ecc5-d19b-3671-bd26-fc2888575f12> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreMedia.dylib\
0x11eee4000 - 0x11eefbfff libswiftsimd.dylib (*) <3f8abc9f-d96c-3a52-93f4-00721472cf07> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftsimd.dylib\
0x121744000 - 0x12177ffff com.apple.SetupAssistant (1.0) <4424a0ed-7e3e-3908-9327-d3ee97659a31> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant\
0x121c18000 - 0x121d77fff com.apple.ids (10.0) <5833d149-58fb-3316-953f-2bbd48a4e52a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDS.framework/IDS\
0x11ef34000 - 0x11ef43fff com.apple.AAAFoundation (1.0) <f4bf9a78-a950-38fd-b679-b42ac5e0cf6d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation\
0x11f008000 - 0x11f013fff com.apple.AppleIDSSOAuthentication (1.0) <3ced30be-9caf-3c7f-9db3-2514db142b03> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication\
0x11f6cc000 - 0x11f6e3fff com.apple.setupandmigration.SetupAssistantSupport (1.0) <9bfbbac8-aed4-31f3-b450-16d45f121219> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport\
0x1216e4000 - 0x121707fff com.apple.icloud.FindMyDevice (1.0) <0f913bfa-b080-3f86-b51e-f151b1144601> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice\
0x1217d4000 - 0x1217f3fff com.apple.IntlPreferences (1.0) <f6875514-74fb-30fa-afe4-dc219a237cf4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences\
0x121690000 - 0x1216a3fff com.apple.NanoPreferencesSync (1.0) <dde97c45-bc88-3ac6-bddd-d9a0461bb3bd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync\
0x1219f0000 - 0x121a53fff com.apple.private.NanoRegistry (1.0) <af8c0e44-95fd-3ece-b9c2-c99e75f5b705> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry\
0x121630000 - 0x121657fff com.apple.AppConduit (1.0) <d44b2dfd-3a0c-3b69-8cab-3df8f2616bf1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppConduit.framework/AppConduit\
0x12186c000 - 0x12187bfff com.apple.AppleIDAuthSupport (1.0) <4cb44c02-1dca-3be6-99a6-2f6cd47965ff> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport\
0x121934000 - 0x12194ffff com.apple.icloud.FMCoreLite (1.0) <d83cc944-cb91-34ec-8a3f-12cf7283cd08> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FMCoreLite.framework/FMCoreLite\
0x121ad8000 - 0x121b3bfff com.apple.imfoundation (10.0) <335a1691-f705-3125-ad0d-05d798c1d9d7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation\
0x1224f0000 - 0x1226dffff com.apple.idsfoundation (10.0) <0d0eac79-86da-385e-9ba8-34fa260fc8ec> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation\
0x121894000 - 0x1218dffff com.apple.facetimeservices (10.0) <0c406c96-e41a-3821-87eb-ea2309d93ac1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTServices.framework/FTServices\
0x121824000 - 0x12183bfff com.apple.Engram (1.0) <55243ea5-c7f4-3651-9b65-f67b79d58f03> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Engram.framework/Engram\
0x11de10000 - 0x11de13fff com.apple.marco (10.0) <38018f7c-6e4f-3ce2-a705-3f3443aa301b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Marco.framework/Marco\
0x112aec000 - 0x112aeffff com.apple.ftawd (8.0) <5f9c7e84-6fc7-3bde-918b-aec935d0e029> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD\
0x121e30000 - 0x121ff7fff com.apple.AVFCore (1.0) <bf8136a9-11d0-3c8e-849f-9b41a49345bd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AVFCore.framework/AVFCore\
0x1222a8000 - 0x1223d7fff com.apple.audio.AVFAudio (1.0) <412e756a-4f1e-337d-a7a1-109ac1fa4163> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFAudio.framework/AVFAudio\
0x122c9c000 - 0x122d8bfff com.apple.AVFCapture (1.0) <1e6e8fa2-b317-3083-82e2-6c2d9a9decc6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture\
0x122ac0000 - 0x122b53fff com.apple.AirPlaySync (1.0) <1aceaee0-bdd3-3dfe-9ddf-d4a5e95632fd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync\
0x122ed4000 - 0x1233c3fff com.apple.MediaToolbox (1.0) <3d86ab37-5a84-3d5b-b9ec-e10af253aa61> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox\
0x123694000 - 0x12372bfff com.apple.CMPhoto (1.0) <f5431461-069d-3882-b33e-8c2ab0ecd394> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto\
0x123770000 - 0x1237cffff com.apple.CMCapture (1.0) <29b4519a-eb73-3d89-9d77-4264f5ffd4bc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CMCapture.framework/CMCapture\
0x126580000 - 0x12664bfff com.apple.Quagga (155.3) <f3013e8e-c626-3b2c-90b0-d1283702269d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Quagga.framework/Quagga\
0x121988000 - 0x121993fff com.apple.CMCaptureCore (1.0) <12715994-c631-33ab-bb2f-0efee824084e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore\
0x121ba0000 - 0x121bc3fff com.apple.security.octagontrust (1.0) <4a984f41-70de-33a0-aaee-7a3725f1f57a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust\
0x122848000 - 0x122973fff com.apple.UIFoundation (1.0) <ca535e4f-007c-3544-98bb-457630457dd5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation\
0x11f2f8000 - 0x11f2fffff com.apple.security.CryptoKit-C-Bridging (1.0) <1c0ed0a6-97aa-3daf-a4a2-0908cb72f301> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging\
0x11e02c000 - 0x11e02ffff libswiftCryptoTokenKit.dylib (*) <399fcff0-c31b-3b90-a08c-858dcff31fe4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCryptoTokenKit.dylib\
0x126b80000 - 0x126caffff libAWDSupportFramework.dylib (*) <47aef3d0-3288-387d-a8d1-65c2aaca8dce> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupportFramework.dylib\
0x123870000 - 0x1238a3fff libAWDSupport.dylib (*) <e379cabe-c2ca-3dbb-9b92-a23c976fd95c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupport.dylib\
0x126680000 - 0x126693fff libprotobuf-lite.dylib (*) <fa471e1b-6dc7-3cfd-a3f2-f8523a52554b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf-lite.dylib\
0x126848000 - 0x1268a7fff libprotobuf.dylib (*) <8ec753fa-ccdb-3d78-ad0e-e8ffea647ff4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf.dylib\
0x11e710000 - 0x11e713fff com.apple.LinguisticData (1.0) <dedb26d1-1000-34f3-a63a-e8ffb11ab020> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData\
0x1266b8000 - 0x126753fff com.apple.RemoteUI (1.0) <cfabd645-7801-39ed-b718-fabbf9f4e0e6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI\
0x126a64000 - 0x126aabfff com.apple.DocumentManager (1.0) <a4174162-19d0-3af4-b641-f08a024d7c37> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager\
0x12d11c000 - 0x12e7c7fff com.apple.UIKitCore (1.0) <e9f0192a-4554-3c71-b825-c7a78cfdf7d4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore\
0x127270000 - 0x12735ffff com.apple.ShareSheet (1847.2.10) <0fba4c7b-eff3-3ef6-ad49-b818839fca5a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet\
0x126914000 - 0x12699ffff com.apple.PrintKitUI (1.0) <ef3aebd8-20bc-3d7e-8fa1-222d88ab76f6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrintKitUI.framework/PrintKitUI\
0x126808000 - 0x12681bfff libprequelite.dylib (*) <a6e3980d-8c38-35ff-b51b-273e5cb05e14> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprequelite.dylib\
0x122c64000 - 0x122c77fff com.apple.CollectionViewCore (1.0) <92b5bef3-dc6c-3dfc-a6f0-3479f7e3b262> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CollectionViewCore.framework/CollectionViewCore\
0x1216c4000 - 0x1216cbfff com.apple.dt.XCTTargetBootstrap (16.1) <1ece4f0d-4c9f-3041-b63d-670b43708661> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap\
0x126e10000 - 0x126fa3fff com.apple.WebKitLegacy (8614) <01c57046-d048-3c14-ba86-6d6d3c9555c9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy\
0x11ef68000 - 0x11ef6bfff libapp_launch_measurement.dylib (*) <bf73e6ac-ef82-384c-b259-18e03e9b0a8e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapp_launch_measurement.dylib\
0x122c00000 - 0x122c13fff com.apple.PointerUIServices (1.0) <7e3c47d4-ed41-330d-bcad-953c565a6b5a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices\
0x1274b4000 - 0x1274e7fff com.apple.BacklightServices (1.0) <ebd5cdf4-2371-391f-bd62-5a026a5aa3a4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BacklightServices.framework/BacklightServices\
0x126b14000 - 0x126b33fff com.apple.CoreMaterial (1.0) <f5128344-744d-3afc-ba2e-99919a1a01f4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial\
0x127544000 - 0x127577fff com.apple.Pasteboard (1.0) <78d1120c-8544-3113-850b-806b05891499> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard\
0x11f714000 - 0x11f717fff com.apple.DataDetection (8.0) <14ecb016-0d0d-3c3e-a912-1e28affd48d6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/DataDetection.framework/DataDetection\
0x1275bc000 - 0x1275e3fff com.apple.RemoteTextInput (1.0) <282901a2-cf9e-3af0-aaf0-0275cc9eb472> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput\
0x127628000 - 0x127663fff com.apple.datadetectorscore (8.0) <ad8a5fb6-c72b-3560-b4f2-f354e9076a92> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore\
0x1276a4000 - 0x1276effff com.apple.PhysicsKit (1.0) <34588a04-e311-3816-8945-b9f3e1ec1039> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit\
0x12720c000 - 0x12722ffff com.apple.PrototypeTools (1.0) <cf18e795-42ca-3ff9-a3a8-3291c5a4b8cc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools\
0x127730000 - 0x129c47fff com.apple.WebCore (8614) <02d61048-8ef6-3510-9668-c76177278da6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebCore.framework/WebCore\
0x12bad4000 - 0x12be2ffff libANGLE-shared.dylib (*) <1152f570-8793-3a5b-8b40-cac416073b6c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib\
0x127158000 - 0x127193fff com.apple.WebGPU (8614) <8729d539-5302-3e4a-89dc-45e9cc559b3f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebGPU.framework/WebGPU\
0x12afe0000 - 0x12b757fff libwebrtc.dylib (*) <b6d07612-add2-3c8a-9b57-dd1440800c98> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib\
0x12c834000 - 0x12ca4ffff com.apple.NetworkExtension (1.0) <0965292f-9c50-3c93-bb3d-6e7c4851b4ea> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/NetworkExtension.framework/NetworkExtension\
0x121854000 - 0x121857fff com.apple.CaptiveNetworkSupport (13.0) <57a46d58-2fdc-3311-9b40-4b66a497771b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork\
0x1271bc000 - 0x1271dffff libnetworkextension.dylib (*) <c755dc1a-150e-3692-8370-c2e87d34463b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetworkextension.dylib\
0x1224c4000 - 0x1224d3fff com.apple.SystemWake (1.0) <025f192a-b1ff-3166-b306-93f4add802ea> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SystemWake.framework/SystemWake\
0x12b9e4000 - 0x12ba43fff com.apple.ExtensionFoundation (97) <a39b00df-1b0d-3e37-bcff-7cd01c0c1f07> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ExtensionFoundation.framework/ExtensionFoundation\
0x13126c000 - 0x1315fffff com.apple.AppleMediaServices (1.0) <c9e8254e-8544-31b5-91fb-d2f077505529> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices\
0x12c0ac000 - 0x12c0bffff com.apple.BluetoothManager (1.0) <f49b4f4f-20f9-32ca-a763-0d36f43a418e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager\
0x121bf4000 - 0x121bf7fff libutil.dylib (*) <1cb15aad-121d-3725-8585-49c5360206ec> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libutil.dylib\
0x12c32c000 - 0x12c3b7fff com.apple.Rapport (4.1.0) <b367da45-c91b-36e2-8e72-29dc3ff35e00> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Rapport.framework/Rapport\
0x12c0e0000 - 0x12c1a3fff com.apple.CoreSymbolication (14.0) <eafcedb2-0578-36a5-9cc2-ed79047f0f3c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication\
0x12c244000 - 0x12c25bfff libresolv.9.dylib (*) <a1d083ca-d8a0-323e-a52e-c73414dee69d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libresolv.9.dylib\
0x121914000 - 0x12191bfff libswiftCompression.dylib (*) <7736ab6f-476d-3ce7-93f2-d4edc60fd3eb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCompression.dylib\
0x12c04c000 - 0x12c05bfff libswiftExtensionFoundation.dylib (*) <548125a4-3f7a-3b56-ba6a-53bce5953f1e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftExtensionFoundation.dylib\
0x12cc1c000 - 0x12cc8ffff libswiftNetwork.dylib (*) <6a32c42a-0364-3a99-b614-cdb31b9080c5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftNetwork.dylib\
0x12c274000 - 0x12c2b3fff com.apple.MobileBluetooth (1.0) <f3accfcb-36bb-31a2-9924-fbe481f90ac6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth\
0x12c564000 - 0x12c5affff com.apple.CorePrediction (1.0) <cf50ac0e-334e-3a7b-bf92-cfdeb1770ff2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction\
0x12c5ec000 - 0x12c6cffff com.apple.PDFKit (1.0) <3e9e5728-886e-37b1-889f-5cd3c0b19779> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PDFKit.framework/PDFKit\
0x12c458000 - 0x12c4a7fff com.apple.Safari.SafeBrowsing (8614) <776bee31-863f-3752-9ed1-8e3809d89802> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing\
0x12cf3c000 - 0x12cfb3fff com.apple.InstallCoordination (1.0) <81fd531b-5067-380b-9ab3-6f3326875f16> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InstallCoordination.framework/InstallCoordination\
0x12cd70000 - 0x12ce0bfff com.apple.AppStoreDaemon (1.0) <f1359c56-06d1-3f9c-8439-e7d9d5f40537> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon\
0x1304b8000 - 0x13055bfff com.apple.AddressBookLegacy (1.0) <d4556d07-e761-3fbc-93d5-8ebcd1e68734> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy\
0x130244000 - 0x13026bfff com.apple.CellularPlanManager (1.0) <f1207d6c-e627-3f17-a9ba-f77b373db2f2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager\
0x1302b0000 - 0x130357fff com.apple.ClassKit (1.2) <0c75ab3c-670e-36c9-b420-f2b9d6d2c51e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ClassKit.framework/ClassKit\
0x130934000 - 0x1309cbfff com.apple.AddressBook.ContactsFoundation (8.0) <ce60ac06-e751-37c8-bc6a-de0894d3d961> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation\
0x12d028000 - 0x12d05bfff com.apple.contacts.vCard (1.0) <6913e149-9c21-3455-8756-0d9ef40a83be> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/vCard.framework/vCard\
0x122c38000 - 0x122c3bfff libswiftOSLog.dylib (*) <40981e1b-2259-3aca-9fba-9298817e966b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftOSLog.dylib\
0x1303d0000 - 0x13040bfff com.apple.dataaccess.dataaccessexpress.framework (1.0) <bddd0e07-e38d-3343-bec1-6744aad1cd25> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress\
0x122aa0000 - 0x122aa3fff com.apple.contacts.ContactsMetrics (1) <af248865-d664-3383-a723-fcc103c9bf91> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsMetrics.framework/ContactsMetrics\
0x130730000 - 0x13076ffff com.apple.iCalendar (7.0) <24b1ed35-544a-3ec4-8412-96aa1c447a9b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iCalendar.framework/iCalendar\
0x1307cc000 - 0x13086bfff com.apple.CloudDocs (1.0) <c80b2f83-cdf5-3a21-bfc2-88a688b83fb6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs\
0x12c2e4000 - 0x12c2f3fff com.apple.OSLog (1.0) <fe846a54-3321-34d7-9afd-40e677da43d3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OSLog.framework/OSLog\
0x130600000 - 0x130663fff com.apple.LoggingSupport (1.0) <32722ec7-f8db-3984-9f0d-80c42040c0ac> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport\
0x122c4c000 - 0x122c53fff com.apple.CoreOptimization (1.0) <b345a982-6615-3d57-a96c-dc6d943b4cae> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization\
0x130dc0000 - 0x130e87fff com.apple.CorePDF (5.0) <cce2e6e3-4129-36bc-b9b2-c4996c7ac8f1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePDF.framework/CorePDF\
0x12c088000 - 0x12c08ffff com.apple.RevealCore (1.0) <54a6709b-948b-3b15-b93a-b54330ad3dd4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RevealCore.framework/RevealCore\
0x130c30000 - 0x130c7bfff com.apple.NaturalLanguage (1.0) <167598ce-4989-37c2-9fc9-afac19554ba3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage\
0x12c514000 - 0x12c527fff com.apple.CoreEmoji (1.0) <bd460ef5-2345-3799-9b41-61167033e6a7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji\
0x1326b4000 - 0x132a1ffff com.apple.CoreML (1.0) <1114d206-5c3e-3476-b6de-9e3c77ac2a48> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreML.framework/CoreML\
0x130f34000 - 0x131083fff com.apple.LanguageModeling (1.0) <88e80288-1b4f-3325-9065-8805015fd1e7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling\
0x131f00000 - 0x1320cffff com.apple.Montreal (1.0) <674a5f0d-d466-3778-b4e3-09dd11340467> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Montreal.framework/Montreal\
0x1238c0000 - 0x1238c3fff com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0) <fc5c714c-6f0c-391c-be62-25228b1dc927> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders\
0x134984000 - 0x13521ffff com.apple.vision.EspressoFramework (1.0) <296d38cc-ccde-3c33-95b0-569c35837632> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Espresso.framework/Espresso\
0x131a64000 - 0x131b87fff com.apple.CoreML.MLAssetIO (1.0) <62a025cb-bec5-38fc-9343-4cd450ba3433> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO\
0x130ad8000 - 0x130b43fff com.apple.MetalPerformanceShaders.MPSCore (1.0) <bce3cea2-4f91-3305-ab0c-ae142708f2e5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore\
0x1310dc000 - 0x131163fff com.apple.MetalPerformanceShaders.MPSImage (1.0) <06707447-8a9a-3934-8a19-1d2a4fdfc567> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage\
0x13211c000 - 0x1322fbfff com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0) <e7a1ad3a-e0fe-3658-9235-e742c2e45a98> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork\
0x12c7d4000 - 0x12c7fbfff com.apple.MetalPerformanceShaders.MPSMatrix (1.0) <58f2648d-8e7f-374b-abc4-d51e695cbaeb> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix\
0x130b84000 - 0x130bcffff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0) <774e7465-e613-3ce0-ab29-4cf306074418> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector\
0x131cf0000 - 0x131dabfff com.apple.MetalPerformanceShaders.MPSNDArray (1.0) <6200856b-289d-3992-9c3c-6890ae48d65f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray\
0x12cef8000 - 0x12cf0bfff com.apple.MPSFunctions (1.0) <604fdf9e-e1e0-3af8-ad1a-502065068d73> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions\
0x130460000 - 0x130473fff libcmph.dylib (*) <aa2cab95-e0ee-362c-96d6-2cf7641e2074> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcmph.dylib\
0x12d0c0000 - 0x12d0cffff com.apple.coretelephony.CTCarrierSpace (1.0) <1f6b4105-86f8-3c7d-bbe5-4d57e04d84bc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace\
0x13259c000 - 0x132627fff com.apple.LiftUI (1.0) <bc15c836-52dd-3ada-a953-ce3f0795b6aa> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LiftUI.framework/LiftUI\
0x139680000 - 0x13abf7fff com.apple.SwiftUI (4.1.17.100) <bd0565ad-87fa-3dc2-b25c-4d7f849557bc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SwiftUI.framework/SwiftUI\
0x126b68000 - 0x126b6bfff libswiftWebKit.dylib (*) <25a390aa-3e25-301f-9569-2f21e7adc740> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftWebKit.dylib\
0x1323d0000 - 0x13245ffff com.apple.AXRuntime (1.0.0) <0a9529ef-b17f-3012-872a-e556e39a0a79> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime\
0x1306cc000 - 0x1306e3fff com.apple.Accessibility (1.0) <4982ccf7-4593-38e0-9665-7a78fe8593b9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accessibility.framework/Accessibility\
0x132f80000 - 0x133033fff com.apple.RenderBox (4.1.8) <5ca12706-7e32-3f45-b688-8a30d139ba97> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RenderBox.framework/RenderBox\
0x130cdc000 - 0x130d1bfff com.apple.AttributeGraph (4.0.28) <c7a63947-a364-3e45-876f-22f4164855ca> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AttributeGraph.framework/AttributeGraph\
0x131e04000 - 0x131e2bfff com.apple.CoreGlyphsFramework (1) <7499a9f2-ae4f-3c14-a68e-45f360a8c670> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreGlyphs.framework/CoreGlyphs\
0x130d54000 - 0x130d67fff com.apple.RecapPerformanceTesting (17) <38969e9e-66e6-3c4c-af99-04ed2df5eb70> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RecapPerformanceTesting.framework/RecapPerformanceTesting\
0x132cd4000 - 0x132d83fff libswiftAccelerate.dylib (*) <f7215cb4-0bd1-3116-81fe-887ae6ccf03d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftAccelerate.dylib\
0x1311f0000 - 0x131213fff libswiftCoreML.dylib (*) <8865dd84-828a-33d2-844f-2c59a752f48b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftCoreML.dylib\
0x12c310000 - 0x12c313fff libswiftVision.dylib (*) <96a0288c-18ee-3152-b9f0-2b0b3876f223> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftVision.dylib\
0x126a50000 - 0x126a53fff libAXSafeCategoryBundle.dylib (*) <0da61f51-8f4a-3928-a9fe-0b6f3202ebed> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAXSafeCategoryBundle.dylib\
0x133c60000 - 0x133f4ffff com.apple.VN (6.0.48) <7bdadd34-1693-325c-8a43-9448ef2be4db> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Vision.framework/Vision\
0x1330d8000 - 0x1336d3fff libfaceCore.dylib (*) <76ae1af8-8756-3546-81dc-d865cdc9207e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Vision.framework/libfaceCore.dylib\
0x130488000 - 0x13049ffff com.apple.Futhark (1.0) <e8fc929f-a27b-36c0-b5f8-2d424003ad41> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Futhark.framework/Futhark\
0x1324d0000 - 0x132537fff com.apple.acg.InertiaCam (1.0) <3612170d-0ff1-3825-b98a-91e70d5d7f0c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam\
0x13397c000 - 0x133acbfff com.apple.TextRecognition (1.0) <cbc8901a-8975-3846-8b97-b6f19df8e7f8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition\
0x134458000 - 0x13452ffff com.apple.CVNLP (1.0) <78b61f36-7c0f-3e72-84d9-3f0eea9b21ed> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CVNLP.framework/CVNLP\
0x133c00000 - 0x133c1ffff com.apple.SharedWebCredentials (1001) <bd72d8a4-26c9-375e-96e1-17e005e9cf92> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials\
0x134218000 - 0x134247fff com.apple.CBORLibrary (1.0) <6fd18aff-580c-3792-a84b-c1b38e9da5c4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CBORLibrary.framework/CBORLibrary\
0x131ebc000 - 0x131edbfff com.apple.cryptokit.Chirp (1.0) <b40800c7-772d-3be3-b432-dcb9799c2112> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Chirp.framework/Chirp\
0x12c548000 - 0x12c54bfff com.apple.corebrightness (1.0) <905c2820-f809-333e-a898-d6671f5dd507> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness\
0x134270000 - 0x134297fff com.apple.NetAppsUtilities (1.0) <977c8619-3afd-3473-bbb8-94002f8cea6c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities\
0x130bf8000 - 0x130c0bfff com.apple.settingsandcoreapps.SettingsFoundation (1.0) <0708c81a-9ba2-3d46-b1f2-1acd1fc0f831> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation\
0x12cf20000 - 0x12cf23fff com.apple.AppTrackingTransparency (1.0) <6949b7c6-8b73-3c75-94b5-bed2af38392d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency\
0x132f20000 - 0x132f2ffff com.apple.BiometricKit2 (1.0) <0ab2190f-ebf0-3f01-b63e-dff1a680fe1b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit\
0x136090000 - 0x1362cbfff com.apple.Safari.Shared (8614) <62d0e018-131c-3712-8e31-7dfebe63bd56> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariShared.framework/SafariShared\
0x135764000 - 0x13582ffff com.apple.siri.parsec.CoreParsec (1.0) <e850b598-b8b6-31f1-a94f-8452d709d2cd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec\
0x135934000 - 0x135b1ffff com.apple.SearchFoundation (1.0) <fa67dbe0-b0cf-3946-800c-a584a8d83906> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation\
0x132eb8000 - 0x132ecffff com.apple.contextkit.ContextKit (1.0) <271bec6e-c818-31c9-853d-a6b48fd4ae1b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContextKit.framework/ContextKit\
0x134394000 - 0x1343bffff com.apple.UsageTracking (3.0) <482fa070-1dcd-361a-8113-17fc42f94bed> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking\
0x1347cc000 - 0x13484ffff com.apple.ScreenTimeCore (3.0) <424f7de1-f65f-3d94-8389-11abf5ed445a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore\
0x135ddc000 - 0x135e43fff com.apple.trial (1.0) <94b74313-cb5f-3384-8c01-cd3e80e0af89> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Trial.framework/Trial\
0x1342d4000 - 0x134323fff com.apple.CloudSubscriptionFeatures (1.0) <5f656fa9-2e45-3a89-8be4-e85b14f6c70c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudSubscriptionFeatures.framework/CloudSubscriptionFeatures\
0x137d30000 - 0x13853ffff com.apple.PegasusAPI (1.0) <f70b9ecd-e215-31dd-891b-924c39e6d329> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PegasusAPI.framework/PegasusAPI\
0x12d0f8000 - 0x12d0fffff com.apple.contextkit.ContextKitCore (1.0) <5982bc66-1f15-3c22-b27d-bb25a6a4ed4a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore\
0x135ed0000 - 0x135f2ffff com.apple.Catalyst (1.0) <27eab434-ab87-3440-b2c0-8fc5daedf0d2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Catalyst.framework/Catalyst\
0x13435c000 - 0x13436ffff com.apple.framework.ctcategories (1.0) <8b522b22-cc7d-3a48-a486-7555682edd88> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Categories.framework/Categories\
0x136aac000 - 0x136bd7fff com.apple.biome.BiomeStreams (1.0) <087155ab-558a-36be-913f-9bd5500893dd> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams\
0x136534000 - 0x136713fff com.apple.CoreDuet (1.0) <b3c03536-96c2-3c21-b249-a3df0477fa17> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet\
0x1346cc000 - 0x134717fff com.apple.coreduetcontext (1.0) <4207f610-b2ae-3b13-b3fb-bedff5eb71c5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext\
0x138a04000 - 0x138cebfff com.apple.MediaRemote (1.0) <c29dea41-b8dd-31ea-bb13-59dbf77ecdd4> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote\
0x1343f8000 - 0x134413fff com.apple.biome.BiomeFlexibleStorage (1.0) <bc739dcc-7985-3dc3-8d82-4c0fad0a24e8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeFlexibleStorage.framework/BiomeFlexibleStorage\
0x130d94000 - 0x130d9ffff com.apple.biome.BiomeFoundation (1.0) <f5868040-d67e-3c90-a83c-3edfa789a28e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation\
0x1345f4000 - 0x13460bfff com.apple.biome.BiomeDSL (1.0) <b99bc97c-9cbf-3cd4-9b63-64ec2a916b5a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeDSL.framework/BiomeDSL\
0x135fc4000 - 0x135ffffff com.apple.biome.BiomePubSub (1.0) <fcbd8e79-b5d3-33eb-b668-5ea78308a4b9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub\
0x134574000 - 0x1345a7fff com.apple.biome.BiomeStorage (1.0) <0cdd7757-5732-35e2-8f9e-2c1bf427fa1d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage\
0x12c820000 - 0x12c823fff com.apple.CoreDuetDaemonProtocol (1.0) <0d6ab154-811f-373a-a053-0b1a8ec36729> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol\
0x13691c000 - 0x13696ffff com.apple.MediaServices (1.0) <51a2e94e-40dd-337e-9b99-f1973a1c5882> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices\
0x134638000 - 0x13465ffff com.apple.persistentconnection (1.0) <91675e75-60a4-328a-806b-d3bea149b6b5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection\
0x13732c000 - 0x13742bfff com.apple.ConfigurationEngineModel (1.0) <5376f1ee-b79a-3334-b38f-3915ac756521> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel\
0x1369ec000 - 0x136a27fff com.apple.FamilyCircle (1.0) <c109ddd5-2709-3865-8aef-ba31fb9fe311> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle\
0x13477c000 - 0x134797fff com.apple.CoreFollowUp (1.0) <fae6fe56-05de-3470-8f26-d0510511bc22> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp\
0x134900000 - 0x13493ffff com.apple.AAAFoundationSwift (1.0) <d4d7ac23-5cc6-34ad-bf41-ccd18aff5c42> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AAAFoundationSwift.framework/AAAFoundationSwift\
0x13256c000 - 0x132577fff libswiftIntents.dylib (*) <9de64cd7-a3b3-3b83-8da2-db0696c78c35> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftIntents.dylib\
0x136dd4000 - 0x136ddffff libswiftPrivate_BiomePubSub.dylib (*) <0c43813e-6d30-394f-ad4a-9fdc4346d82e> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftPrivate_BiomePubSub.dylib\
0x13070c000 - 0x130713fff libswiftPrivate_BiomeStreams.dylib (*) <fa343b23-81e9-3531-9b7d-2a76c7c00103> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftPrivate_BiomeStreams.dylib\
0x132f58000 - 0x132f6bfff com.apple.biome.BiomeSequence (1.0) <2ba85bc9-83cc-3af1-85a2-8a4f075b01d8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeSequence.framework/BiomeSequence\
0x13702c000 - 0x13709bfff com.apple.TrialProto (1.0) <a0bc43ab-8375-3c7a-8131-83428fa75fd3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TrialProto.framework/TrialProto\
0x136d70000 - 0x136d9bfff com.apple.AppSupportUI (1.0) <1bacf6a4-1672-3d57-9d4e-a40e2becd606> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI\
0x13469c000 - 0x1346abfff com.apple.PersonaUI (1.0) <1a461d02-3557-3e04-8ea1-08e124d2aaea> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI\
0x13124c000 - 0x131253fff com.apple.communicationsfilter (10.0) <3b9c323c-fb03-3d28-b55b-9a467e2b022a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter\
0x136e98000 - 0x136eaffff com.apple.contacts.donation (1.0) <1f2a3c76-6bea-34f4-9ef8-61ecb5f80101> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation\
0x136ee4000 - 0x136f1ffff com.apple.EmojiFoundation (1.0) <13d6ed84-cd91-3b9e-9789-e0606d2d0d93> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation\
0x137144000 - 0x1371c3fff com.apple.Contacts.ContactsUICore (1.0) <542f8308-9ad9-3384-93ed-65efa09b096f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore\
0x13775c000 - 0x1377a3fff com.apple.TemplateKit (1.0) <d4c7cd1b-6b1b-384b-8f79-c9172febdc30> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit\
0x132efc000 - 0x132f07fff com.apple.PersonaKit (1.0) <a41daca9-28d7-304a-98b3-f2d4a1109ac5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit\
0x136e64000 - 0x136e73fff com.apple.corerecents (1.0) <261b1533-a05e-39a3-b0ce-e813b969d931> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents\
0x136e08000 - 0x136e23fff com.apple.MaterialKit (1.0) <f30acd4f-6ae9-3114-a709-a4950f33ca37> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit\
0x136fbc000 - 0x136fd7fff com.apple.MetalKit (154) <3f59e72d-72f4-3ef8-8ddd-72c868a76e74> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalKit.framework/MetalKit\
0x139044000 - 0x139203fff com.apple.CoreHandwriting (161) <f4b6440f-7b0b-3411-be9d-14bc2cae6b58> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting\
0x13729c000 - 0x1372bffff com.apple.BaseBoardUI (617.8) <cbebe09f-1159-3178-bc99-230773ee2dee> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI\
0x137808000 - 0x137a5bfff libmecabra.dylib (*) <85f5133d-cf1d-398d-a4f2-18e28723ea02> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecabra.dylib\
0x137b28000 - 0x137bfbfff com.apple.ProofReader (2.4) <5fc50635-11db-3b85-bbf3-06b8f7131fe8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader\
0x134440000 - 0x134443fff com.apple.ConstantClasses (1.0) <968139bd-6045-31b4-b13d-638e3d4374e7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses\
0x136a88000 - 0x136a8ffff libChineseTokenizer.dylib (*) <675f1e0a-ffe3-3c0c-bfc8-5ba36bf7d512> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libChineseTokenizer.dylib\
0x139298000 - 0x13938ffff com.apple.LinkPresentation (212) <6d34ed63-8872-3019-b172-8d0075a359c3> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LinkPresentation.framework/LinkPresentation\
0x137c80000 - 0x137cb7fff com.apple.Synapse (1.0) <ce439231-d6ba-338f-a322-b0d8fd5c6d99> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Synapse.framework/Synapse\
0x13760c000 - 0x13766ffff com.apple.Pegasus (1.0) <31b6e61f-5288-3b7e-bdbd-26542526e275> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus\
0x1394f8000 - 0x13958ffff com.apple.FrontBoard (812.8.1) <6848b200-31c6-3f1a-8f8b-f1af2a1ebf63> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoard.framework/FrontBoard\
0x13b874000 - 0x13b8cffff com.apple.UserActivity (551) <a9140d97-49b1-35b7-beeb-bf1ebcb8219b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UserActivity.framework/UserActivity\
0x13b700000 - 0x13b77ffff com.apple.proactive.PersonalizationPortrait (1.0) <0b69bfe1-ee95-35f8-a79d-794ab933cc3c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait\
0x13bef4000 - 0x13c0abfff com.apple.imcore (10.0) <f7d7bf4b-9d0f-3bb3-8c36-09b7ba99d2e0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMCore.framework/IMCore\
0x1326a0000 - 0x1326a3fff com.apple.ParsecSubscriptionServiceSupport (1.0) <39bb3487-629e-3911-8fcd-828514ec8bad> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport\
0x13bbcc000 - 0x13bc6bfff com.apple.AppStoreComponents (1.0) <60ca039f-4bd8-33a8-9f43-bc42778bdbaf> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppStoreComponents.framework/AppStoreComponents\
0x13b930000 - 0x13ba57fff com.apple.Navigation (1.0) <27625160-bf6d-3d4c-a675-2548b245635a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Navigation.framework/Navigation\
0x13f3cc000 - 0x140053fff com.apple.VectorKit (1.0) <701be672-f87d-3883-9f19-376cfa50fd95> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit\
0x13be04000 - 0x13be3bfff com.apple.VirtualGarage (1.0) <54f9c04e-38dc-31fb-9217-b14ef12b005f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage\
0x1376f4000 - 0x137713fff com.apple.IntentsCore (1.0) <8b8f2e08-e3ef-3087-a36e-b29ef4917983> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore\
0x13be78000 - 0x13be93fff com.apple.ExternalAccessory (1.0.0) <9c20a722-3c0e-36d7-b03b-aa193dc12c6f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory\
0x13bda4000 - 0x13bdbbfff com.apple.IAP (1.0) <eef31278-13f9-3bfb-9f0c-4b8fb44d6793> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IAP.framework/IAP\
0x13c594000 - 0x13c6cffff com.apple.IMDPersistence (10.0) <f4347897-bff3-37d6-930b-84833751431b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence\
0x13c77c000 - 0x13c867fff com.apple.imsharedutilities (10.0) <ed3269ef-652f-317a-81e4-1f36989a6c07> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities\
0x137004000 - 0x13700bfff com.apple.imtransferservices (10.0) <48b2bb70-4817-3213-b7a0-7f9a10905085> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferServices\
0x1372f8000 - 0x1372fbfff com.apple.incomingcallfilter (10.0) <962daa49-a821-37a5-b78c-2850c070239d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter\
0x136060000 - 0x136073fff com.apple.CoreSDB (10.0) <699213c5-9ad7-3f22-8656-7ce5837095db> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB\
0x137310000 - 0x137317fff com.apple.idskvstore (10.0) <dc8e12b6-89ee-3806-b621-6617b1c4b93d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore\
0x13c364000 - 0x13c3c7fff com.apple.ToneLibrary (1.0) <df9d71d7-88be-34d0-aa31-2c2b8203906c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary\
0x13bd24000 - 0x13bd57fff libtidy.A.dylib (*) <36282edf-7ae8-311f-a07d-229433c8c84b> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libtidy.A.dylib\
0x13cd70000 - 0x13ce5ffff com.apple.PhotosFormats (1.0) <99dad3df-5665-36c3-a2fb-01a17bfce3d8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats\
0x133c4c000 - 0x133c4ffff com.apple.ftclientservices (10.0) <8d566528-3bbd-30f2-bef7-be665162b2a2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices\
0x13c438000 - 0x13c4bffff libAppleArchive.dylib (*) <782d413b-9dd1-343d-ad7b-a19d248ef3b1> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAppleArchive.dylib\
0x137d08000 - 0x137d13fff com.apple.PhotoFoundation (8.0) <e89ff6e9-65f3-30a5-8f2e-33d399fa2569> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation\
0x13c1c8000 - 0x13c26bfff com.apple.MMCS (1.3) <10f11ad8-1cd2-3b3f-b79f-5a9f353348e0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MMCS.framework/MMCS\
0x13c4f0000 - 0x13c533fff com.apple.CacheDelete (1.0) <02eb4ff1-787a-3ac1-b771-9f977a5335d2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete\
0x13ca90000 - 0x13cadffff com.apple.ChunkingLibrary (2000.115) <fda38041-73cb-3e24-940b-6535daf6e017> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary\
0x13c2e8000 - 0x13c303fff com.apple.AssetCacheServices (126) <3ca666a8-08ec-38da-9732-0825d1f9905d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices\
0x13cb40000 - 0x13cbeffff com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework (1.0) <073a9526-3922-3a42-81e4-1cc6486547cc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount\
0x13c938000 - 0x13c993fff com.apple.amp-ae-eng.MetricsKit (2.8.4) <bdb561d1-4208-33a7-9d5c-0010cc64d262> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit\
0x13d1bc000 - 0x13d23bfff com.apple.itunesstore (*) <7b8a9dc0-33be-39ed-9bcc-3051bb9f4f74> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore\
0x13db24000 - 0x13dd03fff com.apple.storeservices (*) <43e6a093-e56c-381c-a55d-29f6a376d41d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices\
0x13df58000 - 0x13e217fff com.apple.JetEngine (1.0) <e91f6b72-5133-3ca0-a94a-2747f30f2bbf> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/JetEngine.framework/JetEngine\
0x13cf90000 - 0x13d057fff com.apple.JetUI (1.0) <25a753e8-4625-31fe-817d-08bd23ea821d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/JetUI.framework/JetUI\
0x13ca1c000 - 0x13ca5bfff com.apple.JetPack (1.0) <757c8b9b-2412-3d09-9ced-5ddb1ba6f8e0> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/JetPack.framework/JetPack\
0x13d0e8000 - 0x13d12ffff com.apple.signpost.SignpostSupport (1.90) <2e9f826a-c089-30d5-89b6-d4863d2ae260> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport\
0x13d4a0000 - 0x13d52bfff com.apple.-JetEngine-SwiftUI (1.0) <b3ced0f5-7887-30bc-a814-49235aa2f729> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/_JetEngine_SwiftUI.framework/_JetEngine_SwiftUI\
0x13d58c000 - 0x13d5dbfff com.apple.MediaPlatform (1.0) <c068f758-aee7-39d8-b34b-fe1faf205f97> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform\
0x13d64c000 - 0x13d8fffff com.apple.MediaLibraryCore (1.0) <5b2b4377-8568-39a2-b780-f85d4a2de9cc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore\
0x13eca4000 - 0x13eed3fff com.apple.iTunesCloud (1.0) <dd7cccb9-bc4e-3e0f-b7b6-bf9c3915ba06> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud\
0x140c7c000 - 0x140ea7fff com.apple.MusicLibrary (1.0.0) <35619df4-2e35-3f3f-9ed8-7a089148e01d> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary\
0x13d3bc000 - 0x13d3ebfff com.apple.HomeSharing (1.0) <cda3bfaf-1a4f-31be-ba6d-adfa99021021> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing\
0x13b838000 - 0x13b83ffff com.apple.DAAPKit (1.0) <a6f08f37-ff81-3ed8-9971-5adef7eb6566> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit\
0x13d2d8000 - 0x13d30bfff com.apple.photo.MediaConversionService (8.0) <ff013d88-1e17-3c23-be36-2ad1da9b8c77> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService\
0x13cd20000 - 0x13cd3bfff com.apple.CPAnalytics (1.0) <92ec51ae-7fe0-340d-a6d2-3b16bc8cbf47> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics\
0x139650000 - 0x13965bfff com.apple.CloudPhotoServices (1.0) <488e057f-3af7-3386-8550-d0ddcd333ca5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices\
0x13e464000 - 0x13e497fff com.apple.ImageCaptureCore (1830) <dee7052d-50f1-3494-83f5-c96bb234312c> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore\
0x1410a0000 - 0x14124ffff com.apple.CloudPhotoLibrary (1.0) <3e4194c5-64b2-3d0d-b0ef-8f89f4ea3431> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary\
0x13e8a0000 - 0x13e997fff com.apple.CoreMediaStream (1.0) <92bb8fd9-bc22-3a00-ab1f-89fdc157aaa7> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream\
0x142fe8000 - 0x1436fffff com.apple.PhotoLibraryServices (1.0) <f3d5303a-8287-3de0-8b6a-a30b4868d5c6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices\
0x13e4f0000 - 0x13e5cffff com.apple.PhotoLibraryServicesCore (1.0) <64690146-1c14-326a-bcb0-dd8f930846a2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotoLibraryServicesCore.framework/PhotoLibraryServicesCore\
0x13d434000 - 0x13d47ffff libswiftDemangle.dylib (*) <ea624841-dd7d-33a5-9e9d-7d560485fa16> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftDemangle.dylib\
0x13d35c000 - 0x13d37bfff com.apple.mediastream (1.0) <1d7b0b86-fb43-3e88-8735-956fa66dafe9> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaStream.framework/MediaStream\
0x13e6e0000 - 0x13e7cffff com.apple.NLP (1.0) <185ce5ba-978f-35ef-af90-0b16451f6dc5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NLP.framework/NLP\
0x13daa4000 - 0x13dad7fff com.apple.PhotosImagingFoundation (8.0) <f9f7b05f-9922-3173-91b8-c2c71b232e8a> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation\
0x141424000 - 0x141d93fff com.apple.private.EmbeddedAcousticRecognition (1.0) <d5522327-f394-3d09-89d9-7daf7e24bdb8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition\
0x13e35c000 - 0x13e3a3fff com.apple.siri.DistributedEvaluation (1.0) <0b837967-abb9-3e2d-8a67-71ec0580c2bc> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation\
0x143dc8000 - 0x14413bfff com.apple.SDAPI (1.0) <76125712-93f9-3b7d-a074-8fb13a8e22c6> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SDAPI.framework/SDAPI\
0x13ebc0000 - 0x13ec03fff com.apple.PhotosPlayer (1.0) <c1fd39a3-ca3b-35eb-8060-638f2f204a22> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotosPlayer.framework/PhotosPlayer\
0x137748000 - 0x137753fff libobjc-trampolines.dylib (*) <95dbedc7-28b0-3b2a-9cbb-5d7d6937aae2> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc-trampolines.dylib\
0x144600000 - 0x1446bffff libboringssl.dylib (*) <62354b81-fc4d-3f73-9ba5-63300ca4a406> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libboringssl.dylib\
0x13f33c000 - 0x13f39ffff libusrtcp.dylib (*) <9a486978-f49a-33ac-9b9a-317ace96b28f> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libusrtcp.dylib\
0x146c10000 - 0x146d33fff libquic.dylib (*) <3f657750-cee1-363f-ba54-e49efc2d6ff5> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libquic.dylib\
0x14b800000 - 0x14ba23fff com.apple.RawCamera.bundle (9.13.0) <c19bd09c-7c8d-32ec-b1e0-13d7b9b93a06> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/CoreServices/RawCamera.bundle/RawCamera\
0x13ec70000 - 0x13ec8bfff libCGInterfaces.dylib (*) <4f516f89-78fa-3404-81ec-1761740528e8> /Users/USER/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib\
\
Error Formulating Crash Report:\
dyld_process_snapshot_get_shared_cache failed\
\
EOF\
\
-----------\
Full Report\
-----------\
\
\{"app_name":"Swatched","timestamp":"2023-07-27 15:24:57.00 +0530","app_version":"1.0.5","slice_uuid":"cf492339-c79d-3c9e-8402-27f588a2d6f5","build_version":"20","platform":7,"bundleID":"com.swatched","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.4.1 (22F770820d)","roots_installed":0,"name":"Swatched","incident_id":"BFA6E8F7-CF97-4C0F-9C6A-D75F120ECB0D"\}\
\{\
"uptime" : 20000,\
"procRole" : "Foreground",\
"version" : 2,\
"userID" : 502,\
"deployVersion" : 210,\
"modelCode" : "Macmini9,1",\
"coalitionID" : 694,\
"osVersion" : \{\
"train" : "macOS 13.4.1",\
"build" : "22F770820d",\
"releaseType" : "User"\
\},\
"captureTime" : "2023-07-27 15:24:55.0452 +0530",\
"incident" : "BFA6E8F7-CF97-4C0F-9C6A-D75F120ECB0D",\
"pid" : 43734,\
"translated" : false,\
"cpuType" : "ARM-64",\
"roots_installed" : 0,\
"bug_type" : "309",\
"procLaunch" : "2023-07-27 15:22:33.0617 +0530",\
"procStartAbsTime" : 493341396149,\
"procExitAbsTime" : 496749021338,\
"procName" : "Swatched",\
"procPath" : "\\/Users\\/USER\\/Library\\/Developer\\/CoreSimulator\\/Devices\\/C21F0312-680B-43B5-AF47-BC7E2A26BD86\\/data\\/Containers\\/Bundle\\/Application\\/65C9063B-1585-4CA7-82A6-1839D380BC0E\\/Swatched.app\\/Swatched",\
"bundleInfo" : \{"CFBundleShortVersionString":"1.0.5","CFBundleVersion":"20","CFBundleIdentifier":"com.swatched"\},\
"storeInfo" : \{"deviceIdentifierForVendor":"5D77A156-FE39-5FBF-9F2E-ACF3B064FF2C","thirdParty":true\},\
"parentProc" : "launchd_sim",\
"parentPid" : 634,\
"coalitionName" : "com.apple.CoreSimulator.SimDevice.C21F0312-680B-43B5-AF47-BC7E2A26BD86",\
"crashReporterKey" : "3E18D5CC-615B-E82C-1213-5179218DBCFA",\
"responsiblePid" : 602,\
"responsibleProc" : "SimulatorTrampoline",\
"codeSigningID" : "com.swatched",\
"codeSigningTeamID" : "",\
"codeSigningFlags" : 570425861,\
"codeSigningValidationCategory" : 10,\
"codeSigningTrustLevel" : 0,\
"sip" : "enabled",\
"exception" : \{"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGKILL"\},\
"termination" : \{"code":2343432205,"flags":6,"namespace":"FRONTBOARD","reasons":["<RBSTerminateContext| domain:10 code:0x8BADF00D explanation:[application<com.swatched>:43734] failed to terminate gracefully after 5.0s","ProcessVisibility: Unknown","ProcessState: Running","WatchdogEvent: process-exit","WatchdogVisibility: Background","WatchdogCPUStatistics: (","\\"Elapsed total CPU time (seconds): 6.680 (user 4.070, system 2.610), 14% CPU\\",","\\"Elapsed application CPU time (seconds): 0.526, 1% CPU\\"",") reportType:CrashLog maxTerminationResistance:Interactive>"]\},\
"extMods" : \{"caller":\{"thread_create":0,"thread_set_state":0,"task_for_pid":0\},"system":\{"thread_create":0,"thread_set_state":0,"task_for_pid":5\},"targeted":\{"thread_create":0,"thread_set_state":0,"task_for_pid":0\},"warnings":0\},\
"faultingThread" : 0,\
"threads" : [\{"triggered":true,"id":355104,"threadState":\{"x":[\{"value":268451845\},\{"value":34477180934\},\{"value":0\},\{"value":43993350012928\},\{"value":0\},\{"value":43993350012928\},\{"value":3072\},\{"value":4294967295\},\{"value":18446744073709550527\},\{"value":10243\},\{"value":0\},\{"value":17179869184\},\{"value":3072\},\{"value":10243\},\{"value":0\},\{"value":65970697666560\},\{"value":18446744073709551569\},\{"value":65970697681922\},\{"value":0\},\{"value":4294967295\},\{"value":3072\},\{"value":43993350012928\},\{"value":0\},\{"value":43993350012928\},\{"value":6100643296\},\{"value":0\},\{"value":34477180934\},\{"value":34477180934\},\{"value":117442566\}],"flavor":"ARM_THREAD_STATE64","lr":\{"value":4545864280\},"cpsr":\{"value":1610616832\},"fp":\{"value":6100642608\},"sp":\{"value":6100642528\},"esr":\{"value":1442840704,"description":" Address size fault"\},"pc":\{"value":4545794448,"matchesCrashFrame":1\},"far":\{"value":8073560112\}\},"queue":"com.apple.main-thread","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":547352,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":32\},\{"imageOffset":524428,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":4976840,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":14\},\{"imageOffset":4977388,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":14\},\{"imageOffset":9009500,"symbol":"+[RNSplashScreen show]","symbolLocation":228,"imageIndex":2\},\{"imageOffset":22348,"sourceLine":62,"sourceFile":"AppDelegate.mm","symbol":"-[AppDelegate application:didFinishLaunchingWithOptions:]","imageIndex":2,"symbolLocation":428\},\{"imageOffset":10899600,"symbol":"-[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:]","symbolLocation":292,"imageIndex":337\},\{"imageOffset":10905048,"symbol":"-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:]","symbolLocation":2776,"imageIndex":337\},\{"imageOffset":10924696,"symbol":"-[UIApplication _runWithMainScene:transitionContext:completion:]","symbolLocation":856,"imageIndex":337\},\{"imageOffset":1918832,"symbol":"-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:]","symbolLocation":104,"imageIndex":337\},\{"imageOffset":6909772,"symbol":"_UIScenePerformActionsWithLifecycleActionMask","symbolLocation":92,"imageIndex":337\},\{"imageOffset":1921032,"symbol":"__101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke","symbolLocation":188,"imageIndex":337\},\{"imageOffset":1919964,"symbol":"-[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:]","symbolLocation":320,"imageIndex":337\},\{"imageOffset":1920608,"symbol":"-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]","symbolLocation":588,"imageIndex":337\},\{"imageOffset":1919184,"symbol":"-[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:]","symbolLocation":248,"imageIndex":337\},\{"imageOffset":1965148,"symbol":"__186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke","symbolLocation":140,"imageIndex":337\},\{"imageOffset":5966772,"symbol":"+[BSAnimationSettings(UIKit) tryAnimatingWithSettings:fromCurrentState:actions:completion:]","symbolLocation":656,"imageIndex":337\},\{"imageOffset":6999268,"symbol":"_UISceneSettingsDiffActionPerformChangesWithTransitionContextAndCompletion","symbolLocation":196,"imageIndex":337\},\{"imageOffset":1964392,"symbol":"-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]","symbolLocation":288,"imageIndex":337\},\{"imageOffset":311688,"symbol":"__64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke.189","symbolLocation":552,"imageIndex":337\},\{"imageOffset":307084,"symbol":"-[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:]","symbolLocation":208,"imageIndex":337\},\{"imageOffset":310852,"symbol":"-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]","symbolLocation":220,"imageIndex":337\},\{"imageOffset":10919768,"symbol":"-[UIApplication workspace:didCreateScene:withTransitionContext:completion:]","symbolLocation":496,"imageIndex":337\},\{"imageOffset":6120820,"symbol":"-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:]","symbolLocation":260,"imageIndex":337\},\{"imageOffset":28100,"symbol":"-[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:]","symbolLocation":316,"imageIndex":141\},\{"imageOffset":182984,"symbol":"__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.59","symbolLocation":92,"imageIndex":141\},\{"imageOffset":75948,"symbol":"-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:]","symbolLocation":160,"imageIndex":141\},\{"imageOffset":182096,"symbol":"__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke","symbolLocation":296,"imageIndex":141\},\{"imageOffset":14184,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":59\},\{"imageOffset":30372,"symbol":"_dispatch_block_invoke_direct","symbolLocation":376,"imageIndex":59\},\{"imageOffset":311212,"symbol":"__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":44,"imageIndex":141\},\{"imageOffset":310944,"symbol":"-[FBSSerialQueue _targetQueue_performNextIfPossible]","symbolLocation":176,"imageIndex":141\},\{"imageOffset":311264,"symbol":"-[FBSSerialQueue _performNextFromRunLoopSource]","symbolLocation":24,"imageIndex":141\},\{"imageOffset":549340,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__","symbolLocation":24,"imageIndex":32\},\{"imageOffset":549156,"symbol":"__CFRunLoopDoSource0","symbolLocation":172,"imageIndex":32\},\{"imageOffset":546964,"symbol":"__CFRunLoopDoSources0","symbolLocation":232,"imageIndex":32\},\{"imageOffset":524032,"symbol":"__CFRunLoopRun","symbolLocation":756,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":15512,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":153\},\{"imageOffset":10913236,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":337\},\{"imageOffset":10929612,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":337\},\{"imageOffset":24500,"sourceLine":7,"sourceFile":"main.m","symbol":"main","imageIndex":2,"symbolLocation":100\},\{"imageOffset":8096,"symbol":"start_sim","symbolLocation":20,"imageIndex":1\},\{"imageOffset":24360,"symbol":"start","symbolLocation":2236,"imageIndex":0\}]\},\{"id":355126,"name":"com.apple.uikit.eventfetch-thread","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":547352,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":32\},\{"imageOffset":524428,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":4976840,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":14\},\{"imageOffset":4977388,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":14\},\{"imageOffset":11564768,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":424,"imageIndex":337\},\{"imageOffset":5130924,"symbol":"__NSThread__start__","symbolLocation":704,"imageIndex":14\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":355131,"name":"com.google.firebase.crashlytics.MachExceptionServer","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":903028,"symbol":"FIRCLSMachExceptionReadMessage","symbolLocation":80,"imageIndex":2\},\{"imageOffset":902828,"symbol":"FIRCLSMachExceptionServer","symbolLocation":52,"imageIndex":2\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":355136,"name":"com.apple.CFStream.LegacyThread","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":547352,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":32\},\{"imageOffset":524428,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":693948,"symbol":"_legacyStreamRunLoop_workThread","symbolLocation":260,"imageIndex":32\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":355137,"name":"com.facebook.SocketRocket.NetworkThread","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":547352,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":32\},\{"imageOffset":524428,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":4976840,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":14\},\{"imageOffset":6532612,"symbol":"-[SRRunLoopThread main]","symbolLocation":260,"imageIndex":2\},\{"imageOffset":5130924,"symbol":"__NSThread__start__","symbolLocation":704,"imageIndex":14\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":355138,"name":"com.apple.NSURLConnectionLoader","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":547352,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":32\},\{"imageOffset":524428,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":2161384,"imageIndex":10\},\{"imageOffset":5130924,"symbol":"__NSThread__start__","symbolLocation":704,"imageIndex":14\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":355139,"name":"com.apple.CFSocket.private","frames":[\{"imageOffset":46844,"symbol":"__select","symbolLocation":8,"imageIndex":87\},\{"imageOffset":633428,"symbol":"__CFSocketManager","symbolLocation":612,"imageIndex":32\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":355503,"frames":[\{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":90\}]\},\{"id":356799,"frames":[\{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":90\}]\},\{"id":357516,"frames":[\{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":90\}]\},\{"id":357517,"name":"com.facebook.react.JavaScript","frames":[\{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":87\},\{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":87\},\{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":87\},\{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":87\},\{"imageOffset":547352,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":32\},\{"imageOffset":524428,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":32\},\{"imageOffset":522228,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":32\},\{"imageOffset":4607256,"symbol":"+[RCTCxxBridge runRunLoop]","symbolLocation":736,"imageIndex":2\},\{"imageOffset":5130924,"symbol":"__NSThread__start__","symbolLocation":704,"imageIndex":14\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":357518,"name":"hades","frames":[\{"imageOffset":18068,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":87\},\{"imageOffset":31204,"symbol":"_pthread_cond_wait","symbolLocation":1220,"imageIndex":90\},\{"imageOffset":51488,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":24,"imageIndex":3\},\{"imageOffset":1157060,"imageIndex":24\},\{"imageOffset":1156472,"imageIndex":24\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":357519,"frames":[\{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":90\}]\},\{"id":357520,"frames":[\{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":90\}]\},\{"id":357521,"frames":[\{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":90\}]\},\{"id":357522,"name":"hermes-chrome-inspector-conn","frames":[\{"imageOffset":18068,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":87\},\{"imageOffset":31204,"symbol":"_pthread_cond_wait","symbolLocation":1220,"imageIndex":90\},\{"imageOffset":51488,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":24,"imageIndex":3\},\{"imageOffset":10399040,"symbol":"void std::__1::condition_variable::wait<facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1>(std::__1::unique_lock<std::__1::mutex>&, facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1)","symbolLocation":64,"imageIndex":2\},\{"imageOffset":10398556,"symbol":"facebook::hermes::inspector::detail::SerialExecutor::runLoop()","symbolLocation":112,"imageIndex":2\},\{"imageOffset":10410396,"symbol":"facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0::operator()() const","symbolLocation":28,"imageIndex":2\},\{"imageOffset":10410336,"symbol":"decltype(static_cast<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(fp)()) std::__1::__invoke<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&)","symbolLocation":24,"imageIndex":2\},\{"imageOffset":10410264,"symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&)","symbolLocation":28,"imageIndex":2\},\{"imageOffset":10410224,"symbol":"std::__1::__function::__alloc_func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()()","symbolLocation":28,"imageIndex":2\},\{"imageOffset":10404616,"symbol":"std::__1::__function::__func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()()","symbolLocation":28,"imageIndex":2\},\{"imageOffset":4705080,"symbol":"std::__1::__function::__value_func<void ()>::operator()() const","symbolLocation":60,"imageIndex":2\},\{"imageOffset":4705008,"symbol":"std::__1::function<void ()>::operator()() const","symbolLocation":24,"imageIndex":2\},\{"imageOffset":9274344,"symbol":"facebook::hermes::inspector::detail::Thread::run(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>)","symbolLocation":32,"imageIndex":2\},\{"imageOffset":9278100,"symbol":"decltype(static_cast<void (*>(fp)(static_cast<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>>(fp0), static_cast<std::__1::function<void ()>>(fp0))) std::__1::__invoke<void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>(void (*&&)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>&&, std::__1::function<void ()>&&)","symbolLocation":100,"imageIndex":2\},\{"imageOffset":9277924,"symbol":"void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>, 2ul, 3ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>&, std::__1::__tuple_indices<2ul, 3ul>)","symbolLocation":76,"imageIndex":2\},\{"imageOffset":9275540,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>>(void*)","symbolLocation":84,"imageIndex":2\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\},\{"id":357523,"name":"hermes-inspector","frames":[\{"imageOffset":18068,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":87\},\{"imageOffset":31204,"symbol":"_pthread_cond_wait","symbolLocation":1220,"imageIndex":90\},\{"imageOffset":51488,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":24,"imageIndex":3\},\{"imageOffset":10399040,"symbol":"void std::__1::condition_variable::wait<facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1>(std::__1::unique_lock<std::__1::mutex>&, facebook::hermes::inspector::detail::SerialExecutor::runLoop()::$_1)","symbolLocation":64,"imageIndex":2\},\{"imageOffset":10398556,"symbol":"facebook::hermes::inspector::detail::SerialExecutor::runLoop()","symbolLocation":112,"imageIndex":2\},\{"imageOffset":10410396,"symbol":"facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0::operator()() const","symbolLocation":28,"imageIndex":2\},\{"imageOffset":10410336,"symbol":"decltype(static_cast<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(fp)()) std::__1::__invoke<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&)","symbolLocation":24,"imageIndex":2\},\{"imageOffset":10410264,"symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&>(facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0&)","symbolLocation":28,"imageIndex":2\},\{"imageOffset":10410224,"symbol":"std::__1::__function::__alloc_func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()()","symbolLocation":28,"imageIndex":2\},\{"imageOffset":10404616,"symbol":"std::__1::__function::__func<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0, std::__1::allocator<facebook::hermes::inspector::detail::SerialExecutor::SerialExecutor(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)::$_0>, void ()>::operator()()","symbolLocation":28,"imageIndex":2\},\{"imageOffset":4705080,"symbol":"std::__1::__function::__value_func<void ()>::operator()() const","symbolLocation":60,"imageIndex":2\},\{"imageOffset":4705008,"symbol":"std::__1::function<void ()>::operator()() const","symbolLocation":24,"imageIndex":2\},\{"imageOffset":9274344,"symbol":"facebook::hermes::inspector::detail::Thread::run(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>)","symbolLocation":32,"imageIndex":2\},\{"imageOffset":9278100,"symbol":"decltype(static_cast<void (*>(fp)(static_cast<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>>(fp0), static_cast<std::__1::function<void ()>>(fp0))) std::__1::__invoke<void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>(void (*&&)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>&&, std::__1::function<void ()>&&)","symbolLocation":100,"imageIndex":2\},\{"imageOffset":9277924,"symbol":"void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>, 2ul, 3ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>&, std::__1::__tuple_indices<2ul, 3ul>)","symbolLocation":76,"imageIndex":2\},\{"imageOffset":9275540,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (*)(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>), std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, std::__1::function<void ()>>>(void*)","symbolLocation":84,"imageIndex":2\},\{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":90\},\{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":90\}]\}],\
"usedImages" : [\
\{\
"source" : "P",\
"arch" : "arm64e",\
"base" : 4417765376,\
"size" : 589824,\
"uuid" : "2237410f-d39c-30ce-9a94-13aacb66b766",\
"path" : "\\/usr\\/lib\\/dyld",\
"name" : "dyld"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4416651264,\
"size" : 327680,\
"uuid" : "1772df31-9df3-36cc-a3c6-b34fd26bffe5",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/dyld_sim",\
"name" : "dyld_sim"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4366221312,\
"CFBundleShortVersionString" : "1.0.5",\
"CFBundleIdentifier" : "com.swatched",\
"size" : 12468224,\
"uuid" : "cf492339-c79d-3c9e-8402-27f588a2d6f5",\
"path" : "\\/Users\\/USER\\/Library\\/Developer\\/CoreSimulator\\/Devices\\/C21F0312-680B-43B5-AF47-BC7E2A26BD86\\/data\\/Containers\\/Bundle\\/Application\\/65C9063B-1585-4CA7-82A6-1839D380BC0E\\/Swatched.app\\/Swatched",\
"name" : "Swatched",\
"CFBundleVersion" : "20"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4415700992,\
"size" : 376832,\
"uuid" : "0f7cacf5-28e6-356c-95d2-6caab944290b",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/libc++.1.dylib",\
"name" : "libc++.1.dylib"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4418781184,\
"size" : 114688,\
"uuid" : "0910da7d-c457-3815-b689-1b1134e1f888",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/libc++abi.dylib",\
"name" : "libc++abi.dylib"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4426645504,\
"size" : 2637824,\
"uuid" : "2adcfd82-acc2-3b5d-aff4-1af0b1b935fc",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/libicucore.A.dylib",\
"name" : "libicucore.A.dylib"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4423008256,\
"size" : 1687552,\
"uuid" : "8277baca-4142-3bab-b7a1-fabfc9b987a1",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/libsqlite3.dylib",\
"name" : "libsqlite3.dylib"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4419043328,\
"size" : 32768,\
"uuid" : "b0516732-1c10-3f49-9274-636a1c5d9ad2",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/swift\\/libswiftCoreGraphics.dylib",\
"name" : "libswiftCoreGraphics.dylib"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4416503808,\
"size" : 81920,\
"uuid" : "6f052406-30ff-3782-9363-0fc861ab1b39",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/usr\\/lib\\/libz.1.dylib",\
"name" : "libz.1.dylib"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4419239936,\
"CFBundleShortVersionString" : "1.8",\
"CFBundleIdentifier" : "com.apple.audio.toolbox.AudioToolbox",\
"size" : 1163264,\
"uuid" : "91f936aa-c0b2-3dfa-ab97-e7b4c0c99483",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/System\\/Library\\/Frameworks\\/AudioToolbox.framework\\/AudioToolbox",\
"name" : "AudioToolbox",\
"CFBundleVersion" : "1.8"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4440244224,\
"CFBundleShortVersionString" : "1399",\
"CFBundleIdentifier" : "com.apple.CFNetwork",\
"size" : 3686400,\
"uuid" : "edb4f97c-7130-3593-916f-73559d4e0f7f",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/System\\/Library\\/Frameworks\\/CFNetwork.framework\\/CFNetwork",\
"name" : "CFNetwork",\
"CFBundleVersion" : "1399"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4430446592,\
"CFBundleShortVersionString" : "2.0",\
"CFBundleIdentifier" : "com.apple.CoreGraphics",\
"size" : 6258688,\
"uuid" : "4b7be1c4-b9c6-33c4-b8d9-fd21d477a95d",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/System\\/Library\\/Frameworks\\/CoreGraphics.framework\\/CoreGraphics",\
"name" : "CoreGraphics",\
"CFBundleVersion" : "1690"\
\},\
\{\
"source" : "P",\
"arch" : "arm64",\
"base" : 4450205696,\
"CFBundleShortVersionString" : "113",\
"CFBundleIdentifier" : "com.apple.CoreTelephony",\
"size" : 1130496,\
"uuid" : "2796e214-963f-35ba-be4a-d8b4e6c007b6",\
"path" : "\\/Users\\/USER\\/Downloads\\/Xcode.app\\/Contents\\/Developer\\/Platforms\\/iPhoneOS.platform\\/Library\\/Developer\\/CoreSimulator\\/Profiles\\/Runtimes\\/iOS.simruntime\\/Contents\\/Resources\\/RuntimeRoot\\/System\\/Library\\/Frameworks\\/CoreTelephony.framework\\/CoreTelephony",\