UIWebView/WKWebView crash on iOS11 (ran out of executable memory)

Loading some web pages using UIWebView and WKWebView on iOS 11 causing crash with reason "Ran out of executable memory while allocating 128 bytes". The screenshot shows the full stack trace. It seems to be a problem with Webkit's Javascript engine. There was no such a problem on iOS 10 and earlier. So it's new on iOS 11. No problem on Simulator. Only on real device.


Here is a screenshot with the full stack trace: https://i.stack.imgur.com/Ht2Dm.png


Here is the source code which I test on iPhone 6s running iOS 11: http://github.com/msencenb/UIWebView-Example


To run the example on iPhone you need to:

1. Set your developer certificate

2. In Build settings set Architectures to Standard

3. Add the following lines in your Info.plist:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key> <true/>
</dict>


To reproduce the crash in SimpleBrowserViewController.m -> viewDidLoad change the URL from google to https://wstream.video/mobi/iu94ezdbr6h4.

If you need more URLs which cause crash let me know.

Accepted Reply

To solve this you can set the following environment variable to disable the buggy JIT in iOS 11:

setenv("JSC_useJIT", "false", 0);

Replies

Two things:

  • If your aim is to report this as a bug, you should do that via Apple Bug Reporter. Please post your bug number, just for the record.

  • If you’re looking for a workaround my first recommendation is that you switch to

    WKWebView
    . While
    UIWebView
    has not been formally deprecated, it’s clear that
    WKWebView
    is the future of web views on Apple’s platforms.

Let us know if the problem persists with

WKWebView
(which is quite possible) and we can take things from there.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Thank you for the instructions. Just submitted bug report number 35350502.

Have the same problem, thousands of users crashed with UIWebView on iOS 11 "Ran out of executable memory while allocating 128 bytes".Just submitted bug report number 35353929. 😟

Hi Eskimo,


sorry for the late response.


Here is an update:

1. Yes, the problem persists with WKWebView too.

2. I received a reply to my bug report from Apple mentioning it's a duplicate. It seems someone already reported this.


Hopefully it will be fixed soon.

Thanks for the update. One question. You wrote:

1. Yes, the problem persists with WKWebView too.

In that case does your app crash? Or the process running the web view?

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

After testing with WKWebView,app crashed too.

After testing with WKWebView, app crashed too.

Curious. Please post a crash report for that crash. This involves running your app outside of Xcode and then getting the crash report as described in Technote 2151 Understanding and Analyzing iOS Application Crash Reports.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Hello Eskimo, I just replaced UIWebView with WKWebView in the sample app which I wrote in my first post.

Here is the crash report:

