diff --git a/lib/assets/junit.xml.erb b/lib/assets/junit.xml.erb
index 6b1446a..4da3ccf 100644
--- a/lib/assets/junit.xml.erb
+++ b/lib/assets/junit.xml.erb
@@ -11,6 +11,7 @@
:attr) %> name=<%= test[:name].encode(:xml => :attr) %> time="<%= test[:duration] %>">
<% (test[:failures] || []).each do |failure| %>
:attr) %>>
+ <%= (failure[:failure_trace] || '').encode(:xml => :text) %>
<% end %>
diff --git a/lib/trainer/options.rb b/lib/trainer/options.rb
index 2003fcf..261eef5 100644
--- a/lib/trainer/options.rb
+++ b/lib/trainer/options.rb
@@ -39,6 +39,11 @@ def self.available_options
env_name: "TRAINER_XCPRETTY_NAMING",
description: "Produces class name and test name identical to xcpretty naming in junit file",
is_string: false,
+ default_value: false),
+ FastlaneCore::ConfigItem.new(key: :include_crash_trace,
+ env_name: "TRAINER_INCLUDE_CRASH_TRACE",
+ description: "If there is a crash associated with a test failure, the contents of the .crash file will be included in the failure text",
+ is_string: false,
default_value: false)
]
end
diff --git a/lib/trainer/test_parser.rb b/lib/trainer/test_parser.rb
index 6776d46..9029a22 100644
--- a/lib/trainer/test_parser.rb
+++ b/lib/trainer/test_parser.rb
@@ -48,6 +48,7 @@ def self.auto_convert(config)
def initialize(path, config = {})
path = File.expand_path(path)
+ plist_dir = File.dirname path
UI.user_error!("File not found at path '#{path}'") unless File.exist?(path)
self.file_content = File.read(path)
@@ -55,7 +56,7 @@ def initialize(path, config = {})
return if self.raw_json["FormatVersion"].to_s.length.zero? # maybe that's a useless plist file
ensure_file_valid!
- parse_content(config[:xcpretty_naming])
+ parse_content(plist_dir, config[:xcpretty_naming], config[:include_crash_trace])
end
# Returns the JUnit report as String
@@ -121,7 +122,7 @@ def test_group_and_name(testable_summary, test, xcpretty_naming)
end
# Convert the Hashes and Arrays in something more useful
- def parse_content(xcpretty_naming)
+ def parse_content(plist_dir, xcpretty_naming, include_crash_trace)
self.data = self.raw_json["TestableSummaries"].collect do |testable_summary|
summary_row = {
project_path: testable_summary["ProjectPath"],
@@ -149,6 +150,14 @@ def parse_content(xcpretty_naming)
failure_message: "#{current_failure['Message']} (#{current_failure['FileName']}:#{current_failure['LineNumber']})"
}
end
+ if include_crash_trace
+ activity_summaries = current_test['ActivitySummaries'] || []
+ crash_attachment_file = activity_summaries.map { |a| a['DiagnosticReportFileName'] }.compact.find { |f| f.end_with? '.crash' }
+ unless crash_attachment_file.nil?
+ crash_attachment_path = File.join(plist_dir, 'Attachments', crash_attachment_file)
+ current_row[:failures].first[:failure_trace] = File.open(crash_attachment_path, &:read)
+ end
+ end
end
current_row
end
diff --git a/spec/fixtures/Test-ShapeSwift.xcresult/1_Test/Attachments/xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash b/spec/fixtures/Test-ShapeSwift.xcresult/1_Test/Attachments/xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
new file mode 100644
index 0000000..2a33d0a
--- /dev/null
+++ b/spec/fixtures/Test-ShapeSwift.xcresult/1_Test/Attachments/xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
@@ -0,0 +1,387 @@
+Process: xctest [3920]
+Path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/xctest
+Identifier: xctest
+Version: 14460.20
+Code Type: X86-64 (Native)
+Parent Process: launchd_sim [3918]
+Responsible: xctest [3920]
+User ID: 501
+
+
+Date/Time: 2019-01-13 09:27:23.318 -0800
+OS Version: Mac OS X 10.14.2 (18C54)
+Report Version: 12
+Anonymous UUID: 32983EE0-5A9C-D276-29B0-A5BC65C42A79
+
+Sleep/Wake UUID: 556D6183-EA05-4205-B464-0C9682B40760
+
+Time Awake Since Boot: 22000 seconds
+Time Since Wake: 720 seconds
+
+System Integrity Protection: enabled
+
+Crashed Thread: 0 Dispatch queue: com.apple.main-thread
+
+Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
+Exception Codes: 0x0000000000000001, 0x0000000000000000
+Exception Note: EXC_CORPSE_NOTIFY
+
+Application Specific Information:
+CoreSimulator 581.2 - Device: iPhone SE - Runtime: iOS 12.1 (16B91) - DeviceType: iPhone SE
+Fatal error: Unexpectedly found nil while unwrapping an Optional value
+
+
+Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
+0 libswiftCore.dylib 0x00000001241506f1 specialized _fatalErrorMessage(_:_:file:line:flags:) + 113
+1 libswiftCore.dylib 0x0000000123f86053 _fatalErrorMessage(_:_:file:line:flags:) + 19
+2 benasher44.ShapeSwiftTests 0x0000000123cae7b0 MultiPatchTest.testDecoding() + 192
+3 benasher44.ShapeSwiftTests 0x0000000123cae7e4 @objc MultiPatchTest.testDecoding() + 36
+4 com.apple.CoreFoundation 0x000000010ccc503c __invoking___ + 140
+5 com.apple.CoreFoundation 0x000000010ccc24d5 -[NSInvocation invoke] + 325
+6 com.apple.dt.XCTest 0x000000010c0e8018 __24-[XCTestCase invokeTest]_block_invoke.196 + 78
+7 com.apple.dt.XCTest 0x000000010c13fc74 -[XCTestCase(Failures) performFailableBlock:testCaseRun:shouldInterruptTest:] + 57
+8 com.apple.dt.XCTest 0x000000010c13fb91 -[XCTestCase(Failures) _performTurningExceptionsIntoFailuresInterruptAfterHandling:block:] + 96
+9 com.apple.dt.XCTest 0x000000010c0e7cd9 __24-[XCTestCase invokeTest]_block_invoke + 848
+10 com.apple.dt.XCTest 0x000000010c145b7e -[XCUITestContext performInScope:] + 248
+11 com.apple.dt.XCTest 0x000000010c0e78ce -[XCTestCase testContextPerformInScope:] + 98
+12 com.apple.dt.XCTest 0x000000010c0e797c -[XCTestCase invokeTest] + 137
+13 com.apple.dt.XCTest 0x000000010c0e94b7 __26-[XCTestCase performTest:]_block_invoke_2 + 43
+14 com.apple.dt.XCTest 0x000000010c13fc74 -[XCTestCase(Failures) performFailableBlock:testCaseRun:shouldInterruptTest:] + 57
+15 com.apple.dt.XCTest 0x000000010c13fb91 -[XCTestCase(Failures) _performTurningExceptionsIntoFailuresInterruptAfterHandling:block:] + 96
+16 com.apple.dt.XCTest 0x000000010c0e93ce __26-[XCTestCase performTest:]_block_invoke.330 + 88
+17 com.apple.dt.XCTest 0x000000010c15044b +[XCTContext runInContextForTestCase:block:] + 225
+18 com.apple.dt.XCTest 0x000000010c0e8afd -[XCTestCase performTest:] + 675
+19 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+20 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+21 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+22 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+23 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+24 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+25 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+26 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+27 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+28 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+29 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+30 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+31 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+32 com.apple.dt.XCTest 0x000000010c15be86 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 171
+33 com.apple.dt.XCTest 0x000000010c15bfa7 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke.80 + 68
+34 com.apple.dt.XCTest 0x000000010c0fbbc1 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 585
+35 com.apple.dt.XCTest 0x000000010c15bbfa -[XCTTestRunSession runTestsAndReturnError:] + 623
+36 com.apple.dt.XCTest 0x000000010c0c86b6 -[XCTestDriver runTestsAndReturnError:] + 422
+37 com.apple.dt.XCTest 0x000000010c14c9cd _XCTestMain + 1478
+38 xctest 0x000000010b79bffc main + 282
+39 libdyld.dylib 0x000000010ee9b575 start + 1
+
+Thread 1:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 2:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 3:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 4:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 0 crashed with X86 Thread State (64-bit):
+ rax: 0x0000000000000001 rbx: 0x0000000123ccfc10 rcx: 0x00000000000fc080 rdx: 0x0000000000000303
+ rdi: 0x0000000121b5ea00 rsi: 0x0000000000000303 rbp: 0x00007ffee4463580 rsp: 0x00007ffee4463540
+ r8: 0x000000000000000b r9: 0x0000000000000000 r10: 0x0000000021b5000c r11: 0x000000000000000c
+ r12: 0x0000000123ccfc4a r13: 0x00007fbcb9940c20 r14: 0x0000000000000002 r15: 0x0000000000000039
+ rip: 0x00000001241506f1 rfl: 0x0000000000010206 cr2: 0x000000010bdd7000
+
+Logical CPU: 2
+Error Code: 0x00000000
+Trap Number: 6
+
+
+Binary Images:
+ 0x10b799000 - 0x10b79efff +xctest (14460.20) <3D9CE28B-2D93-32B5-BD37-A98435F38A0C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/xctest
+ 0x10b7a8000 - 0x10b7efe47 +dyld_sim (631.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
+ 0x10b83f000 - 0x10b86aff3 +libMainThreadChecker.dylib (64460.7) <219FEDC9-84B8-3190-ABD8-7613C10BC5FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMainThreadChecker.dylib
+ 0x10ba32000 - 0x10ba68fe7 com.apple.dt.XCTAutomationSupport (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework/XCTAutomationSupport
+ 0x10ba9b000 - 0x10bdb2fff com.apple.Foundation (6.9 - 1560.10) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
+ 0x10c0c1000 - 0x10c1b5ffb com.apple.dt.XCTest (1.0 - 14460.20) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/XCTest
+ 0x10c257000 - 0x10c9d7fef +libobjc.A.dylib (750.1) <177A61B3-9E02-3A09-9A98-C1C3C9AB7958> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
+ 0x10cb8e000 - 0x10cb8fff7 +libSystem.B.dylib (1252.200.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libSystem.B.dylib
+ 0x10cb96000 - 0x10cf2efff com.apple.CoreFoundation (6.9 - 1560.10) <80ACDA5E-AD72-3857-AF41-395941288C21> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
+ 0x10d100000 - 0x10d776ff7 com.apple.CoreGraphics (2.0 - 1245.9.2) <3D49C8C0-B6D9-3450-8F35-FB02B8526DA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
+ 0x10d8c0000 - 0x10d8c0fff com.apple.UIKit (1.0 - 61000) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit
+ 0x10d8c4000 - 0x10d910ff7 com.apple.AXRuntime (1.0.0 - 1) <69A1ECC9-1971-3173-894A-1324605A0D91> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
+ 0x10d955000 - 0x10d95dfff com.apple.IOSurface (255.1 - 255.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOSurface.framework/IOSurface
+ 0x10d96f000 - 0x10d981ff7 +libz.1.dylib (70.200.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libz.1.dylib
+ 0x10d987000 - 0x10da6aff3 +libxml2.2.dylib (32.8) <5DF69C71-DC61-38BB-92EA-6A82D38DDE09> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxml2.2.dylib
+ 0x10daae000 - 0x10daaefff com.apple.Accelerate (1.11 - Accelerate 1.11) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Accelerate
+ 0x10dab2000 - 0x10de6eff7 com.apple.CFNetwork (975.0.3 - 975.0.3) <85DF0984-19CD-345A-9761-E566CAD30B03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork
+ 0x10e240000 - 0x10e28eff7 +libc++.1.dylib (400.9.4) <66B692F1-FA7E-3CBB-817A-73A7FE29A765> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib
+ 0x10e2dc000 - 0x10e2f0fff +libc++abi.dylib (400.17) <1FC319B3-5125-3D57-8ADE-8A833F45B031> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
+ 0x10e30a000 - 0x10e379ffb com.apple.framework.IOKit (2.0.2 - 1483.220.15) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
+ 0x10e3be000 - 0x10e3beff7 com.apple.MobileCoreServices (935.2 - 935.2) <2AC3E19F-12EA-35E3-8DA6-9B733F2D56A4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
+ 0x10e3c2000 - 0x10e3ebff3 +libarchive.2.dylib (54.200.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libarchive.2.dylib
+ 0x10e3f8000 - 0x10e655ff3 +libicucore.A.dylib (62108.0.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libicucore.A.dylib
+ 0x10e756000 - 0x10e7b6ff7 com.apple.SystemConfiguration (1.17 - 1.17) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
+ 0x10e7ee000 - 0x10e81fff7 +libCRFSuite.dylib (41.15.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCRFSuite.dylib
+ 0x10e836000 - 0x10e837fff +liblangid.dylib (128) <4FA21386-DCBF-3FC4-9807-D7D240FBFFDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblangid.dylib
+ 0x10e83c000 - 0x10e974ff7 com.apple.CoreServices (935.2 - 935.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreServices.framework/CoreServices
+ 0x10ea6f000 - 0x10ea9fffb com.apple.MobileInstallation (2.0 - 1.0) <4C6A9FE9-14A4-33C8-9A06-D904E27970CD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
+ 0x10eac8000 - 0x10eae8fff +libMobileGestalt.dylib (645.220.9) <0A4BB86C-088D-3AAF-9445-D81188ECE1DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestalt.dylib
+ 0x10eb3f000 - 0x10eb4ffff +libbsm.0.dylib (39.200.18) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbsm.0.dylib
+ 0x10eb5a000 - 0x10ec5dfff com.apple.Security (10.0 - 58286.222.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Security.framework/Security
+ 0x10ed41000 - 0x10ed45ffb +libcache.dylib (81) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcache.dylib
+ 0x10ed4b000 - 0x10ed55ff7 +libcommonCrypto.dylib (60118.220.1) <0F0D3DE4-E247-35E4-A905-B92D574BECC9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcommonCrypto.dylib
+ 0x10ed64000 - 0x10ed6bff7 +libcompiler_rt.dylib (63.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcompiler_rt.dylib
+ 0x10ed75000 - 0x10ed7eff3 +libcopyfile.dylib (146.200.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcopyfile.dylib
+ 0x10ed85000 - 0x10ee09fc7 +libcorecrypto.dylib (602.220.6) <39BACA1B-A171-326F-911D-E68994A6E615> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcorecrypto.dylib
+ 0x10ee27000 - 0x10ee63fff +libdispatch.dylib (1008.220.2) <3A776B57-01CC-3558-80C8-1D6DAF4930E0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib
+ 0x10ee9a000 - 0x10eec5ff3 +libdyld.dylib (631.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdyld.dylib
+ 0x10eee7000 - 0x10eee7ff7 +liblaunch.dylib (1336.220.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/liblaunch.dylib
+ 0x10eeee000 - 0x10eef3fff +libmacho.dylib (918.1.1) <0F2D221C-F375-393D-9A28-5D173CF9C7FA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libmacho.dylib
+ 0x10eefa000 - 0x10eefbff3 +libremovefile.dylib (45.200.2) <6553373E-68F5-3854-A27E-2C28C33FE9DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libremovefile.dylib
+ 0x10ef01000 - 0x10ef17fff +libsystem_asl.dylib (356.200.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_asl.dylib
+ 0x10ef26000 - 0x10ef26fff +libsystem_blocks.dylib (73) <03604E2C-1791-3C18-92BF-A2319F4AC310> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_blocks.dylib
+ 0x10ef2b000 - 0x10efafff7 +libsystem_c.dylib (1272.200.26) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
+ 0x10efdb000 - 0x10efdeff7 +libsystem_configuration.dylib (963.200.27) <068B56DC-B6D4-3F8D-ACF7-9AA05085C1B0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_configuration.dylib
+ 0x10efe5000 - 0x10efeaff3 +libsystem_containermanager.dylib (136.200.32) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_containermanager.dylib
+ 0x10eff2000 - 0x10eff3ffb +libsystem_coreservices.dylib (65) <9AFED38C-2158-36A2-ACB5-9229385F9C6C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_coreservices.dylib
+ 0x10eff9000 - 0x10effeffb +libsystem_darwin.dylib (1272.200.26) <5999445D-3773-3101-9CA6-5899037FDA1D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_darwin.dylib
+ 0x10f00a000 - 0x10f010ff7 +libsystem_dnssd.dylib (878.200.35) <27526F93-BBD1-314A-95BA-0D52C36DBDBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_dnssd.dylib
+ 0x10f017000 - 0x10f058ff7 +libsystem_info.dylib (517.200.9) <07391A3E-5052-35B5-A527-D21ADEDEFDFF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_info.dylib
+ 0x10f06d000 - 0x10f0b2ff3 +libsystem_m.dylib (3158.200.7) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_m.dylib
+ 0x10f0be000 - 0x10f0e1ff7 +libsystem_malloc.dylib (166.220.1) <2E256A7F-BBFC-3619-AC9B-B54B7D1723D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_malloc.dylib
+ 0x10f0f3000 - 0x10f0f9fff +libsystem_notify.dylib (172.200.21) <59AC35A0-1B40-3277-95A7-99BD88DEA1BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_notify.dylib
+ 0x10f100000 - 0x10f102ff7 +libsystem_sandbox.dylib (851.220.9) <58259566-7CD3-3B66-8516-5F2B5560BEDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sandbox.dylib
+ 0x10f109000 - 0x10f10affb +libsystem_sim_kernel.dylib (193.200.9) <01F491FD-CF4F-3A51-A081-42073C2D2D3D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel.dylib
+ 0x10f111000 - 0x10f114fe3 +libsystem_sim_platform.dylib (193.200.9) <3E3F0852-1757-34D8-881C-03BB40653D98> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform.dylib
+ 0x10f11b000 - 0x10f11bffb +libsystem_sim_pthread.dylib (193.200.9) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread.dylib
+ 0x10f121000 - 0x10f136ff7 +libsystem_trace.dylib (906.220.1) <29B76846-8833-3F8D-B3FF-ECB62CBD5AE1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_trace.dylib
+ 0x10f148000 - 0x10f14efff +libunwind.dylib (128.2) <3C1434B3-315E-31B8-A164-685D139706B7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libunwind.dylib
+ 0x10f155000 - 0x10f183ff7 +libxpc.dylib (1336.220.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libxpc.dylib
+ 0x10f1ad000 - 0x10f1adff7 +libsystem_sim_pthread_host.dylib (193.200.9) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread_host.dylib
+ 0x10f1b2000 - 0x10f1b2ff7 +libsystem_sim_platform_host.dylib (193.200.9) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform_host.dylib
+ 0x10f1b8000 - 0x10f1b8ff7 +libsystem_sim_kernel_host.dylib (193.200.9) <01CF8A44-8C01-3401-BAE9-74FFCBA563BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel_host.dylib
+ 0x10f1be000 - 0x10f1e6ff7 libsystem_kernel.dylib (4903.231.4) /usr/lib/system/libsystem_kernel.dylib
+ 0x10f201000 - 0x10f20afef libsystem_platform.dylib (177.200.16) <83DED753-51EC-3B8C-A98D-883A5184086B> /usr/lib/system/libsystem_platform.dylib
+ 0x10f213000 - 0x10f21dfff libsystem_pthread.dylib (330.230.1) /usr/lib/system/libsystem_pthread.dylib
+ 0x10f228000 - 0x10f22bff3 com.apple.MobileSystemServices (1.0 - 1) <12AA79EF-C895-3893-90D0-F2F2EBAFA17E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
+ 0x10f233000 - 0x10f241ff7 +libbz2.1.0.dylib (38.200.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbz2.1.0.dylib
+ 0x10f247000 - 0x10f53dfff +libnetwork.dylib (1229.220.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetwork.dylib
+ 0x10f60c000 - 0x10f622fff +libcoretls.dylib (155.220.1) <7ADF442D-4665-3EA6-9E33-CADDD4F1DE31> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls.dylib
+ 0x10f62f000 - 0x10f630ff3 +libcoretls_cfhelpers.dylib (155.220.1) <29F7C1A9-CAB5-3A7C-B955-B449095221A7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls_cfhelpers.dylib
+ 0x10f637000 - 0x10f64dff3 +libapple_nghttp2.dylib (1.24.1) <8018C25E-9888-35AF-9EA8-37E41E237110> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapple_nghttp2.dylib
+ 0x10f65a000 - 0x10f7ebffb +libsqlite3.dylib (274.20) <7F03A889-6A68-3B38-8DA2-2E9069461504> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libsqlite3.dylib
+ 0x10f81d000 - 0x10f835fff +liblzma.5.dylib (10.200.3) <5269A1EC-A3F4-3B24-BE3C-631F166BC858> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblzma.5.dylib
+ 0x10f83d000 - 0x11014afc7 com.apple.vImage (8.1 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
+ 0x1101e4000 - 0x1101e4fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <520D399E-9ECC-30AC-9B10-2DD1673CEF7C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
+ 0x1101e8000 - 0x1101fffdf +libcompression.dylib (52.200.13) <0B0852CE-DF8E-35C0-83EA-6F544CFA8570> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcompression.dylib
+ 0x110208000 - 0x11035cfe7 +libvMisc.dylib (671.220.1) <6C5EB649-5935-3F7D-8A3A-FDBB70880D03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
+ 0x11037a000 - 0x110506fc7 +libvDSP.dylib (671.220.1) <33A1FE80-E4C1-307E-ACC5-7337A217A96A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
+ 0x110518000 - 0x1106c2fe3 +libBLAS.dylib (1243.200.4) <5C5DA326-EEA6-3D71-BCAD-9D3771CA8DBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
+ 0x1106ea000 - 0x1106ffffb +libLinearAlgebra.dylib (1243.200.4) <482268F6-F714-3CBE-9ED6-0059B47A54CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
+ 0x110709000 - 0x11071bff7 +libSparseBLAS.dylib (1243.200.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
+ 0x110724000 - 0x110729ff3 +libQuadrature.dylib (3.200.2) <8AE027FE-E7F0-3610-BB1F-AE3250958EB7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
+ 0x11072e000 - 0x110771fff +libBNNS.dylib (38.200.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
+ 0x11077c000 - 0x1107e5ffb +libSparse.dylib (79.200.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
+ 0x1107fe000 - 0x110808ff3 com.apple.mobileicons.framework (1.0 - 372.0) <08EEF7C1-157E-3B56-998B-4C13E867F2C3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
+ 0x110816000 - 0x11081afff com.apple.AggregateDictionary (1.0 - 1) <3960792E-2200-30F6-A37D-DC272A1B04CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
+ 0x110823000 - 0x110826ff3 com.apple.iphonesimulator.SimulatorClient (1.0 - 1) <6C09A210-ACB9-3124-BE51-4F4BF5F3F68D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient
+ 0x11082c000 - 0x11082cffb com.apple.FontServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/FontServices
+ 0x110835000 - 0x1108b3a67 dyld (640.2) <289AB27E-F09F-3384-A14A-100431139559> /usr/lib/dyld
+ 0x110916000 - 0x110cd0fff +libLAPACK.dylib (1243.200.4) <60909267-BF6C-3A84-B2D3-E4F105EA4B85> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
+ 0x110d1b000 - 0x110d74fff com.apple.DocumentManager (1.0 - 68.100.38) <2EF7D401-05E4-3AC1-BF8A-F3700661BC6A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
+ 0x110dcf000 - 0x110e69fff com.apple.FileProvider (125.129 - 125.129) <164D635D-90FE-3D4A-993D-AF57F9389CC0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/FileProvider.framework/FileProvider
+ 0x110ef2000 - 0x1120fdfff com.apple.UIKitCore (1.0 - 61000) <2DB941E0-513E-3750-9278-C8AFB85CB3C0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
+ 0x1131ab000 - 0x113389ff7 com.apple.QuartzCore (1.11 - 694.22.1.6) <1C11452D-6857-37DB-B9D8-12EB530D3F16> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuartzCore.framework/QuartzCore
+ 0x11347c000 - 0x11350dfff com.apple.Network (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Network.framework/Network
+ 0x113573000 - 0x113586ff7 com.apple.DocumentManagerCore (1.0 - 68.100.38) <7416B803-80F0-39A2-9550-D2C1931DE291> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
+ 0x11359f000 - 0x1135c1ff7 com.apple.pluginkit.framework (1.0 - 1) <3FB71003-F4EF-3882-AC88-CFB373FD4AD2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
+ 0x1135dc000 - 0x113887fff com.apple.CoreImage (12.1.0 - 710.5.130) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreImage.framework/CoreImage
+ 0x113a6e000 - 0x113b2dff7 com.apple.CoreUI (1.0 - 498.40.1) <9E628C81-0C8F-3E83-903B-BE10A5C419C6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
+ 0x113ca6000 - 0x1141d0ff7 com.apple.ImageIO.framework (3.3.0 - 1821.6) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageIO.framework/ImageIO
+ 0x1142ff000 - 0x1144c2ff7 +libFosl_dynamic.dylib (18.3.2) <76F7EEE0-2A10-3E6A-AD17-14926C3CD127> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libFosl_dynamic.dylib
+ 0x114513000 - 0x1145adff7 com.apple.ColorSync (4.13.0 - 3340) <165F5162-80BE-3C28-88A5-3330B584F7FB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
+ 0x1145e1000 - 0x114682ff7 com.apple.CoreMedia (1.0 - 2282.19.101.7) <22D2DC51-028C-392B-B66F-F03DDD56A514> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMedia.framework/CoreMedia
+ 0x114730000 - 0x114a0fff7 com.apple.VideoToolbox (1.0 - 2282.19.101.7) <0102BFA9-431F-3DC4-9F3D-E5A6F27EF39A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
+ 0x114aaa000 - 0x114ab9ff7 com.apple.GraphVisualizer (1.0 - 5) <9135435B-B508-3C4A-AB75-61974D5CFEF4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
+ 0x114ac6000 - 0x114c2afff com.apple.CoreText (352.0 - 584.25) <27CABD47-E94C-38BF-BCF0-D4EE6AD4687E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreText.framework/CoreText
+ 0x114cfb000 - 0x114d07ffb com.apple.opengles (17.0.37 - 17.0.37) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/OpenGLES
+ 0x114d15000 - 0x114d37ff7 com.apple.CoreVideo (1.8 - 0.0) <34B3E453-1310-3A47-A5E7-89A59819F2E3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreVideo.framework/CoreVideo
+ 0x114d53000 - 0x115177fff com.apple.vision.FaceCore (3.1.12 - 3.1.12) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
+ 0x115380000 - 0x115409fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreAudio.framework/CoreAudio
+ 0x115439000 - 0x11544cfff com.apple.GraphicsServices (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
+ 0x115467000 - 0x115478fff +libGSFontCache.dylib (126.13.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
+ 0x115734000 - 0x11582fffb com.apple.UIFoundation (1.0 - 552.1) <2D96A110-37B9-3FE3-B8D3-52608FF10199> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
+ 0x1158dd000 - 0x1158f1ff3 +libAccessibility.dylib (2402.39.4) <2997C325-EC38-39BF-8B64-CF010668A260> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAccessibility.dylib
+ 0x11591a000 - 0x11596fffb com.apple.OTSVG (1.0 - ???) <5D9708E0-3C57-3D79-961C-31A650EDA3D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
+ 0x1159e4000 - 0x115af1fff +libFontParser.dylib (228.6) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
+ 0x115bce000 - 0x115c9affb com.apple.TextureIO (3.8.4 - 3.8.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
+ 0x115cc4000 - 0x115d53ff7 com.apple.Metal (157.58 - 157.58) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal
+ 0x115e52000 - 0x115f4dfcf +libate.dylib (1.13.8) <308B9771-3261-31E6-9A66-FFC9C07ED37F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libate.dylib
+ 0x115f60000 - 0x115fa9ff7 com.apple.AppleJPEG (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
+ 0x115fb8000 - 0x115fbdff3 +libCoreFSCache.dylib (163.22) <98CE7205-9658-35E9-98A2-BCCA66105D7F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
+ 0x115fc3000 - 0x115fccfff +libGFXShared.dylib (17.0.37) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
+ 0x115fd5000 - 0x116018ff7 +libGLImage.dylib (17.0.37) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
+ 0x116024000 - 0x116026fff +libCVMSPluginSupport.dylib (17.0.37) <78F61638-1C00-3EC2-9F14-DCC5E1896010> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
+ 0x11602d000 - 0x116035fff +libCoreVMClient.dylib (163.22) <98F4AF7D-E8C2-38AE-9F8C-4B10894FC638> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
+ 0x11603e000 - 0x116d0afbf +libLLVMContainer.dylib (602.2.46) <7A937FC9-2837-3BAD-BA62-27E3141233BD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
+ 0x11709e000 - 0x1170a8fff com.apple.accessibility.AXCoreUtilities (1.0 - 1) <4B7ADEA0-403F-3689-8E76-8296340A9F1C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
+ 0x1170c1000 - 0x1170cbfff com.apple.MediaAccessibility (1.0 - 114.4) <329E49E8-0E2F-3A6D-BFD6-47090224F556> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
+ 0x1170dc000 - 0x1170e1ffb com.apple.ConstantClasses (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
+ 0x1170ec000 - 0x117114ff7 com.apple.applesauce (1.0 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
+ 0x117121000 - 0x117124ff7 com.apple.dt.XCTTargetBootstrap (1.0 - 1) <43AF29EC-FB68-37E0-8148-46E45D7E7240> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
+ 0x11712d000 - 0x1172bdff7 com.apple.WebKitLegacy (8606 - 8606.2.104.0.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
+ 0x117423000 - 0x117e7cfff com.apple.JavaScriptCore (8606 - 8606.2.104.0.1) <93BA607A-EB69-333A-8438-B99D1C1D99C7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
+ 0x118133000 - 0x118166ffb com.apple.UserNotifications (1.0 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UserNotifications.framework/UserNotifications
+ 0x1181a1000 - 0x1181e3fff com.apple.AppSupport (1.0.0 - 29) <87E7AF00-CAE8-3F40-901C-ACAD3084025C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
+ 0x118229000 - 0x11823fffb com.apple.AssertionServices (1.0 - 1) <713132B9-682B-3EAE-A2C9-C5C921E2B941> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
+ 0x118267000 - 0x1182a1ff7 com.apple.BackBoardServices (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
+ 0x1182e9000 - 0x118359ff3 com.apple.BaseBoard (360.25 - 360.25) <29A64509-A632-3034-93B8-74EAD0A92056> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
+ 0x1183da000 - 0x118444ff3 com.apple.FrontBoardServices (486.50 - 486.50) <225E33DD-620C-345E-B4A7-82CEEFD0AFD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
+ 0x1184cc000 - 0x1184e5fff com.apple.MobileAssets (1.0 - 437.200.49) <7E7CB819-3BD3-3484-9B86-94DE4B5E8443> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
+ 0x118503000 - 0x11855bfff com.apple.PhysicsKit (1.0 - 1) <3BE90189-439A-3713-94DB-90D90141FE62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
+ 0x118590000 - 0x118675ff7 com.apple.ProofReader (2.4 - 430) <94F2E312-CF41-366B-89B9-9885A75EE3BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
+ 0x1186d0000 - 0x1186ecfff com.apple.PrototypeTools (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
+ 0x118710000 - 0x11877afff com.apple.TextInput (1.0 - 1.0) <1401B845-A529-3E44-9CCF-88FE37DC2949> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInput.framework/TextInput
+ 0x118807000 - 0x118811fff com.apple.UIKitServices (1.0 - 1) <825158C6-20EF-36ED-87C0-30751D0E1221> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
+ 0x118823000 - 0x11a202ff7 com.apple.WebCore (8606 - 8606.2.104.0.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/WebCore
+ 0x11b11e000 - 0x11b6adff7 +libwebrtc.dylib (7606.2.104.0.1) <6E94BBF0-2CA6-3A65-9138-948F3E8663BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
+ 0x11b89f000 - 0x11b8a5fff com.apple.URLFormatting (59 - 59.34) <39669D5B-4408-38C2-AD6C-9162126ABCBA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
+ 0x11b8af000 - 0x11bdb2fff com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <2B73D26C-6EC1-358B-A237-40E097692113> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+ 0x11bfd6000 - 0x11bfdefff com.apple.CorePhoneNumbers (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
+ 0x11bfe7000 - 0x11bff1fff +libAudioStatistics.dylib (975.63.7) <4A7AA980-C1DE-3875-83B3-4599EB659C41> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioStatistics.dylib
+ 0x11bffe000 - 0x11c01cfff com.apple.ProtocolBuffer (1 - 263) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
+ 0x11c03e000 - 0x11c082ff7 com.apple.awd (1.0 - 930.11) <64B5BED6-B817-36BB-A160-AE5DE425F92B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
+ 0x11c0b6000 - 0x11c0bfff7 com.apple.RTCReporting (9.36.3 - 9.36.3) <6A5C80D4-D224-3C9A-A9D9-7E805A087DE1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
+ 0x11c0ce000 - 0x11c113ffb com.apple.SpringBoardServices (1.0 - 1.0) <0964FDEA-C43A-3846-8FD4-0D36EC46874E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
+ 0x11c173000 - 0x11c17afff com.apple.TCC (1.0 - 1) <07FF734B-6315-3AA4-B3FC-12B45BAD0596> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TCC.framework/TCC
+ 0x11c186000 - 0x11c293ff7 +libAWDSupportFramework.dylib (886) <719C4BE7-546A-344B-9982-E56D97D51A5E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupportFramework.dylib
+ 0x11c3d0000 - 0x11c3e1fff +libprotobuf-lite.dylib (886) <57072992-4776-369A-B995-C74E8527E2F2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf-lite.dylib
+ 0x11c3fc000 - 0x11c43aff7 +libTelephonyUtilDynamic.dylib (3609) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libTelephonyUtilDynamic.dylib
+ 0x11c486000 - 0x11c4e7fff +libprotobuf.dylib (886) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf.dylib
+ 0x11c54a000 - 0x11c589ff3 com.apple.StreamingZip (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
+ 0x11c5aa000 - 0x11c5ebfff com.apple.Lexicon-framework (1.0 - 33.15.10) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
+ 0x11c5fe000 - 0x11c6f3ff7 com.apple.LanguageModeling (1.0 - 159.15.15) <78D15BEA-EF26-3456-BDAC-E605CDA9120D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
+ 0x11c727000 - 0x11c72bfff com.apple.LinguisticData (1.0 - 238.15.29) <1A88A642-2206-39E8-9680-95DCC8FA92A6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
+ 0x11c732000 - 0x11c746fff com.apple.CoreEmoji (1.0 - 69.19.8) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
+ 0x11c762000 - 0x11c772ffb +libcmph.dylib (6.15.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcmph.dylib
+ 0x11c77c000 - 0x11c86dff7 +libiconv.2.dylib (51.200.6) <114D034A-F142-3FDB-84DD-1626454F9721> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libiconv.2.dylib
+ 0x11c880000 - 0x11c880ff3 +libcharset.1.dylib (51.200.6) <2100DE83-9FAD-3C53-8703-0B5F2272797C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcharset.1.dylib
+ 0x11c885000 - 0x11c8e6ff7 com.apple.CoreNLP (1.0 - 130.15.22) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
+ 0x11c93d000 - 0x11ca00fff +libmecab_em.dylib (779.19.2) <446870E7-EE93-3348-9800-A61FF61F2A59> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecab_em.dylib
+ 0x11ca29000 - 0x11ca2effb +libgermantok.dylib (17.15.2) <3C04227A-D188-3ECA-957D-F680DAE6F9FD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libgermantok.dylib
+ 0x11ca34000 - 0x11ca35fff +libThaiTokenizer.dylib (2.2) <5CE6E4AE-27C9-348B-B753-3CDF6793493A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libThaiTokenizer.dylib
+ 0x11ca3b000 - 0x11ca44fff +libChineseTokenizer.dylib (28.15.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libChineseTokenizer.dylib
+ 0x11ca52000 - 0x11cab2ff7 com.apple.Accounts (113 - 113) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accounts.framework/Accounts
+ 0x11cb11000 - 0x11cc24ffb com.apple.AppleAccount (1.0 - 1.0) <438BAB35-2E67-32CA-935B-170EB4527B1D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
+ 0x11cc9a000 - 0x11d017ff3 +CoreData (866.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreData.framework/CoreData
+ 0x11d246000 - 0x11d349ff3 com.apple.managedconfiguration (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
+ 0x11d44b000 - 0x11d469ffb com.apple.SetupAssistant (1.0 - 1) <1A28FF21-EFC0-36BD-9DB8-5760C5A0A805> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
+ 0x11d48d000 - 0x11d491ff3 com.apple.AppleIDSSOAuthentication (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
+ 0x11d49b000 - 0x11d4b3ffb com.apple.aps.framework (4.0 - 4.0) <7736AF7B-0865-3C5E-A8E5-AC36F581D91D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
+ 0x11d4d3000 - 0x11d526ffb com.apple.AuthKit (1.0 - 1) <32D9FAF0-7D07-3437-992E-C26CEFD0266C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
+ 0x11d57f000 - 0x11d5f8fff com.apple.corelocation (2245.8.12) <9C97832D-FE0E-35E5-819E-935E829CEA43> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocation.framework/CoreLocation
+ 0x11d630000 - 0x11d860ff7 +StoreServices (1445.1.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
+ 0x11daa0000 - 0x11daa8fff com.apple.datamigration (1.0 - 1.0) <24C673CA-787F-3B68-914C-9D7204D0A053> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
+ 0x11dab7000 - 0x11dae2ffb com.apple.persistentconnection (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
+ 0x11db11000 - 0x11dbf5ff7 com.apple.CoreTelephony (113 - 6530.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
+ 0x11dcd4000 - 0x11dceafff com.apple.commonutilities (8.0 - 900) <4D66C635-DA70-3D76-8D4E-25B88D137887> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
+ 0x11dd02000 - 0x11dd34ff3 com.apple.bom (14.0 - 197) <5EB2C083-0C60-34EC-839E-8C8AEE2E6692> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Bom.framework/Bom
+ 0x11dd49000 - 0x11dd4fff7 +libcupolicy.dylib (6530.3) <3D3FEC07-601C-3473-A1AC-2C7E2CAD76EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcupolicy.dylib
+ 0x11dd58000 - 0x11dd5dfff com.apple.CoreTime (258) <9A1632D1-44F6-3131-824B-F0549B99E6CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
+ 0x11dd66000 - 0x11debdfff com.apple.CoreUtils (5.7.4 - 574.17) <5211FE27-DF72-3D85-9461-7C4D37F1C280> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
+ 0x11dfc1000 - 0x11dfccfff com.apple.AppleIDAuthSupport (1.0 - 1) <212F8EBA-7E74-3519-BC6D-7C24E3489C5B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
+ 0x11dfdb000 - 0x11dfdbfff com.apple.PhoneNumbers (1.0 - 1) <611F7564-2ECB-378E-B12C-6352D56C89B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
+ 0x11dfe0000 - 0x11e037fc9 com.apple.ROCKit (24 - 24) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
+ 0x11e06d000 - 0x11e09dfff com.apple.CoreBluetooth (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
+ 0x11e0c9000 - 0x11e165fff com.apple.accounts.AccountsDaemon (113 - 113) <88B3E208-E466-3709-9BF5-CECE9EAF966D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
+ 0x11e1c4000 - 0x11e1edffb com.apple.GSS (4.0 - 2.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/GSS.framework/GSS
+ 0x11e20e000 - 0x11e210fff com.apple.OAuth (25 - 25) <48573CC6-DA10-35B4-8B09-9D3A3D49D636> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OAuth.framework/OAuth
+ 0x11e218000 - 0x11e21dff7 +libheimdal-asn1.dylib (520.220.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libheimdal-asn1.dylib
+ 0x11e225000 - 0x11e293ff3 com.apple.Heimdal (4.0 - 2.0) <9A1F900F-4998-3663-92F1-5E575C9C9315> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
+ 0x11e2cb000 - 0x11e2e3ff3 +libresolv.9.dylib (65.200.2) <3F1E98D8-B446-393E-B8AC-6035BFBF50BA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libresolv.9.dylib
+ 0x11e2ef000 - 0x11e2f1ff7 com.apple.CommonAuth (4.0 - 2.0) <50A19C6E-D9AB-3F78-A5D3-BC9E38BC6A66> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
+ 0x11e2f7000 - 0x11ed30ff7 com.apple.GeoServices (1.0 - 1364.31.8.31.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
+ 0x11f4cd000 - 0x11f51cffb +CoreLocationProtobuf (25.0.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
+ 0x11f570000 - 0x11f58ffff com.apple.CacheDelete (1.0 - 1) <298872CA-8DDA-38D7-8B10-1EEEC8055DE9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
+ 0x11f5a9000 - 0x11f66effb com.apple.AppleMediaServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
+ 0x11f724000 - 0x11f7a5ff7 com.apple.CoreSymbolication (10.1 - 64460.6) <983AF6C8-CA8E-3EAF-847C-241A1875B0C5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
+ 0x11f7f9000 - 0x11f821ff3 com.apple.dt.instruments.DTXConnectionServices (10.1 - 64460.15) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/Developer/Library/PrivateFrameworks/DTXConnectionServices.framework/DTXConnectionServices
+ 0x11f845000 - 0x11f956ffb com.apple.AssistantServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
+ 0x11fa86000 - 0x11faeeff7 com.apple.SAObjects (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
+ 0x11fdda000 - 0x11ffb2fff com.apple.MediaRemote (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
+ 0x120183000 - 0x12046bff7 com.apple.Intents (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Intents.framework/Intents
+ 0x120776000 - 0x1207b6fff com.apple.voiceservices (1.0.0 - 1.0) <4DD1062F-A044-3F78-BB80-C77083DD12BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
+ 0x1207fe000 - 0x12080fff7 com.apple.RemoteTextInput (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
+ 0x120827000 - 0x12084dff3 com.apple.MediaServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
+ 0x120880000 - 0x120887fff com.apple.IntentsFoundation (1.0 - 1) <596EB7A3-4320-3EA1-9250-4BC0D784814C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
+ 0x120894000 - 0x120d2ffff com.apple.siri.tts.SiriTTS (217 - 217) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
+ 0x120ea0000 - 0x121099ff7 com.apple.avfoundation (2.0 - 1542.10.101.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/AVFoundation
+ 0x12131c000 - 0x12140dfff com.apple.audio.AVFAudio (1.0 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
+ 0x1214a8000 - 0x1214acff3 com.apple.InternationalSupport (1.0 - 10.15.6) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
+ 0x1214b4000 - 0x1218cffff com.apple.MediaToolbox (1.0 - 2282.19.101.7) <3D297362-A0FA-31CD-9C64-3EE8C94FFF52> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
+ 0x121ab1000 - 0x121aeefff com.apple.Celestial (1.0 - 2282.19.101.7) <877EF146-D657-3803-BD71-43A706858527> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Celestial.framework/Celestial
+ 0x121fdd000 - 0x121fe0fff +libswiftCoreFoundation.dylib (4.2.1 - 1000.11.42) <1D51CFE8-686A-3FD1-A291-5E5F52CB5223> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreFoundation.dylib
+ 0x121fe7000 - 0x121fecff3 +libswiftCoreImage.dylib (4.2.1 - 1000.11.42) <4528C2AC-D12B-3333-93D9-A2B0E8727F0F> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreImage.dylib
+ 0x123ca9000 - 0x123cd1ff7 +benasher44.ShapeSwiftTests (1.0 - 1) <91475D17-58C7-3620-93D6-68F662CAFFB2> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/ShapeSwiftTests
+ 0x123d2e000 - 0x123da2fff +org.cocoapods.proj4 (4.9.2 - 1) <92C77003-245C-3D0F-99B8-5A86C94C3A62> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/proj4.framework/proj4
+ 0x123e1b000 - 0x123e61ff7 +benasher44.ShapeSwift (1.0 - 1) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwift.framework/ShapeSwift
+ 0x123f24000 - 0x1242b8ff7 +libswiftCore.dylib (4.2.1 - 1000.11.42) <9C38414B-9FC9-3FF1-97A7-FB44E0142697> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCore.dylib
+ 0x12458c000 - 0x12459bff7 +libswiftCoreGraphics.dylib (4.2.1 - 1000.11.42) <5C09D4EB-4B1B-3FB5-9A12-871F703CD1A6> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreGraphics.dylib
+ 0x1245c0000 - 0x1245c8fff +libswiftDarwin.dylib (4.2.1 - 1000.11.42) <85312021-037C-3388-B47E-C85D298DF9FA> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftDarwin.dylib
+ 0x1245db000 - 0x1245f4ff7 +libswiftDispatch.dylib (4.2.1 - 1000.11.42) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftDispatch.dylib
+ 0x124633000 - 0x124798ff7 +libswiftFoundation.dylib (4.2.1 - 1000.11.42) <7CE8FB63-5122-3915-B044-9F2E1AD8CD5E> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftFoundation.dylib
+ 0x124931000 - 0x124937ff7 +libswiftMetal.dylib (4.2.1 - 1000.11.42) <99370D27-ABDB-3412-8732-FA556444050A> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftMetal.dylib
+ 0x124942000 - 0x124946fff +libswiftObjectiveC.dylib (4.2.1 - 1000.11.42) <88AE710D-FAA8-3C54-B3D7-97592D882083> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftObjectiveC.dylib
+ 0x124951000 - 0x124956ff7 +libswiftQuartzCore.dylib (4.2.1 - 1000.11.42) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftQuartzCore.dylib
+ 0x12495f000 - 0x12498dfff +libswiftSwiftOnoneSupport.dylib (4.2.1 - 1000.11.42) <3C4CF49D-BE6E-3E5C-AE9C-E05D34E7D024> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib
+ 0x1249c4000 - 0x1249d3fff +libswiftUIKit.dylib (4.2.1 - 1000.11.42) <40D34A72-4CAC-3632-80D5-D712E08D9105> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftUIKit.dylib
+ 0x1249f2000 - 0x124a04fff +libswiftXCTest.dylib (4.2.1 - 1000.11.42) <35367E1A-486A-3608-B263-725F5E45152C> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftXCTest.dylib
+ 0x124a11000 - 0x124a17fff +libswiftos.dylib (4.2.1 - 1000.11.42) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftos.dylib
+ 0x124a23000 - 0x124a2aff7 +libswiftCoreMedia.dylib (4.2.1 - 1000.11.42) <0FC53ACF-EAC2-36A2-BA97-BFE9D3A93F74> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreMedia.dylib
+ 0x124a36000 - 0x124a3dff7 +libswiftCoreAudio.dylib (4.2.1 - 1000.11.42) <5F6C438E-D590-3BC5-A4E2-EEFBA33E23C7> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreAudio.dylib
+
+External Modification Summary:
+ Calls made by other processes targeting this process:
+ task_for_pid: 0
+ thread_create: 0
+ thread_set_state: 0
+ Calls made by this process:
+ task_for_pid: 0
+ thread_create: 0
+ thread_set_state: 0
+ Calls made by all processes on this machine:
+ task_for_pid: 18223
+ thread_create: 0
+ thread_set_state: 0
+
+VM Region Summary:
+ReadOnly portion of Libraries: Total=332.4M resident=0K(0%) swapped_out_or_unallocated=332.4M(100%)
+Writable regions: Total=96.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=96.0M(100%)
+
+ VIRTUAL REGION
+REGION TYPE SIZE COUNT (non-coalesced)
+=========== ======= =======
+Activity Tracing 256K 2
+Dispatch continuations 2048K 2
+Kernel Alloc Once 8K 2
+MALLOC 80.5M 12
+MALLOC guard page 16K 4
+STACK GUARD 56.0M 6
+Stack 10.0M 6
+__DATA 36.3M 309
+__DATA_DIRTY 16K 4
+__FONT_DATA 4K 2
+__LINKEDIT 100.8M 248
+__LLVM_COV 176K 4
+__TEXT 231.6M 243
+__UNICODE 564K 2
+mapped file 26.4M 4
+shared memory 24K 4
+=========== ======= =======
+TOTAL 544.7M 838
+
diff --git a/spec/fixtures/Test-ShapeSwift.xcresult/1_Test/action_TestSummaries.plist b/spec/fixtures/Test-ShapeSwift.xcresult/1_Test/action_TestSummaries.plist
new file mode 100644
index 0000000..7dbe2d7
--- /dev/null
+++ b/spec/fixtures/Test-ShapeSwift.xcresult/1_Test/action_TestSummaries.plist
@@ -0,0 +1,1045 @@
+
+
+
+
+ FormatVersion
+ 1.2
+ RunDestination
+
+ LocalComputer
+
+ BusSpeedInMHz
+ 400
+ CPUCount
+ 1
+ CPUKind
+ Intel Core i7
+ CPUSpeedInMHz
+ 2700
+ Identifier
+ C280495B-F5BB-5130-A278-5B31E29C6764
+ IsConcreteDevice
+
+ LogicalCPUCoresPerPackage
+ 8
+ ModelCode
+ MacBookPro15,2
+ ModelName
+ MacBook Pro
+ ModelUTI
+ com.apple.macbookpro-13-retina-touchid-2018
+ Name
+ My Mac
+ NativeArchitecture
+ x86_64h
+ OperatingSystemVersion
+ 10.14.2
+ OperatingSystemVersionWithBuildNumber
+ 10.14.2 (18C54)
+ PhysicalCPUCoresPerPackage
+ 4
+ Platform
+
+ Identifier
+ com.apple.platform.macosx
+ Name
+ macOS
+
+ RAMSizeInMegabytes
+ 16384
+
+ Name
+ iPhone SE
+ TargetArchitecture
+ x86_64
+ TargetDevice
+
+ Identifier
+ 776A1522-01B8-4DE1-BC6D-24332AF37DF0
+ IsConcreteDevice
+
+ ModelCode
+ iPhone8,4
+ ModelName
+ iPhone SE
+ ModelUTI
+ com.apple.iphone-se-a1662-aeb1b8
+ Name
+ iPhone SE
+ NativeArchitecture
+ x86_64
+ OperatingSystemVersion
+ 12.1
+ OperatingSystemVersionWithBuildNumber
+ 12.1 (16B91)
+ Platform
+
+ Identifier
+ com.apple.platform.iphonesimulator
+ Name
+ iOS Simulator
+
+
+ TargetSDK
+
+ Identifier
+ iphonesimulator12.1
+ IsInternal
+
+ Name
+ Simulator - iOS 12.1
+ OperatingSystemVersion
+ 12.1
+
+
+ TestableSummaries
+
+
+ DiagnosticsDirectory
+ ShapeSwiftTests-4B966986-5608-4CCD-A5AF-BA84765CBD83
+ ProjectPath
+ ShapeSwift.xcodeproj
+ TargetName
+ ShapeSwiftTests
+ TestKind
+ xctest-tool hosted
+ TestName
+ ShapeSwiftTests
+ TestObjectClass
+ IDESchemeActionTestableSummary
+ Tests
+
+
+ Duration
+ 20.458294034004211
+ Subtests
+
+
+ Duration
+ 20.35369598865509
+ Subtests
+
+
+ Duration
+ 0.0067859888076782227
+ Subtests
+
+
+ Duration
+ 0.0060380697250366211
+ TestIdentifier
+ ByteEncodableTest/testByteEncodableDouble()
+ TestName
+ testByteEncodableDouble()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ C48C1378-184F-4762-9633-8116AFE30673
+
+
+ TestIdentifier
+ ByteEncodableTest
+ TestName
+ ByteEncodableTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.033996939659118652
+ Subtests
+
+
+ Duration
+ 0.015457987785339355
+ TestIdentifier
+ DBFFileHeaderTest/testCP1251()
+ TestName
+ testCP1251()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 0FC9AF0C-F022-45C7-A315-80E4897AF198
+
+
+ Duration
+ 0.0015759468078613281
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE03()
+ TestName
+ testDBASE03()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ C5015F7C-A859-4898-A1BA-3EFA3423918D
+
+
+ Duration
+ 0.0016580820083618164
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE30()
+ TestName
+ testDBASE30()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 3A22F0D7-C572-42FC-8C64-64C3B7CFC2EA
+
+
+ Duration
+ 0.001811981201171875
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE31()
+ TestName
+ testDBASE31()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 5273D0BC-2686-4171-B475-60DC9A960E88
+
+
+ Duration
+ 0.0023479461669921875
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE83()
+ TestName
+ testDBASE83()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 08FBF754-347F-488F-90C7-04591AA888D3
+
+
+ Duration
+ 0.0016710758209228516
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE83NoMemo()
+ TestName
+ testDBASE83NoMemo()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 87D2030B-7992-49B3-8A89-8B6FBC0F33D7
+
+
+ Duration
+ 0.0012979507446289062
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE8B()
+ TestName
+ testDBASE8B()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 531E21B2-3AA9-4799-B6FA-325370714CA9
+
+
+ Duration
+ 0.0023870468139648438
+ TestIdentifier
+ DBFFileHeaderTest/testDBASEF5()
+ TestName
+ testDBASEF5()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 2023C8E0-EFC7-423C-9447-E5B2CE72C624
+
+
+ Duration
+ 0.0016380548477172852
+ TestIdentifier
+ DBFFileHeaderTest/testParser()
+ TestName
+ testParser()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 177B645D-A858-4A35-8E32-6378170D05EA
+
+
+ TestIdentifier
+ DBFFileHeaderTest
+ TestName
+ DBFFileHeaderTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 19.560796976089478
+ Subtests
+
+
+ ActivitySummaries
+
+
+ ActivityType
+ com.apple.dt.xctest.activity-type.internal
+ Attachments
+
+
+ Filename
+ xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
+ HasPayload
+
+ InActivityIdentifier
+ 1
+ Lifetime
+ 0
+ Name
+ kXCTAttachmentLegacyDiagnosticReportData
+ Timestamp
+ 569093262.15470195
+ UniformTypeIdentifier
+ public.data
+
+
+ DiagnosticReportFileName
+ xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
+ FinishTimeInterval
+ 569093262.15171599
+ HasDiagnosticReportData
+
+ StartTimeInterval
+ 569093262.15171599
+ Title
+ Crash: xctest (3920): MultiPatchTest.testDecoding()
+ UUID
+ 1EB690DA-1BE5-4410-B84F-2D0E6956F096
+
+
+ Duration
+ 0.0
+ FailureSummaries
+
+
+ FileName
+ <unknown>
+ LineNumber
+ 0
+ Message
+ Crash: xctest (3920): MultiPatchTest
+ PerformanceFailure
+
+
+
+ TestIdentifier
+ MultiPatchTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Failure
+ TestSummaryGUID
+ 0CC7613C-CA69-4F49-A2C7-8A81AEFA18AB
+
+
+ Duration
+ 0.0023729801177978516
+ TestIdentifier
+ MultiPatchTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 02AA586A-7A15-405A-8626-31B0867F2ECD
+
+
+ Duration
+ 0.00075590610504150391
+ TestIdentifier
+ MultiPatchTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 03B19812-C687-4D1E-8006-B3660CC80030
+
+
+ TestIdentifier
+ MultiPatchTest
+ TestName
+ MultiPatchTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0039169788360595703
+ Subtests
+
+
+ Duration
+ 0.00091803073883056641
+ TestIdentifier
+ MultiPointMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 25B837E9-5359-47E6-BE4C-727D276E5F24
+
+
+ Duration
+ 0.00065398216247558594
+ TestIdentifier
+ MultiPointMTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ FF849CB7-A360-4F40-AF9E-B79D7214FB1C
+
+
+ Duration
+ 0.00069200992584228516
+ TestIdentifier
+ MultiPointMTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ AE06B36E-4C88-407F-844D-B75FB7F32BD9
+
+
+ TestIdentifier
+ MultiPointMTest
+ TestName
+ MultiPointMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0014649629592895508
+ Subtests
+
+
+ Duration
+ 0.00070405006408691406
+ TestIdentifier
+ MultiPointTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 9B67E80B-8D1D-46C1-B3C9-6EA9A30BC08D
+
+
+ TestIdentifier
+ MultiPointTest
+ TestName
+ MultiPointTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0033230781555175781
+ Subtests
+
+
+ Duration
+ 0.00074899196624755859
+ TestIdentifier
+ MultiPointZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 30A5623F-71C5-46D6-B543-B329280A723C
+
+
+ Duration
+ 0.00067496299743652344
+ TestIdentifier
+ MultiPointZTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ B4C237D2-911C-48A3-8EF0-70C99D791369
+
+
+ Duration
+ 0.00059199333190917969
+ TestIdentifier
+ MultiPointZTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ A864D908-C657-47A6-873B-E0BA295A59A6
+
+
+ TestIdentifier
+ MultiPointZTest
+ TestName
+ MultiPointZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0026669502258300781
+ Subtests
+
+
+ Duration
+ 0.00049805641174316406
+ TestIdentifier
+ PointMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 35C52AA4-77E5-4C7D-AEC7-449A9994DE79
+
+
+ Duration
+ 0.00049996376037597656
+ TestIdentifier
+ PointMTest/testDecodingWithMNoDataValues()
+ TestName
+ testDecodingWithMNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 27A3C4D0-4A59-4671-A11E-13E82D71B100
+
+
+ Duration
+ 0.00042295455932617188
+ TestIdentifier
+ PointMTest/testDecodingWithoutM()
+ TestName
+ testDecodingWithoutM()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F301D572-F5C6-49CF-9A1E-73BA4A146FB4
+
+
+ TestIdentifier
+ PointMTest
+ TestName
+ PointMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0011839866638183594
+ Subtests
+
+
+ Duration
+ 0.00056397914886474609
+ TestIdentifier
+ PointTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 30A9A3CD-3DB6-436B-B434-C329AF35CB8F
+
+
+ TestIdentifier
+ PointTest
+ TestName
+ PointTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0025770664215087891
+ Subtests
+
+
+ Duration
+ 0.00050199031829833984
+ TestIdentifier
+ PointZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 0941E8FE-B7BE-42AC-B946-E011DF63F194
+
+
+ Duration
+ 0.00045001506805419922
+ TestIdentifier
+ PointZTest/testDecodingWithMNoDataValues()
+ TestName
+ testDecodingWithMNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 29F3B644-5A62-4D1B-BBAD-604E1078DF84
+
+
+ Duration
+ 0.00047099590301513672
+ TestIdentifier
+ PointZTest/testDecodingWithoutM()
+ TestName
+ testDecodingWithoutM()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 5C8F950A-EA13-4800-ACE7-773F0F41A293
+
+
+ TestIdentifier
+ PointZTest
+ TestName
+ PointZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0042109489440917969
+ Subtests
+
+
+ Duration
+ 0.00060999393463134766
+ TestIdentifier
+ PolyLineMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ D5D90EE3-74B9-46D5-8BB7-6540358A2DEF
+
+
+ Duration
+ 0.00059902667999267578
+ TestIdentifier
+ PolyLineMTest/testDecodingNoMeasures()
+ TestName
+ testDecodingNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ CCD5602E-C937-421F-B6BB-15AFD3301DC5
+
+
+ Duration
+ 0.00052595138549804688
+ TestIdentifier
+ PolyLineMTest/testDecodingNoMeasuresNoDataValues()
+ TestName
+ testDecodingNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ D5776AFF-1257-4060-BEAA-2A20DCDE8F7F
+
+
+ Duration
+ 0.00062394142150878906
+ TestIdentifier
+ PolyLineMTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ B54E5B6C-12A0-4914-B23D-914ADC06C113
+
+
+ TestIdentifier
+ PolyLineMTest
+ TestName
+ PolyLineMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0020289421081542969
+ Subtests
+
+
+ Duration
+ 0.00062298774719238281
+ TestIdentifier
+ PolyLineTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 7D89C808-D1D3-4B6C-9A12-96F78052C515
+
+
+ Duration
+ 0.00050294399261474609
+ TestIdentifier
+ PolyLineTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F367972D-FA5F-42A8-823D-65884711EC8B
+
+
+ TestIdentifier
+ PolyLineTest
+ TestName
+ PolyLineTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0030150413513183594
+ Subtests
+
+
+ Duration
+ 0.00069797039031982422
+ TestIdentifier
+ PolyLineZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ C6D83A3B-BC65-4D1F-BFED-D6BBD466BF40
+
+
+ Duration
+ 0.00055205821990966797
+ TestIdentifier
+ PolyLineZTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 128D362E-5212-4F1E-86D7-09397D028F40
+
+
+ Duration
+ 0.00054597854614257812
+ TestIdentifier
+ PolyLineZTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F4E6FE4F-3A94-4A4F-B7E4-D4E7AE114DA9
+
+
+ TestIdentifier
+ PolyLineZTest
+ TestName
+ PolyLineZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0042480230331420898
+ Subtests
+
+
+ Duration
+ 0.00079298019409179688
+ TestIdentifier
+ PolygonMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 6A7FA57A-DB3C-4141-B631-7F8D3F90B46C
+
+
+ Duration
+ 0.00075900554656982422
+ TestIdentifier
+ PolygonMTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ EE343F31-0CE5-457E-834F-D3635F5C0C62
+
+
+ Duration
+ 0.00052297115325927734
+ TestIdentifier
+ PolygonMTest/testNoMeasures()
+ TestName
+ testNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F1BECD7A-0FEA-43B4-A675-3A57F382B545
+
+
+ Duration
+ 0.00059306621551513672
+ TestIdentifier
+ PolygonMTest/testNoMeasuresNoDataValues()
+ TestName
+ testNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 111E0295-8DB6-4FDD-974A-78A7E3FDF84A
+
+
+ TestIdentifier
+ PolygonMTest
+ TestName
+ PolygonMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0021429061889648438
+ Subtests
+
+
+ Duration
+ 0.00063788890838623047
+ TestIdentifier
+ PolygonTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 7F117291-BA4F-4BF2-B29C-75A44133A9B2
+
+
+ Duration
+ 0.00059497356414794922
+ TestIdentifier
+ PolygonTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 4D757759-E2BA-4412-8F8A-5A8AA6E2A762
+
+
+ TestIdentifier
+ PolygonTest
+ TestName
+ PolygonTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0034300088882446289
+ Subtests
+
+
+ Duration
+ 0.00074994564056396484
+ TestIdentifier
+ PolygonZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 139A3809-6823-44DE-A2DA-DC0534EE66B8
+
+
+ Duration
+ 0.00063800811767578125
+ TestIdentifier
+ PolygonZTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 2DE5E8EF-45D5-484D-8DB5-880EFE86842C
+
+
+ Duration
+ 0.00075602531433105469
+ TestIdentifier
+ PolygonZTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 8BF69278-B48C-42B2-835F-F2923E1A23D6
+
+
+ TestIdentifier
+ PolygonZTest
+ TestName
+ PolygonZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.71204400062561035
+ Subtests
+
+
+ Duration
+ 0.7113720178604126
+ TestIdentifier
+ ShapeSwiftTests/testParser()
+ TestName
+ testParser()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 09BBF74D-44B4-4F65-A807-F3F7A845A658
+
+
+ TestIdentifier
+ ShapeSwiftTests
+ TestName
+ ShapeSwiftTests
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ TestIdentifier
+ ShapeSwiftTests.xctest
+ TestName
+ ShapeSwiftTests.xctest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ TestIdentifier
+ All tests
+ TestName
+ All tests
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+
+
+
+
diff --git a/spec/fixtures/Test-ShapeSwift.xcresult/Attachments/xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash b/spec/fixtures/Test-ShapeSwift.xcresult/Attachments/xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
new file mode 100644
index 0000000..2a33d0a
--- /dev/null
+++ b/spec/fixtures/Test-ShapeSwift.xcresult/Attachments/xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
@@ -0,0 +1,387 @@
+Process: xctest [3920]
+Path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/xctest
+Identifier: xctest
+Version: 14460.20
+Code Type: X86-64 (Native)
+Parent Process: launchd_sim [3918]
+Responsible: xctest [3920]
+User ID: 501
+
+
+Date/Time: 2019-01-13 09:27:23.318 -0800
+OS Version: Mac OS X 10.14.2 (18C54)
+Report Version: 12
+Anonymous UUID: 32983EE0-5A9C-D276-29B0-A5BC65C42A79
+
+Sleep/Wake UUID: 556D6183-EA05-4205-B464-0C9682B40760
+
+Time Awake Since Boot: 22000 seconds
+Time Since Wake: 720 seconds
+
+System Integrity Protection: enabled
+
+Crashed Thread: 0 Dispatch queue: com.apple.main-thread
+
+Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
+Exception Codes: 0x0000000000000001, 0x0000000000000000
+Exception Note: EXC_CORPSE_NOTIFY
+
+Application Specific Information:
+CoreSimulator 581.2 - Device: iPhone SE - Runtime: iOS 12.1 (16B91) - DeviceType: iPhone SE
+Fatal error: Unexpectedly found nil while unwrapping an Optional value
+
+
+Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
+0 libswiftCore.dylib 0x00000001241506f1 specialized _fatalErrorMessage(_:_:file:line:flags:) + 113
+1 libswiftCore.dylib 0x0000000123f86053 _fatalErrorMessage(_:_:file:line:flags:) + 19
+2 benasher44.ShapeSwiftTests 0x0000000123cae7b0 MultiPatchTest.testDecoding() + 192
+3 benasher44.ShapeSwiftTests 0x0000000123cae7e4 @objc MultiPatchTest.testDecoding() + 36
+4 com.apple.CoreFoundation 0x000000010ccc503c __invoking___ + 140
+5 com.apple.CoreFoundation 0x000000010ccc24d5 -[NSInvocation invoke] + 325
+6 com.apple.dt.XCTest 0x000000010c0e8018 __24-[XCTestCase invokeTest]_block_invoke.196 + 78
+7 com.apple.dt.XCTest 0x000000010c13fc74 -[XCTestCase(Failures) performFailableBlock:testCaseRun:shouldInterruptTest:] + 57
+8 com.apple.dt.XCTest 0x000000010c13fb91 -[XCTestCase(Failures) _performTurningExceptionsIntoFailuresInterruptAfterHandling:block:] + 96
+9 com.apple.dt.XCTest 0x000000010c0e7cd9 __24-[XCTestCase invokeTest]_block_invoke + 848
+10 com.apple.dt.XCTest 0x000000010c145b7e -[XCUITestContext performInScope:] + 248
+11 com.apple.dt.XCTest 0x000000010c0e78ce -[XCTestCase testContextPerformInScope:] + 98
+12 com.apple.dt.XCTest 0x000000010c0e797c -[XCTestCase invokeTest] + 137
+13 com.apple.dt.XCTest 0x000000010c0e94b7 __26-[XCTestCase performTest:]_block_invoke_2 + 43
+14 com.apple.dt.XCTest 0x000000010c13fc74 -[XCTestCase(Failures) performFailableBlock:testCaseRun:shouldInterruptTest:] + 57
+15 com.apple.dt.XCTest 0x000000010c13fb91 -[XCTestCase(Failures) _performTurningExceptionsIntoFailuresInterruptAfterHandling:block:] + 96
+16 com.apple.dt.XCTest 0x000000010c0e93ce __26-[XCTestCase performTest:]_block_invoke.330 + 88
+17 com.apple.dt.XCTest 0x000000010c15044b +[XCTContext runInContextForTestCase:block:] + 225
+18 com.apple.dt.XCTest 0x000000010c0e8afd -[XCTestCase performTest:] + 675
+19 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+20 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+21 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+22 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+23 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+24 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+25 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+26 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+27 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+28 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+29 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+30 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+31 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+32 com.apple.dt.XCTest 0x000000010c15be86 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 171
+33 com.apple.dt.XCTest 0x000000010c15bfa7 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke.80 + 68
+34 com.apple.dt.XCTest 0x000000010c0fbbc1 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 585
+35 com.apple.dt.XCTest 0x000000010c15bbfa -[XCTTestRunSession runTestsAndReturnError:] + 623
+36 com.apple.dt.XCTest 0x000000010c0c86b6 -[XCTestDriver runTestsAndReturnError:] + 422
+37 com.apple.dt.XCTest 0x000000010c14c9cd _XCTestMain + 1478
+38 xctest 0x000000010b79bffc main + 282
+39 libdyld.dylib 0x000000010ee9b575 start + 1
+
+Thread 1:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 2:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 3:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 4:
+0 libsystem_pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+
+Thread 0 crashed with X86 Thread State (64-bit):
+ rax: 0x0000000000000001 rbx: 0x0000000123ccfc10 rcx: 0x00000000000fc080 rdx: 0x0000000000000303
+ rdi: 0x0000000121b5ea00 rsi: 0x0000000000000303 rbp: 0x00007ffee4463580 rsp: 0x00007ffee4463540
+ r8: 0x000000000000000b r9: 0x0000000000000000 r10: 0x0000000021b5000c r11: 0x000000000000000c
+ r12: 0x0000000123ccfc4a r13: 0x00007fbcb9940c20 r14: 0x0000000000000002 r15: 0x0000000000000039
+ rip: 0x00000001241506f1 rfl: 0x0000000000010206 cr2: 0x000000010bdd7000
+
+Logical CPU: 2
+Error Code: 0x00000000
+Trap Number: 6
+
+
+Binary Images:
+ 0x10b799000 - 0x10b79efff +xctest (14460.20) <3D9CE28B-2D93-32B5-BD37-A98435F38A0C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/xctest
+ 0x10b7a8000 - 0x10b7efe47 +dyld_sim (631.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
+ 0x10b83f000 - 0x10b86aff3 +libMainThreadChecker.dylib (64460.7) <219FEDC9-84B8-3190-ABD8-7613C10BC5FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMainThreadChecker.dylib
+ 0x10ba32000 - 0x10ba68fe7 com.apple.dt.XCTAutomationSupport (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework/XCTAutomationSupport
+ 0x10ba9b000 - 0x10bdb2fff com.apple.Foundation (6.9 - 1560.10) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
+ 0x10c0c1000 - 0x10c1b5ffb com.apple.dt.XCTest (1.0 - 14460.20) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/XCTest
+ 0x10c257000 - 0x10c9d7fef +libobjc.A.dylib (750.1) <177A61B3-9E02-3A09-9A98-C1C3C9AB7958> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
+ 0x10cb8e000 - 0x10cb8fff7 +libSystem.B.dylib (1252.200.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libSystem.B.dylib
+ 0x10cb96000 - 0x10cf2efff com.apple.CoreFoundation (6.9 - 1560.10) <80ACDA5E-AD72-3857-AF41-395941288C21> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
+ 0x10d100000 - 0x10d776ff7 com.apple.CoreGraphics (2.0 - 1245.9.2) <3D49C8C0-B6D9-3450-8F35-FB02B8526DA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
+ 0x10d8c0000 - 0x10d8c0fff com.apple.UIKit (1.0 - 61000) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit
+ 0x10d8c4000 - 0x10d910ff7 com.apple.AXRuntime (1.0.0 - 1) <69A1ECC9-1971-3173-894A-1324605A0D91> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
+ 0x10d955000 - 0x10d95dfff com.apple.IOSurface (255.1 - 255.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOSurface.framework/IOSurface
+ 0x10d96f000 - 0x10d981ff7 +libz.1.dylib (70.200.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libz.1.dylib
+ 0x10d987000 - 0x10da6aff3 +libxml2.2.dylib (32.8) <5DF69C71-DC61-38BB-92EA-6A82D38DDE09> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxml2.2.dylib
+ 0x10daae000 - 0x10daaefff com.apple.Accelerate (1.11 - Accelerate 1.11) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Accelerate
+ 0x10dab2000 - 0x10de6eff7 com.apple.CFNetwork (975.0.3 - 975.0.3) <85DF0984-19CD-345A-9761-E566CAD30B03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork
+ 0x10e240000 - 0x10e28eff7 +libc++.1.dylib (400.9.4) <66B692F1-FA7E-3CBB-817A-73A7FE29A765> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib
+ 0x10e2dc000 - 0x10e2f0fff +libc++abi.dylib (400.17) <1FC319B3-5125-3D57-8ADE-8A833F45B031> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
+ 0x10e30a000 - 0x10e379ffb com.apple.framework.IOKit (2.0.2 - 1483.220.15) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
+ 0x10e3be000 - 0x10e3beff7 com.apple.MobileCoreServices (935.2 - 935.2) <2AC3E19F-12EA-35E3-8DA6-9B733F2D56A4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
+ 0x10e3c2000 - 0x10e3ebff3 +libarchive.2.dylib (54.200.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libarchive.2.dylib
+ 0x10e3f8000 - 0x10e655ff3 +libicucore.A.dylib (62108.0.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libicucore.A.dylib
+ 0x10e756000 - 0x10e7b6ff7 com.apple.SystemConfiguration (1.17 - 1.17) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
+ 0x10e7ee000 - 0x10e81fff7 +libCRFSuite.dylib (41.15.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCRFSuite.dylib
+ 0x10e836000 - 0x10e837fff +liblangid.dylib (128) <4FA21386-DCBF-3FC4-9807-D7D240FBFFDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblangid.dylib
+ 0x10e83c000 - 0x10e974ff7 com.apple.CoreServices (935.2 - 935.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreServices.framework/CoreServices
+ 0x10ea6f000 - 0x10ea9fffb com.apple.MobileInstallation (2.0 - 1.0) <4C6A9FE9-14A4-33C8-9A06-D904E27970CD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
+ 0x10eac8000 - 0x10eae8fff +libMobileGestalt.dylib (645.220.9) <0A4BB86C-088D-3AAF-9445-D81188ECE1DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestalt.dylib
+ 0x10eb3f000 - 0x10eb4ffff +libbsm.0.dylib (39.200.18) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbsm.0.dylib
+ 0x10eb5a000 - 0x10ec5dfff com.apple.Security (10.0 - 58286.222.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Security.framework/Security
+ 0x10ed41000 - 0x10ed45ffb +libcache.dylib (81) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcache.dylib
+ 0x10ed4b000 - 0x10ed55ff7 +libcommonCrypto.dylib (60118.220.1) <0F0D3DE4-E247-35E4-A905-B92D574BECC9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcommonCrypto.dylib
+ 0x10ed64000 - 0x10ed6bff7 +libcompiler_rt.dylib (63.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcompiler_rt.dylib
+ 0x10ed75000 - 0x10ed7eff3 +libcopyfile.dylib (146.200.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcopyfile.dylib
+ 0x10ed85000 - 0x10ee09fc7 +libcorecrypto.dylib (602.220.6) <39BACA1B-A171-326F-911D-E68994A6E615> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcorecrypto.dylib
+ 0x10ee27000 - 0x10ee63fff +libdispatch.dylib (1008.220.2) <3A776B57-01CC-3558-80C8-1D6DAF4930E0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib
+ 0x10ee9a000 - 0x10eec5ff3 +libdyld.dylib (631.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdyld.dylib
+ 0x10eee7000 - 0x10eee7ff7 +liblaunch.dylib (1336.220.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/liblaunch.dylib
+ 0x10eeee000 - 0x10eef3fff +libmacho.dylib (918.1.1) <0F2D221C-F375-393D-9A28-5D173CF9C7FA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libmacho.dylib
+ 0x10eefa000 - 0x10eefbff3 +libremovefile.dylib (45.200.2) <6553373E-68F5-3854-A27E-2C28C33FE9DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libremovefile.dylib
+ 0x10ef01000 - 0x10ef17fff +libsystem_asl.dylib (356.200.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_asl.dylib
+ 0x10ef26000 - 0x10ef26fff +libsystem_blocks.dylib (73) <03604E2C-1791-3C18-92BF-A2319F4AC310> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_blocks.dylib
+ 0x10ef2b000 - 0x10efafff7 +libsystem_c.dylib (1272.200.26) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
+ 0x10efdb000 - 0x10efdeff7 +libsystem_configuration.dylib (963.200.27) <068B56DC-B6D4-3F8D-ACF7-9AA05085C1B0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_configuration.dylib
+ 0x10efe5000 - 0x10efeaff3 +libsystem_containermanager.dylib (136.200.32) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_containermanager.dylib
+ 0x10eff2000 - 0x10eff3ffb +libsystem_coreservices.dylib (65) <9AFED38C-2158-36A2-ACB5-9229385F9C6C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_coreservices.dylib
+ 0x10eff9000 - 0x10effeffb +libsystem_darwin.dylib (1272.200.26) <5999445D-3773-3101-9CA6-5899037FDA1D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_darwin.dylib
+ 0x10f00a000 - 0x10f010ff7 +libsystem_dnssd.dylib (878.200.35) <27526F93-BBD1-314A-95BA-0D52C36DBDBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_dnssd.dylib
+ 0x10f017000 - 0x10f058ff7 +libsystem_info.dylib (517.200.9) <07391A3E-5052-35B5-A527-D21ADEDEFDFF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_info.dylib
+ 0x10f06d000 - 0x10f0b2ff3 +libsystem_m.dylib (3158.200.7) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_m.dylib
+ 0x10f0be000 - 0x10f0e1ff7 +libsystem_malloc.dylib (166.220.1) <2E256A7F-BBFC-3619-AC9B-B54B7D1723D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_malloc.dylib
+ 0x10f0f3000 - 0x10f0f9fff +libsystem_notify.dylib (172.200.21) <59AC35A0-1B40-3277-95A7-99BD88DEA1BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_notify.dylib
+ 0x10f100000 - 0x10f102ff7 +libsystem_sandbox.dylib (851.220.9) <58259566-7CD3-3B66-8516-5F2B5560BEDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sandbox.dylib
+ 0x10f109000 - 0x10f10affb +libsystem_sim_kernel.dylib (193.200.9) <01F491FD-CF4F-3A51-A081-42073C2D2D3D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel.dylib
+ 0x10f111000 - 0x10f114fe3 +libsystem_sim_platform.dylib (193.200.9) <3E3F0852-1757-34D8-881C-03BB40653D98> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform.dylib
+ 0x10f11b000 - 0x10f11bffb +libsystem_sim_pthread.dylib (193.200.9) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread.dylib
+ 0x10f121000 - 0x10f136ff7 +libsystem_trace.dylib (906.220.1) <29B76846-8833-3F8D-B3FF-ECB62CBD5AE1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_trace.dylib
+ 0x10f148000 - 0x10f14efff +libunwind.dylib (128.2) <3C1434B3-315E-31B8-A164-685D139706B7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libunwind.dylib
+ 0x10f155000 - 0x10f183ff7 +libxpc.dylib (1336.220.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libxpc.dylib
+ 0x10f1ad000 - 0x10f1adff7 +libsystem_sim_pthread_host.dylib (193.200.9) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread_host.dylib
+ 0x10f1b2000 - 0x10f1b2ff7 +libsystem_sim_platform_host.dylib (193.200.9) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform_host.dylib
+ 0x10f1b8000 - 0x10f1b8ff7 +libsystem_sim_kernel_host.dylib (193.200.9) <01CF8A44-8C01-3401-BAE9-74FFCBA563BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel_host.dylib
+ 0x10f1be000 - 0x10f1e6ff7 libsystem_kernel.dylib (4903.231.4) /usr/lib/system/libsystem_kernel.dylib
+ 0x10f201000 - 0x10f20afef libsystem_platform.dylib (177.200.16) <83DED753-51EC-3B8C-A98D-883A5184086B> /usr/lib/system/libsystem_platform.dylib
+ 0x10f213000 - 0x10f21dfff libsystem_pthread.dylib (330.230.1) /usr/lib/system/libsystem_pthread.dylib
+ 0x10f228000 - 0x10f22bff3 com.apple.MobileSystemServices (1.0 - 1) <12AA79EF-C895-3893-90D0-F2F2EBAFA17E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
+ 0x10f233000 - 0x10f241ff7 +libbz2.1.0.dylib (38.200.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbz2.1.0.dylib
+ 0x10f247000 - 0x10f53dfff +libnetwork.dylib (1229.220.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetwork.dylib
+ 0x10f60c000 - 0x10f622fff +libcoretls.dylib (155.220.1) <7ADF442D-4665-3EA6-9E33-CADDD4F1DE31> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls.dylib
+ 0x10f62f000 - 0x10f630ff3 +libcoretls_cfhelpers.dylib (155.220.1) <29F7C1A9-CAB5-3A7C-B955-B449095221A7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls_cfhelpers.dylib
+ 0x10f637000 - 0x10f64dff3 +libapple_nghttp2.dylib (1.24.1) <8018C25E-9888-35AF-9EA8-37E41E237110> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapple_nghttp2.dylib
+ 0x10f65a000 - 0x10f7ebffb +libsqlite3.dylib (274.20) <7F03A889-6A68-3B38-8DA2-2E9069461504> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libsqlite3.dylib
+ 0x10f81d000 - 0x10f835fff +liblzma.5.dylib (10.200.3) <5269A1EC-A3F4-3B24-BE3C-631F166BC858> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblzma.5.dylib
+ 0x10f83d000 - 0x11014afc7 com.apple.vImage (8.1 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
+ 0x1101e4000 - 0x1101e4fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <520D399E-9ECC-30AC-9B10-2DD1673CEF7C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
+ 0x1101e8000 - 0x1101fffdf +libcompression.dylib (52.200.13) <0B0852CE-DF8E-35C0-83EA-6F544CFA8570> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcompression.dylib
+ 0x110208000 - 0x11035cfe7 +libvMisc.dylib (671.220.1) <6C5EB649-5935-3F7D-8A3A-FDBB70880D03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
+ 0x11037a000 - 0x110506fc7 +libvDSP.dylib (671.220.1) <33A1FE80-E4C1-307E-ACC5-7337A217A96A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
+ 0x110518000 - 0x1106c2fe3 +libBLAS.dylib (1243.200.4) <5C5DA326-EEA6-3D71-BCAD-9D3771CA8DBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
+ 0x1106ea000 - 0x1106ffffb +libLinearAlgebra.dylib (1243.200.4) <482268F6-F714-3CBE-9ED6-0059B47A54CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
+ 0x110709000 - 0x11071bff7 +libSparseBLAS.dylib (1243.200.4) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
+ 0x110724000 - 0x110729ff3 +libQuadrature.dylib (3.200.2) <8AE027FE-E7F0-3610-BB1F-AE3250958EB7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
+ 0x11072e000 - 0x110771fff +libBNNS.dylib (38.200.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
+ 0x11077c000 - 0x1107e5ffb +libSparse.dylib (79.200.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
+ 0x1107fe000 - 0x110808ff3 com.apple.mobileicons.framework (1.0 - 372.0) <08EEF7C1-157E-3B56-998B-4C13E867F2C3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
+ 0x110816000 - 0x11081afff com.apple.AggregateDictionary (1.0 - 1) <3960792E-2200-30F6-A37D-DC272A1B04CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
+ 0x110823000 - 0x110826ff3 com.apple.iphonesimulator.SimulatorClient (1.0 - 1) <6C09A210-ACB9-3124-BE51-4F4BF5F3F68D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient
+ 0x11082c000 - 0x11082cffb com.apple.FontServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/FontServices
+ 0x110835000 - 0x1108b3a67 dyld (640.2) <289AB27E-F09F-3384-A14A-100431139559> /usr/lib/dyld
+ 0x110916000 - 0x110cd0fff +libLAPACK.dylib (1243.200.4) <60909267-BF6C-3A84-B2D3-E4F105EA4B85> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
+ 0x110d1b000 - 0x110d74fff com.apple.DocumentManager (1.0 - 68.100.38) <2EF7D401-05E4-3AC1-BF8A-F3700661BC6A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
+ 0x110dcf000 - 0x110e69fff com.apple.FileProvider (125.129 - 125.129) <164D635D-90FE-3D4A-993D-AF57F9389CC0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/FileProvider.framework/FileProvider
+ 0x110ef2000 - 0x1120fdfff com.apple.UIKitCore (1.0 - 61000) <2DB941E0-513E-3750-9278-C8AFB85CB3C0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
+ 0x1131ab000 - 0x113389ff7 com.apple.QuartzCore (1.11 - 694.22.1.6) <1C11452D-6857-37DB-B9D8-12EB530D3F16> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuartzCore.framework/QuartzCore
+ 0x11347c000 - 0x11350dfff com.apple.Network (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Network.framework/Network
+ 0x113573000 - 0x113586ff7 com.apple.DocumentManagerCore (1.0 - 68.100.38) <7416B803-80F0-39A2-9550-D2C1931DE291> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
+ 0x11359f000 - 0x1135c1ff7 com.apple.pluginkit.framework (1.0 - 1) <3FB71003-F4EF-3882-AC88-CFB373FD4AD2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
+ 0x1135dc000 - 0x113887fff com.apple.CoreImage (12.1.0 - 710.5.130) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreImage.framework/CoreImage
+ 0x113a6e000 - 0x113b2dff7 com.apple.CoreUI (1.0 - 498.40.1) <9E628C81-0C8F-3E83-903B-BE10A5C419C6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
+ 0x113ca6000 - 0x1141d0ff7 com.apple.ImageIO.framework (3.3.0 - 1821.6) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageIO.framework/ImageIO
+ 0x1142ff000 - 0x1144c2ff7 +libFosl_dynamic.dylib (18.3.2) <76F7EEE0-2A10-3E6A-AD17-14926C3CD127> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libFosl_dynamic.dylib
+ 0x114513000 - 0x1145adff7 com.apple.ColorSync (4.13.0 - 3340) <165F5162-80BE-3C28-88A5-3330B584F7FB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
+ 0x1145e1000 - 0x114682ff7 com.apple.CoreMedia (1.0 - 2282.19.101.7) <22D2DC51-028C-392B-B66F-F03DDD56A514> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMedia.framework/CoreMedia
+ 0x114730000 - 0x114a0fff7 com.apple.VideoToolbox (1.0 - 2282.19.101.7) <0102BFA9-431F-3DC4-9F3D-E5A6F27EF39A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
+ 0x114aaa000 - 0x114ab9ff7 com.apple.GraphVisualizer (1.0 - 5) <9135435B-B508-3C4A-AB75-61974D5CFEF4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
+ 0x114ac6000 - 0x114c2afff com.apple.CoreText (352.0 - 584.25) <27CABD47-E94C-38BF-BCF0-D4EE6AD4687E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreText.framework/CoreText
+ 0x114cfb000 - 0x114d07ffb com.apple.opengles (17.0.37 - 17.0.37) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/OpenGLES
+ 0x114d15000 - 0x114d37ff7 com.apple.CoreVideo (1.8 - 0.0) <34B3E453-1310-3A47-A5E7-89A59819F2E3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreVideo.framework/CoreVideo
+ 0x114d53000 - 0x115177fff com.apple.vision.FaceCore (3.1.12 - 3.1.12) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
+ 0x115380000 - 0x115409fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreAudio.framework/CoreAudio
+ 0x115439000 - 0x11544cfff com.apple.GraphicsServices (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
+ 0x115467000 - 0x115478fff +libGSFontCache.dylib (126.13.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
+ 0x115734000 - 0x11582fffb com.apple.UIFoundation (1.0 - 552.1) <2D96A110-37B9-3FE3-B8D3-52608FF10199> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
+ 0x1158dd000 - 0x1158f1ff3 +libAccessibility.dylib (2402.39.4) <2997C325-EC38-39BF-8B64-CF010668A260> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAccessibility.dylib
+ 0x11591a000 - 0x11596fffb com.apple.OTSVG (1.0 - ???) <5D9708E0-3C57-3D79-961C-31A650EDA3D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
+ 0x1159e4000 - 0x115af1fff +libFontParser.dylib (228.6) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
+ 0x115bce000 - 0x115c9affb com.apple.TextureIO (3.8.4 - 3.8.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
+ 0x115cc4000 - 0x115d53ff7 com.apple.Metal (157.58 - 157.58) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal
+ 0x115e52000 - 0x115f4dfcf +libate.dylib (1.13.8) <308B9771-3261-31E6-9A66-FFC9C07ED37F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libate.dylib
+ 0x115f60000 - 0x115fa9ff7 com.apple.AppleJPEG (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
+ 0x115fb8000 - 0x115fbdff3 +libCoreFSCache.dylib (163.22) <98CE7205-9658-35E9-98A2-BCCA66105D7F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
+ 0x115fc3000 - 0x115fccfff +libGFXShared.dylib (17.0.37) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
+ 0x115fd5000 - 0x116018ff7 +libGLImage.dylib (17.0.37) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
+ 0x116024000 - 0x116026fff +libCVMSPluginSupport.dylib (17.0.37) <78F61638-1C00-3EC2-9F14-DCC5E1896010> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
+ 0x11602d000 - 0x116035fff +libCoreVMClient.dylib (163.22) <98F4AF7D-E8C2-38AE-9F8C-4B10894FC638> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
+ 0x11603e000 - 0x116d0afbf +libLLVMContainer.dylib (602.2.46) <7A937FC9-2837-3BAD-BA62-27E3141233BD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
+ 0x11709e000 - 0x1170a8fff com.apple.accessibility.AXCoreUtilities (1.0 - 1) <4B7ADEA0-403F-3689-8E76-8296340A9F1C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
+ 0x1170c1000 - 0x1170cbfff com.apple.MediaAccessibility (1.0 - 114.4) <329E49E8-0E2F-3A6D-BFD6-47090224F556> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
+ 0x1170dc000 - 0x1170e1ffb com.apple.ConstantClasses (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
+ 0x1170ec000 - 0x117114ff7 com.apple.applesauce (1.0 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
+ 0x117121000 - 0x117124ff7 com.apple.dt.XCTTargetBootstrap (1.0 - 1) <43AF29EC-FB68-37E0-8148-46E45D7E7240> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
+ 0x11712d000 - 0x1172bdff7 com.apple.WebKitLegacy (8606 - 8606.2.104.0.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
+ 0x117423000 - 0x117e7cfff com.apple.JavaScriptCore (8606 - 8606.2.104.0.1) <93BA607A-EB69-333A-8438-B99D1C1D99C7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
+ 0x118133000 - 0x118166ffb com.apple.UserNotifications (1.0 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UserNotifications.framework/UserNotifications
+ 0x1181a1000 - 0x1181e3fff com.apple.AppSupport (1.0.0 - 29) <87E7AF00-CAE8-3F40-901C-ACAD3084025C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
+ 0x118229000 - 0x11823fffb com.apple.AssertionServices (1.0 - 1) <713132B9-682B-3EAE-A2C9-C5C921E2B941> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
+ 0x118267000 - 0x1182a1ff7 com.apple.BackBoardServices (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
+ 0x1182e9000 - 0x118359ff3 com.apple.BaseBoard (360.25 - 360.25) <29A64509-A632-3034-93B8-74EAD0A92056> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
+ 0x1183da000 - 0x118444ff3 com.apple.FrontBoardServices (486.50 - 486.50) <225E33DD-620C-345E-B4A7-82CEEFD0AFD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
+ 0x1184cc000 - 0x1184e5fff com.apple.MobileAssets (1.0 - 437.200.49) <7E7CB819-3BD3-3484-9B86-94DE4B5E8443> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
+ 0x118503000 - 0x11855bfff com.apple.PhysicsKit (1.0 - 1) <3BE90189-439A-3713-94DB-90D90141FE62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
+ 0x118590000 - 0x118675ff7 com.apple.ProofReader (2.4 - 430) <94F2E312-CF41-366B-89B9-9885A75EE3BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
+ 0x1186d0000 - 0x1186ecfff com.apple.PrototypeTools (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
+ 0x118710000 - 0x11877afff com.apple.TextInput (1.0 - 1.0) <1401B845-A529-3E44-9CCF-88FE37DC2949> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInput.framework/TextInput
+ 0x118807000 - 0x118811fff com.apple.UIKitServices (1.0 - 1) <825158C6-20EF-36ED-87C0-30751D0E1221> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
+ 0x118823000 - 0x11a202ff7 com.apple.WebCore (8606 - 8606.2.104.0.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/WebCore
+ 0x11b11e000 - 0x11b6adff7 +libwebrtc.dylib (7606.2.104.0.1) <6E94BBF0-2CA6-3A65-9138-948F3E8663BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
+ 0x11b89f000 - 0x11b8a5fff com.apple.URLFormatting (59 - 59.34) <39669D5B-4408-38C2-AD6C-9162126ABCBA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
+ 0x11b8af000 - 0x11bdb2fff com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <2B73D26C-6EC1-358B-A237-40E097692113> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+ 0x11bfd6000 - 0x11bfdefff com.apple.CorePhoneNumbers (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
+ 0x11bfe7000 - 0x11bff1fff +libAudioStatistics.dylib (975.63.7) <4A7AA980-C1DE-3875-83B3-4599EB659C41> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioStatistics.dylib
+ 0x11bffe000 - 0x11c01cfff com.apple.ProtocolBuffer (1 - 263) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
+ 0x11c03e000 - 0x11c082ff7 com.apple.awd (1.0 - 930.11) <64B5BED6-B817-36BB-A160-AE5DE425F92B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
+ 0x11c0b6000 - 0x11c0bfff7 com.apple.RTCReporting (9.36.3 - 9.36.3) <6A5C80D4-D224-3C9A-A9D9-7E805A087DE1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
+ 0x11c0ce000 - 0x11c113ffb com.apple.SpringBoardServices (1.0 - 1.0) <0964FDEA-C43A-3846-8FD4-0D36EC46874E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
+ 0x11c173000 - 0x11c17afff com.apple.TCC (1.0 - 1) <07FF734B-6315-3AA4-B3FC-12B45BAD0596> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TCC.framework/TCC
+ 0x11c186000 - 0x11c293ff7 +libAWDSupportFramework.dylib (886) <719C4BE7-546A-344B-9982-E56D97D51A5E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupportFramework.dylib
+ 0x11c3d0000 - 0x11c3e1fff +libprotobuf-lite.dylib (886) <57072992-4776-369A-B995-C74E8527E2F2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf-lite.dylib
+ 0x11c3fc000 - 0x11c43aff7 +libTelephonyUtilDynamic.dylib (3609) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libTelephonyUtilDynamic.dylib
+ 0x11c486000 - 0x11c4e7fff +libprotobuf.dylib (886) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf.dylib
+ 0x11c54a000 - 0x11c589ff3 com.apple.StreamingZip (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
+ 0x11c5aa000 - 0x11c5ebfff com.apple.Lexicon-framework (1.0 - 33.15.10) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
+ 0x11c5fe000 - 0x11c6f3ff7 com.apple.LanguageModeling (1.0 - 159.15.15) <78D15BEA-EF26-3456-BDAC-E605CDA9120D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
+ 0x11c727000 - 0x11c72bfff com.apple.LinguisticData (1.0 - 238.15.29) <1A88A642-2206-39E8-9680-95DCC8FA92A6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
+ 0x11c732000 - 0x11c746fff com.apple.CoreEmoji (1.0 - 69.19.8) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
+ 0x11c762000 - 0x11c772ffb +libcmph.dylib (6.15.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcmph.dylib
+ 0x11c77c000 - 0x11c86dff7 +libiconv.2.dylib (51.200.6) <114D034A-F142-3FDB-84DD-1626454F9721> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libiconv.2.dylib
+ 0x11c880000 - 0x11c880ff3 +libcharset.1.dylib (51.200.6) <2100DE83-9FAD-3C53-8703-0B5F2272797C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcharset.1.dylib
+ 0x11c885000 - 0x11c8e6ff7 com.apple.CoreNLP (1.0 - 130.15.22) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
+ 0x11c93d000 - 0x11ca00fff +libmecab_em.dylib (779.19.2) <446870E7-EE93-3348-9800-A61FF61F2A59> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecab_em.dylib
+ 0x11ca29000 - 0x11ca2effb +libgermantok.dylib (17.15.2) <3C04227A-D188-3ECA-957D-F680DAE6F9FD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libgermantok.dylib
+ 0x11ca34000 - 0x11ca35fff +libThaiTokenizer.dylib (2.2) <5CE6E4AE-27C9-348B-B753-3CDF6793493A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libThaiTokenizer.dylib
+ 0x11ca3b000 - 0x11ca44fff +libChineseTokenizer.dylib (28.15.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libChineseTokenizer.dylib
+ 0x11ca52000 - 0x11cab2ff7 com.apple.Accounts (113 - 113) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accounts.framework/Accounts
+ 0x11cb11000 - 0x11cc24ffb com.apple.AppleAccount (1.0 - 1.0) <438BAB35-2E67-32CA-935B-170EB4527B1D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
+ 0x11cc9a000 - 0x11d017ff3 +CoreData (866.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreData.framework/CoreData
+ 0x11d246000 - 0x11d349ff3 com.apple.managedconfiguration (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
+ 0x11d44b000 - 0x11d469ffb com.apple.SetupAssistant (1.0 - 1) <1A28FF21-EFC0-36BD-9DB8-5760C5A0A805> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
+ 0x11d48d000 - 0x11d491ff3 com.apple.AppleIDSSOAuthentication (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
+ 0x11d49b000 - 0x11d4b3ffb com.apple.aps.framework (4.0 - 4.0) <7736AF7B-0865-3C5E-A8E5-AC36F581D91D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
+ 0x11d4d3000 - 0x11d526ffb com.apple.AuthKit (1.0 - 1) <32D9FAF0-7D07-3437-992E-C26CEFD0266C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
+ 0x11d57f000 - 0x11d5f8fff com.apple.corelocation (2245.8.12) <9C97832D-FE0E-35E5-819E-935E829CEA43> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocation.framework/CoreLocation
+ 0x11d630000 - 0x11d860ff7 +StoreServices (1445.1.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
+ 0x11daa0000 - 0x11daa8fff com.apple.datamigration (1.0 - 1.0) <24C673CA-787F-3B68-914C-9D7204D0A053> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
+ 0x11dab7000 - 0x11dae2ffb com.apple.persistentconnection (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
+ 0x11db11000 - 0x11dbf5ff7 com.apple.CoreTelephony (113 - 6530.3) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
+ 0x11dcd4000 - 0x11dceafff com.apple.commonutilities (8.0 - 900) <4D66C635-DA70-3D76-8D4E-25B88D137887> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
+ 0x11dd02000 - 0x11dd34ff3 com.apple.bom (14.0 - 197) <5EB2C083-0C60-34EC-839E-8C8AEE2E6692> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Bom.framework/Bom
+ 0x11dd49000 - 0x11dd4fff7 +libcupolicy.dylib (6530.3) <3D3FEC07-601C-3473-A1AC-2C7E2CAD76EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcupolicy.dylib
+ 0x11dd58000 - 0x11dd5dfff com.apple.CoreTime (258) <9A1632D1-44F6-3131-824B-F0549B99E6CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
+ 0x11dd66000 - 0x11debdfff com.apple.CoreUtils (5.7.4 - 574.17) <5211FE27-DF72-3D85-9461-7C4D37F1C280> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
+ 0x11dfc1000 - 0x11dfccfff com.apple.AppleIDAuthSupport (1.0 - 1) <212F8EBA-7E74-3519-BC6D-7C24E3489C5B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
+ 0x11dfdb000 - 0x11dfdbfff com.apple.PhoneNumbers (1.0 - 1) <611F7564-2ECB-378E-B12C-6352D56C89B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
+ 0x11dfe0000 - 0x11e037fc9 com.apple.ROCKit (24 - 24) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
+ 0x11e06d000 - 0x11e09dfff com.apple.CoreBluetooth (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
+ 0x11e0c9000 - 0x11e165fff com.apple.accounts.AccountsDaemon (113 - 113) <88B3E208-E466-3709-9BF5-CECE9EAF966D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
+ 0x11e1c4000 - 0x11e1edffb com.apple.GSS (4.0 - 2.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/GSS.framework/GSS
+ 0x11e20e000 - 0x11e210fff com.apple.OAuth (25 - 25) <48573CC6-DA10-35B4-8B09-9D3A3D49D636> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OAuth.framework/OAuth
+ 0x11e218000 - 0x11e21dff7 +libheimdal-asn1.dylib (520.220.2) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libheimdal-asn1.dylib
+ 0x11e225000 - 0x11e293ff3 com.apple.Heimdal (4.0 - 2.0) <9A1F900F-4998-3663-92F1-5E575C9C9315> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
+ 0x11e2cb000 - 0x11e2e3ff3 +libresolv.9.dylib (65.200.2) <3F1E98D8-B446-393E-B8AC-6035BFBF50BA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libresolv.9.dylib
+ 0x11e2ef000 - 0x11e2f1ff7 com.apple.CommonAuth (4.0 - 2.0) <50A19C6E-D9AB-3F78-A5D3-BC9E38BC6A66> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
+ 0x11e2f7000 - 0x11ed30ff7 com.apple.GeoServices (1.0 - 1364.31.8.31.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
+ 0x11f4cd000 - 0x11f51cffb +CoreLocationProtobuf (25.0.5) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
+ 0x11f570000 - 0x11f58ffff com.apple.CacheDelete (1.0 - 1) <298872CA-8DDA-38D7-8B10-1EEEC8055DE9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
+ 0x11f5a9000 - 0x11f66effb com.apple.AppleMediaServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
+ 0x11f724000 - 0x11f7a5ff7 com.apple.CoreSymbolication (10.1 - 64460.6) <983AF6C8-CA8E-3EAF-847C-241A1875B0C5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
+ 0x11f7f9000 - 0x11f821ff3 com.apple.dt.instruments.DTXConnectionServices (10.1 - 64460.15) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/Developer/Library/PrivateFrameworks/DTXConnectionServices.framework/DTXConnectionServices
+ 0x11f845000 - 0x11f956ffb com.apple.AssistantServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
+ 0x11fa86000 - 0x11faeeff7 com.apple.SAObjects (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
+ 0x11fdda000 - 0x11ffb2fff com.apple.MediaRemote (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
+ 0x120183000 - 0x12046bff7 com.apple.Intents (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Intents.framework/Intents
+ 0x120776000 - 0x1207b6fff com.apple.voiceservices (1.0.0 - 1.0) <4DD1062F-A044-3F78-BB80-C77083DD12BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
+ 0x1207fe000 - 0x12080fff7 com.apple.RemoteTextInput (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
+ 0x120827000 - 0x12084dff3 com.apple.MediaServices (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
+ 0x120880000 - 0x120887fff com.apple.IntentsFoundation (1.0 - 1) <596EB7A3-4320-3EA1-9250-4BC0D784814C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
+ 0x120894000 - 0x120d2ffff com.apple.siri.tts.SiriTTS (217 - 217) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
+ 0x120ea0000 - 0x121099ff7 com.apple.avfoundation (2.0 - 1542.10.101.1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/AVFoundation
+ 0x12131c000 - 0x12140dfff com.apple.audio.AVFAudio (1.0 - ???) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
+ 0x1214a8000 - 0x1214acff3 com.apple.InternationalSupport (1.0 - 10.15.6) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
+ 0x1214b4000 - 0x1218cffff com.apple.MediaToolbox (1.0 - 2282.19.101.7) <3D297362-A0FA-31CD-9C64-3EE8C94FFF52> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
+ 0x121ab1000 - 0x121aeefff com.apple.Celestial (1.0 - 2282.19.101.7) <877EF146-D657-3803-BD71-43A706858527> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Celestial.framework/Celestial
+ 0x121fdd000 - 0x121fe0fff +libswiftCoreFoundation.dylib (4.2.1 - 1000.11.42) <1D51CFE8-686A-3FD1-A291-5E5F52CB5223> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreFoundation.dylib
+ 0x121fe7000 - 0x121fecff3 +libswiftCoreImage.dylib (4.2.1 - 1000.11.42) <4528C2AC-D12B-3333-93D9-A2B0E8727F0F> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreImage.dylib
+ 0x123ca9000 - 0x123cd1ff7 +benasher44.ShapeSwiftTests (1.0 - 1) <91475D17-58C7-3620-93D6-68F662CAFFB2> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/ShapeSwiftTests
+ 0x123d2e000 - 0x123da2fff +org.cocoapods.proj4 (4.9.2 - 1) <92C77003-245C-3D0F-99B8-5A86C94C3A62> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/proj4.framework/proj4
+ 0x123e1b000 - 0x123e61ff7 +benasher44.ShapeSwift (1.0 - 1) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwift.framework/ShapeSwift
+ 0x123f24000 - 0x1242b8ff7 +libswiftCore.dylib (4.2.1 - 1000.11.42) <9C38414B-9FC9-3FF1-97A7-FB44E0142697> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCore.dylib
+ 0x12458c000 - 0x12459bff7 +libswiftCoreGraphics.dylib (4.2.1 - 1000.11.42) <5C09D4EB-4B1B-3FB5-9A12-871F703CD1A6> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreGraphics.dylib
+ 0x1245c0000 - 0x1245c8fff +libswiftDarwin.dylib (4.2.1 - 1000.11.42) <85312021-037C-3388-B47E-C85D298DF9FA> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftDarwin.dylib
+ 0x1245db000 - 0x1245f4ff7 +libswiftDispatch.dylib (4.2.1 - 1000.11.42) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftDispatch.dylib
+ 0x124633000 - 0x124798ff7 +libswiftFoundation.dylib (4.2.1 - 1000.11.42) <7CE8FB63-5122-3915-B044-9F2E1AD8CD5E> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftFoundation.dylib
+ 0x124931000 - 0x124937ff7 +libswiftMetal.dylib (4.2.1 - 1000.11.42) <99370D27-ABDB-3412-8732-FA556444050A> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftMetal.dylib
+ 0x124942000 - 0x124946fff +libswiftObjectiveC.dylib (4.2.1 - 1000.11.42) <88AE710D-FAA8-3C54-B3D7-97592D882083> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftObjectiveC.dylib
+ 0x124951000 - 0x124956ff7 +libswiftQuartzCore.dylib (4.2.1 - 1000.11.42) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftQuartzCore.dylib
+ 0x12495f000 - 0x12498dfff +libswiftSwiftOnoneSupport.dylib (4.2.1 - 1000.11.42) <3C4CF49D-BE6E-3E5C-AE9C-E05D34E7D024> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib
+ 0x1249c4000 - 0x1249d3fff +libswiftUIKit.dylib (4.2.1 - 1000.11.42) <40D34A72-4CAC-3632-80D5-D712E08D9105> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftUIKit.dylib
+ 0x1249f2000 - 0x124a04fff +libswiftXCTest.dylib (4.2.1 - 1000.11.42) <35367E1A-486A-3608-B263-725F5E45152C> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftXCTest.dylib
+ 0x124a11000 - 0x124a17fff +libswiftos.dylib (4.2.1 - 1000.11.42) /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftos.dylib
+ 0x124a23000 - 0x124a2aff7 +libswiftCoreMedia.dylib (4.2.1 - 1000.11.42) <0FC53ACF-EAC2-36A2-BA97-BFE9D3A93F74> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreMedia.dylib
+ 0x124a36000 - 0x124a3dff7 +libswiftCoreAudio.dylib (4.2.1 - 1000.11.42) <5F6C438E-D590-3BC5-A4E2-EEFBA33E23C7> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreAudio.dylib
+
+External Modification Summary:
+ Calls made by other processes targeting this process:
+ task_for_pid: 0
+ thread_create: 0
+ thread_set_state: 0
+ Calls made by this process:
+ task_for_pid: 0
+ thread_create: 0
+ thread_set_state: 0
+ Calls made by all processes on this machine:
+ task_for_pid: 18223
+ thread_create: 0
+ thread_set_state: 0
+
+VM Region Summary:
+ReadOnly portion of Libraries: Total=332.4M resident=0K(0%) swapped_out_or_unallocated=332.4M(100%)
+Writable regions: Total=96.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=96.0M(100%)
+
+ VIRTUAL REGION
+REGION TYPE SIZE COUNT (non-coalesced)
+=========== ======= =======
+Activity Tracing 256K 2
+Dispatch continuations 2048K 2
+Kernel Alloc Once 8K 2
+MALLOC 80.5M 12
+MALLOC guard page 16K 4
+STACK GUARD 56.0M 6
+Stack 10.0M 6
+__DATA 36.3M 309
+__DATA_DIRTY 16K 4
+__FONT_DATA 4K 2
+__LINKEDIT 100.8M 248
+__LLVM_COV 176K 4
+__TEXT 231.6M 243
+__UNICODE 564K 2
+mapped file 26.4M 4
+shared memory 24K 4
+=========== ======= =======
+TOTAL 544.7M 838
+
diff --git a/spec/fixtures/Test-ShapeSwift.xcresult/Info.plist b/spec/fixtures/Test-ShapeSwift.xcresult/Info.plist
new file mode 100644
index 0000000..cba3d9f
--- /dev/null
+++ b/spec/fixtures/Test-ShapeSwift.xcresult/Info.plist
@@ -0,0 +1,256 @@
+
+
+
+
+ Actions
+
+
+ ActionResult
+
+ AnalyzerWarningCount
+ 0
+ AnalyzerWarningSummaries
+
+ CodeCoverageArchivePath
+ 1_Test/action.xccovarchive
+ CodeCoveragePath
+ 1_Test/action.xccovreport
+ ErrorCount
+ 0
+ ErrorSummaries
+
+ HasCodeCoverage
+
+ LogPath
+ 1_Test/action.xcactivitylog
+ Status
+ IDEActionResultStatus_Failed
+ TestFailureSummaries
+
+
+ DocumentLocationData
+
+ YnBsaXN0MDDUAQIDBAUGISJYJHZl
+ cnNpb25YJG9iamVjdHNZJGFyY2hp
+ dmVyVCR0b3ASAAGGoKQHCBgZVSRu
+ dWxs2gkKCwwNDg8QERITFBQVFRYU
+ FxQUW2RvY3VtZW50VVJMXxAUc3Rh
+ cnRpbmdDb2x1bW5OdW1iZXJfEBJl
+ bmRpbmdDb2x1bW5OdW1iZXJfEBFj
+ aGFyYWN0ZXJSYW5nZUxlbl8QEGxv
+ Y2F0aW9uRW5jb2RpbmdWJGNsYXNz
+ XxAQZW5kaW5nTGluZU51bWJlcll0
+ aW1lc3RhbXBfEBJzdGFydGluZ0xp
+ bmVOdW1iZXJfEBFjaGFyYWN0ZXJS
+ YW5nZUxvY4ACE///////////EACA
+ A4AAXxA4ZmlsZTovLy9Vc2Vycy9i
+ ZW5hc2hlci9Db2RlL2lPUy9TaGFw
+ ZVN3aWZ0LyUzQ3Vua25vd24lM0XS
+ GhscHVokY2xhc3NuYW1lWCRjbGFz
+ c2VzXxAXRFZUVGV4dERvY3VtZW50
+ TG9jYXRpb26jHh8gXxAXRFZUVGV4
+ dERvY3VtZW50TG9jYXRpb25fEBNE
+ VlREb2N1bWVudExvY2F0aW9uWE5T
+ T2JqZWN0XxAPTlNLZXllZEFyY2hp
+ dmVy0SMkVHJvb3SAAQAIABEAGgAj
+ AC0AMgA3ADwAQgBXAGMAegCPAKMA
+ tgC9ANAA2gDvAQMBBQEOARABEgEU
+ AU8BVAFfAWgBggGGAaABtgG/AdEB
+ 1AHZAAAAAAAAAgEAAAAAAAAAJQAA
+ AAAAAAAAAAAAAAAAAds=
+
+ IssueType
+ Uncategorized
+ Message
+ Crash: xctest (3920): MultiPatchTest
+ TestCase
+ MultiPatchTest.testDecoding()
+
+
+ TestSummaryPath
+ 1_Test/action_TestSummaries.plist
+ TestsCount
+ 46
+ TestsFailedCount
+ 1
+ WarningCount
+ 0
+ WarningSummaries
+
+
+ BuildResult
+
+ AnalyzerWarningCount
+ 0
+ AnalyzerWarningSummaries
+
+ ErrorCount
+ 0
+ ErrorSummaries
+
+ HasCodeCoverage
+
+ LogPath
+ 1_Test/build.xcactivitylog
+ Status
+ IDEActionResultStatus_Succeeded
+ TestFailureSummaries
+
+ TestsCount
+ 0
+ TestsFailedCount
+ 0
+ WarningCount
+ 0
+ WarningSummaries
+
+
+ EndedTime
+ 2019-01-13T17:27:45Z
+ RunDestination
+
+ LocalComputer
+
+ BusSpeedInMHz
+ 400
+ CPUCount
+ 1
+ CPUKind
+ Intel Core i7
+ CPUSpeedInMHz
+ 2700
+ Identifier
+ C280495B-F5BB-5130-A278-5B31E29C6764
+ IsConcreteDevice
+
+ LogicalCPUCoresPerPackage
+ 8
+ ModelCode
+ MacBookPro15,2
+ ModelName
+ MacBook Pro
+ ModelUTI
+ com.apple.macbookpro-13-retina-touchid-2018
+ Name
+ My Mac
+ NativeArchitecture
+ x86_64h
+ OperatingSystemVersion
+ 10.14.2
+ OperatingSystemVersionWithBuildNumber
+ 10.14.2 (18C54)
+ PhysicalCPUCoresPerPackage
+ 4
+ Platform
+
+ Identifier
+ com.apple.platform.macosx
+ Name
+ macOS
+
+ RAMSizeInMegabytes
+ 16384
+
+ Name
+ iPhone SE
+ TargetArchitecture
+ x86_64
+ TargetDevice
+
+ Identifier
+ 776A1522-01B8-4DE1-BC6D-24332AF37DF0
+ IsConcreteDevice
+
+ ModelCode
+ iPhone8,4
+ ModelName
+ iPhone SE
+ ModelUTI
+ com.apple.iphone-se-a1662-aeb1b8
+ Name
+ iPhone SE
+ NativeArchitecture
+ x86_64
+ OperatingSystemVersion
+ 12.1
+ OperatingSystemVersionWithBuildNumber
+ 12.1 (16B91)
+ Platform
+
+ Identifier
+ com.apple.platform.iphonesimulator
+ Name
+ iOS Simulator
+
+
+ TargetSDK
+
+ Identifier
+ iphonesimulator12.1
+ IsInternal
+
+ Name
+ Simulator - iOS 12.1
+ OperatingSystemVersion
+ 12.1
+
+
+ SchemeCommand
+ Test
+ SchemeTask
+ BuildAndAction
+ StartedTime
+ 2019-01-13T17:27:13Z
+ Title
+ Testing workspace ShapeSwift with scheme ShapeSwift
+
+
+ AnalyzerWarningCount
+ 0
+ CreatingWorkspaceFilePath
+ /Users/benasher/Code/iOS/ShapeSwift/ShapeSwift.xcworkspace
+ ErrorCount
+ 0
+ FormatVersion
+ 1.2
+ Running
+
+ TestFailureSummaries
+
+
+ DocumentLocationData
+
+ YnBsaXN0MDDUAQIDBAUGISJYJHZlcnNpb25YJG9iamVjdHNZJGFy
+ Y2hpdmVyVCR0b3ASAAGGoKQHCBgZVSRudWxs2gkKCwwNDg8QERIT
+ FBQVFRYUFxQUW2RvY3VtZW50VVJMXxAUc3RhcnRpbmdDb2x1bW5O
+ dW1iZXJfEBJlbmRpbmdDb2x1bW5OdW1iZXJfEBFjaGFyYWN0ZXJS
+ YW5nZUxlbl8QEGxvY2F0aW9uRW5jb2RpbmdWJGNsYXNzXxAQZW5k
+ aW5nTGluZU51bWJlcll0aW1lc3RhbXBfEBJzdGFydGluZ0xpbmVO
+ dW1iZXJfEBFjaGFyYWN0ZXJSYW5nZUxvY4ACE///////////EACA
+ A4AAXxA4ZmlsZTovLy9Vc2Vycy9iZW5hc2hlci9Db2RlL2lPUy9T
+ aGFwZVN3aWZ0LyUzQ3Vua25vd24lM0XSGhscHVokY2xhc3NuYW1l
+ WCRjbGFzc2VzXxAXRFZUVGV4dERvY3VtZW50TG9jYXRpb26jHh8g
+ XxAXRFZUVGV4dERvY3VtZW50TG9jYXRpb25fEBNEVlREb2N1bWVu
+ dExvY2F0aW9uWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hpdmVy0SMk
+ VHJvb3SAAQAIABEAGgAjAC0AMgA3ADwAQgBXAGMAegCPAKMAtgC9
+ ANAA2gDvAQMBBQEOARABEgEUAU8BVAFfAWgBggGGAaABtgG/AdEB
+ 1AHZAAAAAAAAAgEAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAds=
+
+ IssueType
+ Uncategorized
+ Message
+ Crash: xctest (3920): MultiPatchTest
+ TestCase
+ MultiPatchTest.testDecoding()
+
+
+ TestSummaryPath
+ /Users/benasher/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Logs/Test/Test-ShapeSwift-2019.01.13_09-27-13--0800.xcresult/TestSummaries.plist
+ TestsCount
+ 46
+ TestsFailedCount
+ 1
+ WarningCount
+ 0
+
+
diff --git a/spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.plist b/spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.plist
new file mode 100644
index 0000000..d1ba17c
--- /dev/null
+++ b/spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.plist
@@ -0,0 +1,957 @@
+
+
+
+
+ FormatVersion
+ 1.1
+ TestableSummaries
+
+
+ DiagnosticsDirectory
+ ShapeSwiftTests-4B966986-5608-4CCD-A5AF-BA84765CBD83
+ ProjectPath
+ ShapeSwift.xcodeproj
+ TargetName
+ ShapeSwiftTests
+ TestKind
+ xctest-tool hosted
+ TestName
+ ShapeSwiftTests
+ TestObjectClass
+ IDESchemeActionTestableSummary
+ Tests
+
+
+ Duration
+ 20.458294034004211
+ Subtests
+
+
+ Duration
+ 20.35369598865509
+ Subtests
+
+
+ Duration
+ 0.0067859888076782227
+ Subtests
+
+
+ Duration
+ 0.0060380697250366211
+ TestIdentifier
+ ByteEncodableTest/testByteEncodableDouble()
+ TestName
+ testByteEncodableDouble()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ C48C1378-184F-4762-9633-8116AFE30673
+
+
+ TestIdentifier
+ ByteEncodableTest
+ TestName
+ ByteEncodableTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.033996939659118652
+ Subtests
+
+
+ Duration
+ 0.015457987785339355
+ TestIdentifier
+ DBFFileHeaderTest/testCP1251()
+ TestName
+ testCP1251()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 0FC9AF0C-F022-45C7-A315-80E4897AF198
+
+
+ Duration
+ 0.0015759468078613281
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE03()
+ TestName
+ testDBASE03()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ C5015F7C-A859-4898-A1BA-3EFA3423918D
+
+
+ Duration
+ 0.0016580820083618164
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE30()
+ TestName
+ testDBASE30()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 3A22F0D7-C572-42FC-8C64-64C3B7CFC2EA
+
+
+ Duration
+ 0.001811981201171875
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE31()
+ TestName
+ testDBASE31()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 5273D0BC-2686-4171-B475-60DC9A960E88
+
+
+ Duration
+ 0.0023479461669921875
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE83()
+ TestName
+ testDBASE83()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 08FBF754-347F-488F-90C7-04591AA888D3
+
+
+ Duration
+ 0.0016710758209228516
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE83NoMemo()
+ TestName
+ testDBASE83NoMemo()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 87D2030B-7992-49B3-8A89-8B6FBC0F33D7
+
+
+ Duration
+ 0.0012979507446289062
+ TestIdentifier
+ DBFFileHeaderTest/testDBASE8B()
+ TestName
+ testDBASE8B()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 531E21B2-3AA9-4799-B6FA-325370714CA9
+
+
+ Duration
+ 0.0023870468139648438
+ TestIdentifier
+ DBFFileHeaderTest/testDBASEF5()
+ TestName
+ testDBASEF5()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 2023C8E0-EFC7-423C-9447-E5B2CE72C624
+
+
+ Duration
+ 0.0016380548477172852
+ TestIdentifier
+ DBFFileHeaderTest/testParser()
+ TestName
+ testParser()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 177B645D-A858-4A35-8E32-6378170D05EA
+
+
+ TestIdentifier
+ DBFFileHeaderTest
+ TestName
+ DBFFileHeaderTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 19.560796976089478
+ Subtests
+
+
+ ActivitySummaries
+
+
+ ActivityType
+ com.apple.dt.xctest.activity-type.internal
+ Attachments
+
+
+ Filename
+ xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
+ HasPayload
+
+ InActivityIdentifier
+ 1
+ Lifetime
+ 0
+ Name
+ kXCTAttachmentLegacyDiagnosticReportData
+ Timestamp
+ 569093262.15470195
+ UniformTypeIdentifier
+ public.data
+
+
+ DiagnosticReportFileName
+ xctest_2019-01-13-092723_1EB690DA-1BE5-4410-B84F-2D0E6956F096.crash
+ FinishTimeInterval
+ 569093262.15171599
+ HasDiagnosticReportData
+
+ StartTimeInterval
+ 569093262.15171599
+ Title
+ Crash: xctest (3920): MultiPatchTest.testDecoding()
+ UUID
+ 1EB690DA-1BE5-4410-B84F-2D0E6956F096
+
+
+ Duration
+ 0.0
+ FailureSummaries
+
+
+ FileName
+ <unknown>
+ LineNumber
+ 0
+ Message
+ Crash: xctest (3920): MultiPatchTest
+ PerformanceFailure
+
+
+
+ TestIdentifier
+ MultiPatchTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Failure
+ TestSummaryGUID
+ 0CC7613C-CA69-4F49-A2C7-8A81AEFA18AB
+
+
+ Duration
+ 0.0023729801177978516
+ TestIdentifier
+ MultiPatchTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 02AA586A-7A15-405A-8626-31B0867F2ECD
+
+
+ Duration
+ 0.00075590610504150391
+ TestIdentifier
+ MultiPatchTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 03B19812-C687-4D1E-8006-B3660CC80030
+
+
+ TestIdentifier
+ MultiPatchTest
+ TestName
+ MultiPatchTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0039169788360595703
+ Subtests
+
+
+ Duration
+ 0.00091803073883056641
+ TestIdentifier
+ MultiPointMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 25B837E9-5359-47E6-BE4C-727D276E5F24
+
+
+ Duration
+ 0.00065398216247558594
+ TestIdentifier
+ MultiPointMTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ FF849CB7-A360-4F40-AF9E-B79D7214FB1C
+
+
+ Duration
+ 0.00069200992584228516
+ TestIdentifier
+ MultiPointMTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ AE06B36E-4C88-407F-844D-B75FB7F32BD9
+
+
+ TestIdentifier
+ MultiPointMTest
+ TestName
+ MultiPointMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0014649629592895508
+ Subtests
+
+
+ Duration
+ 0.00070405006408691406
+ TestIdentifier
+ MultiPointTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 9B67E80B-8D1D-46C1-B3C9-6EA9A30BC08D
+
+
+ TestIdentifier
+ MultiPointTest
+ TestName
+ MultiPointTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0033230781555175781
+ Subtests
+
+
+ Duration
+ 0.00074899196624755859
+ TestIdentifier
+ MultiPointZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 30A5623F-71C5-46D6-B543-B329280A723C
+
+
+ Duration
+ 0.00067496299743652344
+ TestIdentifier
+ MultiPointZTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ B4C237D2-911C-48A3-8EF0-70C99D791369
+
+
+ Duration
+ 0.00059199333190917969
+ TestIdentifier
+ MultiPointZTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ A864D908-C657-47A6-873B-E0BA295A59A6
+
+
+ TestIdentifier
+ MultiPointZTest
+ TestName
+ MultiPointZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0026669502258300781
+ Subtests
+
+
+ Duration
+ 0.00049805641174316406
+ TestIdentifier
+ PointMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 35C52AA4-77E5-4C7D-AEC7-449A9994DE79
+
+
+ Duration
+ 0.00049996376037597656
+ TestIdentifier
+ PointMTest/testDecodingWithMNoDataValues()
+ TestName
+ testDecodingWithMNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 27A3C4D0-4A59-4671-A11E-13E82D71B100
+
+
+ Duration
+ 0.00042295455932617188
+ TestIdentifier
+ PointMTest/testDecodingWithoutM()
+ TestName
+ testDecodingWithoutM()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F301D572-F5C6-49CF-9A1E-73BA4A146FB4
+
+
+ TestIdentifier
+ PointMTest
+ TestName
+ PointMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0011839866638183594
+ Subtests
+
+
+ Duration
+ 0.00056397914886474609
+ TestIdentifier
+ PointTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 30A9A3CD-3DB6-436B-B434-C329AF35CB8F
+
+
+ TestIdentifier
+ PointTest
+ TestName
+ PointTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0025770664215087891
+ Subtests
+
+
+ Duration
+ 0.00050199031829833984
+ TestIdentifier
+ PointZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 0941E8FE-B7BE-42AC-B946-E011DF63F194
+
+
+ Duration
+ 0.00045001506805419922
+ TestIdentifier
+ PointZTest/testDecodingWithMNoDataValues()
+ TestName
+ testDecodingWithMNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 29F3B644-5A62-4D1B-BBAD-604E1078DF84
+
+
+ Duration
+ 0.00047099590301513672
+ TestIdentifier
+ PointZTest/testDecodingWithoutM()
+ TestName
+ testDecodingWithoutM()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 5C8F950A-EA13-4800-ACE7-773F0F41A293
+
+
+ TestIdentifier
+ PointZTest
+ TestName
+ PointZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0042109489440917969
+ Subtests
+
+
+ Duration
+ 0.00060999393463134766
+ TestIdentifier
+ PolyLineMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ D5D90EE3-74B9-46D5-8BB7-6540358A2DEF
+
+
+ Duration
+ 0.00059902667999267578
+ TestIdentifier
+ PolyLineMTest/testDecodingNoMeasures()
+ TestName
+ testDecodingNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ CCD5602E-C937-421F-B6BB-15AFD3301DC5
+
+
+ Duration
+ 0.00052595138549804688
+ TestIdentifier
+ PolyLineMTest/testDecodingNoMeasuresNoDataValues()
+ TestName
+ testDecodingNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ D5776AFF-1257-4060-BEAA-2A20DCDE8F7F
+
+
+ Duration
+ 0.00062394142150878906
+ TestIdentifier
+ PolyLineMTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ B54E5B6C-12A0-4914-B23D-914ADC06C113
+
+
+ TestIdentifier
+ PolyLineMTest
+ TestName
+ PolyLineMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0020289421081542969
+ Subtests
+
+
+ Duration
+ 0.00062298774719238281
+ TestIdentifier
+ PolyLineTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 7D89C808-D1D3-4B6C-9A12-96F78052C515
+
+
+ Duration
+ 0.00050294399261474609
+ TestIdentifier
+ PolyLineTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F367972D-FA5F-42A8-823D-65884711EC8B
+
+
+ TestIdentifier
+ PolyLineTest
+ TestName
+ PolyLineTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0030150413513183594
+ Subtests
+
+
+ Duration
+ 0.00069797039031982422
+ TestIdentifier
+ PolyLineZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ C6D83A3B-BC65-4D1F-BFED-D6BBD466BF40
+
+
+ Duration
+ 0.00055205821990966797
+ TestIdentifier
+ PolyLineZTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 128D362E-5212-4F1E-86D7-09397D028F40
+
+
+ Duration
+ 0.00054597854614257812
+ TestIdentifier
+ PolyLineZTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F4E6FE4F-3A94-4A4F-B7E4-D4E7AE114DA9
+
+
+ TestIdentifier
+ PolyLineZTest
+ TestName
+ PolyLineZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0042480230331420898
+ Subtests
+
+
+ Duration
+ 0.00079298019409179688
+ TestIdentifier
+ PolygonMTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 6A7FA57A-DB3C-4141-B631-7F8D3F90B46C
+
+
+ Duration
+ 0.00075900554656982422
+ TestIdentifier
+ PolygonMTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ EE343F31-0CE5-457E-834F-D3635F5C0C62
+
+
+ Duration
+ 0.00052297115325927734
+ TestIdentifier
+ PolygonMTest/testNoMeasures()
+ TestName
+ testNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ F1BECD7A-0FEA-43B4-A675-3A57F382B545
+
+
+ Duration
+ 0.00059306621551513672
+ TestIdentifier
+ PolygonMTest/testNoMeasuresNoDataValues()
+ TestName
+ testNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 111E0295-8DB6-4FDD-974A-78A7E3FDF84A
+
+
+ TestIdentifier
+ PolygonMTest
+ TestName
+ PolygonMTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0021429061889648438
+ Subtests
+
+
+ Duration
+ 0.00063788890838623047
+ TestIdentifier
+ PolygonTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 7F117291-BA4F-4BF2-B29C-75A44133A9B2
+
+
+ Duration
+ 0.00059497356414794922
+ TestIdentifier
+ PolygonTest/testMultipleParts()
+ TestName
+ testMultipleParts()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 4D757759-E2BA-4412-8F8A-5A8AA6E2A762
+
+
+ TestIdentifier
+ PolygonTest
+ TestName
+ PolygonTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.0034300088882446289
+ Subtests
+
+
+ Duration
+ 0.00074994564056396484
+ TestIdentifier
+ PolygonZTest/testDecoding()
+ TestName
+ testDecoding()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 139A3809-6823-44DE-A2DA-DC0534EE66B8
+
+
+ Duration
+ 0.00063800811767578125
+ TestIdentifier
+ PolygonZTest/testDecodingWithNoMeasures()
+ TestName
+ testDecodingWithNoMeasures()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 2DE5E8EF-45D5-484D-8DB5-880EFE86842C
+
+
+ Duration
+ 0.00075602531433105469
+ TestIdentifier
+ PolygonZTest/testDecodingWithNoMeasuresNoDataValues()
+ TestName
+ testDecodingWithNoMeasuresNoDataValues()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 8BF69278-B48C-42B2-835F-F2923E1A23D6
+
+
+ TestIdentifier
+ PolygonZTest
+ TestName
+ PolygonZTest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ Duration
+ 0.71204400062561035
+ Subtests
+
+
+ Duration
+ 0.7113720178604126
+ TestIdentifier
+ ShapeSwiftTests/testParser()
+ TestName
+ testParser()
+ TestObjectClass
+ IDESchemeActionTestSummary
+ TestStatus
+ Success
+ TestSummaryGUID
+ 09BBF74D-44B4-4F65-A807-F3F7A845A658
+
+
+ TestIdentifier
+ ShapeSwiftTests
+ TestName
+ ShapeSwiftTests
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ TestIdentifier
+ ShapeSwiftTests.xctest
+ TestName
+ ShapeSwiftTests.xctest
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+ TestIdentifier
+ All tests
+ TestName
+ All tests
+ TestObjectClass
+ IDESchemeActionTestSummaryGroup
+
+
+
+
+
+
diff --git a/spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.xml b/spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.xml
new file mode 100644
index 0000000..3b5bf16
--- /dev/null
+++ b/spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.xml
@@ -0,0 +1,464 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Process: xctest [3920]
+Path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/xctest
+Identifier: xctest
+Version: 14460.20
+Code Type: X86-64 (Native)
+Parent Process: launchd_sim [3918]
+Responsible: xctest [3920]
+User ID: 501
+Date/Time: 2019-01-13 09:27:23.318 -0800
+OS Version: Mac OS X 10.14.2 (18C54)
+Report Version: 12
+Anonymous UUID: 32983EE0-5A9C-D276-29B0-A5BC65C42A79
+Sleep/Wake UUID: 556D6183-EA05-4205-B464-0C9682B40760
+Time Awake Since Boot: 22000 seconds
+Time Since Wake: 720 seconds
+System Integrity Protection: enabled
+Crashed Thread: 0 Dispatch queue: com.apple.main-thread
+Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
+Exception Codes: 0x0000000000000001, 0x0000000000000000
+Exception Note: EXC_CORPSE_NOTIFY
+Application Specific Information:
+CoreSimulator 581.2 - Device: iPhone SE - Runtime: iOS 12.1 (16B91) - DeviceType: iPhone SE
+Fatal error: Unexpectedly found nil while unwrapping an Optional value
+Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
+0 libswiftCore.dylib 0x00000001241506f1 specialized _fatalErrorMessage(_:_:file:line:flags:) + 113
+1 libswiftCore.dylib 0x0000000123f86053 _fatalErrorMessage(_:_:file:line:flags:) + 19
+2 benasher44.ShapeSwiftTests 0x0000000123cae7b0 MultiPatchTest.testDecoding() + 192
+3 benasher44.ShapeSwiftTests 0x0000000123cae7e4 @objc MultiPatchTest.testDecoding() + 36
+4 com.apple.CoreFoundation 0x000000010ccc503c __invoking___ + 140
+5 com.apple.CoreFoundation 0x000000010ccc24d5 -[NSInvocation invoke] + 325
+6 com.apple.dt.XCTest 0x000000010c0e8018 __24-[XCTestCase invokeTest]_block_invoke.196 + 78
+7 com.apple.dt.XCTest 0x000000010c13fc74 -[XCTestCase(Failures) performFailableBlock:testCaseRun:shouldInterruptTest:] + 57
+8 com.apple.dt.XCTest 0x000000010c13fb91 -[XCTestCase(Failures) _performTurningExceptionsIntoFailuresInterruptAfterHandling:block:] + 96
+9 com.apple.dt.XCTest 0x000000010c0e7cd9 __24-[XCTestCase invokeTest]_block_invoke + 848
+10 com.apple.dt.XCTest 0x000000010c145b7e -[XCUITestContext performInScope:] + 248
+11 com.apple.dt.XCTest 0x000000010c0e78ce -[XCTestCase testContextPerformInScope:] + 98
+12 com.apple.dt.XCTest 0x000000010c0e797c -[XCTestCase invokeTest] + 137
+13 com.apple.dt.XCTest 0x000000010c0e94b7 __26-[XCTestCase performTest:]_block_invoke_2 + 43
+14 com.apple.dt.XCTest 0x000000010c13fc74 -[XCTestCase(Failures) performFailableBlock:testCaseRun:shouldInterruptTest:] + 57
+15 com.apple.dt.XCTest 0x000000010c13fb91 -[XCTestCase(Failures) _performTurningExceptionsIntoFailuresInterruptAfterHandling:block:] + 96
+16 com.apple.dt.XCTest 0x000000010c0e93ce __26-[XCTestCase performTest:]_block_invoke.330 + 88
+17 com.apple.dt.XCTest 0x000000010c15044b +[XCTContext runInContextForTestCase:block:] + 225
+18 com.apple.dt.XCTest 0x000000010c0e8afd -[XCTestCase performTest:] + 675
+19 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+20 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+21 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+22 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+23 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+24 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+25 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+26 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+27 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+28 com.apple.dt.XCTest 0x000000010c0e3ccb __27-[XCTestSuite performTest:]_block_invoke + 365
+29 com.apple.dt.XCTest 0x000000010c0e34a3 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 55
+30 com.apple.dt.XCTest 0x000000010c0e3766 -[XCTestSuite performTest:] + 296
+31 com.apple.dt.XCTest 0x000000010c12c1a2 -[XCTest runTest] + 57
+32 com.apple.dt.XCTest 0x000000010c15be86 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke + 171
+33 com.apple.dt.XCTest 0x000000010c15bfa7 __44-[XCTTestRunSession runTestsAndReturnError:]_block_invoke.80 + 68
+34 com.apple.dt.XCTest 0x000000010c0fbbc1 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 585
+35 com.apple.dt.XCTest 0x000000010c15bbfa -[XCTTestRunSession runTestsAndReturnError:] + 623
+36 com.apple.dt.XCTest 0x000000010c0c86b6 -[XCTestDriver runTestsAndReturnError:] + 422
+37 com.apple.dt.XCTest 0x000000010c14c9cd _XCTestMain + 1478
+38 xctest 0x000000010b79bffc main + 282
+39 libdyld.dylib 0x000000010ee9b575 start + 1
+Thread 1:
+0 libsystem-pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+Thread 2:
+0 libsystem-pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+Thread 3:
+0 libsystem-pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+Thread 4:
+0 libsystem-pthread.dylib 0x000000010f2153f8 start_wqthread + 0
+1 ??? 0x0000000054485244 0 + 1414025796
+Thread 0 crashed with X86 Thread State (64-bit):
+ rax: 0x0000000000000001 rbx: 0x0000000123ccfc10 rcx: 0x00000000000fc080 rdx: 0x0000000000000303
+ rdi: 0x0000000121b5ea00 rsi: 0x0000000000000303 rbp: 0x00007ffee4463580 rsp: 0x00007ffee4463540
+ r8: 0x000000000000000b r9: 0x0000000000000000 r10: 0x0000000021b5000c r11: 0x000000000000000c
+ r12: 0x0000000123ccfc4a r13: 0x00007fbcb9940c20 r14: 0x0000000000000002 r15: 0x0000000000000039
+ rip: 0x00000001241506f1 rfl: 0x0000000000010206 cr2: 0x000000010bdd7000
+Logical CPU: 2
+Error Code: 0x00000000
+Trap Number: 6
+Binary Images:
+ 0x10b799000 - 0x10b79efff +xctest (14460.20) <3D9CE28B-2D93-32B5-BD37-A98435F38A0C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/xctest
+ 0x10b7a8000 - 0x10b7efe47 +dyld_sim (631.1) <C3514384-926E-3813-BF0C-69FFC704E283> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
+ 0x10b83f000 - 0x10b86aff3 +libMainThreadChecker.dylib (64460.7) <219FEDC9-84B8-3190-ABD8-7613C10BC5FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMainThreadChecker.dylib
+ 0x10ba32000 - 0x10ba68fe7 com.apple.dt.XCTAutomationSupport (1.0 - 1) <C8D5216E-9D98-3E98-A43E-B2C228663694> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework/XCTAutomationSupport
+ 0x10ba9b000 - 0x10bdb2fff com.apple.Foundation (6.9 - 1560.10) <E5391C7B-0161-33AF-A5A7-1E18DBF9041F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
+ 0x10c0c1000 - 0x10c1b5ffb com.apple.dt.XCTest (1.0 - 14460.20) <C4E3DFF5-B162-3CD5-97FC-9D5CBBEB2457> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/XCTest
+ 0x10c257000 - 0x10c9d7fef +libobjc.A.dylib (750.1) <177A61B3-9E02-3A09-9A98-C1C3C9AB7958> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
+ 0x10cb8e000 - 0x10cb8fff7 +libSystem.B.dylib (1252.200.5) <C89C657A-9BD2-3C7D-AD2E-ACF00916BF7D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libSystem.B.dylib
+ 0x10cb96000 - 0x10cf2efff com.apple.CoreFoundation (6.9 - 1560.10) <80ACDA5E-AD72-3857-AF41-395941288C21> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
+ 0x10d100000 - 0x10d776ff7 com.apple.CoreGraphics (2.0 - 1245.9.2) <3D49C8C0-B6D9-3450-8F35-FB02B8526DA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
+ 0x10d8c0000 - 0x10d8c0fff com.apple.UIKit (1.0 - 61000) <C9C0B972-5616-3213-96C3-8FD355DE0066> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit
+ 0x10d8c4000 - 0x10d910ff7 com.apple.AXRuntime (1.0.0 - 1) <69A1ECC9-1971-3173-894A-1324605A0D91> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
+ 0x10d955000 - 0x10d95dfff com.apple.IOSurface (255.1 - 255.1) <D48084CA-C076-346A-BB03-3DE7625534F8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOSurface.framework/IOSurface
+ 0x10d96f000 - 0x10d981ff7 +libz.1.dylib (70.200.4) <DF3C6C61-4967-3DA8-BF36-6D9CE3417237> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libz.1.dylib
+ 0x10d987000 - 0x10da6aff3 +libxml2.2.dylib (32.8) <5DF69C71-DC61-38BB-92EA-6A82D38DDE09> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxml2.2.dylib
+ 0x10daae000 - 0x10daaefff com.apple.Accelerate (1.11 - Accelerate 1.11) <D847D97D-AFE8-3911-8D1D-41236E7BB277> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Accelerate
+ 0x10dab2000 - 0x10de6eff7 com.apple.CFNetwork (975.0.3 - 975.0.3) <85DF0984-19CD-345A-9761-E566CAD30B03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork
+ 0x10e240000 - 0x10e28eff7 +libc++.1.dylib (400.9.4) <66B692F1-FA7E-3CBB-817A-73A7FE29A765> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib
+ 0x10e2dc000 - 0x10e2f0fff +libc++abi.dylib (400.17) <1FC319B3-5125-3D57-8ADE-8A833F45B031> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
+ 0x10e30a000 - 0x10e379ffb com.apple.framework.IOKit (2.0.2 - 1483.220.15) <E3FD5519-0FDA-36B0-A02F-0DC828A7B10F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
+ 0x10e3be000 - 0x10e3beff7 com.apple.MobileCoreServices (935.2 - 935.2) <2AC3E19F-12EA-35E3-8DA6-9B733F2D56A4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
+ 0x10e3c2000 - 0x10e3ebff3 +libarchive.2.dylib (54.200.3) <C0B8B6D6-BD0F-316D-A29C-D85A9BE01EFA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libarchive.2.dylib
+ 0x10e3f8000 - 0x10e655ff3 +libicucore.A.dylib (62108.0.2) <E7C352EC-7A39-3124-98D4-B4466F137E51> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libicucore.A.dylib
+ 0x10e756000 - 0x10e7b6ff7 com.apple.SystemConfiguration (1.17 - 1.17) <CFCB7031-2AB0-3821-8144-EABCBE368201> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
+ 0x10e7ee000 - 0x10e81fff7 +libCRFSuite.dylib (41.15.4) <F7FDED00-1849-3661-BD1D-D6CDF4625684> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCRFSuite.dylib
+ 0x10e836000 - 0x10e837fff +liblangid.dylib (128) <4FA21386-DCBF-3FC4-9807-D7D240FBFFDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblangid.dylib
+ 0x10e83c000 - 0x10e974ff7 com.apple.CoreServices (935.2 - 935.2) <C25C5CC7-7B43-35DD-851C-4C33D9B87B1C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreServices.framework/CoreServices
+ 0x10ea6f000 - 0x10ea9fffb com.apple.MobileInstallation (2.0 - 1.0) <4C6A9FE9-14A4-33C8-9A06-D904E27970CD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
+ 0x10eac8000 - 0x10eae8fff +libMobileGestalt.dylib (645.220.9) <0A4BB86C-088D-3AAF-9445-D81188ECE1DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestalt.dylib
+ 0x10eb3f000 - 0x10eb4ffff +libbsm.0.dylib (39.200.18) <EB9BBBD6-B363-38A5-9A54-D631F24AA85C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbsm.0.dylib
+ 0x10eb5a000 - 0x10ec5dfff com.apple.Security (10.0 - 58286.222.2) <A9FA11AC-AF9C-31A3-8CFE-95D9159B8B29> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Security.framework/Security
+ 0x10ed41000 - 0x10ed45ffb +libcache.dylib (81) <FDEC132D-3A69-36F8-AEAF-198512F43CA2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcache.dylib
+ 0x10ed4b000 - 0x10ed55ff7 +libcommonCrypto.dylib (60118.220.1) <0F0D3DE4-E247-35E4-A905-B92D574BECC9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcommonCrypto.dylib
+ 0x10ed64000 - 0x10ed6bff7 +libcompiler_rt.dylib (63.2) <A1CD3551-4658-3FD9-BF90-D1D77CE37B81> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcompiler_rt.dylib
+ 0x10ed75000 - 0x10ed7eff3 +libcopyfile.dylib (146.200.3) <BCC72CCC-82B6-3441-9894-2193E7EE30FC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcopyfile.dylib
+ 0x10ed85000 - 0x10ee09fc7 +libcorecrypto.dylib (602.220.6) <39BACA1B-A171-326F-911D-E68994A6E615> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcorecrypto.dylib
+ 0x10ee27000 - 0x10ee63fff +libdispatch.dylib (1008.220.2) <3A776B57-01CC-3558-80C8-1D6DAF4930E0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib
+ 0x10ee9a000 - 0x10eec5ff3 +libdyld.dylib (631.1) <CB1815CE-5E9E-35C2-B530-1FD5980839DA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdyld.dylib
+ 0x10eee7000 - 0x10eee7ff7 +liblaunch.dylib (1336.220.5) <A895554E-A2CE-3BF3-9BEE-B832CF0E2705> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/liblaunch.dylib
+ 0x10eeee000 - 0x10eef3fff +libmacho.dylib (918.1.1) <0F2D221C-F375-393D-9A28-5D173CF9C7FA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libmacho.dylib
+ 0x10eefa000 - 0x10eefbff3 +libremovefile.dylib (45.200.2) <6553373E-68F5-3854-A27E-2C28C33FE9DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libremovefile.dylib
+ 0x10ef01000 - 0x10ef17fff +libsystem-asl.dylib (356.200.4) <BA255D00-E146-339F-88DF-E8773A55C00A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-asl.dylib
+ 0x10ef26000 - 0x10ef26fff +libsystem-blocks.dylib (73) <03604E2C-1791-3C18-92BF-A2319F4AC310> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-blocks.dylib
+ 0x10ef2b000 - 0x10efafff7 +libsystem-c.dylib (1272.200.26) <B850D2C9-EB00-3525-A05B-58613C33C244> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-c.dylib
+ 0x10efdb000 - 0x10efdeff7 +libsystem-configuration.dylib (963.200.27) <068B56DC-B6D4-3F8D-ACF7-9AA05085C1B0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-configuration.dylib
+ 0x10efe5000 - 0x10efeaff3 +libsystem-containermanager.dylib (136.200.32) <EA4D94D1-E662-3292-825D-C7C492C835D2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-containermanager.dylib
+ 0x10eff2000 - 0x10eff3ffb +libsystem-coreservices.dylib (65) <9AFED38C-2158-36A2-ACB5-9229385F9C6C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-coreservices.dylib
+ 0x10eff9000 - 0x10effeffb +libsystem-darwin.dylib (1272.200.26) <5999445D-3773-3101-9CA6-5899037FDA1D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-darwin.dylib
+ 0x10f00a000 - 0x10f010ff7 +libsystem-dnssd.dylib (878.200.35) <27526F93-BBD1-314A-95BA-0D52C36DBDBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-dnssd.dylib
+ 0x10f017000 - 0x10f058ff7 +libsystem-info.dylib (517.200.9) <07391A3E-5052-35B5-A527-D21ADEDEFDFF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-info.dylib
+ 0x10f06d000 - 0x10f0b2ff3 +libsystem-m.dylib (3158.200.7) <D3ECE698-27FB-3860-A2B0-9868BED01040> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-m.dylib
+ 0x10f0be000 - 0x10f0e1ff7 +libsystem-malloc.dylib (166.220.1) <2E256A7F-BBFC-3619-AC9B-B54B7D1723D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-malloc.dylib
+ 0x10f0f3000 - 0x10f0f9fff +libsystem-notify.dylib (172.200.21) <59AC35A0-1B40-3277-95A7-99BD88DEA1BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-notify.dylib
+ 0x10f100000 - 0x10f102ff7 +libsystem-sandbox.dylib (851.220.9) <58259566-7CD3-3B66-8516-5F2B5560BEDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sandbox.dylib
+ 0x10f109000 - 0x10f10affb +libsystem-sim_kernel.dylib (193.200.9) <01F491FD-CF4F-3A51-A081-42073C2D2D3D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sim_kernel.dylib
+ 0x10f111000 - 0x10f114fe3 +libsystem-sim_platform.dylib (193.200.9) <3E3F0852-1757-34D8-881C-03BB40653D98> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sim_platform.dylib
+ 0x10f11b000 - 0x10f11bffb +libsystem-sim_pthread.dylib (193.200.9) <ED949D92-5CC0-320B-AAD1-2124C4AEB783> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sim_pthread.dylib
+ 0x10f121000 - 0x10f136ff7 +libsystem-trace.dylib (906.220.1) <29B76846-8833-3F8D-B3FF-ECB62CBD5AE1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-trace.dylib
+ 0x10f148000 - 0x10f14efff +libunwind.dylib (128.2) <3C1434B3-315E-31B8-A164-685D139706B7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libunwind.dylib
+ 0x10f155000 - 0x10f183ff7 +libxpc.dylib (1336.220.5) <F7D4B188-D5C2-3E5E-BB76-BC7C6A368166> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libxpc.dylib
+ 0x10f1ad000 - 0x10f1adff7 +libsystem-sim_pthread_host.dylib (193.200.9) <BAF49FBD-BEAB-35F7-B4F8-166AE7FC1A79> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sim_pthread_host.dylib
+ 0x10f1b2000 - 0x10f1b2ff7 +libsystem-sim_platform_host.dylib (193.200.9) <D37C3F61-4F05-387A-BB48-EA2E85599AFA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sim_platform_host.dylib
+ 0x10f1b8000 - 0x10f1b8ff7 +libsystem-sim_kernel_host.dylib (193.200.9) <01CF8A44-8C01-3401-BAE9-74FFCBA563BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem-sim_kernel_host.dylib
+ 0x10f1be000 - 0x10f1e6ff7 libsystem-kernel.dylib (4903.231.4) <ABDAABCA-C22A-3960-AA4E-E91A9FF34929> /usr/lib/system/libsystem-kernel.dylib
+ 0x10f201000 - 0x10f20afef libsystem-platform.dylib (177.200.16) <83DED753-51EC-3B8C-A98D-883A5184086B> /usr/lib/system/libsystem-platform.dylib
+ 0x10f213000 - 0x10f21dfff libsystem-pthread.dylib (330.230.1) <BA382BFC-6A17-3940-B417-D090EF2AF4F4> /usr/lib/system/libsystem-pthread.dylib
+ 0x10f228000 - 0x10f22bff3 com.apple.MobileSystemServices (1.0 - 1) <12AA79EF-C895-3893-90D0-F2F2EBAFA17E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
+ 0x10f233000 - 0x10f241ff7 +libbz2.1.0.dylib (38.200.3) <C516C541-A466-3EFE-A7CB-19524F9551DC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbz2.1.0.dylib
+ 0x10f247000 - 0x10f53dfff +libnetwork.dylib (1229.220.2) <CCEDB22A-3BA8-3F10-BA93-CA555BFA67A4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetwork.dylib
+ 0x10f60c000 - 0x10f622fff +libcoretls.dylib (155.220.1) <7ADF442D-4665-3EA6-9E33-CADDD4F1DE31> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls.dylib
+ 0x10f62f000 - 0x10f630ff3 +libcoretls_cfhelpers.dylib (155.220.1) <29F7C1A9-CAB5-3A7C-B955-B449095221A7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls_cfhelpers.dylib
+ 0x10f637000 - 0x10f64dff3 +libapple_nghttp2.dylib (1.24.1) <8018C25E-9888-35AF-9EA8-37E41E237110> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapple_nghttp2.dylib
+ 0x10f65a000 - 0x10f7ebffb +libsqlite3.dylib (274.20) <7F03A889-6A68-3B38-8DA2-2E9069461504> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libsqlite3.dylib
+ 0x10f81d000 - 0x10f835fff +liblzma.5.dylib (10.200.3) <5269A1EC-A3F4-3B24-BE3C-631F166BC858> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblzma.5.dylib
+ 0x10f83d000 - 0x11014afc7 com.apple.vImage (8.1 - ???) <D441163A-ABCB-3174-8073-369860BC48EA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
+ 0x1101e4000 - 0x1101e4fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <520D399E-9ECC-30AC-9B10-2DD1673CEF7C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
+ 0x1101e8000 - 0x1101fffdf +libcompression.dylib (52.200.13) <0B0852CE-DF8E-35C0-83EA-6F544CFA8570> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcompression.dylib
+ 0x110208000 - 0x11035cfe7 +libvMisc.dylib (671.220.1) <6C5EB649-5935-3F7D-8A3A-FDBB70880D03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
+ 0x11037a000 - 0x110506fc7 +libvDSP.dylib (671.220.1) <33A1FE80-E4C1-307E-ACC5-7337A217A96A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
+ 0x110518000 - 0x1106c2fe3 +libBLAS.dylib (1243.200.4) <5C5DA326-EEA6-3D71-BCAD-9D3771CA8DBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
+ 0x1106ea000 - 0x1106ffffb +libLinearAlgebra.dylib (1243.200.4) <482268F6-F714-3CBE-9ED6-0059B47A54CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
+ 0x110709000 - 0x11071bff7 +libSparseBLAS.dylib (1243.200.4) <D397BAED-FBC0-3B32-AE5A-00CA1FD482CA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
+ 0x110724000 - 0x110729ff3 +libQuadrature.dylib (3.200.2) <8AE027FE-E7F0-3610-BB1F-AE3250958EB7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
+ 0x11072e000 - 0x110771fff +libBNNS.dylib (38.200.5) <A2E92A24-8B74-3EA5-AD68-51094B6E259E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
+ 0x11077c000 - 0x1107e5ffb +libSparse.dylib (79.200.5) <C7E0F322-FC6F-3F90-A2A6-72672300EFA1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
+ 0x1107fe000 - 0x110808ff3 com.apple.mobileicons.framework (1.0 - 372.0) <08EEF7C1-157E-3B56-998B-4C13E867F2C3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
+ 0x110816000 - 0x11081afff com.apple.AggregateDictionary (1.0 - 1) <3960792E-2200-30F6-A37D-DC272A1B04CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
+ 0x110823000 - 0x110826ff3 com.apple.iphonesimulator.SimulatorClient (1.0 - 1) <6C09A210-ACB9-3124-BE51-4F4BF5F3F68D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient
+ 0x11082c000 - 0x11082cffb com.apple.FontServices (1.0 - 1) <B6F60DA6-68A9-3596-9C18-00AF9CFF665A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/FontServices
+ 0x110835000 - 0x1108b3a67 dyld (640.2) <289AB27E-F09F-3384-A14A-100431139559> /usr/lib/dyld
+ 0x110916000 - 0x110cd0fff +libLAPACK.dylib (1243.200.4) <60909267-BF6C-3A84-B2D3-E4F105EA4B85> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
+ 0x110d1b000 - 0x110d74fff com.apple.DocumentManager (1.0 - 68.100.38) <2EF7D401-05E4-3AC1-BF8A-F3700661BC6A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
+ 0x110dcf000 - 0x110e69fff com.apple.FileProvider (125.129 - 125.129) <164D635D-90FE-3D4A-993D-AF57F9389CC0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/FileProvider.framework/FileProvider
+ 0x110ef2000 - 0x1120fdfff com.apple.UIKitCore (1.0 - 61000) <2DB941E0-513E-3750-9278-C8AFB85CB3C0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
+ 0x1131ab000 - 0x113389ff7 com.apple.QuartzCore (1.11 - 694.22.1.6) <1C11452D-6857-37DB-B9D8-12EB530D3F16> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuartzCore.framework/QuartzCore
+ 0x11347c000 - 0x11350dfff com.apple.Network (1.0 - 1) <F5F22EC3-AF5E-399E-9076-B5630B0ABE40> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Network.framework/Network
+ 0x113573000 - 0x113586ff7 com.apple.DocumentManagerCore (1.0 - 68.100.38) <7416B803-80F0-39A2-9550-D2C1931DE291> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
+ 0x11359f000 - 0x1135c1ff7 com.apple.pluginkit.framework (1.0 - 1) <3FB71003-F4EF-3882-AC88-CFB373FD4AD2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
+ 0x1135dc000 - 0x113887fff com.apple.CoreImage (12.1.0 - 710.5.130) <C9DCA591-0770-3D5F-A632-BFB6D3663020> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreImage.framework/CoreImage
+ 0x113a6e000 - 0x113b2dff7 com.apple.CoreUI (1.0 - 498.40.1) <9E628C81-0C8F-3E83-903B-BE10A5C419C6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
+ 0x113ca6000 - 0x1141d0ff7 com.apple.ImageIO.framework (3.3.0 - 1821.6) <B834CEF0-9EF0-3ADA-97D0-283EA9CDF6F6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageIO.framework/ImageIO
+ 0x1142ff000 - 0x1144c2ff7 +libFosl_dynamic.dylib (18.3.2) <76F7EEE0-2A10-3E6A-AD17-14926C3CD127> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libFosl_dynamic.dylib
+ 0x114513000 - 0x1145adff7 com.apple.ColorSync (4.13.0 - 3340) <165F5162-80BE-3C28-88A5-3330B584F7FB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
+ 0x1145e1000 - 0x114682ff7 com.apple.CoreMedia (1.0 - 2282.19.101.7) <22D2DC51-028C-392B-B66F-F03DDD56A514> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMedia.framework/CoreMedia
+ 0x114730000 - 0x114a0fff7 com.apple.VideoToolbox (1.0 - 2282.19.101.7) <0102BFA9-431F-3DC4-9F3D-E5A6F27EF39A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
+ 0x114aaa000 - 0x114ab9ff7 com.apple.GraphVisualizer (1.0 - 5) <9135435B-B508-3C4A-AB75-61974D5CFEF4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
+ 0x114ac6000 - 0x114c2afff com.apple.CoreText (352.0 - 584.25) <27CABD47-E94C-38BF-BCF0-D4EE6AD4687E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreText.framework/CoreText
+ 0x114cfb000 - 0x114d07ffb com.apple.opengles (17.0.37 - 17.0.37) <BE9C2E83-58C8-3355-A2F1-03BF855E88AA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/OpenGLES
+ 0x114d15000 - 0x114d37ff7 com.apple.CoreVideo (1.8 - 0.0) <34B3E453-1310-3A47-A5E7-89A59819F2E3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreVideo.framework/CoreVideo
+ 0x114d53000 - 0x115177fff com.apple.vision.FaceCore (3.1.12 - 3.1.12) <C980B17C-0372-3F81-96D4-E6B0A0B0F901> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
+ 0x115380000 - 0x115409fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <BFE53F80-33A4-3908-AC4B-B1C1C570214F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreAudio.framework/CoreAudio
+ 0x115439000 - 0x11544cfff com.apple.GraphicsServices (1.0 - 1.0) <A722D77D-1EBC-3B24-8924-CFB22993FCF6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
+ 0x115467000 - 0x115478fff +libGSFontCache.dylib (126.13.1) <C2F432AF-A8CF-39AD-B6D6-06289A3FFEBF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
+ 0x115734000 - 0x11582fffb com.apple.UIFoundation (1.0 - 552.1) <2D96A110-37B9-3FE3-B8D3-52608FF10199> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
+ 0x1158dd000 - 0x1158f1ff3 +libAccessibility.dylib (2402.39.4) <2997C325-EC38-39BF-8B64-CF010668A260> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAccessibility.dylib
+ 0x11591a000 - 0x11596fffb com.apple.OTSVG (1.0 - ???) <5D9708E0-3C57-3D79-961C-31A650EDA3D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
+ 0x1159e4000 - 0x115af1fff +libFontParser.dylib (228.6) <D5A4AE41-9280-3F1E-A192-8E331F31BE91> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
+ 0x115bce000 - 0x115c9affb com.apple.TextureIO (3.8.4 - 3.8.1) <E5BB2B7C-831A-3DE9-9AEE-BB1EBB5F3117> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
+ 0x115cc4000 - 0x115d53ff7 com.apple.Metal (157.58 - 157.58) <DAF30C29-4D2D-3DCC-BAB6-A0C3B94F829C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal
+ 0x115e52000 - 0x115f4dfcf +libate.dylib (1.13.8) <308B9771-3261-31E6-9A66-FFC9C07ED37F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libate.dylib
+ 0x115f60000 - 0x115fa9ff7 com.apple.AppleJPEG (1.0 - 1) <B5404758-BDE1-3426-ACBC-92EA7FF859F5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
+ 0x115fb8000 - 0x115fbdff3 +libCoreFSCache.dylib (163.22) <98CE7205-9658-35E9-98A2-BCCA66105D7F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
+ 0x115fc3000 - 0x115fccfff +libGFXShared.dylib (17.0.37) <ABAD1389-7CFD-3A0C-BA45-A7B75B46DA0B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
+ 0x115fd5000 - 0x116018ff7 +libGLImage.dylib (17.0.37) <ACB64D7A-D576-31BC-B968-10D7CF8D22C9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
+ 0x116024000 - 0x116026fff +libCVMSPluginSupport.dylib (17.0.37) <78F61638-1C00-3EC2-9F14-DCC5E1896010> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
+ 0x11602d000 - 0x116035fff +libCoreVMClient.dylib (163.22) <98F4AF7D-E8C2-38AE-9F8C-4B10894FC638> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
+ 0x11603e000 - 0x116d0afbf +libLLVMContainer.dylib (602.2.46) <7A937FC9-2837-3BAD-BA62-27E3141233BD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
+ 0x11709e000 - 0x1170a8fff com.apple.accessibility.AXCoreUtilities (1.0 - 1) <4B7ADEA0-403F-3689-8E76-8296340A9F1C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
+ 0x1170c1000 - 0x1170cbfff com.apple.MediaAccessibility (1.0 - 114.4) <329E49E8-0E2F-3A6D-BFD6-47090224F556> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
+ 0x1170dc000 - 0x1170e1ffb com.apple.ConstantClasses (1.0 - 1) <B860AFA6-E094-37F2-AE87-32FFF0DA900A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
+ 0x1170ec000 - 0x117114ff7 com.apple.applesauce (1.0 - ???) <EEA5D419-DA7A-3BF0-93CC-1D9319B425D9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
+ 0x117121000 - 0x117124ff7 com.apple.dt.XCTTargetBootstrap (1.0 - 1) <43AF29EC-FB68-37E0-8148-46E45D7E7240> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
+ 0x11712d000 - 0x1172bdff7 com.apple.WebKitLegacy (8606 - 8606.2.104.0.1) <D8EB9F73-F18F-38A2-BC27-777C1BDC10FB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
+ 0x117423000 - 0x117e7cfff com.apple.JavaScriptCore (8606 - 8606.2.104.0.1) <93BA607A-EB69-333A-8438-B99D1C1D99C7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
+ 0x118133000 - 0x118166ffb com.apple.UserNotifications (1.0 - ???) <D919C535-7CF7-33D1-90A4-878DB5EA53A3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UserNotifications.framework/UserNotifications
+ 0x1181a1000 - 0x1181e3fff com.apple.AppSupport (1.0.0 - 29) <87E7AF00-CAE8-3F40-901C-ACAD3084025C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
+ 0x118229000 - 0x11823fffb com.apple.AssertionServices (1.0 - 1) <713132B9-682B-3EAE-A2C9-C5C921E2B941> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
+ 0x118267000 - 0x1182a1ff7 com.apple.BackBoardServices (1.0 - 1.0) <BDEDF1A2-9A19-3BFB-9247-0E27D300D910> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
+ 0x1182e9000 - 0x118359ff3 com.apple.BaseBoard (360.25 - 360.25) <29A64509-A632-3034-93B8-74EAD0A92056> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
+ 0x1183da000 - 0x118444ff3 com.apple.FrontBoardServices (486.50 - 486.50) <225E33DD-620C-345E-B4A7-82CEEFD0AFD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
+ 0x1184cc000 - 0x1184e5fff com.apple.MobileAssets (1.0 - 437.200.49) <7E7CB819-3BD3-3484-9B86-94DE4B5E8443> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
+ 0x118503000 - 0x11855bfff com.apple.PhysicsKit (1.0 - 1) <3BE90189-439A-3713-94DB-90D90141FE62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
+ 0x118590000 - 0x118675ff7 com.apple.ProofReader (2.4 - 430) <94F2E312-CF41-366B-89B9-9885A75EE3BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
+ 0x1186d0000 - 0x1186ecfff com.apple.PrototypeTools (1.0 - 1) <C694AEF8-FA9F-3FD7-B8F9-2A1320DA16E2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
+ 0x118710000 - 0x11877afff com.apple.TextInput (1.0 - 1.0) <1401B845-A529-3E44-9CCF-88FE37DC2949> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInput.framework/TextInput
+ 0x118807000 - 0x118811fff com.apple.UIKitServices (1.0 - 1) <825158C6-20EF-36ED-87C0-30751D0E1221> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
+ 0x118823000 - 0x11a202ff7 com.apple.WebCore (8606 - 8606.2.104.0.1) <F7C26DD0-24C4-3900-8212-34E6D3D00600> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/WebCore
+ 0x11b11e000 - 0x11b6adff7 +libwebrtc.dylib (7606.2.104.0.1) <6E94BBF0-2CA6-3A65-9138-948F3E8663BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
+ 0x11b89f000 - 0x11b8a5fff com.apple.URLFormatting (59 - 59.34) <39669D5B-4408-38C2-AD6C-9162126ABCBA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
+ 0x11b8af000 - 0x11bdb2fff com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <2B73D26C-6EC1-358B-A237-40E097692113> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
+ 0x11bfd6000 - 0x11bfdefff com.apple.CorePhoneNumbers (1.0 - 1) <F15C5286-11D0-3322-A08D-0A9FCCBA7520> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
+ 0x11bfe7000 - 0x11bff1fff +libAudioStatistics.dylib (975.63.7) <4A7AA980-C1DE-3875-83B3-4599EB659C41> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioStatistics.dylib
+ 0x11bffe000 - 0x11c01cfff com.apple.ProtocolBuffer (1 - 263) <D250A0B4-1F3B-34C3-9298-42874CBCAAC5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
+ 0x11c03e000 - 0x11c082ff7 com.apple.awd (1.0 - 930.11) <64B5BED6-B817-36BB-A160-AE5DE425F92B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
+ 0x11c0b6000 - 0x11c0bfff7 com.apple.RTCReporting (9.36.3 - 9.36.3) <6A5C80D4-D224-3C9A-A9D9-7E805A087DE1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
+ 0x11c0ce000 - 0x11c113ffb com.apple.SpringBoardServices (1.0 - 1.0) <0964FDEA-C43A-3846-8FD4-0D36EC46874E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
+ 0x11c173000 - 0x11c17afff com.apple.TCC (1.0 - 1) <07FF734B-6315-3AA4-B3FC-12B45BAD0596> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TCC.framework/TCC
+ 0x11c186000 - 0x11c293ff7 +libAWDSupportFramework.dylib (886) <719C4BE7-546A-344B-9982-E56D97D51A5E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupportFramework.dylib
+ 0x11c3d0000 - 0x11c3e1fff +libprotobuf-lite.dylib (886) <57072992-4776-369A-B995-C74E8527E2F2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf-lite.dylib
+ 0x11c3fc000 - 0x11c43aff7 +libTelephonyUtilDynamic.dylib (3609) <EE26D1AE-F4DD-3396-A365-52C9B1940763> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libTelephonyUtilDynamic.dylib
+ 0x11c486000 - 0x11c4e7fff +libprotobuf.dylib (886) <FF07CC48-1959-31F7-A594-72C1D45329D7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf.dylib
+ 0x11c54a000 - 0x11c589ff3 com.apple.StreamingZip (1.0 - 1) <E776DE14-15C0-3960-9BE2-DA745A2B14B0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
+ 0x11c5aa000 - 0x11c5ebfff com.apple.Lexicon-framework (1.0 - 33.15.10) <EE165A54-341A-3FD7-8C4C-B6A1DF5ABEF3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
+ 0x11c5fe000 - 0x11c6f3ff7 com.apple.LanguageModeling (1.0 - 159.15.15) <78D15BEA-EF26-3456-BDAC-E605CDA9120D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
+ 0x11c727000 - 0x11c72bfff com.apple.LinguisticData (1.0 - 238.15.29) <1A88A642-2206-39E8-9680-95DCC8FA92A6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
+ 0x11c732000 - 0x11c746fff com.apple.CoreEmoji (1.0 - 69.19.8) <F923F70E-3E75-38F0-8A5A-C928113E4328> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
+ 0x11c762000 - 0x11c772ffb +libcmph.dylib (6.15.1) <DACE2655-FB1D-3DDE-9146-4ADEEDA93C0B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcmph.dylib
+ 0x11c77c000 - 0x11c86dff7 +libiconv.2.dylib (51.200.6) <114D034A-F142-3FDB-84DD-1626454F9721> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libiconv.2.dylib
+ 0x11c880000 - 0x11c880ff3 +libcharset.1.dylib (51.200.6) <2100DE83-9FAD-3C53-8703-0B5F2272797C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcharset.1.dylib
+ 0x11c885000 - 0x11c8e6ff7 com.apple.CoreNLP (1.0 - 130.15.22) <D14F9B33-553B-360C-9E17-3ECB057C112E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
+ 0x11c93d000 - 0x11ca00fff +libmecab_em.dylib (779.19.2) <446870E7-EE93-3348-9800-A61FF61F2A59> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecab_em.dylib
+ 0x11ca29000 - 0x11ca2effb +libgermantok.dylib (17.15.2) <3C04227A-D188-3ECA-957D-F680DAE6F9FD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libgermantok.dylib
+ 0x11ca34000 - 0x11ca35fff +libThaiTokenizer.dylib (2.2) <5CE6E4AE-27C9-348B-B753-3CDF6793493A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libThaiTokenizer.dylib
+ 0x11ca3b000 - 0x11ca44fff +libChineseTokenizer.dylib (28.15.3) <B0E86858-3730-36E5-9949-30302ED84504> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libChineseTokenizer.dylib
+ 0x11ca52000 - 0x11cab2ff7 com.apple.Accounts (113 - 113) <F6C35489-527C-350B-BF34-D145AB482D09> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accounts.framework/Accounts
+ 0x11cb11000 - 0x11cc24ffb com.apple.AppleAccount (1.0 - 1.0) <438BAB35-2E67-32CA-935B-170EB4527B1D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
+ 0x11cc9a000 - 0x11d017ff3 +CoreData (866.2) <BCD8F5B4-2D10-35CC-BFCD-27E13019809B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreData.framework/CoreData
+ 0x11d246000 - 0x11d349ff3 com.apple.managedconfiguration (1.0 - 1.0) <DE4CA360-A889-30BE-8D53-FF49E3FA977E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
+ 0x11d44b000 - 0x11d469ffb com.apple.SetupAssistant (1.0 - 1) <1A28FF21-EFC0-36BD-9DB8-5760C5A0A805> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
+ 0x11d48d000 - 0x11d491ff3 com.apple.AppleIDSSOAuthentication (1.0 - 1) <C5BDE50E-612B-38D4-AD9F-64AFA2F2A6AD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
+ 0x11d49b000 - 0x11d4b3ffb com.apple.aps.framework (4.0 - 4.0) <7736AF7B-0865-3C5E-A8E5-AC36F581D91D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
+ 0x11d4d3000 - 0x11d526ffb com.apple.AuthKit (1.0 - 1) <32D9FAF0-7D07-3437-992E-C26CEFD0266C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
+ 0x11d57f000 - 0x11d5f8fff com.apple.corelocation (2245.8.12) <9C97832D-FE0E-35E5-819E-935E829CEA43> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocation.framework/CoreLocation
+ 0x11d630000 - 0x11d860ff7 +StoreServices (1445.1.2) <A057B571-8B50-3687-94FB-00753FFA0527> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
+ 0x11daa0000 - 0x11daa8fff com.apple.datamigration (1.0 - 1.0) <24C673CA-787F-3B68-914C-9D7204D0A053> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
+ 0x11dab7000 - 0x11dae2ffb com.apple.persistentconnection (1.0 - 1.0) <BC3450C1-5EA7-3A15-AE16-5688702E4A98> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
+ 0x11db11000 - 0x11dbf5ff7 com.apple.CoreTelephony (113 - 6530.3) <E20C9CCB-64E4-3BB0-8A86-C21E82DEE741> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
+ 0x11dcd4000 - 0x11dceafff com.apple.commonutilities (8.0 - 900) <4D66C635-DA70-3D76-8D4E-25B88D137887> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
+ 0x11dd02000 - 0x11dd34ff3 com.apple.bom (14.0 - 197) <5EB2C083-0C60-34EC-839E-8C8AEE2E6692> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Bom.framework/Bom
+ 0x11dd49000 - 0x11dd4fff7 +libcupolicy.dylib (6530.3) <3D3FEC07-601C-3473-A1AC-2C7E2CAD76EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcupolicy.dylib
+ 0x11dd58000 - 0x11dd5dfff com.apple.CoreTime (258) <9A1632D1-44F6-3131-824B-F0549B99E6CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
+ 0x11dd66000 - 0x11debdfff com.apple.CoreUtils (5.7.4 - 574.17) <5211FE27-DF72-3D85-9461-7C4D37F1C280> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
+ 0x11dfc1000 - 0x11dfccfff com.apple.AppleIDAuthSupport (1.0 - 1) <212F8EBA-7E74-3519-BC6D-7C24E3489C5B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
+ 0x11dfdb000 - 0x11dfdbfff com.apple.PhoneNumbers (1.0 - 1) <611F7564-2ECB-378E-B12C-6352D56C89B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
+ 0x11dfe0000 - 0x11e037fc9 com.apple.ROCKit (24 - 24) <AA863EF6-7DAF-3338-95BF-ED085B4833DF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
+ 0x11e06d000 - 0x11e09dfff com.apple.CoreBluetooth (1.0 - 1) <F5121429-8CA8-3C93-A830-323C99370B67> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
+ 0x11e0c9000 - 0x11e165fff com.apple.accounts.AccountsDaemon (113 - 113) <88B3E208-E466-3709-9BF5-CECE9EAF966D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
+ 0x11e1c4000 - 0x11e1edffb com.apple.GSS (4.0 - 2.0) <E654E7DE-CEEA-3B8F-BB39-B97FD172B255> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/GSS.framework/GSS
+ 0x11e20e000 - 0x11e210fff com.apple.OAuth (25 - 25) <48573CC6-DA10-35B4-8B09-9D3A3D49D636> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OAuth.framework/OAuth
+ 0x11e218000 - 0x11e21dff7 +libheimdal-asn1.dylib (520.220.2) <C7DB06CA-BAB2-37EE-B2F0-09AF463E8E62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libheimdal-asn1.dylib
+ 0x11e225000 - 0x11e293ff3 com.apple.Heimdal (4.0 - 2.0) <9A1F900F-4998-3663-92F1-5E575C9C9315> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
+ 0x11e2cb000 - 0x11e2e3ff3 +libresolv.9.dylib (65.200.2) <3F1E98D8-B446-393E-B8AC-6035BFBF50BA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libresolv.9.dylib
+ 0x11e2ef000 - 0x11e2f1ff7 com.apple.CommonAuth (4.0 - 2.0) <50A19C6E-D9AB-3F78-A5D3-BC9E38BC6A66> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
+ 0x11e2f7000 - 0x11ed30ff7 com.apple.GeoServices (1.0 - 1364.31.8.31.5) <EDDCFFFA-A3D0-3EFD-99BE-3D439BDC0E1F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
+ 0x11f4cd000 - 0x11f51cffb +CoreLocationProtobuf (25.0.5) <F76F521D-3FD9-36E9-920E-ABD69DBCE474> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
+ 0x11f570000 - 0x11f58ffff com.apple.CacheDelete (1.0 - 1) <298872CA-8DDA-38D7-8B10-1EEEC8055DE9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
+ 0x11f5a9000 - 0x11f66effb com.apple.AppleMediaServices (1.0 - 1) <EAFA3488-9A70-3749-B7BA-CBAD2D9B68E4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
+ 0x11f724000 - 0x11f7a5ff7 com.apple.CoreSymbolication (10.1 - 64460.6) <983AF6C8-CA8E-3EAF-847C-241A1875B0C5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
+ 0x11f7f9000 - 0x11f821ff3 com.apple.dt.instruments.DTXConnectionServices (10.1 - 64460.15) <D08DA8FB-9541-3F3E-A983-32778FA911A0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/Developer/Library/PrivateFrameworks/DTXConnectionServices.framework/DTXConnectionServices
+ 0x11f845000 - 0x11f956ffb com.apple.AssistantServices (1.0 - 1) <B4821037-D216-332A-8D05-A6713698DA78> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
+ 0x11fa86000 - 0x11faeeff7 com.apple.SAObjects (1.0 - 1) <C1F82847-65B2-33C3-9FBD-3F4E991EB846> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
+ 0x11fdda000 - 0x11ffb2fff com.apple.MediaRemote (1.0 - 1) <D3375730-A485-3B85-9B52-F66312C6B382> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
+ 0x120183000 - 0x12046bff7 com.apple.Intents (1.0 - 1) <F28ED5E5-99ED-34E3-AEDF-F148907A20BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Intents.framework/Intents
+ 0x120776000 - 0x1207b6fff com.apple.voiceservices (1.0.0 - 1.0) <4DD1062F-A044-3F78-BB80-C77083DD12BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
+ 0x1207fe000 - 0x12080fff7 com.apple.RemoteTextInput (1.0 - 1) <D0DDAB60-4B67-3B12-9E44-66CD203D5C79> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
+ 0x120827000 - 0x12084dff3 com.apple.MediaServices (1.0 - 1) <B7CEDEDD-5E4C-305A-9609-15FAF761D317> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
+ 0x120880000 - 0x120887fff com.apple.IntentsFoundation (1.0 - 1) <596EB7A3-4320-3EA1-9250-4BC0D784814C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
+ 0x120894000 - 0x120d2ffff com.apple.siri.tts.SiriTTS (217 - 217) <C2A8A8E8-8D3C-326A-8BF6-F695D2A00E06> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
+ 0x120ea0000 - 0x121099ff7 com.apple.avfoundation (2.0 - 1542.10.101.1) <CF3D1D57-11DB-3FE2-8993-2A62FE7AB5BA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/AVFoundation
+ 0x12131c000 - 0x12140dfff com.apple.audio.AVFAudio (1.0 - ???) <F69CB0FD-A21C-3912-A8F7-7916CF9E6F75> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
+ 0x1214a8000 - 0x1214acff3 com.apple.InternationalSupport (1.0 - 10.15.6) <BF459CDC-62A8-393B-A9D9-F47FF638B9D9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
+ 0x1214b4000 - 0x1218cffff com.apple.MediaToolbox (1.0 - 2282.19.101.7) <3D297362-A0FA-31CD-9C64-3EE8C94FFF52> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
+ 0x121ab1000 - 0x121aeefff com.apple.Celestial (1.0 - 2282.19.101.7) <877EF146-D657-3803-BD71-43A706858527> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Celestial.framework/Celestial
+ 0x121fdd000 - 0x121fe0fff +libswiftCoreFoundation.dylib (4.2.1 - 1000.11.42) <1D51CFE8-686A-3FD1-A291-5E5F52CB5223> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreFoundation.dylib
+ 0x121fe7000 - 0x121fecff3 +libswiftCoreImage.dylib (4.2.1 - 1000.11.42) <4528C2AC-D12B-3333-93D9-A2B0E8727F0F> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreImage.dylib
+ 0x123ca9000 - 0x123cd1ff7 +benasher44.ShapeSwiftTests (1.0 - 1) <91475D17-58C7-3620-93D6-68F662CAFFB2> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/ShapeSwiftTests
+ 0x123d2e000 - 0x123da2fff +org.cocoapods.proj4 (4.9.2 - 1) <92C77003-245C-3D0F-99B8-5A86C94C3A62> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/proj4.framework/proj4
+ 0x123e1b000 - 0x123e61ff7 +benasher44.ShapeSwift (1.0 - 1) <AC62419D-9ACE-3C85-9B9F-BE28EA9DDC42> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwift.framework/ShapeSwift
+ 0x123f24000 - 0x1242b8ff7 +libswiftCore.dylib (4.2.1 - 1000.11.42) <9C38414B-9FC9-3FF1-97A7-FB44E0142697> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCore.dylib
+ 0x12458c000 - 0x12459bff7 +libswiftCoreGraphics.dylib (4.2.1 - 1000.11.42) <5C09D4EB-4B1B-3FB5-9A12-871F703CD1A6> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreGraphics.dylib
+ 0x1245c0000 - 0x1245c8fff +libswiftDarwin.dylib (4.2.1 - 1000.11.42) <85312021-037C-3388-B47E-C85D298DF9FA> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftDarwin.dylib
+ 0x1245db000 - 0x1245f4ff7 +libswiftDispatch.dylib (4.2.1 - 1000.11.42) <AA06D4E5-A8B0-3521-A49B-3868DBAB3AA4> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftDispatch.dylib
+ 0x124633000 - 0x124798ff7 +libswiftFoundation.dylib (4.2.1 - 1000.11.42) <7CE8FB63-5122-3915-B044-9F2E1AD8CD5E> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftFoundation.dylib
+ 0x124931000 - 0x124937ff7 +libswiftMetal.dylib (4.2.1 - 1000.11.42) <99370D27-ABDB-3412-8732-FA556444050A> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftMetal.dylib
+ 0x124942000 - 0x124946fff +libswiftObjectiveC.dylib (4.2.1 - 1000.11.42) <88AE710D-FAA8-3C54-B3D7-97592D882083> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftObjectiveC.dylib
+ 0x124951000 - 0x124956ff7 +libswiftQuartzCore.dylib (4.2.1 - 1000.11.42) <D5B0A586-0599-3FD2-AC87-50121E3BFBF0> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftQuartzCore.dylib
+ 0x12495f000 - 0x12498dfff +libswiftSwiftOnoneSupport.dylib (4.2.1 - 1000.11.42) <3C4CF49D-BE6E-3E5C-AE9C-E05D34E7D024> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib
+ 0x1249c4000 - 0x1249d3fff +libswiftUIKit.dylib (4.2.1 - 1000.11.42) <40D34A72-4CAC-3632-80D5-D712E08D9105> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftUIKit.dylib
+ 0x1249f2000 - 0x124a04fff +libswiftXCTest.dylib (4.2.1 - 1000.11.42) <35367E1A-486A-3608-B263-725F5E45152C> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftXCTest.dylib
+ 0x124a11000 - 0x124a17fff +libswiftos.dylib (4.2.1 - 1000.11.42) <D969B620-D9DE-34E3-BBD2-14E055F53164> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftos.dylib
+ 0x124a23000 - 0x124a2aff7 +libswiftCoreMedia.dylib (4.2.1 - 1000.11.42) <0FC53ACF-EAC2-36A2-BA97-BFE9D3A93F74> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreMedia.dylib
+ 0x124a36000 - 0x124a3dff7 +libswiftCoreAudio.dylib (4.2.1 - 1000.11.42) <5F6C438E-D590-3BC5-A4E2-EEFBA33E23C7> /Users/USER/Library/Developer/Xcode/DerivedData/ShapeSwift-havdtlrbkesbjketbaagvnlqtpbj/Build/Products/Debug-iphonesimulator/ShapeSwiftTests.xctest/Frameworks/libswiftCoreAudio.dylib
+External Modification Summary:
+ Calls made by other processes targeting this process:
+ task_for_pid: 0
+ thread_create: 0
+ thread_set_state: 0
+ Calls made by this process:
+ task_for_pid: 0
+ thread_create: 0
+ thread_set_state: 0
+ Calls made by all processes on this machine:
+ task_for_pid: 18223
+ thread_create: 0
+ thread_set_state: 0
+VM Region Summary:
+ReadOnly portion of Libraries: Total=332.4M resident=0K(0%) swapped_out_or_unallocated=332.4M(100%)
+Writable regions: Total=96.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=96.0M(100%)
+ VIRTUAL REGION
+REGION TYPE SIZE COUNT (non-coalesced)
+=========== ======= =======
+Activity Tracing 256K 2
+Dispatch continuations 2048K 2
+Kernel Alloc Once 8K 2
+MALLOC 80.5M 12
+MALLOC guard page 16K 4
+STACK GUARD 56.0M 6
+Stack 10.0M 6
+__DATA 36.3M 309
+__DATA_DIRTY 16K 4
+__FONT_DATA 4K 2
+__LINKEDIT 100.8M 248
+__LLVM_COV 176K 4
+__TEXT 231.6M 243
+__UNICODE 564K 2
+mapped file 26.4M 4
+shared memory 24K 4
+=========== ======= =======
+TOTAL 544.7M 838
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spec/junit_generator_spec.rb b/spec/junit_generator_spec.rb
index 34c84cf..78ed87d 100644
--- a/spec/junit_generator_spec.rb
+++ b/spec/junit_generator_spec.rb
@@ -23,5 +23,11 @@
junit = File.read("spec/fixtures/Valid2-x.junit")
expect(tp.to_junit).to eq(junit)
end
+
+ it "includes .crash test attachments" do
+ tp = Trainer::TestParser.new("spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.plist", { include_crash_trace: true })
+ junit = File.read("spec/fixtures/Test-ShapeSwift.xcresult/TestSummaries.xml")
+ expect(tp.to_junit).to eq(junit)
+ end
end
end