Incident Identifier: CB90DCAA-1CF3-4AF6-98CA-B585D236A276
CrashReporter Key:   28e84640a144d36f1950e1bdd18cbbc40bcdfa25
Hardware Model:      iPhone8,1
Process:             SimpleWebBrowser [414]
Path:                /private/var/containers/Bundle/Application/9BC36792-FA9B-4959-B5AA-2146A5FC1813/SimpleWebBrowser.app/SimpleWebBrowser
Identifier:          matt.sencenbaugh.SimpleWebBrowser
Version:             1.0 (1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           matt.sencenbaugh.SimpleWebBrowser [481]


Date/Time:           2017-11-18 15:31:52.1604 +0200
Launch Time:         2017-11-18 15:31:50.9344 +0200
OS Version:          iPhone OS 11.2 (15C5110b)
Baseband Version:    4.30.02
Report Version:      104

Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x000000018be52e98
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [0]
Triggered by Thread:  15

Filtered syslog:
None found

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib            0x0000000184a8b568 mach_msg_trap + 8
1   libsystem_kernel.dylib            0x0000000184a8b3e0 mach_msg + 72
2   CoreFoundation                    0x0000000184f42308 __CFRunLoopServiceMachPort + 196
3   CoreFoundation                    0x0000000184f3fed4 __CFRunLoopRun + 1424
4   CoreFoundation                    0x0000000184e5fe58 CFRunLoopRunSpecific + 436
5   GraphicsServices                  0x0000000186d2cf84 GSEventRunModal + 100
6   UIKit                             0x000000018e5008c8 UIApplicationMain + 236
7   SimpleWebBrowser                  0x00000001040abf7c main + 32636 (main.m:16)
8   libdyld.dylib                     0x000000018497c56c start + 4

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

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

Thread 3:
0   libsystem_kernel.dylib            0x0000000184aacd80 __workq_kernreturn + 8
1   libsystem_pthread.dylib           0x0000000184bbeeec _pthread_wqthread + 884
2   libsystem_pthread.dylib           0x0000000184bbeb6c start_wqthread + 4

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

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

Thread 6 name:  com.apple.uikit.eventfetch-thread
Thread 6:
0   libsystem_kernel.dylib            0x0000000184a8b568 mach_msg_trap + 8
1   libsystem_kernel.dylib            0x0000000184a8b3e0 mach_msg + 72
2   CoreFoundation                    0x0000000184f42308 __CFRunLoopServiceMachPort + 196
3   CoreFoundation                    0x0000000184f3fed4 __CFRunLoopRun + 1424
4   CoreFoundation                    0x0000000184e5fe58 CFRunLoopRunSpecific + 436
5   Foundation                        0x00000001858b7594 -[NSRunLoop+ 50580 (NSRunLoop) runMode:beforeDate:] + 304
6   Foundation                        0x00000001858d69ac -[NSRunLoop+ 178604 (NSRunLoop) runUntilDate:] + 96
7   UIKit                             0x000000018f06a7e8 -[UIEventFetcher threadMain] + 136
8   Foundation                        0x00000001859b90f4 __NSThread__start__ + 996
9   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
10  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
11  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 7:
0   libsystem_kernel.dylib            0x0000000184aac0f0 __psynch_cvwait + 8
1   libsystem_pthread.dylib           0x0000000184bc2ce4 _pthread_cond_wait$VARIANT$mp + 640
2   libc++.1.dylib                    0x0000000184163f34 std::__1::condition_variable::__do_timed_wait+ 32564 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 96
3   JavaScriptCore                    0x000000018c2c1d94 std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 9727380 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 124
4   JavaScriptCore                    0x000000018c2c1c68 std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock<bmalloc::Mutex>, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 9727080 (std::__1::unique_lock<bmalloc::Mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 108
5   JavaScriptCore                    0x000000018c2c1aec bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::threadRunLoop+ 9726700 () + 280
6   JavaScriptCore                    0x000000018c2c1de4 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*), bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*> >+ 9727460 (void*) + 44
7   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
8   libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
9   libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 8 name:  WebThread
Thread 8:
0   libsystem_kernel.dylib            0x0000000184a8b568 mach_msg_trap + 8
1   libsystem_kernel.dylib            0x0000000184a8b3e0 mach_msg + 72
2   CoreFoundation                    0x0000000184f42308 __CFRunLoopServiceMachPort + 196
3   CoreFoundation                    0x0000000184f3fed4 __CFRunLoopRun + 1424
4   CoreFoundation                    0x0000000184e5fe58 CFRunLoopRunSpecific + 436
5   WebCore                           0x000000018cd8e2c8 RunWebThread+ 266952 (void*) + 560
6   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
7   libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
8   libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 9:
0   libsystem_kernel.dylib            0x0000000184a8b5bc semaphore_timedwait_trap + 8
1   libdispatch.dylib                 0x0000000184919000 _dispatch_sema4_timedwait$VARIANT$mp + 84
2   libdispatch.dylib                 0x0000000184919870 _dispatch_semaphore_wait_slow + 72
3   libdispatch.dylib                 0x00000001849251d8 _dispatch_worker_thread + 256
4   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
5   libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
6   libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 10:
0   libsystem_kernel.dylib            0x0000000184a8b5bc semaphore_timedwait_trap + 8
1   libdispatch.dylib                 0x0000000184919000 _dispatch_sema4_timedwait$VARIANT$mp + 84
2   libdispatch.dylib                 0x0000000184919870 _dispatch_semaphore_wait_slow + 72
3   libdispatch.dylib                 0x00000001849251d8 _dispatch_worker_thread + 256
4   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
5   libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
6   libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 11 name:  com.apple.NSURLConnectionLoader
Thread 11:
0   libsystem_kernel.dylib            0x0000000184a8b568 mach_msg_trap + 8
1   libsystem_kernel.dylib            0x0000000184a8b3e0 mach_msg + 72
2   CoreFoundation                    0x0000000184f42308 __CFRunLoopServiceMachPort + 196
3   CoreFoundation                    0x0000000184f3fed4 __CFRunLoopRun + 1424
4   CoreFoundation                    0x0000000184e5fe58 CFRunLoopRunSpecific + 436
5   CFNetwork                         0x000000018574e718 -[__CoreSchedulingSetRunnable runForever] + 780
6   Foundation                        0x00000001859b90f4 __NSThread__start__ + 996
7   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
8   libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
9   libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 12 name:  IndexedDatabase Server
Thread 12:
0   libsystem_kernel.dylib            0x0000000184aac0f0 __psynch_cvwait + 8
1   libsystem_pthread.dylib           0x0000000184bc2ce4 _pthread_cond_wait$VARIANT$mp + 640
2   JavaScriptCore                    0x000000018b98854c ***::ThreadCondition::timedWait+ 54604 (***::Mutex&, double) + 80
3   JavaScriptCore                    0x000000018c2a785c ***::ParkingLot::parkConditionallyImpl(void const*, ***::ScopedLambda<bool ()> const&, ***::ScopedLambda<void + 9619548 ()> const&, ***::TimeWithDynamicClockType const&) + 2208
4   WebCore                           0x000000018cefc900 bool ***::ConditionBase::waitUntil<***::Lock>+ 1767680 (***::Lock&, ***::TimeWithDynamicClockType const&) + 172
5   WebCore                           0x000000018d3ae538 ***::CrossThreadQueue<***::CrossThreadTask>::waitForMessage+ 6690104 () + 116
6   WebCore                           0x000000018d3ae47c WebCore::IDBServer::IDBServer::databaseRunLoop+ 6689916 () + 220
7   JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
8   JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
9   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
10  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
11  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 13 name:  WebCore: Worker
Thread 13:
0   libsystem_kernel.dylib            0x0000000184a8b664 swtch_pri + 8
1   libsystem_pthread.dylib           0x0000000184bc04f4 sched_yield + 16
2   JavaScriptCore                    0x000000018c2a0820 ***::LockAlgorithm<unsigned char, (unsigned char)1, (unsigned char)2>::lockSlow+ 9590816 (***::Atomic<unsigned char>&) + 204
3   JavaScriptCore                    0x000000018c291cfc ***::AtomicStringImpl::add+ 9530620 (unsigned char const*, unsigned int) + 124
4   JavaScriptCore                    0x000000018c084d84 JSC::Lexer<unsigned char>::lex+ 7380356 (JSC::JSToken*, unsigned int, bool) + 72056
5   JavaScriptCore                    0x000000018b99dd84 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseMemberExpression<JSC::ASTBuilder>+ 142724 (JSC::ASTBuilder&) + 14980
6   JavaScriptCore                    0x000000018c138620 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseAssignmentExpression<JSC::ASTBuilder>+ 8115744 (JSC::ASTBuilder&, JSC::Parser<JSC::Lexer<unsigned char> >::ExpressionErrorClassifier&) + 1848
7   JavaScriptCore                    0x000000018c142c0c JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseVariableDeclarationList<JSC::ASTBuilder>+ 8158220 (JSC::ASTBuilder&, int&, JSC::ASTBuilder::DestructuringPattern&, JSC::ASTBuilder::Expression&, JSC::JSTextPosition&, JSC::JSTextPosition&, JSC::JSTextPosition&, JSC::Parser<JSC::Lexer<unsigned char> >::VarDeclarationListContext, JSC::DeclarationType, JSC::Parser<JSC::Lexer<unsigned char> >::ExportType, bool&) + 1612
8   JavaScriptCore                    0x000000018c141cb4 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseVariableDeclaration<JSC::ASTBuilder>+ 8154292 (JSC::ASTBuilder&, JSC::DeclarationType, JSC::Parser<JSC::Lexer<unsigned char> >::ExportType) + 104
9   JavaScriptCore                    0x000000018b993260 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatement<JSC::ASTBuilder>+ 98912 (JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 252
10  JavaScriptCore                    0x000000018c140110 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatementListItem<JSC::ASTBuilder>+ 8147216 (JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 176
11  JavaScriptCore                    0x000000018c1011fc JSC::ASTBuilder::SourceElements JSC::Parser<JSC::Lexer<unsigned char> >::parseSourceElements<JSC::ASTBuilder>+ 7889404 (JSC::ASTBuilder&, JSC::SourceElementsMode) + 316
12  JavaScriptCore                    0x000000018c0fc690 JSC::Parser<JSC::Lexer<unsigned char> >::parseInner+ 7870096 (JSC::Identifier const&, JSC::SourceParseMode) + 720
13  JavaScriptCore                    0x000000018bbb7f24 std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::Parser<JSC::Lexer<unsigned char> >::parse<JSC::ProgramNode>+ 2346788 (JSC::ParserError&, JSC::Identifier const&, JSC::SourceParseMode) + 96
14  JavaScriptCore                    0x000000018bba8c24 std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::parse<JSC::ProgramNode>+ 2284580 (JSC::VM*, JSC::SourceCode const&, JSC::Identifier const&, JSC::JSParserBuiltinMode, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::SourceParseMode, JSC::SuperBinding, JSC::ParserError&, JSC::JSTextPosition*, JSC::ConstructorKind, JSC::DerivedContextType, JSC::EvalContextType, JSC::DebuggerParseData*) + 188
15  JavaScriptCore                    0x000000018bc2b104 JSC::UnlinkedProgramCodeBlock* JSC::generateUnlinkedCodeBlock<JSC::UnlinkedProgramCodeBlock, JSC::ProgramExecutable>+ 2818308 (JSC::VM&, JSC::ProgramExecutable*, JSC::SourceCode const&, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::DebuggerMode, JSC::ParserError&, JSC::EvalContextType, JSC::VariableEnvironment const*) + 128
16  JavaScriptCore                    0x000000018bc29324 JSC::UnlinkedProgramCodeBlock* JSC::CodeCache::getUnlinkedGlobalCodeBlock<JSC::UnlinkedProgramCodeBlock, JSC::ProgramExecutable>+ 2810660 (JSC::VM&, JSC::ProgramExecutable*, JSC::SourceCode const&, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::DebuggerMode, JSC::ParserError&, JSC::EvalContextType) + 312
17  JavaScriptCore                    0x000000018bc291e0 JSC::CodeCache::getUnlinkedProgramCodeBlock+ 2810336 (JSC::VM&, JSC::ProgramExecutable*, JSC::SourceCode const&, JSC::JSParserStrictMode, JSC::DebuggerMode, JSC::ParserError&) + 40
18  JavaScriptCore                    0x000000018b9a2cac JSC::ProgramExecutable::initializeGlobalProperties+ 162988 (JSC::VM&, JSC::ExecState*, JSC::JSScope*) + 188
19  JavaScriptCore                    0x000000018bf6d714 JSC::Interpreter::executeProgram+ 6235924 (JSC::SourceCode const&, JSC::ExecState*, JSC::JSObject*) + 10956
20  JavaScriptCore                    0x000000018bc61390 JSC::evaluate+ 3040144 (JSC::ExecState*, JSC::SourceCode const&, JSC::JSValue, ***::NakedPtr<JSC::Exception>&) + 316
21  WebCore                           0x000000018df389e4 WebCore::WorkerScriptController::evaluate+ 18790884 (WebCore::ScriptSourceCode const&, ***::NakedPtr<JSC::Exception>&) + 152
22  WebCore                           0x000000018df388f0 WebCore::WorkerScriptController::evaluate+ 18790640 (WebCore::ScriptSourceCode const&) + 44
23  WebCore                           0x000000018df3a638 WebCore::WorkerThread::workerThread+ 18798136 () + 612
24  JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
25  JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
26  libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
27  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
28  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 14 name:  WebCore: Worker
Thread 14:
0   libsystem_kernel.dylib            0x0000000184a8b664 swtch_pri + 8
1   libsystem_pthread.dylib           0x0000000184bc04f4 sched_yield + 16
2   JavaScriptCore                    0x000000018c2a0820 ***::LockAlgorithm<unsigned char, (unsigned char)1, (unsigned char)2>::lockSlow+ 9590816 (***::Atomic<unsigned char>&) + 204
3   JavaScriptCore                    0x000000018c291cfc ***::AtomicStringImpl::add+ 9530620 (unsigned char const*, unsigned int) + 124
4   JavaScriptCore                    0x000000018c084d84 JSC::Lexer<unsigned char>::lex+ 7380356 (JSC::JSToken*, unsigned int, bool) + 72056
5   JavaScriptCore                    0x000000018c12fa0c JSC::SyntaxChecker::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseAssignmentExpression<JSC::SyntaxChecker>+ 8079884 (JSC::SyntaxChecker&, JSC::Parser<JSC::Lexer<unsigned char> >::ExpressionErrorClassifier&) + 1376
6   JavaScriptCore                    0x000000018b9944cc JSC::SyntaxChecker::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseExpression<JSC::SyntaxChecker>+ 103628 (JSC::SyntaxChecker&) + 88
7   JavaScriptCore                    0x000000018b993c30 JSC::SyntaxChecker::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseIfStatement<JSC::SyntaxChecker>+ 101424 (JSC::SyntaxChecker&) + 220
8   JavaScriptCore                    0x000000018b9938a8 JSC::SyntaxChecker::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatement<JSC::SyntaxChecker>+ 100520 (JSC::SyntaxChecker&, JSC::Identifier const*&, unsigned int*) + 304
9   JavaScriptCore                    0x000000018c123e10 JSC::SyntaxChecker::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatementListItem<JSC::SyntaxChecker>+ 8031760 (JSC::SyntaxChecker&, JSC::Identifier const*&, unsigned int*) + 144
10  JavaScriptCore                    0x000000018c123c1c JSC::SyntaxChecker::SourceElements JSC::Parser<JSC::Lexer<unsigned char> >::parseSourceElements<JSC::SyntaxChecker>+ 8031260 (JSC::SyntaxChecker&, JSC::SourceElementsMode) + 776
11  JavaScriptCore                    0x000000018c115298 bool JSC::Parser<JSC::Lexer<unsigned char> >::parseFunctionInfo<JSC::ASTBuilder>+ 7971480 (JSC::ASTBuilder&, JSC::FunctionNameRequirements, JSC::SourceParseMode, bool, JSC::ConstructorKind, JSC::SuperBinding, int, JSC::ParserFunctionInfo<JSC::ASTBuilder>&, JSC::Parser<JSC::Lexer<unsigned char> >::FunctionDefinitionType) + 4284
12  JavaScriptCore                    0x000000018b99b14c JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseMemberExpression<JSC::ASTBuilder>+ 131404 (JSC::ASTBuilder&) + 3660
13  JavaScriptCore                    0x000000018c138620 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseAssignmentExpression<JSC::ASTBuilder>+ 8115744 (JSC::ASTBuilder&, JSC::Parser<JSC::Lexer<unsigned char> >::ExpressionErrorClassifier&) + 1848
14  JavaScriptCore                    0x000000018b9a0068 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseExpression<JSC::ASTBuilder>+ 151656 (JSC::ASTBuilder&) + 108
15  JavaScriptCore                    0x000000018b99b788 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseMemberExpression<JSC::ASTBuilder>+ 133000 (JSC::ASTBuilder&) + 5256
16  JavaScriptCore                    0x000000018c138620 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseAssignmentExpression<JSC::ASTBuilder>+ 8115744 (JSC::ASTBuilder&, JSC::Parser<JSC::Lexer<unsigned char> >::ExpressionErrorClassifier&) + 1848
17  JavaScriptCore                    0x000000018b9a0068 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseExpression<JSC::ASTBuilder>+ 151656 (JSC::ASTBuilder&) + 108
18  JavaScriptCore                    0x000000018b9b734c JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseExpressionStatement<JSC::ASTBuilder>+ 246604 (JSC::ASTBuilder&) + 120
19  JavaScriptCore                    0x000000018b9933e0 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatement<JSC::ASTBuilder>+ 99296 (JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 636
20  JavaScriptCore                    0x000000018c140110 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatementListItem<JSC::ASTBuilder>+ 8147216 (JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 176
21  JavaScriptCore                    0x000000018c101174 JSC::ASTBuilder::SourceElements JSC::Parser<JSC::Lexer<unsigned char> >::parseSourceElements<JSC::ASTBuilder>+ 7889268 (JSC::ASTBuilder&, JSC::SourceElementsMode) + 180
22  JavaScriptCore                    0x000000018c0fc690 JSC::Parser<JSC::Lexer<unsigned char> >::parseInner+ 7870096 (JSC::Identifier const&, JSC::SourceParseMode) + 720
23  JavaScriptCore                    0x000000018bbb7f24 std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::Parser<JSC::Lexer<unsigned char> >::parse<JSC::ProgramNode>+ 2346788 (JSC::ParserError&, JSC::Identifier const&, JSC::SourceParseMode) + 96
24  JavaScriptCore                    0x000000018bba8c24 std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::parse<JSC::ProgramNode>+ 2284580 (JSC::VM*, JSC::SourceCode const&, JSC::Identifier const&, JSC::JSParserBuiltinMode, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::SourceParseMode, JSC::SuperBinding, JSC::ParserError&, JSC::JSTextPosition*, JSC::ConstructorKind, JSC::DerivedContextType, JSC::EvalContextType, JSC::DebuggerParseData*) + 188
25  JavaScriptCore                    0x000000018bba88b4 JSC::BuiltinExecutables::createExecutable+ 2283700 (JSC::VM&, JSC::SourceCode const&, JSC::Identifier const&, JSC::ConstructorKind, JSC::ConstructAbility) + 216
26  WebCore                           0x000000018de9ef9c WebCore::ReadableStreamInternalsBuiltinsWrapper::readableStreamInternalsReadableStreamCancelCodeExecutable+ 18161564 () + 76
27  WebCore                           0x000000018de9ef20 WebCore::readableStreamInternalsReadableStreamCancelCodeGenerator+ 18161440 (JSC::VM&) + 36
28  WebCore                           0x000000018de94c20 WebCore::ReadableStreamInternalsBuiltinFunctions::init+ 18119712 (JSC::JSGlobalObject&) + 944
29  WebCore                           0x000000018de93048 WebCore::JSBuiltinInternalFunctions::initialize+ 18112584 (WebCore::JSDOMGlobalObject&) + 208
30  WebCore                           0x000000018d511f80 WebCore::JSDOMGlobalObject::addBuiltinGlobals+ 8146816 (JSC::VM&) + 68
31  WebCore                           0x000000018cdc3128 WebCore::JSDOMGlobalObject::finishCreation+ 483624 (JSC::VM&, JSC::JSObject*) + 36
32  WebCore                           0x000000018d90c5c0 WebCore::JSWorkerGlobalScope::finishCreation+ 12318144 (JSC::VM&, JSC::JSProxy*) + 28
33  WebCore                           0x000000018df38584 WebCore::WorkerScriptController::initScript+ 18789764 () + 708
34  WebCore                           0x000000018df38994 WebCore::WorkerScriptController::evaluate+ 18790804 (WebCore::ScriptSourceCode const&, ***::NakedPtr<JSC::Exception>&) + 72
35  WebCore                           0x000000018df388f0 WebCore::WorkerScriptController::evaluate+ 18790640 (WebCore::ScriptSourceCode const&) + 44
36  WebCore                           0x000000018df3a638 WebCore::WorkerThread::workerThread+ 18798136 () + 612
37  JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
38  JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
39  libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
40  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
41  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 15 name:  WebCore: Worker
Thread 15 Crashed:
0   JavaScriptCore                    0x000000018be52e98 JSC::ExecutableAllocator::allocate+ 5078680 (unsigned long, void*, JSC::JITCompilationEffort) + 644
1   JavaScriptCore                    0x000000018be52e98 JSC::ExecutableAllocator::allocate+ 5078680 (unsigned long, void*, JSC::JITCompilationEffort) + 644
2   JavaScriptCore                    0x000000018c0a364c JSC::LinkBuffer::allocate+ 7505484 (JSC::MacroAssembler&, void*, JSC::JITCompilationEffort) + 256
3   JavaScriptCore                    0x000000018c0a2d54 void JSC::LinkBuffer::copyCompactAndLinkCode<unsigned int>+ 7503188 (JSC::MacroAssembler&, void*, JSC::JITCompilationEffort) + 60
4   JavaScriptCore                    0x000000018c0a2c74 JSC::LinkBuffer::linkCode+ 7502964 (JSC::MacroAssembler&, void*, JSC::JITCompilationEffort) + 56
5   JavaScriptCore                    0x000000018c25e858 JSC::Wasm::throwExceptionFromWasmThunkGenerator+ 9320536 (***::AbstractLocker const&) + 752
6   JavaScriptCore                    0x000000018c25ed98 JSC::Wasm::Thunks::stub(***::AbstractLocker const&, JSC::MacroAssemblerCodeRef (*)+ 9321880 (***::AbstractLocker const&)) + 120
7   JavaScriptCore                    0x000000018c25f154 JSC::Wasm::Thunks::stub(JSC::MacroAssemblerCodeRef (*)+ 9322836 (***::AbstractLocker const&)) + 92
8   JavaScriptCore                    0x000000018c247a20 JSC::Wasm::Memory::create+ 9226784 (JSC::VM&, JSC::Wasm::PageCount, JSC::Wasm::PageCount) + 96
9   JavaScriptCore                    0x000000018c2790f0 JSC::constructJSWebAssemblyMemory+ 9429232 (JSC::ExecState*) + 1236
10  JavaScriptCore                    0x000000018b9b6eec JSC::LLInt::setUpCall+ 245484 (JSC::ExecState*, JSC::Instruction*, JSC::CodeSpecializationKind, JSC::JSValue, JSC::LLIntCallLinkInfo*) + 440
11  JavaScriptCore                    0x000000018c0b7ca4 llint_entry + 27908
12  JavaScriptCore                    0x000000018c0b0dd0 vmEntryToJavaScript + 272
13  JavaScriptCore                    0x000000018bf968a0 JSC::JITCode::execute+ 6404256 (JSC::VM*, JSC::ProtoCallFrame*) + 136
14  JavaScriptCore                    0x000000018bf6d834 JSC::Interpreter::executeProgram+ 6236212 (JSC::SourceCode const&, JSC::ExecState*, JSC::JSObject*) + 11244
15  JavaScriptCore                    0x000000018bc61390 JSC::evaluate+ 3040144 (JSC::ExecState*, JSC::SourceCode const&, JSC::JSValue, ***::NakedPtr<JSC::Exception>&) + 316
16  WebCore                           0x000000018df389e4 WebCore::WorkerScriptController::evaluate+ 18790884 (WebCore::ScriptSourceCode const&, ***::NakedPtr<JSC::Exception>&) + 152
17  WebCore                           0x000000018df388f0 WebCore::WorkerScriptController::evaluate+ 18790640 (WebCore::ScriptSourceCode const&) + 44
18  WebCore                           0x000000018df3a638 WebCore::WorkerThread::workerThread+ 18798136 () + 612
19  JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
20  JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
21  libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
22  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
23  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 16 name:  WebCore: Worker
Thread 16:
0   JavaScriptCore                    0x000000018b992bd8 JSC::Lexer<unsigned char>::setCode+ 97240 (JSC::SourceCode const&, JSC::ParserArena*) + 284
1   JavaScriptCore                    0x000000018b992bd8 JSC::Lexer<unsigned char>::setCode+ 97240 (JSC::SourceCode const&, JSC::ParserArena*) + 284
2   JavaScriptCore                    0x000000018c0fb524 JSC::Parser<JSC::Lexer<unsigned char> >::Parser+ 7865636 (JSC::VM*, JSC::SourceCode const&, JSC::JSParserBuiltinMode, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::SourceParseMode, JSC::SuperBinding, JSC::ConstructorKind, JSC::DerivedContextType, bool, JSC::EvalContextType, JSC::DebuggerParseData*) + 452
3   JavaScriptCore                    0x000000018c0fb934 JSC::Parser<JSC::Lexer<unsigned char> >::Parser+ 7866676 (JSC::VM*, JSC::SourceCode const&, JSC::JSParserBuiltinMode, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::SourceParseMode, JSC::SuperBinding, JSC::ConstructorKind, JSC::DerivedContextType, bool, JSC::EvalContextType, JSC::DebuggerParseData*) + 56
4   JavaScriptCore                    0x000000018bba8c0c std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::parse<JSC::ProgramNode>+ 2284556 (JSC::VM*, JSC::SourceCode const&, JSC::Identifier const&, JSC::JSParserBuiltinMode, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::SourceParseMode, JSC::SuperBinding, JSC::ParserError&, JSC::JSTextPosition*, JSC::ConstructorKind, JSC::DerivedContextType, JSC::EvalContextType, JSC::DebuggerParseData*) + 164
5   JavaScriptCore                    0x000000018bba88b4 JSC::BuiltinExecutables::createExecutable+ 2283700 (JSC::VM&, JSC::SourceCode const&, JSC::Identifier const&, JSC::ConstructorKind, JSC::ConstructAbility) + 216
6   WebCore                           0x000000018de99fb8 WebCore::ReadableByteStreamInternalsBuiltinsWrapper::readableByteStreamInternalsReadableByteStreamControllerCallPullIfNeededCodeExecutable+ 18141112 () + 76
7   WebCore                           0x000000018de99f40 WebCore::readableByteStreamInternalsReadableByteStreamControllerCallPullIfNeededCodeGenerator+ 18140992 (JSC::VM&) + 32
8   WebCore                           0x000000018de94278 WebCore::ReadableByteStreamInternalsBuiltinFunctions::init+ 18117240 (JSC::JSGlobalObject&) + 892
9   WebCore                           0x000000018de9303c WebCore::JSBuiltinInternalFunctions::initialize+ 18112572 (WebCore::JSDOMGlobalObject&) + 196
10  WebCore                           0x000000018d511f80 WebCore::JSDOMGlobalObject::addBuiltinGlobals+ 8146816 (JSC::VM&) + 68
11  WebCore                           0x000000018cdc3128 WebCore::JSDOMGlobalObject::finishCreation+ 483624 (JSC::VM&, JSC::JSObject*) + 36
12  WebCore                           0x000000018d90c5c0 WebCore::JSWorkerGlobalScope::finishCreation+ 12318144 (JSC::VM&, JSC::JSProxy*) + 28
13  WebCore                           0x000000018df38584 WebCore::WorkerScriptController::initScript+ 18789764 () + 708
14  WebCore                           0x000000018df38994 WebCore::WorkerScriptController::evaluate+ 18790804 (WebCore::ScriptSourceCode const&, ***::NakedPtr<JSC::Exception>&) + 72
15  WebCore                           0x000000018df388f0 WebCore::WorkerScriptController::evaluate+ 18790640 (WebCore::ScriptSourceCode const&) + 44
16  WebCore                           0x000000018df3a638 WebCore::WorkerThread::workerThread+ 18798136 () + 612
17  JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
18  JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
19  libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
20  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
21  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 17 name:  WebCore: Worker
Thread 17:
0   libsystem_kernel.dylib            0x0000000184a8b664 swtch_pri + 8
1   libsystem_pthread.dylib           0x0000000184bc04f4 sched_yield + 16
2   JavaScriptCore                    0x000000018c2a0820 ***::LockAlgorithm<unsigned char, (unsigned char)1, (unsigned char)2>::lockSlow+ 9590816 (***::Atomic<unsigned char>&) + 204
3   JavaScriptCore                    0x000000018c291cfc ***::AtomicStringImpl::add+ 9530620 (unsigned char const*, unsigned int) + 124
4   JavaScriptCore                    0x000000018c084d84 JSC::Lexer<unsigned char>::lex+ 7380356 (JSC::JSToken*, unsigned int, bool) + 72056
5   JavaScriptCore                    0x000000018b99dd84 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseMemberExpression<JSC::ASTBuilder>+ 142724 (JSC::ASTBuilder&) + 14980
6   JavaScriptCore                    0x000000018c138620 JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseAssignmentExpression<JSC::ASTBuilder>+ 8115744 (JSC::ASTBuilder&, JSC::Parser<JSC::Lexer<unsigned char> >::ExpressionErrorClassifier&) + 1848
7   JavaScriptCore                    0x000000018c142c0c JSC::ASTBuilder::Expression JSC::Parser<JSC::Lexer<unsigned char> >::parseVariableDeclarationList<JSC::ASTBuilder>+ 8158220 (JSC::ASTBuilder&, int&, JSC::ASTBuilder::DestructuringPattern&, JSC::ASTBuilder::Expression&, JSC::JSTextPosition&, JSC::JSTextPosition&, JSC::JSTextPosition&, JSC::Parser<JSC::Lexer<unsigned char> >::VarDeclarationListContext, JSC::DeclarationType, JSC::Parser<JSC::Lexer<unsigned char> >::ExportType, bool&) + 1612
8   JavaScriptCore                    0x000000018c141cb4 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseVariableDeclaration<JSC::ASTBuilder>+ 8154292 (JSC::ASTBuilder&, JSC::DeclarationType, JSC::Parser<JSC::Lexer<unsigned char> >::ExportType) + 104
9   JavaScriptCore                    0x000000018b993260 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatement<JSC::ASTBuilder>+ 98912 (JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 252
10  JavaScriptCore                    0x000000018c140110 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatementListItem<JSC::ASTBuilder>+ 8147216 (JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 176
11  JavaScriptCore                    0x000000018c1011fc JSC::ASTBuilder::SourceElements JSC::Parser<JSC::Lexer<unsigned char> >::parseSourceElements<JSC::ASTBuilder>+ 7889404 (JSC::ASTBuilder&, JSC::SourceElementsMode) + 316
12  JavaScriptCore                    0x000000018c0fc690 JSC::Parser<JSC::Lexer<unsigned char> >::parseInner+ 7870096 (JSC::Identifier const&, JSC::SourceParseMode) + 720
13  JavaScriptCore                    0x000000018bbb7f24 std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::Parser<JSC::Lexer<unsigned char> >::parse<JSC::ProgramNode>+ 2346788 (JSC::ParserError&, JSC::Identifier const&, JSC::SourceParseMode) + 96
14  JavaScriptCore                    0x000000018bba8c24 std::__1::unique_ptr<JSC::ProgramNode, std::__1::default_delete<JSC::ProgramNode> > JSC::parse<JSC::ProgramNode>+ 2284580 (JSC::VM*, JSC::SourceCode const&, JSC::Identifier const&, JSC::JSParserBuiltinMode, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::SourceParseMode, JSC::SuperBinding, JSC::ParserError&, JSC::JSTextPosition*, JSC::ConstructorKind, JSC::DerivedContextType, JSC::EvalContextType, JSC::DebuggerParseData*) + 188
15  JavaScriptCore                    0x000000018bc2b104 JSC::UnlinkedProgramCodeBlock* JSC::generateUnlinkedCodeBlock<JSC::UnlinkedProgramCodeBlock, JSC::ProgramExecutable>+ 2818308 (JSC::VM&, JSC::ProgramExecutable*, JSC::SourceCode const&, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::DebuggerMode, JSC::ParserError&, JSC::EvalContextType, JSC::VariableEnvironment const*) + 128
16  JavaScriptCore                    0x000000018bc29324 JSC::UnlinkedProgramCodeBlock* JSC::CodeCache::getUnlinkedGlobalCodeBlock<JSC::UnlinkedProgramCodeBlock, JSC::ProgramExecutable>+ 2810660 (JSC::VM&, JSC::ProgramExecutable*, JSC::SourceCode const&, JSC::JSParserStrictMode, JSC::JSParserScriptMode, JSC::DebuggerMode, JSC::ParserError&, JSC::EvalContextType) + 312
17  JavaScriptCore                    0x000000018bc291e0 JSC::CodeCache::getUnlinkedProgramCodeBlock+ 2810336 (JSC::VM&, JSC::ProgramExecutable*, JSC::SourceCode const&, JSC::JSParserStrictMode, JSC::DebuggerMode, JSC::ParserError&) + 40
18  JavaScriptCore                    0x000000018b9a2cac JSC::ProgramExecutable::initializeGlobalProperties+ 162988 (JSC::VM&, JSC::ExecState*, JSC::JSScope*) + 188
19  JavaScriptCore                    0x000000018bf6d714 JSC::Interpreter::executeProgram+ 6235924 (JSC::SourceCode const&, JSC::ExecState*, JSC::JSObject*) + 10956
20  JavaScriptCore                    0x000000018bc61390 JSC::evaluate+ 3040144 (JSC::ExecState*, JSC::SourceCode const&, JSC::JSValue, ***::NakedPtr<JSC::Exception>&) + 316
21  WebCore                           0x000000018df389e4 WebCore::WorkerScriptController::evaluate+ 18790884 (WebCore::ScriptSourceCode const&, ***::NakedPtr<JSC::Exception>&) + 152
22  WebCore                           0x000000018df388f0 WebCore::WorkerScriptController::evaluate+ 18790640 (WebCore::ScriptSourceCode const&) + 44
23  WebCore                           0x000000018df3a638 WebCore::WorkerThread::workerThread+ 18798136 () + 612
24  JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
25  JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
26  libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
27  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
28  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 18 name:  WebCore: AsyncFileStream
Thread 18:
0   libsystem_kernel.dylib            0x0000000184aac0f0 __psynch_cvwait + 8
1   libsystem_pthread.dylib           0x0000000184bc2ce4 _pthread_cond_wait$VARIANT$mp + 640
2   JavaScriptCore                    0x000000018b98854c ***::ThreadCondition::timedWait+ 54604 (***::Mutex&, double) + 80
3   JavaScriptCore                    0x000000018c2a785c ***::ParkingLot::parkConditionallyImpl(void const*, ***::ScopedLambda<bool ()> const&, ***::ScopedLambda<void + 9619548 ()> const&, ***::TimeWithDynamicClockType const&) + 2208
4   WebCore                           0x000000018cefc900 bool ***::ConditionBase::waitUntil<***::Lock>+ 1767680 (***::Lock&, ***::TimeWithDynamicClockType const&) + 172
5   WebCore                           0x000000018cefd270 std::__1::unique_ptr<***::Function<void ()>, std::__1::default_delete<***::Function<void ()> > > ***::MessageQueue<***::Function<void ()> >::waitForMessageFilteredWithTimeout<***::MessageQueue<***::Function<void ()> >::waitForMessage()::'lambda'(***::Function<void ()> const&)>(***::MessageQueueWaitResult&, ***::MessageQueue<***::Function<void ()> >::waitForMessage()::'lambda'(***::Function<void + 1770096 ()> const&)&&, ***::WallTime) + 148
6   WebCore                           0x000000018cefd194 ***::Function<void ()>::CallableWrapper<WebCore::callOnFileThread(***::Function<void ()>&&)::$_6::operator()() const::'lambda'()>::call+ 1769876 () + 80
7   JavaScriptCore                    0x000000018b984b44 ***::threadEntryPoint+ 39748 (void*) + 120
8   JavaScriptCore                    0x000000018b984a84 ***::wtfThreadEntryPoint+ 39556 (void*) + 84
9   libsystem_pthread.dylib           0x0000000184bc02b4 _pthread_body + 308
10  libsystem_pthread.dylib           0x0000000184bc0180 _pthread_body + 0
11  libsystem_pthread.dylib           0x0000000184bbeb74 thread_start + 4

Thread 15 crashed with ARM Thread State (64-bit):
    x0: 0x00000001b610fdb8   x1: 0x000000018c2a0dcc   x2: 0x0000000000000008   x3: 0x000000016c5d14a0
    x4: 0x000000018c2c5ce4   x5: 0x000000016c5d1a20   x6: 0x0a2e736574796220   x7: 0x0000000000000000
    x8: 0x0000000000000000   x9: 0x00000001b6096fe0  x10: 0x0000030000000403  x11: 0x0000000000000040
   x12: 0xffffffffffffffff  x13: 0x0000000000000001  x14: 0x0000040000000400  x15: 0x0000000000000000
   x16: 0x0000000000000000  x17: 0x00000000ffffffff  x18: 0xfffffff009c9925c  x19: 0x000000016c5d1ae8
   x20: 0x0000000000000001  x21: 0xffffffffffffffff  x22: 0xffffffffffffffff  x23: 0x0000000000000001
   x24: 0x00000001b610bf80  x25: 0x0000000000000080  x26: 0x00000000f2a00010  x27: 0x0000000000000000
   x28: 0x0000000000000100   fp: 0x000000016c5d1ad0   lr: 0x000000018be52e98
    sp: 0x000000016c5d1a80   pc: 0x000000018be52e98 cpsr: 0x60000000

Binary Images:
0x1040a4000 - 0x1040affff SimpleWebBrowser arm64  <e6b09b55264c30e2952bf7b352095a57> /var/containers/Bundle/Application/9BC36792-FA9B-4959-B5AA-2146A5FC1813/SimpleWebBrowser.app/SimpleWebBrowser
0x104288000 - 0x1042c7fff dyld arm64  <477a8a1f098b3a80860d656a3f4918ea> /usr/lib/dyld
0x18415a000 - 0x18415bfff libSystem.B.dylib arm64  <f1a8dae6cdac3bdeb67f9a56e4acb0d0> /usr/lib/libSystem.B.dylib
0x18415c000 - 0x1841b5fff libc++.1.dylib arm64  <aee157a049663aa88c4e928768cfd553> /usr/lib/libc++.1.dylib
0x1841b6000 - 0x1841d6fff libc++abi.dylib arm64  <b4f54419327f3bfea747549b84dad328> /usr/lib/libc++abi.dylib
0x1841d8000 - 0x184893fff libobjc.A.dylib arm64  <3a9d464322eb3285bc88fabf7cec20ed> /usr/lib/libobjc.A.dylib
0x184894000 - 0x184898fff libcache.dylib arm64  <65cc30c9757a34b3b65d2c4e527939cd> /usr/lib/system/libcache.dylib
0x184899000 - 0x1848a4fff libcommonCrypto.dylib arm64  <fc3bcd5113913330821d3076adaacf7f> /usr/lib/system/libcommonCrypto.dylib
0x1848a5000 - 0x1848a8fff libcompiler_rt.dylib arm64  <2cb6dcee92c13d44af2c5a43d219763d> /usr/lib/system/libcompiler_rt.dylib
0x1848a9000 - 0x1848b0fff libcopyfile.dylib arm64  <4e4732ea13c6356fbdead1c1a627373e> /usr/lib/system/libcopyfile.dylib
0x1848b1000 - 0x184914fff libcorecrypto.dylib arm64  <5e75af240ae13dfdaac2523dde5640a5> /usr/lib/system/libcorecrypto.dylib
0x184915000 - 0x18497afff libdispatch.dylib arm64  <5b43814760d73c32b866089289e793d3> /usr/lib/system/libdispatch.dylib
0x18497b000 - 0x184995fff libdyld.dylib arm64  <fe550c5b51703c0983378420d1426470> /usr/lib/system/libdyld.dylib
0x184996000 - 0x184996fff liblaunch.dylib arm64  <ca90373a022d3c38ac7ecd736c13bf9b> /usr/lib/system/liblaunch.dylib
0x184997000 - 0x18499cfff libmacho.dylib arm64  <7f4315424c283a4d945075f5585b40f7> /usr/lib/system/libmacho.dylib
0x18499d000 - 0x18499efff libremovefile.dylib arm64  <71cf67fe019c3790a322fe80345fcede> /usr/lib/system/libremovefile.dylib
0x18499f000 - 0x1849b6fff libsystem_asl.dylib arm64  <a326cb655b2132e58163f794aa4dcf45> /usr/lib/system/libsystem_asl.dylib
0x1849b7000 - 0x1849b7fff libsystem_blocks.dylib arm64  <93403bb53b293e748a97895ea5d99def> /usr/lib/system/libsystem_blocks.dylib
0x1849b8000 - 0x184a35fff libsystem_c.dylib arm64  <180ce1bd05c93fd9bfe2b5076d237a44> /usr/lib/system/libsystem_c.dylib
0x184a36000 - 0x184a3afff libsystem_configuration.dylib arm64  <e1a1f00b5f3c34cf9a389a553f7b865c> /usr/lib/system/libsystem_configuration.dylib
0x184a3b000 - 0x184a40fff libsystem_containermanager.dylib arm64  <2f01e95878ec34a7a47e3cf50271226f> /usr/lib/system/libsystem_containermanager.dylib
0x184a41000 - 0x184a42fff libsystem_coreservices.dylib arm64  <0e2577d40db737fcba57fe5c25c3ad57> /usr/lib/system/libsystem_coreservices.dylib
0x184a43000 - 0x184a44fff libsystem_darwin.dylib arm64  <6b184f65c6a33e4781a9b1183d48526b> /usr/lib/system/libsystem_darwin.dylib
0x184a45000 - 0x184a4bfff libsystem_dnssd.dylib arm64  <45b703f6514f3a5c81260e9a3869c452> /usr/lib/system/libsystem_dnssd.dylib
0x184a4c000 - 0x184a89fff libsystem_info.dylib arm64  <10e8df0ca5a63aa987d9b29182431668> /usr/lib/system/libsystem_info.dylib
0x184a8a000 - 0x184ab2fff libsystem_kernel.dylib arm64  <1eb83b93d8e5382fa3692c4db5c8425e> /usr/lib/system/libsystem_kernel.dylib
0x184ab3000 - 0x184ae0fff libsystem_m.dylib arm64  <2217837ae9d5347d86cf6eb3c118c1bf> /usr/lib/system/libsystem_m.dylib
0x184ae1000 - 0x184afbfff libsystem_malloc.dylib arm64  <42f3a5fc767d389fab3230f05772fdee> /usr/lib/system/libsystem_malloc.dylib
0x184afc000 - 0x184b9cfff libsystem_network.dylib arm64  <136284dd70db33879a3ef04dd5c02e45> /usr/lib/system/libsystem_network.dylib
0x184b9d000 - 0x184ba8fff libsystem_networkextension.dylib arm64  <d6d87490e8d536a3a22940712654ac28> /usr/lib/system/libsystem_networkextension.dylib
0x184ba9000 - 0x184bb3fff libsystem_notify.dylib arm64  <f11ae2b1fb2733fb9c57f84c0479d58f> /usr/lib/system/libsystem_notify.dylib
0x184bb4000 - 0x184bbdfff libsystem_platform.dylib arm64  <265b3fbafd16369aba3291a3baf6f19b> /usr/lib/system/libsystem_platform.dylib
0x184bbe000 - 0x184bcdfff libsystem_pthread.dylib arm64  <ec07a01f70933f629bb77dfa516eac50> /usr/lib/system/libsystem_pthread.dylib
0x184bce000 - 0x184bd1fff libsystem_sandbox.dylib arm64  <c207a17a12a03d92aaa44fb3d7bb4664> /usr/lib/system/libsystem_sandbox.dylib
0x184bd2000 - 0x184bd9fff libsystem_symptoms.dylib arm64  <17c6608193c53d008000f4f4d443d673> /usr/lib/system/libsystem_symptoms.dylib
0x184bda000 - 0x184bedfff libsystem_trace.dylib arm64  <2fac7b659ac83d3696de26a57c5610e6> /usr/lib/system/libsystem_trace.dylib
0x184bee000 - 0x184bf3fff libunwind.dylib arm64  <db0499e29a383530972aec98f7b20450> /usr/lib/system/libunwind.dylib
0x184bf4000 - 0x184bf4fff libvminterpose.dylib arm64  <24ee64a87d513374808768eebfb8ff0c> /usr/lib/system/libvminterpose.dylib
0x184bf5000 - 0x184c1ffff libxpc.dylib arm64  <f1bbc677faf3390db3f778a06fe6ebff> /usr/lib/system/libxpc.dylib
0x184c20000 - 0x184e41fff libicucore.A.dylib arm64  <32c272e1e9f735aba4c16a17580f13e3> /usr/lib/libicucore.A.dylib
0x184e42000 - 0x184e53fff libz.1.dylib arm64  <c402ff63470b34df8634f2078cd151e1> /usr/lib/libz.1.dylib
0x184e54000 - 0x1851ecfff CoreFoundation arm64  <733e7542e92b34bd9403762135ad5014> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1851ed000 - 0x1851fdfff libbsm.0.dylib arm64  <b7a56e43a852351d8a2dab94c7fc04e6> /usr/lib/libbsm.0.dylib
0x1851fe000 - 0x1851fefff libenergytrace.dylib arm64  <6adeca3b70ed33dda70a16353c5ef6ce> /usr/lib/libenergytrace.dylib
0x1851ff000 - 0x185284fff IOKit arm64  <38b47ee327743e86ac2885f48c7175d8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x185285000 - 0x18536efff libxml2.2.dylib arm64  <33530216f58333d993d4acb846c63aac> /usr/lib/libxml2.2.dylib
0x18536f000 - 0x18537cfff libbz2.1.0.dylib arm64  <35c6ddde076638589f755656ac0058ce> /usr/lib/libbz2.1.0.dylib
0x18537d000 - 0x185395fff liblzma.5.dylib arm64  <7d5815f117103d15a67fd30b3375b11b> /usr/lib/liblzma.5.dylib
0x185396000 - 0x1854f3fff libsqlite3.dylib arm64  <eac933b033d43444ae182e2d7de6137f> /usr/lib/libsqlite3.dylib
0x1854f4000 - 0x18551afff libMobileGestalt.dylib arm64  <716efb27f65d3561b2acfcf14ea4a2cd> /usr/lib/libMobileGestalt.dylib
0x18551b000 - 0x1858aafff CFNetwork arm64  <5b810ac6c9a03e8bb2d730bed5a63de5> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1858ab000 - 0x185ba6fff Foundation arm64  <8d7cdc39b9813df1a3283410871c3bc8> /System/Library/Frameworks/Foundation.framework/Foundation
0x185ba7000 - 0x185c95fff Security arm64  <f8097c91a8623fbda138a402b6151ca2> /System/Library/Frameworks/Security.framework/Security
0x185c96000 - 0x185d02fff SystemConfiguration arm64  <e4021e13feec30af8e612a49060b1ad1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x185d03000 - 0x185d39fff libCRFSuite.dylib arm64  <faed949ffe90353091a2916aef415302> /usr/lib/libCRFSuite.dylib
0x185d3a000 - 0x185d3afff libapple_crypto.dylib arm64  <26fe924005203d45aee4a14f5cb64434> /usr/lib/libapple_crypto.dylib
0x185d3b000 - 0x185d51fff libapple_nghttp2.dylib arm64  <ff88135792b639679509b309f0c0cad9> /usr/lib/libapple_nghttp2.dylib
0x185d52000 - 0x185d7bfff libarchive.2.dylib arm64  <957aea53942d3afc91420044f6ae5112> /usr/lib/libarchive.2.dylib
0x185d7c000 - 0x185e2dfff libboringssl.dylib arm64  <397a193ddc603a25aaaf338cf9f8a21b> /usr/lib/libboringssl.dylib
0x185e2e000 - 0x185e45fff libcoretls.dylib arm64  <c2287d06413f32c2aee0e6c3313d98c7> /usr/lib/libcoretls.dylib
0x185e46000 - 0x185e47fff libcoretls_cfhelpers.dylib arm64  <53b198525e133cc18003611671e43a80> /usr/lib/libcoretls_cfhelpers.dylib
0x185e48000 - 0x185e49fff liblangid.dylib arm64  <11d94ede5ab1300a820d96e3374f53fa> /usr/lib/liblangid.dylib
0x185e4a000 - 0x185f1dfff libnetwork.dylib arm64  <f3972f1879aa379a9db6bf7c059ab927> /usr/lib/libnetwork.dylib
0x185f1e000 - 0x185f50fff libpcap.A.dylib arm64  <419a8dd2325a326c81b4b02d849ce562> /usr/lib/libpcap.A.dylib
0x185f51000 - 0x185f85fff libusrtcp.dylib arm64  <227ec64866e53676828e76f89c1e4928> /usr/lib/libusrtcp.dylib
0x185f86000 - 0x185f8ffff IOSurface arm64  <121f7f9d94d63afb8974ca4b14aadbbf> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x185f90000 - 0x186035fff libBLAS.dylib arm64  <05ecdd31f9573a069c0e8b3d610bbc3f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x186036000 - 0x186365fff libLAPACK.dylib arm64  <3e55f73c8a4c329d8bb7f5e58ed687c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x186366000 - 0x1865d2fff vImage arm64  <7fabce5d1fe83c38aa998440146eb09b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1865d3000 - 0x1865e4fff libSparseBLAS.dylib arm64  <88335b280db13b3d812ee89998bc363c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1865e5000 - 0x186609fff libvMisc.dylib arm64  <20da313fe2343db189a04c72928eb120> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x18660a000 - 0x186632fff libBNNS.dylib arm64  <ef8723a8c9b63c93b6294974224f6f04> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x186633000 - 0x186648fff libLinearAlgebra.dylib arm64  <0f6e8d5a7dd8384ebb8a873c2caa7ad7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x186649000 - 0x18664dfff libQuadrature.dylib arm64  <124a57c41e3e3956b46e10d49ddf8fe1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x18664e000 - 0x1866a4fff libSparse.dylib arm64  <c7def66b4a4c3f29b55fcbdcf881e3f2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1866a5000 - 0x18671dfff libvDSP.dylib arm64  <4bf846f47a0e309db93bbbc791720463> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x18671e000 - 0x18671efff vecLib arm64  <86cdd48d842334dd831b1fc0e2b0270f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x18671f000 - 0x18671ffff Accelerate arm64  <01d515c3376c332799f14694934ed70b> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x186720000 - 0x186735fff libcompression.dylib arm64  <b1a3a8c4b3a6301da874dc2af4a50920> /usr/lib/libcompression.dylib
0x186736000 - 0x186c7afff CoreGraphics arm64  <84200292e2373b96bde75a022c9eeacf> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x186c7b000 - 0x186c80fff IOAccelerator arm64  <e66452fc19ef3af29dac52b16e6cb128> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x186c81000 - 0x186c86fff libCoreFSCache.dylib arm64  <ac1882646b0c3cccb69dfc5246995396> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x186c87000 - 0x186d21fff Metal arm64  <081985f4d7d83751a5cedb91ba9ba22a> /System/Library/Frameworks/Metal.framework/Metal
0x186d22000 - 0x186d35fff GraphicsServices arm64  <386cdeddb5ac3715ac95e1a47e8ff989> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x186d36000 - 0x186e8efff MobileCoreServices arm64  <d5351855d1353bc7ab733c40c902c94f> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x186e8f000 - 0x186e91fff IOSurfaceAccelerator arm64  <cf8349e45ac1355386a2d94794f075e4> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x186e92000 - 0x186ed3fff AppleJPEG arm64  <823dea35af383cf987bdd6d2b653d41f> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x186ed4000 - 0x187484fff ImageIO arm64  <82ff698c1b2832858b81883dc4387e9c> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x187485000 - 0x1874e9fff BaseBoard arm64  <056461d6a257362bb401dd7cdde9e6ff> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1874ea000 - 0x187501fff AssertionServices arm64  <7f582de4e8513d3a859b0857e6a1715b> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x187502000 - 0x18750afff CorePhoneNumbers arm64  <83ba110750123eebb8d8f9ca4d23062b> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x18750b000 - 0x18754ffff AppSupport arm64  <6a7c482b421336689f81dea823f42b69> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x187550000 - 0x187568fff CrashReporterSupport arm64  <18930e85456c3eb39fe19a4fe0a7d171> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x187569000 - 0x18756efff AggregateDictionary arm64  <95f98162fc7836268686104aabee8c12> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x18756f000 - 0x1875f0fff libTelephonyUtilDynamic.dylib arm64  <40c4c908e762357e8240c77658d12bae> /usr/lib/libTelephonyUtilDynamic.dylib
0x1875f1000 - 0x187610fff ProtocolBuffer arm64  <152c4271579131a0b7a0fee2e97af13e> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x187611000 - 0x18763cfff MobileKeyBag arm64  <f7fe398063d1384291d2c0f09c64e9e1> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x18763d000 - 0x187671fff BackBoardServices arm64  <493035ac3ffc3be2b55e27891d770609> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x187672000 - 0x1876cdfff FrontBoardServices arm64  <6fb061c48f653be48d29f133e1cda578> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1876ce000 - 0x18770afff SpringBoardServices arm64  <21b76097326c3a008eed2a77084a3f1e> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x18770b000 - 0x187719fff PowerLog arm64  <41cea8f218773a5284525799ade4a47e> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x18771a000 - 0x187737fff CommonUtilities arm64  <c93c41c50d3f3f48865808dbc37f3b8a> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x187738000 - 0x187743fff liblockdown.dylib arm64  <8b6eb20e538b3ff2ac2524ea79bbb48c> /usr/lib/liblockdown.dylib
0x187744000 - 0x187a46fff CoreData arm64  <f7f655d45a5538298b509e08f1aaba5e> /System/Library/Frameworks/CoreData.framework/CoreData
0x187a47000 - 0x187a4dfff TCC arm64  <06384f9076eb3e06a7d2a883d6007b3d> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x187a4e000 - 0x187a55fff libcupolicy.dylib arm64  <0e601fb410e03f58a540190040be0570> /usr/lib/libcupolicy.dylib
0x187a56000 - 0x187ae2fff CoreTelephony arm64  <0fdb5acaa4fe318da1114d29788dd568> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x187ae3000 - 0x187b39fff Accounts arm64  <cf6ec46fd00a3ae1be04645e13ae5de5> /System/Library/Frameworks/Accounts.framework/Accounts
0x187b3a000 - 0x187b63fff AppleSauce arm64  <3bbfd85a193f3a529cd5fa4ce93b6a87> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x187b64000 - 0x187b6cfff DataMigration arm64  <e98907cbf67e35ca998fab8c64f92eea> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x187b6d000 - 0x187b73fff Netrb arm64  <9f8ebcf99af53a7087add608b6fb9c2a> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x187b74000 - 0x187ba7fff PersistentConnection arm64  <c0165f30452a34579681483de5c6bcf3> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x187ba8000 - 0x187bb9fff libmis.dylib arm64  <f864082f4e9b3830a0e050fce4352f14> /usr/lib/libmis.dylib
0x187bba000 - 0x187cbafff ManagedConfiguration arm64  <8209e1a1fb3d3bcb8c1a4e0f0ae0cd3a> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x187cbb000 - 0x187cc0fff libReverseProxyDevice.dylib arm64  <d6cfe7cabd433fe5a8bd77fba606479a> /usr/lib/libReverseProxyDevice.dylib
0x187cc1000 - 0x187cd2fff libamsupport.dylib arm64  <e3d28902102333be983a9578f3cc97d3> /usr/lib/libamsupport.dylib
0x187cd3000 - 0x187cd8fff libCoreVMClient.dylib arm64  <017bacb6b7e83fdda154764e0492358a> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x187cd9000 - 0x187cdafff libCVMSPluginSupport.dylib arm64  <79591b228c133dc7a93fcdb529f5c1c9> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x187cdb000 - 0x187cdefff libutil.dylib arm64  <b82455fcf10c34ddbe0871d7e6998071> /usr/lib/libutil.dylib
0x187cdf000 - 0x187d20fff libGLImage.dylib arm64  <9ac83085267733acb9bc652dd70dcc2d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x187d21000 - 0x187d91fff APFS arm64  <b37bd4abf8fc37f985190265ad8dca3e> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x187d92000 - 0x187dc3fff MediaKit arm64  <3b199804d91e3afcb08a2698062cff65> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x187dc4000 - 0x187ddcfff libSERestoreInfo.dylib arm64  <25abfa4121b03a25b5422fa6ba16b695> /usr/lib/updaters/libSERestoreInfo.dylib
0x187de1000 - 0x187e1dfff DiskImages arm64  <4bc2acb597e63ef3a3ac9225ec7ab2f3> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x187e1e000 - 0x187e28fff libGFXShared.dylib arm64  <425823fa3f663785af7e7e72e74a2eee> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x187e29000 - 0x187e6ffff libauthinstall.dylib arm64  <d769efe64c5a3b519087c768cd609565> /usr/lib/libauthinstall.dylib
0x187e70000 - 0x187e78fff IOMobileFramebuffer arm64  <c293967d42ae3c1bae785619369433bd> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x187e79000 - 0x187e84fff OpenGLES arm64  <965a4d787fd038eeacd1bde40d4efe6e> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x187e85000 - 0x187f0cfff ColorSync arm64  <174c246784a4333db343d29ca59affcb> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x187f0d000 - 0x187f37fff CoreVideo arm64  <69c63a3d198a34de9f343ad8e8181059> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x187f38000 - 0x187f39fff libCTGreenTeaLogger.dylib arm64  <3c8d18c26d0b3c24974f155ffb880787> /usr/lib/libCTGreenTeaLogger.dylib
0x187f3a000 - 0x18809cfff CoreAudio arm64  <7ad95e096a253ff58b74a03e3f252a4e> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x18809d000 - 0x1880cbfff CoreAnalytics arm64  <be12a86b5538303fadce7fb5cac04ff5> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1880cc000 - 0x1880cffff UserFS arm64  <52342f6a8e273c7391e327deb2ab82e4> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1880d0000 - 0x188243fff CoreMedia arm64  <7d2c0d08b8833096beb8562460382a8d> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x188244000 - 0x188256fff libprotobuf-lite.dylib arm64  <2ed5fd0c82f8337b96e17a7b1846b878> /usr/lib/libprotobuf-lite.dylib
0x188257000 - 0x1882bbfff libprotobuf.dylib arm64  <0a967243387e32aeb31a8b5ceeac3718> /usr/lib/libprotobuf.dylib
0x1882bc000 - 0x188599fff libAWDSupportFramework.dylib arm64  <db0f4644d45938e39bdace7ecc5c6eeb> /usr/lib/libAWDSupportFramework.dylib
0x18859a000 - 0x1885e0fff WirelessDiagnostics arm64  <24442ae5cff4329fad51f2efd6cb9ec9> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1885e1000 - 0x188699fff ************ arm64  <f5145552cee039648c7e5691ca45bd42> /System/Library/Frameworks/************.framework/************
0x18869a000 - 0x1887a5fff libFontParser.dylib arm64  <d502b1402ada3abfb17dd35e3b6ccfd3> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1887a6000 - 0x1887a7fff FontServices arm64  <c4523d48852f3fcd97ff7b5ae7c51fbc> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1887a8000 - 0x1888f7fff CoreText arm64  <dbab05410da4301782ad6922d55546a0> /System/Library/Frameworks/CoreText.framework/CoreText
0x1888f8000 - 0x188907fff IntlPreferences arm64  <407354c5c0f03388a2e8ef921d092bf2> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x188908000 - 0x188910fff RTCReporting arm64  <8f28852f7e2b3f66880c10cb8e60168b> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x188911000 - 0x18897efff CoreBrightness arm64  <95be0f7b665835619b8a4fca3388ec48> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x18897f000 - 0x18898afff libAudioStatistics.dylib arm64  <3d794f8dcc493d2195d6929f4d09b38d> /usr/lib/libAudioStatistics.dylib
0x18898b000 - 0x188edafff AudioToolbox arm64  <cd064b8fd9443e31acd8903a5e86ba66> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x188edb000 - 0x18910bfff QuartzCore arm64  <c20ac089e8bc3ef6b5469696943058b3> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18910c000 - 0x189117fff MediaAccessibility arm64  <91b9b3571c1230508e59f8b74c4ff32f> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x189118000 - 0x18920afff libiconv.2.dylib arm64  <28fec549f7f6396483fb3b04c800adcb> /usr/lib/libiconv.2.dylib
0x18920b000 - 0x189227fff NetworkStatistics arm64  <67dd3f90fc933567af5f336e36a3f69a> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x189228000 - 0x18923dfff MPSCore arm64  <2b8da25dee323cb0871eb5839266c6b1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x18923e000 - 0x1892a2fff MPSImage arm64  <3db6dec41cc232939f6b382b1f89978d> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1892a3000 - 0x1892c3fff MPSMatrix arm64  <a31c9f69508f3ad285bfefd6c0b79e54> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1892c4000 - 0x1892d2fff CoreAUC arm64  <707e9d20bc113658afececb44cd65468> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1892d3000 - 0x189957fff MediaToolbox arm64  <8f6704bb550a307283b83c0a9064dd7b> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x189958000 - 0x189a1efff MPSNeuralNetwork arm64  <e9b49812899e39b98e4f16b1e4929859> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x189a1f000 - 0x189a1ffff MetalPerformanceShaders arm64  <968c8d8650a6345e99c11a24d4908a14> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x189a20000 - 0x189e53fff FaceCore arm64  <844d3466a2e833bc9b842894a0dbeb8e> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x189e54000 - 0x189e61fff GraphVisualizer arm64  <70b4c4197a78367e9c902a178565d823> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x189e62000 - 0x18a007fff libFosl_dynamic.dylib arm64  <8dade3ca46eb36ba918cabaae25e7279> /usr/lib/libFosl_dynamic.dylib
0x18a008000 - 0x18a26dfff CoreImage arm64  <1403461016a53fd7b1300ee8285ca99d> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x18a26e000 - 0x18a45cfff CoreMotion arm64  <afd7fbffecae315ab9d51a66fe73f81e> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x18a45d000 - 0x18a48bfff CoreBluetooth arm64  <58eee80ada3c37e0a2f73f65faf32bcf> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x18a48c000 - 0x18a4aefff PlugInKit arm64  <9a0fc8c71da23cbaac48ef7266d3b164> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x18a4af000 - 0x18a6d9fff ********* arm64  <9b7337f0725c3eda8d2c4b65555e95d7> /System/Library/PrivateFrameworks/*********.framework/*********
0x18a6da000 - 0x18a75cfff Quagga arm64  <4882f68f499134e8b41f4acda7f7a00b> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x18a75d000 - 0x18a856fff AVFAudio arm64  <075c82c8dcc53050a7fb0b08c2c54ae0> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x18a857000 - 0x18aa45fff AVFoundation arm64  <d24df05f3eef3ce782b731cb168ad371> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x18aa46000 - 0x18aa69fff CacheDelete arm64  <b87a9c4f561c39e19a9745b156e4896a> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x18aa6a000 - 0x18aa8ffff StreamingZip arm64  <dacb59888b7f31a39e95cf0ea3a741ef> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x18aa90000 - 0x18aaa1fff CoreEmoji arm64  <0fed33cbda37338b9a43e1ef58c8e0f2> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x18aaa2000 - 0x18aaf0fff CoreLocationProtobuf arm64  <0bda60fa58b13f409cd272342665fd89> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x18aaf1000 - 0x18aaf8fff SymptomDiagnosticReporter arm64  <c1f54dbc49c53abbbe651644b610c4b0> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x18aaf9000 - 0x18b3f9fff GeoServices arm64  <fdc1a52d650831da9a86f2ff81604d70> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x18b3fa000 - 0x18b411fff MobileAsset arm64  <eb120640325e3381861944af8ca6f3a0> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x18b412000 - 0x18b453fff Lexicon arm64  <3de08451c03d3ad082074fd27e7647d4> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x18b454000 - 0x18b464fff libcmph.dylib arm64  <8b492aa79dc5318481752d5cba68e84b> /usr/lib/libcmph.dylib
0x18b465000 - 0x18b581fff LanguageModeling arm64  <c297b33f937532a1bdfb93eaeac4585f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x18b582000 - 0x18b599fff libmarisa.dylib arm64  <948c4447eef032a2bd7fdb0d5860359c> /usr/lib/libmarisa.dylib
0x18b59a000 - 0x18b634fff CoreLocation arm64  <a99cd07476c533b4aa4b86f00b021282> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x18b635000 - 0x18b635fff PhoneNumbers arm64  <99bc625dc96f3da79670a44a512b853e> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x18b636000 - 0x18b641fff libChineseTokenizer.dylib arm64  <54b3896b7e3c37d7a2aa5cd17ea3b4fd> /usr/lib/libChineseTokenizer.dylib
0x18b642000 - 0x18b6effff libmecab_em.dylib arm64  <f6bedd58e0863c5ea3b2fe91514e9336> /usr/lib/libmecab_em.dylib
0x18b6f0000 - 0x18b6f1fff libThaiTokenizer.dylib arm64  <05630da4695731c2a45c765e3f71b1fe> /usr/lib/libThaiTokenizer.dylib
0x18b6f2000 - 0x18b6f6fff libgermantok.dylib arm64  <b61ca93824353a36954523113f1be1a4> /usr/lib/libgermantok.dylib
0x18b6f7000 - 0x18b74ffff CoreNLP arm64  <631fdf115f0c3047a3ca6dd7b28c073b> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x18b750000 - 0x18b90efff MobileSpotlightIndex arm64  <cd13d8305e4230e6b001ff9d173470c3> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x18b90f000 - 0x18b96efff CoreSpotlight arm64  <422053489b7934eab0a7a04ce68aec1b> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x18b97b000 - 0x18c34dfff JavaScriptCore arm64  <4799a92ec3443fb08ca755c164f083d0> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x18c34e000 - 0x18c353fff libheimdal-asn1.dylib arm64  <1dc1aa4421fe3ddea53a07080c5058c6> /usr/lib/libheimdal-asn1.dylib
0x18c354000 - 0x18c3cefff libate.dylib arm64  <bb4173dd632f3d9baf425608ec3ad1a7> /usr/lib/libate.dylib
0x18c3cf000 - 0x18c471fff TextureIO arm64  <8ac7be2acb3d34d3a4e615ca079bd390> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x18c472000 - 0x18c53cfff CoreUI arm64  <4a466c781455348abd15b094751f2620> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x18c53d000 - 0x18c546fff MobileIcons arm64  <bb9d35b3c7c736f8b563511b2480646f> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x18c547000 - 0x18c555fff AppleFSCompression arm64  <e91d533eee543737900020f2b6dd1209> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x18c556000 - 0x18c5affff TextInput arm64  <4ed4b756c2e53296809c88743e967e7c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x18c5b0000 - 0x18c5d8fff libxslt.1.dylib arm64  <9f41e38d7d1d374eb4c317ffa766d51d> /usr/lib/libxslt.1.dylib
0x18c5d9000 - 0x18c60efff DataDetectorsCore arm64  <4216ff36e76d3b198948ef63cce72439> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x18c60f000 - 0x18c6a4fff FileProvider arm64  <edea29184ec5340588d4ecbd73746b7e> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x18c7a5000 - 0x18c87dfff ProofReader arm64  <ee97f32a3a123aa59f95f66dabc2bce3> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x18c87e000 - 0x18c892fff libAccessibility.dylib arm64  <f9278e55ebdc34528a01f614a78def92> /usr/lib/libAccessibility.dylib
0x18c893000 - 0x18ccebfff libwebrtc.dylib arm64  <cbe7d01cc0113edcb4be72bfb604ce8d> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x18ccec000 - 0x18cd4cfff ContactsFoundation arm64  <908090b11afa38e19e07503963d016d3> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x18cd4d000 - 0x18e0f9fff WebCore arm64  <17b029bf848431a4b7613b41708aca64> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x18e0fa000 - 0x18e26cfff WebKitLegacy arm64  <eb2a2de9272a39b3a671d66f07c2fb87> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x18e26d000 - 0x18e295fff DataAccessExpress arm64  <14e9e1270dca3e0c90bf867c08dbc188> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x18e296000 - 0x18e32efff AddressBookLegacy arm64  <d9124eb1ab7b36b39d61fddb2e60f3a9> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x18e32f000 - 0x18e386fff ProtectedCloudStorage arm64  <0d961aefb29d3cbcae26e5771ab99388> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x18e387000 - 0x18e3b3fff UserNotifications arm64  <1acc9bc755ae33708ad7a5eeadf6b8ec> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x18e3b4000 - 0x18e3bffff AppleIDAuthSupport arm64  <3aa706523b653187bd6759f86313542f> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x18e3c0000 - 0x18e40efff AuthKit arm64  <4217c2891013325e8af4af3e4eb194b8> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x18e439000 - 0x18e48cfff DocumentManager arm64  <e503cef58b6c3e5fa5aab942eaab0f4a> /System/Library/Frameworks/UIKit.framework/Frameworks/DocumentManager.framework/DocumentManager
0x18e48d000 - 0x18f512fff UIKit arm64  <91b739c727bf3af088a2e60d072c4bc6> /System/Library/Frameworks/UIKit.framework/UIKit
0x18f513000 - 0x18f524fff DocumentManagerCore arm64  <1d6d92e48ae03ad784eec78e083b8c36> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x18f525000 - 0x18f529fff HangTracer arm64  <f66e4e75e8073b9290d9723d324edb88> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x18f52a000 - 0x18f57cfff PhysicsKit arm64  <26a33edb2e6b39c083dee711eafd95d1> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x18f57d000 - 0x18f57ffff StudyLog arm64  <9b3ba7d0a1dd3b1da0b003c214cfc816> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x18f580000 - 0x18f660fff UIFoundation arm64  <fa727d25bd7432f3afe426784ff9cdd1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x18f661000 - 0x18f76dfff CloudKit arm64  <b6e98437c800397bb600258e4876eff5> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x18f76e000 - 0x18f76efff IntentsFoundation arm64  <58fb64c6d137314abaecfb881cff4a29> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x18f76f000 - 0x18f838fff Network arm64  <bde470d95445318fafb553255f904220> /System/Library/PrivateFrameworks/Network.framework/Network
0x18f839000 - 0x18fa43fff Intents arm64  <e554b161614c3b4fabab3d33883107bb> /System/Library/Frameworks/Intents.framework/Intents
0x18fa44000 - 0x18fa5ffff libresolv.9.dylib arm64  <1243b6c2a9b93b79898311cb8d37d87a> /usr/lib/libresolv.9.dylib
0x18fa60000 - 0x18fa62fff CoreDuetDebugLogging arm64  <40fcd2a0492a3138ab50daa0fc539408> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x18fa63000 - 0x18fa97fff libtidy.A.dylib arm64  <f8dae748d73237b985dd34f9ef9f953f> /usr/lib/libtidy.A.dylib
0x18fa98000 - 0x18fbc2fff CoreDuet arm64  <8391cd7b01893c7bb5567c9566d16c48> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x18fbc3000 - 0x18fbe1fff CoreDuetContext arm64  <aad357044daa31bab4f12fa570ae8386> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x18fbe2000 - 0x18fbf6fff CoreDuetDaemonProtocol arm64  <c414be876f203f2c98812d573be9bafa> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x18fbf7000 - 0x18fc62fff IMFoundation arm64  <4578e722af3c3d95b4c4653a4d053c61> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x18fc63000 - 0x18fc91fff vCard arm64  <b0a50e4baac93faa8dcdeb7d37e521d1> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x18fc92000 - 0x18fd9dfff Contacts arm64  <4e8acc9e76de3e49a6264964058223e4> /System/Library/Frameworks/Contacts.framework/Contacts
0x18fd9e000 - 0x18fd9ffff DiagnosticLogCollection arm64  <0407e0ba3ca1369ab660fa7268fe39b6> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x18fda0000 - 0x18fda1fff Marco arm64  <ec11d5b066db3ccba4071e3ff4f5d411> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x18fda2000 - 0x18fda8fff MessageProtection arm64  <74b33e70834b36e08cc85a4a4879e890> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x18fda9000 - 0x1900affff StoreServices arm64  <b40b18f3c58c3714aa71bbad550626ba> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1900b0000 - 0x1900c8fff Engram arm64  <9d9ce089ff1f3afda05d4940c5f22a36> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1900c9000 - 0x1901bbfff IDSFoundation arm64  <41b4c422367139d4ab112879dd6f6ee3> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1901bc000 - 0x1901c7fff CaptiveNetwork arm64  <efe68b4b0b703be7a11e9b272d959c91> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1901c8000 - 0x1901f6fff EAP8021X arm64  <939a5773c848382fb2c6f589a7319df1> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1901f7000 - 0x190231fff MobileWiFi arm64  <29fe25fde1de390ba1fc5e51850a17d3> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x190232000 - 0x190234fff OAuth arm64  <ec25f1595c163219b07d21a1ebdb902a> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x190235000 - 0x190237fff CommonAuth arm64  <35c1af3f71213eaeb19292fda822e67a> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x190238000 - 0x1902a6fff Heimdal arm64  <bebb12d6c2ad3ec29327941c42b74394> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1902a7000 - 0x1902d0fff GSS arm64  <548bbe4c52c03344863d9fa6e7e74d60> /System/Library/Frameworks/GSS.framework/GSS
0x1902d1000 - 0x1902e8fff ApplePushService arm64  <98ddaf4158773908adfc7b487ea2f36a> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1902e9000 - 0x190381fff AccountsDaemon arm64  <2c553957a31f3987bcf2288d4f7b0920> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x190382000 - 0x1903a0fff AppleIDSSOAuthentication arm64  <a2ad71e90a133bbbaeab3ab0d1ff4ff7> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1903a1000 - 0x190413fff AppleAccount arm64  <8fa133664e463d33bc3db12321daace3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x190414000 - 0x190527fff CoreUtils arm64  <205f7126c68435e6b87c298ea2c53136> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x190528000 - 0x190641fff IDS arm64  <e8c5adf666fa395487717253f7dabe1e> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x190642000 - 0x190663fff MediaServices arm64  <58cd7ac73c8d3fbea1130cbd4c8d6064> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x190664000 - 0x1907c8fff MediaRemote arm64  <f214ad97f14b3e4fa92d19875f7beedc> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1907c9000 - 0x1907dffff UserManagement arm64  <fa80a3eee8ed3df3a9b0621a317b41b5> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1907e0000 - 0x1907effff MobileBluetooth arm64  <a37f0fabb35d3e58b7765030dd376238> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1907f0000 - 0x190820fff Bom arm64  <f6a7d9df0b4e3146b98f9120475509e1> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x190821000 - 0x190825fff CommunicationsFilter arm64  <82593e02d99a3ef1896d2738be3e57c3> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x190826000 - 0x19084bfff FTAWD arm64  <cfc706af7f7432578aa9eb79f1443dff> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x19084c000 - 0x19089ffff FTServices arm64  <d10443472e333174badf6c90bed39b9c> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1908a0000 - 0x1908f2fff WirelessProximity arm64  <943201719a5f3d32bc29a1a8da34cd41> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity
0x1908f3000 - 0x190907fff ProactiveEventTracker arm64  <a071408501013cbc952df6d84316432b> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x190908000 - 0x190959fff ChunkingLibrary arm64  <9e858a2e8fee301cb87293558c35128d> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x19095a000 - 0x190966fff libnetworkextension.dylib arm64  <969fc737cd7c3812a8e11b396fd14f1f> /usr/lib/libnetworkextension.dylib
0x190967000 - 0x19098bfff AddressBook arm64  <e4f1495656c5396d9524772bc8606703> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x19098c000 - 0x191763fff ModelIO arm64  <2f7cb838222b36f8a818c2ead02ea04d> /System/Library/Frameworks/ModelIO.framework/ModelIO
0x191764000 - 0x1918f9fff NetworkExtension arm64  <f8ccf29da8353dbeb224392264c5dcc5> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1918fa000 - 0x191cfdfff SiriTTS arm64  <85bc1195f02b350cad0c507fc0e9b859> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x191cfe000 - 0x191d57fff SAObjects arm64  <e499a9dd9ed03f02a0ac397841fa0977> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x191d58000 - 0x191d95fff VoiceServices arm64  <1b46a00eef7d3174a3f3f63568c71e65> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x191d96000 - 0x191dc6fff GLKit arm64  <de29ab2e6a5f31bf9ef6a00e855210cf> /System/Library/Frameworks/GLKit.framework/GLKit
0x191dc7000 - 0x191eaafff AssistantServices arm64  <e5c1dafa9e0b3121bddf2fef46bd253d> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x191eab000 - 0x191eb2fff AssetCacheServices arm64  <62e20f91e12536a4bd1822aa9a2cf83e> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x191eb3000 - 0x191f6dfff NetworkServiceProxy arm64  <ad7d948f50603fe09fc726d1ea41f73b> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
0x191f6e000 - 0x192063fff MMCS arm64  <ced3bed517be36959ca94fa76c2cbd6c> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x192064000 - 0x192070fff BluetoothManager arm64  <e77df5a41142320bad7337539fb22a19> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x192071000 - 0x1920e2fff CoreDAV arm64  <b358f74c26e632e09f850f69aad9a2e0> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1920e3000 - 0x192117fff iCalendar arm64  <ec0449d2ec0a36a6a8b8bc5331b14e4a> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x192118000 - 0x192126fff PersonaKit arm64  <544b6cd4f88a3c3194773672c7ee6009> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x192127000 - 0x192181fff CalendarFoundation arm64  <3e648d15da3e3b148acc428b88cd5190> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x192182000 - 0x1921affff PhotosFormats arm64  <1ac9d31535f034229cd2e62a85cc70cf> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1921b0000 - 0x19224cfff CalendarDatabase arm64  <5adfab4f5bee3aa398eee27ddbf3b4b9> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x19224d000 - 0x19229efff CalendarDaemon arm64  <722d8cbc8d4f34bc923e6a1f68f45c23> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x19229f000 - 0x1923bdfff CloudPhotoLibrary arm64  <8492a1c4e3793877bd2a4d06b1a35c23> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1923be000 - 0x1924a2fff EventKit arm64  <28e030bb5ad7361a8710edcb78320ebe> /System/Library/Frameworks/EventKit.framework/EventKit
0x1924a3000 - 0x1924cdfff AssetsLibraryServices arm64  <698f27791d7034a689c77fd45f1cef73> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1924ce000 - 0x192502fff ACTFramework arm64  <014cc5b172983831806751ee9e1c7224> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
0x192503000 - 0x192523fff DCIMServices arm64  <f6d10299f34735db903ee699838e3280> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x192524000 - 0x19265efff CoreMediaStream arm64  <dbb81a956c51318b9807310139d52349> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x19265f000 - 0x192666fff XPCKit arm64  <376bb5e8b8eb3d0db701fa235f66cb1d> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x192667000 - 0x19274dfff CameraKit arm64  <3ee5a1ef8e27321eb12ba895bb3c7834> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
0x19274e000 - 0x192766fff CloudPhotoServices arm64  <b71e23fc569835d4bc4e003b31a74db9> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x192767000 - 0x192772fff CoreRecents arm64  <21a9bf97fe2a3331ad1c2d5806fae645> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x192773000 - 0x192791fff MediaStream arm64  <7363a6ae897a33c693623dc4d56d6b40> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x192792000 - 0x192bb4fff PhotoLibraryServices arm64  <5cc7df3d442b39e8847875a72c938ad5> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x192bb5000 - 0x192bebfff PrototypeTools arm64  <8ce408a0e88e333d91a67609c526f7fa> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x192bec000 - 0x192c77fff CoreSymbolication arm64  <764f455421373db09a19d8108e0cf9a3> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x192c78000 - 0x192da5fff SearchFoundation arm64  <940716936eb6336e89d8cbc3f41f78e2> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x192da6000 - 0x192dacfff IncomingCallFilter arm64  <32b71be35b5436059907648503619ade> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x192dad000 - 0x192e56fff iTunesStore arm64  <e0be60e8ccd63484b6da6dea8dda6bf6> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x192e57000 - 0x192e5dfff libtzupdate.dylib arm64  <14b9516ff0de3d9ebe290d2676f223f6> /usr/lib/libtzupdate.dylib
0x192e5e000 - 0x192fc9fff Preferences arm64  <9d6abde3c55834d98a531c16d91148c0> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x192fca000 - 0x192fd1fff CoreTime arm64  <a3524b97f10839a49081429ea2eb377a> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x192fd2000 - 0x19313bfff CVML arm64  <8651a7c2cbad30d0b8cdc5c7e8915487> /System/Library/PrivateFrameworks/CVML.framework/CVML
0x19313c000 - 0x193188fff CoreAppleCVA arm64  <bd3ce903d5973b67b3c44d681b068b49> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x193189000 - 0x1931bffff DifferentialPrivacy arm64  <e8cd80cc069e3861b5b4801ecbf03175> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1931c0000 - 0x193327fff AppleCVA arm64  <9e47f4da9400376dbe19bcac1587509b> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x193328000 - 0x1933c3fff Montreal arm64  <b8d91ba98e9a3e3a802e9b2fdc9d14c9> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1933c4000 - 0x1935a1fff Espresso arm64  <bdea27aa09cd3ead9ef3d9c7a0003622> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1935a2000 - 0x1935a5fff MobileSystemServices arm64  <0d09764c70b23f0fbaa6567f99cd877c> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1935a6000 - 0x1936f8fff Photos arm64  <21bf9fc3ced03aa684c408354fc37f41> /System/Library/Frameworks/Photos.framework/Photos
0x193705000 - 0x1938cefff CoreML arm64  <b630bba175ae3c72936918f0fe48ff2b> /System/Library/Frameworks/CoreML.framework/CoreML
0x1938cf000 - 0x1938d3fff CoreOptimization arm64  <6e61942f08953dd79fd44cc9d4d744f1> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1938d4000 - 0x193911fff SafariCore arm64  <e48385ff069e3aee9750fa167847ae2a> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x193912000 - 0x19396cfff CorePrediction arm64  <df70b58b59523948add8fa67bdfb7133> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x19396d000 - 0x193a6afff Navigation arm64  <1609d7652f233f1cb60efc484f4980dd> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x193a6b000 - 0x193a83fff ContactsDonation arm64  <a389f11adf4f337b910b48ea4ce88dfe> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x193a84000 - 0x193ab0fff Futhark arm64  <94b384487018392e98214aeecbb00053> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x193af4000 - 0x193b48fff ToneLibrary arm64  <6317905b6f4d3cc49323f024a5e7395c> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x193b49000 - 0x193b5bfff BaseBoardUI arm64  <a0e4b304cf1b3d50bc55e86010cf5ed5> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x193b5c000 - 0x193bb4fff ContactsUICore arm64  <66ba755ae5b93af48b63959e3885d4bf> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x193bb5000 - 0x193d19fff ContactsUI arm64  <68d446eaab6237b688e60211efa2f909> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x193d1a000 - 0x193df6fff CorePDF arm64  <5f5a31ea62323b9bb457ef8fe4ac27d7> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x193df7000 - 0x194057fff Vision arm64  <696cf8a66d663e9ca95af8b42a34fac8> /System/Library/Frameworks/Vision.framework/Vision
0x194058000 - 0x194407fff WebKit arm64  <78b19dea30573176a37ee0092e22b716> /System/Library/Frameworks/WebKit.framework/WebKit
0x194408000 - 0x1944c1fff BulletinBoard arm64  <8e541d7f29333bdbaf5ea22cd329e76d> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x1944c2000 - 0x1944c7fff ConstantClasses arm64  <c3088199f6053479a84def559224703f> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1944c8000 - 0x1944d0fff CertUI arm64  <7381d962586b34f88c298235a022de64> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1944d1000 - 0x194515fff AXRuntime arm64  <6a040aef0bb63bbfb362cf51c1613885> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x194516000 - 0x19454dfff ScreenReaderCore arm64  <91faaa92b7b7329f8ed639d4c95a854d> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x19454e000 - 0x194571fff TextToSpeech arm64  <670c94e771f3384f8bbe4fbe884d82f5> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x194572000 - 0x1945b8fff CoreMIDI arm64  <cbe0ac6dd252317792c2ea306bbb0f31> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1945b9000 - 0x194655fff MediaPlatform arm64  <b1a2014666ea35abaf09c4e2b9464729> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x194656000 - 0x1946b5fff WebBookmarks arm64  <f8ccbfd103623f2dbcec8e19359e3920> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1946b6000 - 0x1946bcfff DAAPKit arm64  <1489e0c7529436419e775108edc2851e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1946bd000 - 0x1946bffff libAXSafeCategoryBundle.dylib arm64  <21766878d5bd36e094b735853c3cd3d5> /usr/lib/libAXSafeCategoryBundle.dylib
0x1946c0000 - 0x1946cafff libAXSpeechManager.dylib arm64  <6725709d4ee73c9e9baecb53c16db2b1> /usr/lib/libAXSpeechManager.dylib
0x1946cb000 - 0x1947aefff AccessibilityUtilities arm64  <aa54f44c2ce5380f853ffb425719f9d5> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x1947af000 - 0x194a87fff MediaLibraryCore arm64  <f58e8d75a5833f199d5121a25b85fb63> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x194a88000 - 0x194a88fff AdSupport arm64  <52aeb59762cc30399d7dd506a9739686> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x194a89000 - 0x194d07fff MusicLibrary arm64  <6ddc4b85c8e63282ab77faa15ab06b14> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x194d08000 - 0x195390fff VectorKit arm64  <80e45f0d02973b81a25b9f8933b359ed> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x195391000 - 0x1955cefff MapKit arm64  <0b0652fdca563d429da1b66809b79a42> /System/Library/Frameworks/MapKit.framework/MapKit
0x1955cf000 - 0x195747fff iTunesCloud arm64  <ba5787ebac97338a9cc3126d539ca42a> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x195748000 - 0x1957e8fff HomeSharing arm64  <8d47fbe5e22a3508aea12b531cebe07e> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1957e9000 - 0x19585efff WebInspector arm64  <7962fa14fbf43e05a60848e3733a08f9> /System/Library/PrivateFrameworks/WebInspector.framework/WebInspector
0x19585f000 - 0x195947fff ITMLKit arm64  <75bbee6d36993b1eb8f68e36fe1f3413> /System/Library/PrivateFrameworks/ITMLKit.framework/ITMLKit
0x195958000 - 0x195db4fff MediaPlayer arm64  <9cd3159587c4334cb1b0c1d9000647f3> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x195db5000 - 0x195ddafff MobileInstallation arm64  <d0101b2690a23497b076bf9228df2639> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x195de5000 - 0x195de7fff InternationalTextSearch arm64  <9372e2b53c1232afbb6e632ad2d99297> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x195e44000 - 0x195e73fff ProactiveSupport arm64  <61b570cb80343294a2d0f8bd9022adc2> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x195ead000 - 0x195f61fff TelephonyUtilities arm64  <9e474173abf8315aa1311cb75cb83821> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x195f62000 - 0x195f9cfff CalendarUIKit arm64  <92d3bd0fd08c32ce8c1edf55693f0af0> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x195f9d000 - 0x195fb4fff AccessibilityUIUtilities arm64  <c981e25f62a533e88ed470020f8c56cc> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x196011000 - 0x196024fff AssetsLibrary arm64  <824dd9df6e7c387cb5e05b1ba4557491> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x196025000 - 0x196203fff EventKitUI arm64  <0fc31e3c6ed43ff581c6e991d749c3b6> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x196204000 - 0x19625ffff AXMediaUtilities arm64  <2d3dcd1a04613d178b3b2b7409a6ff15> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
0x196260000 - 0x1962d4fff UIAccessibility arm64  <c64c815880d13bef9b86a45d5aed61fd> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
0x1962f0000 - 0x1962f6fff SearchToSharePredictions arm64  <06ee3054c9603bd5a8817d8af8d3ade9> /System/Library/PrivateFrameworks/SearchToSharePredictions.framework/SearchToSharePredictions
0x1962f7000 - 0x196398fff Social arm64  <789e190d2db23d6c9a4ab37399b2a1b6> /System/Library/Frameworks/Social.framework/Social
0x1963ad000 - 0x196412fff RemoteUI arm64  <29baf8fdb26e39c8b4ede4011e6f5ee3> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x196441000 - 0x1964b0fff CoreSuggestions arm64  <754bdff89a093f328da165a309c18574> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1964c2000 - 0x196557fff CoreRecognition arm64  <054162fad91235dcb8b4250c97ea1e1d> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1966c4000 - 0x1968e6fff libmecabra.dylib arm64  <4064586712ce33fd95d8738a34b21f7b> /usr/lib/libmecabra.dylib
0x1968e7000 - 0x196989fff CoreParsec arm64  <9b719b80f87e3cf39762809f06ec3341> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x19698a000 - 0x1969b9fff AirTraffic arm64  <433cd02d87aa341383810696452b0b17> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
0x1969ba000 - 0x1969eafff SharedUtils arm64  <65cf05decaa430988124bdb58a8b4b3f> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x196a27000 - 0x196aecfff VideoSubscriberAccount arm64  <44e832d1212f39e2b1c783aa72ea3e5f> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x196aed000 - 0x196b1efff Pegasus arm64  <a1cc1f9c0fb73dacb2c2ac287f0e0a01> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x196b1f000 - 0x196b9ffff AVKit arm64  <7f65e1c7e0c237a48ae26c3184128429> /System/Library/Frameworks/AVKit.framework/AVKit
0x196ba0000 - 0x196bc3fff AuthKitUI arm64  <931fb70325e130c29c226d6194311457> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x196bc8000 - 0x196bdbfff SharedWebCredentials arm64  <668b9208fff1348484fe412386521ee6> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x196bdc000 - 0x196bdcfff MobileObliteration arm64  <ee76723715fd3a1a8d671903c398154c> /System/Library/PrivateFrameworks/MobileObliteration.framework/MobileObliteration
0x196bdd000 - 0x196be0fff SafariFoundation arm64  <3f43d37367d53332b24fcb2b2c04eb7a> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x196d68000 - 0x196d7efff LocalAuthentication arm64  <350457630f0132729a02a1ad396d68e0> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x196d7f000 - 0x196d81fff ParsecSubscriptionServiceSupport arm64  <a4f90e84376f303483678802b1ce3523> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x196d82000 - 0x196e29fff SpringBoardFoundation arm64  <13b48046516e36b795b9fd1683bf7d77> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
0x196e2a000 - 0x196e42fff CoreInterest arm64  <75f73d10502d3a93ae8910abb6caa246> /System/Library/PrivateFrameworks/CoreInterest.framework/CoreInterest
0x196e43000 - 0x1970a6fff SafariShared arm64  <a03dc2d996b130b09c70598cccd18db5> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1970a7000 - 0x1970e1fff WebUI arm64  <ce4028f9f8ed3afcbaed76be9630098f> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x19715c000 - 0x197164fff HSAAuthentication arm64  <391de19e1b3c3ccdb59404c3f6b83fe1> /System/Library/PrivateFrameworks/HSAAuthentication.framework/HSAAuthentication
0x197165000 - 0x19716efff MobileStorage arm64  <20f06866a42a358893db330135f71ee2> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x19716f000 - 0x1971b1fff ContentIndex arm64  <554c377745a23719aadb84480313d5f2> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x1971b2000 - 0x1974a5fff ImageCapture arm64  <7898d246a0de3cb6ac3b52957141dda0> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x197678000 - 0x19768efff iPhotoMigrationSupport arm64  <0321dff1e33d38c9a3be55f26c142557> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport
0x19768f000 - 0x1976a1fff DiagnosticExtensions arm64  <f37c4622b060340abeaca6d9bf176079> /System/Library/PrivateFrameworks/DiagnosticExtensions.framework/DiagnosticExtensions
0x1976a2000 - 0x1976c3fff LatentSemanticMapping arm64  <e9e972f000b331adb688071abeea6571> /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/LatentSemanticMapping
0x1979a8000 - 0x197a3ffff PhotoLibrary arm64  <440d73df0c493acbbacd41eb7f854b7e> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x197a40000 - 0x197d90fff PhotosUICore arm64  <0b0665552ea83178a5153ebad6402b55> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x197e3f000 - 0x197e45fff LinguisticData arm64  <3b96ad6f77363ad993a1d2da8b55a709> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x197e5f000 - 0x197ee9fff PhotoEditSupport arm64  <22f965c03e22397e980b72fbcbde8ac2> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport
0x197eea000 - 0x197efcfff SiriTasks arm64  <87c43ba151493ee08dd0a9f947ab9a5d> /System/Library/PrivateFrameworks/SiriTasks.framework/SiriTasks
0x197efd000 - 0x198319fff PhotosUI arm64  <8fe45147a2be3a28ad3bc58a5d87f3ad> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x198423000 - 0x198450fff StoreKit arm64  <8ecfc9bbded8340192e7726a3b278c7d> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1985e2000 - 0x1985fcfff MetalKit arm64  <0cf9cd7754c83821b002d4654e7786ab> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1985fd000 - 0x19861efff GenerationalStorage arm64  <010e586020193be287a48e99b625a826> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x19861f000 - 0x198a68fff SceneKit arm64  <b4c79504205b3def9efea2295119544c> /System/Library/Frameworks/SceneKit.framework/SceneKit
0x198a69000 - 0x198b37fff CoreHandwriting arm64  <99efca2bdafb3254a117bb4e785c39b6> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1990db000 - 0x199205fff PencilKit arm64  <3b42b88d68833eb2899dc574005c1357> /System/Library/PrivateFrameworks/PencilKit.framework/PencilKit
0x199206000 - 0x199223fff QuickLookThumbnailing arm64  <2d69ab87829e362baacee02a6a8edffd> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x199224000 - 0x1992d6fff PDFKit arm64  <64a4e98ffcd93a22a743382db62e1c8d> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1992d7000 - 0x199403fff AnnotationKit arm64  <d48e3f4bf2f4310795c80a573fdd8a88> /System/Library/PrivateFrameworks/AnnotationKit.framework/AnnotationKit
0x199625000 - 0x199655fff MarkupUI arm64  <dac9ddd11bc73c6aaee340295b81c9f9> /System/Library/PrivateFrameworks/MarkupUI.framework/MarkupUI
0x199678000 - 0x199732fff QuickLook arm64  <f60e3cb8abf23d05835df28261007f31> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x19981b000 - 0x199861fff SafariSafeBrowsing arm64  <675b6320b011307886a97bad4d294e7a> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x199880000 - 0x199987fff SafariServices arm64  <31dec52bc9c0330e963f8cb14ed24930> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x199988000 - 0x1999bffff AppStoreDaemon arm64  <ec2326a5b0b63215bf3f06f1eb7888f6> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x199a8d000 - 0x199b31fff TSUtility arm64  <65357ecb5243388c85bfe48293a6257b> /System/Library/PrivateFrameworks/TSUtility.framework/TSUtility
0x199b32000 - 0x199d03fff iTunesStoreUI arm64  <ffb2d93af4d53a2497b32e1dd8d96743> /System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI
0x199e1d000 - 0x199ed9fff Radio arm64  <e6c736a3076339d1af8875d34f14be0a> /System/Library/PrivateFrameworks/Radio.framework/Radio
0x19a009000 - 0x19a034fff BookLibrary arm64  <e1e94eb9b60d30b4b9d33c84a428091e> /System/Library/PrivateFrameworks/BookLibrary.framework/BookLibrary
0x19a035000 - 0x19a11ffff MediaPlaybackCore arm64  <672bc13dfccc3534b0b85abb13f55ce9> /System/Library/PrivateFrameworks/MediaPlaybackCore.framework/MediaPlaybackCore
0x19a2db000 - 0x19a322fff MPUFoundation arm64  <14377e20c9903cf4ac3ad248d7480bda> /System/Library/PrivateFrameworks/MPUFoundation.framework/MPUFoundation
0x19a323000 - 0x19a77bfff StoreKitUI arm64  <55a904aa088e357f86b914f994ff68e7> /System/Library/PrivateFrameworks/StoreKitUI.framework/StoreKitUI
0x19a9b7000 - 0x19a9d3fff MediaPlayerUI arm64  <6890e31a74c738789525db8f68e44b09> /System/Library/PrivateFrameworks/MediaPlayerUI.framework/MediaPlayerUI
0x19b05c000 - 0x19b06bfff NewsFoundation arm64  <ae1734b6b8ae3047a8dcc89f735593ea> /System/Library/PrivateFrameworks/NewsFoundation.framework/NewsFoundation
0x19b06c000 - 0x19b2c1fff NewsTransport arm64  <247b8be816813bcb879020dc9784fa69> /System/Library/PrivateFrameworks/NewsTransport.framework/NewsTransport
0x19b429000 - 0x19b781fff NewsCore arm64  <070d4d119ab736a58268b814d375abff> /System/Library/PrivateFrameworks/NewsCore.framework/NewsCore
0x19b7bf000 - 0x19b807fff ClockKit arm64  <41d4bd3cfad938f88578e0af26de96e6> /System/Library/PrivateFrameworks/ClockKit.framework/ClockKit
0x19b827000 - 0x19b82bfff NewsDaemon arm64  <25123f25fe783e8a99c2e7a868427f97> /System/Library/PrivateFrameworks/NewsDaemon.framework/NewsDaemon
0x19be02000 - 0x19be17fff NewsServicesInternal arm64  <d6990f1a592430ccae9ec20d17bc4d1d> /System/Library/PrivateFrameworks/NewsServicesInternal.framework/NewsServicesInternal
0x19bfd2000 - 0x19bfd8fff DuetRecommendation arm64  <30818bf2652c31d59a175fb3f874b6d9> /System/Library/PrivateFrameworks/DuetRecommendation.framework/DuetRecommendation
0x19c190000 - 0x19c1f9fff NewsToday arm64  <c6469fcb07aa3ac086aa76c266796937> /System/Library/PrivateFrameworks/NewsToday.framework/NewsToday
0x19c376000 - 0x19c37afff NewsServices arm64  <7855ee5938db3dec969be9ffa93f5682> /System/Library/PrivateFrameworks/NewsServices.framework/NewsServices
0x19dc8b000 - 0x19dcaffff AppSupportUI arm64  <96170c4a5b78353aba3a9cf5b8b729f9> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x19e45c000 - 0x19e4e8fff LinkPresentation arm64  <9e2b2460d3dc373189bb85bccb5e5469> /System/Library/PrivateFrameworks/LinkPresentation.framework/LinkPresentation
0x1a027c000 - 0x1a02cafff DataDetectorsUI arm64  <7d3d5e72584531168308f0201394e49d> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x1a428b000 - 0x1a4540fff RawCamera arm64  <844cd630601c31729853cd4471b9d00c> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1a470b000 - 0x1a47bcfff AGXMetalA9 arm64  <29d3be1c57183e8599fb6a7abbaef2e3> /System/Library/Extensions/AGXMetalA9.bundle/AGXMetalA9
0x1a47f6000 - 0x1a480afff libCGInterfaces.dylib arm64  <7419266fcecb3472be5cbd00b9fb4be2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1a6c66000 - 0x1a6c8dfff CoreServicesInternal arm64  <0927f80bd9de335e9ce3eb812e695e6a> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1a725c000 - 0x1a726dfff libGSFontCache.dylib arm64  <50b74f1d848d3bb693fedc5ec5abcdd4> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1a726e000 - 0x1a72a0fff libTrueTypeScaler.dylib arm64  <368042c6615c3311b21a920e048e67f9> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1a7bcf000 - 0x1a7bcffff libmetal_timestamp.dylib arm64  <6c85a8a9c12f36c8ab32bdbdf2799080> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
0x1a8a2d000 - 0x1a8a30fff InternationalSupport arm64  <ee6d1235952e38c5a2cceb4377192f5b> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1aab85000 - 0x1aab9bfff WebContentAnalysis arm64  <36390cc87f7e31c98271a3a7ca03553c> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
0x1ac7c3000 - 0x1ac7f4fff libclosured.dylib arm64  <aefc8840686d30a88277d7efcb70abaf> /usr/lib/closure/libclosured.dylib

EOF

I just replaced UIWebView with WKWebView in the sample app which I wrote in my first post.

Weird. That’s definitely the same bug we’ve been talking about — for the record, it’s being tracked as (r. 33863247) — but I was under the impression that this would not affect

WKWebView
. Clearly I was mistaken. Sorry about the noise.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

To solve this you can set the following environment variable to disable the buggy JIT in iOS 11:

setenv("JSC_useJIT", "false", 0);