Porting Linux app to macOS

Hello,

I have a command line tool, which depends on some my own dylibs and some third-party dylibs. All of them are build successfully on MacOS and run without problem on my test machine. I want to distribute the app with a installer package.

I can enable hardened runtime on the command line tool and every dylib file, codesign them, build the package and get it notarized.

I just have three questions:

  1. I want to keep the folder structure which includes all the binaries as Linux, rather than put them into an app bundle. Is it possible on MacOS?
  2. For Catalina, I need to add a Info.plist for the command line tool. Is there any way to do it from command line after build process? If not, how can I do it during the build process without using Xcode IDE?
  3. Do I need to enable hardened runtime and add Info.plist to dylibs for them to be loaded on Catalina?

Thanks!

Replies

1. It is certainly possible, but not really advisable. This will confuse many users and make the app harder to uninstall.

2. Why do you need an Info.plist file for Catalina? It is possible to sometimes embed metadata inside the executable, but that's an obscure and risky approach.

3. It would probably be a good idea.


My suggestion would be to go ahead and bundle everything into an app bundle. The "app" doesn't have to do much. Maybe it can have one button to validate itself and another to remove itself. Mac users often hack up their machines in unsupported ways that would make even Linux hackers cringe. It is extremely common for apps to be partially uninstalled.


Having an app bundle solves many notarization or Info.plist issues. (But I would still like to know why you need the Info.plist. It sounds like this is a technical issue that I don't know about, but would like to learn about.) Just because you have an app bundle doesn't mean anyone really has to interact with it. You always install symlinks or aliases to the command-line tools inside the bundle, if necessary. Or maybe users just add the "bin" folder in Resources to their path.


An app bundle just solves tons of problems. It isn't really the "Linux" way of doing things, but it is important to remember that the Linux method is, itself, an abberation. Linux is built upon package managers that install everything into /usr. Anyone who has used that system can testify to how much trouble that can cause. Originally in Unix, it was common practice for 3rd party apps to be self contained in a directory hierarchy somewhere off root.

Thanks for your reply.

I read this article about the Info.plist requirement.

https://eclecticlight.co/2019/06/13/building-and-delivering-command-tools-for-catalina/


Yesterday, I found this one.

https://eclecticlight.co/2019/06/21/notarization-made-a-bit-simpler/


Seems Info.plist is not required for command line tools to be notarized for Catalina.


I just have one more question. If I put everything into a app bundle, do I have to add a Info.plist in app.bundle/Contents folder and command line tool to app.bundle/Contents/MacOS folder, following the bundle structure strictly? Thanks!

I want to distribute the app with a installer package.

If your final plan is to distribute an installer package, I don’t think it’s worthwhile trying to force your product into an bundle structure. There are situations where that’s useful — for example, if your tool needs entitlements that have to be whitelisted by a provisioning profile — but if you’re not in that situation and your users expect a UNIX-y style UI then using an installer to lay things out in a UNIX-y fashion is just fine.

My general recommendation is that you install to

/usr/local/
. A good approach here is to create a directory there based on your product name (
/usr/local/WaffleVarnisher/
) and then, within that directory, create a typical UNIX-y layout (
/usr/local/WaffleVarnisher/bin/
,
/usr/local/WaffleVarnisher/lib/
, and so on).

Share and Enjoy

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

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

Sorry, I thought you were dealing with some really obscure behaviour that might require an Info.plist file. I have seen such things before and if you are porting Linux software, there is no telling what you might be doing that could cross the command-line/GUI barrier.


If your concern is only from what you've read on a blog, then don't worry about it. There is a large, relatively hidden, community of developers building great, useful apps for the Mac and iOS. Then there is a much smaller community of people blogging about it. There is very little overlap between the two. 😉


Depending on what kind of tool you are developing, and who your audience is, an app bundle might be a very good idea for the reasons I mentioned above. It can repair itself, update itself, and remove itself in ways that are much more user-friendly than typical command-line tools. Your bundle just needs to be a valid bundle as generated from the Xcode template. You can then include an entire installation directory inside the "Resource" folder that includes everything you need. A good example of this is the GDAL frameworks posted at www.kyngchaos.com/software/frameworks/. The frameworks themselves are out-of-date, but it is a good example to see how you could port Linux software to the Mac.


But if you are sure that your target audience can handle the command line, you don't have to work that hard. You can do as eskimo suggests and just distribute an installer package. That will work fine. The important point to remember is that you just need to get past Gatekeeper. If your package is properly notarized, then Gatekeeper will be happy. A flat installer package is one of the supported formats. I haven't done any installer packages for years, so I can't provide much help with that, but it should work fine. It is something that you should definitely just try first and then ask for help only if it fails. Usually the only time people get into trouble is when they have some really funky business procedures and they've ignored all of Apple's warning e-mails for months. If you are starting with a new project, then you can simply do it properly the first time. If you do encounter problems, people here would be very willing to help if you don't have any crazy build or distribution process.

My installer package can be run successfully before notarization. After being notarized, the installer cannot be started at all.

The pkg file seems no currupt. Its contents can be browsed by Suspicious Package.app. Ths signature is also valid.

This is the crash report:


Process:               Installer [49080]
Path:                  /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
Identifier:            com.apple.installer
Version:               6.2.0 (934.2)
Build Info:            Installer-934002000000000~161
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Installer [49080]
User ID:               501


Date/Time:             2019-09-24 17:20:10.529 +0800
OS Version:            Mac OS X 10.14.6 (18G87)
Report Version:        12
Bridge OS Version:     3.0 (14Y904)
Anonymous UUID:        C5DEA1AC-8943-0675-F5C6-6A3FA3553394


Sleep/Wake UUID:       8D3E18F1-18DF-4FBF-B000-2115F9B98B02


Time Awake Since Boot: 66000 seconds
Time Since Wake:       13000 seconds


System Integrity Protection: disabled


Crashed Thread:        0  Dispatch queue: com.apple.main-thread


Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY


Application Specific Information:
dyld3 mode
abort() called


Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        0x00007fff6c8732c6 __pthread_kill + 10
1   libsystem_pthread.dylib        0x00007fff6c92ebf1 pthread_kill + 284
2   libsystem_c.dylib              0x00007fff6c7dd6a6 abort + 127
3   libxar.1.dylib                0x00007fff6bcb2874 xar_gzip_fromheap_in + 478
4   libxar.1.dylib                0x00007fff6bcaf509 xar_attrcopy_from_heap + 418
5   libxar.1.dylib                0x00007fff6bcac13d xar_darwinattr_extract + 484
6   libxar.1.dylib                0x00007fff6bcaae77 xar_arcmod_extract + 71
7   com.apple.installframework    0x00007fff5dfc892b -[IFXARArchive extractEntry:toDestination:withError:] + 152
8   com.apple.installframework    0x00007fff5dfc8a84 -[IFXARArchive extractEntry:toDestination:withError:] + 497
9   com.apple.installframework    0x00007fff5dfc8a84 -[IFXARArchive extractEntry:toDestination:withError:] + 497
10  com.apple.installframework    0x00007fff5dfc8a84 -[IFXARArchive extractEntry:toDestination:withError:] + 497
11  com.apple.installframework    0x00007fff5dfc8a84 -[IFXARArchive extractEntry:toDestination:withError:] + 497
12  com.apple.installframework    0x00007fff5dfc8a84 -[IFXARArchive extractEntry:toDestination:withError:] + 497
13  com.apple.installframework    0x00007fff5dfee2db -[IFDistXMLDocument(ArchiveEmbedded) _embeddedArchivePluginsPath] + 360
14  com.apple.installframework    0x00007fff5df96fb9 -[IFDistXMLDocument installerSectionPaths] + 136
15  com.apple.installer            0x000000010b724b7a 0x10b705000 + 129914
16  com.apple.installer            0x000000010b7151b6 0x10b705000 + 65974
17  com.apple.installer            0x000000010b7154e0 0x10b705000 + 66784
18  com.apple.AppKit              0x00007fff3e294a10 -[NSApplication _doOpenFile:ok:tryTemp:] + 375
19  com.apple.AppKit              0x00007fff3e29f5b9 __71-[NSApplication(NSAppleEventHandling) _openURLs:withCompletionHandler:]_block_invoke.141 + 301
20  com.apple.AppKit              0x00007fff3e29f384 withWindowOrderingObserverHeuristic + 455
21  com.apple.AppKit              0x00007fff3e29f050 -[NSApplication(NSAppleEventHandling) _openURLs:withCompletionHandler:] + 998
22  com.apple.AppKit              0x00007fff3e106d3e __69-[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:]_block_invoke + 886
23  com.apple.AppKit              0x00007fff3ddd4a7a __90-[NSDocumentController(NSInternal) _autoreopenDocumentsFromRecords:withCompletionHandler:]_block_invoke + 66
24  com.apple.AppKit              0x00007fff3ddd49af -[NSDocumentController(NSInternal) _autoreopenDocumentsFromRecords:withCompletionHandler:] + 342
25  com.apple.AppKit              0x00007fff3ddd4831 __97-[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:]_block_invoke_3 + 95
26  com.apple.AppKit              0x00007fff3ddd4416 -[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:] + 722
27  com.apple.AppKit              0x00007fff3ddd3c69 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:completionHandler:] + 249
28  com.apple.AppKit              0x00007fff3e10693d -[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:] + 228
29  com.apple.AppKit              0x00007fff3ddd3707 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 764
30  com.apple.Foundation          0x00007fff42a7bb3c -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 286
31  com.apple.Foundation          0x00007fff42a7b9b9 _NSAppleEventManagerGenericHandler + 102
32  com.apple.AE                  0x00007fff419fd397 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 1815
33  com.apple.AE                  0x00007fff419fcc29 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 41
34  com.apple.AE                  0x00007fff419fcb01 aeProcessAppleEvent + 414
35  com.apple.HIToolbox            0x00007fff3fa408b7 AEProcessAppleEvent + 54
36  com.apple.AppKit              0x00007fff3ddcfabd _DPSNextEvent + 1935
37  com.apple.AppKit              0x00007fff3ddce48b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
38  com.apple.AppKit              0x00007fff3ddc85a8 -[NSApplication run] + 699
39  com.apple.AppKit              0x00007fff3ddb7ae8 NSApplicationMain + 777
40  com.apple.installer            0x000000010b7068a6 0x10b705000 + 6310
41  libdyld.dylib                  0x00007fff6c7383d5 start + 1


Thread 1:
0   libsystem_kernel.dylib        0x00007fff6c870472 __recvfrom + 10
1   com.apple.installframework    0x00007fff5df96081 do_log_udp_listen + 260
2   libsystem_pthread.dylib        0x00007fff6c92c2eb _pthread_body + 126
3   libsystem_pthread.dylib        0x00007fff6c92f249 _pthread_start + 66
4   libsystem_pthread.dylib        0x00007fff6c92b40d thread_start + 13


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


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


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


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


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


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


Thread 8:
0   libsystem_pthread.dylib        0x00007fff6c92b3f0 start_wqthread + 0


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


Thread 10:: JavaScriptCore bmalloc scavenger
0   libsystem_kernel.dylib        0x00007fff6c87086a __psynch_cvwait + 10
1   libsystem_pthread.dylib        0x00007fff6c92f56e _pthread_cond_wait + 722
2   libc++.1.dylib                0x00007fff6996ab31 std::__1::condition_variable::__do_timed_wait(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=""> > >) + 93
3   com.apple.JavaScriptCore      0x00007fff43cbd235 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=""> > >(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&) + 117
4   com.apple.JavaScriptCore      0x00007fff43cbd0ff std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock, std::__1::chrono::steady_clock,="" std::__1::chrono::duration=""> >(std::__1::unique_lock&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long="" long,="" std::__1::ratio<1l,="" 1000000000l=""> > > const&) + 95
5   com.apple.JavaScriptCore      0x00007fff43cbbdc6 bmalloc::Scavenger::threadRunLoop() + 262
6   com.apple.JavaScriptCore      0x00007fff43cbb579 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 9
7   com.apple.JavaScriptCore      0x00007fff43cbcee7 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::Scavenger*), bmalloc::Scavenger*> >(void*) + 39
8   libsystem_pthread.dylib        0x00007fff6c92c2eb _pthread_body + 126
9   libsystem_pthread.dylib        0x00007fff6c92f249 _pthread_start + 66
10  libsystem_pthread.dylib        0x00007fff6c92b40d thread_start + 13


Thread 11:
0   libsystem_kernel.dylib        0x00007fff6c87086a __psynch_cvwait + 10
1   libsystem_pthread.dylib        0x00007fff6c92f5a1 _pthread_cond_wait + 773
2   com.apple.Foundation          0x00007fff42a7d41f -[NSCondition waitUntilDate:] + 130
3   com.apple.Foundation          0x00007fff42a9fad8 -[NSConditionLock lockWhenCondition:beforeDate:] + 91
4   com.apple.installframework    0x00007fff5df95017 +[IFDTargetController(WorkerThread) _handleTargetRequests] + 647
5   com.apple.Foundation          0x00007fff42a325c2 __NSThread__start__ + 1194
6   libsystem_pthread.dylib        0x00007fff6c92c2eb _pthread_body + 126
7   libsystem_pthread.dylib        0x00007fff6c92f249 _pthread_start + 66
8   libsystem_pthread.dylib        0x00007fff6c92b40d thread_start + 13


Thread 12:
0   com.apple.CoreFoundation      0x00007fff407f27b2 -[__NSDictionaryM objectForKey:] + 67
1   com.apple.installframework    0x00007fff5df97760 -[IFDistXMLDocument(InstallerPrivate) installsOperatingSystem] + 51
2   com.apple.installframework    0x00007fff5df97f54 -[IFDTargetController(DiskProcessing) _volumeAppeared:] + 84
3   com.apple.CoreFoundation      0x00007fff4083bb96 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
4   com.apple.CoreFoundation      0x00007fff4083bb10 ___CFXRegistrationPost_block_invoke + 63
5   com.apple.CoreFoundation      0x00007fff4083ba7a _CFXRegistrationPost + 404
6   com.apple.CoreFoundation      0x00007fff40843f28 ___CFXNotificationPost_block_invoke + 87
7   com.apple.CoreFoundation      0x00007fff407ac8b4 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1642
8   com.apple.CoreFoundation      0x00007fff407abc67 _CFXNotificationPost + 732
9   com.apple.installframework    0x00007fff5df9559f -[IFDTargetController(DiskProcessing) _processInitialDisks] + 376
10  com.apple.Foundation          0x00007fff42a325c2 __NSThread__start__ + 1194
11  libsystem_pthread.dylib        0x00007fff6c92c2eb _pthread_body + 126
12  libsystem_pthread.dylib        0x00007fff6c92f249 _pthread_start + 66
13  libsystem_pthread.dylib        0x00007fff6c92b40d thread_start + 13


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000113cad5c0  rcx: 0x00007ffee44f73b8  rdx: 0x0000000000000000
  rdi: 0x0000000000000507  rsi: 0x0000000000000006  rbp: 0x00007ffee44f73f0  rsp: 0x00007ffee44f73b8
   r8: 0x0000000000000000   r9: 0x00007ffee44f7020  r10: 0x0000000000000000  r11: 0x0000000000000206
  r12: 0x0000000000000507  r13: 0x0000640000000000  r14: 0x0000000000000006  r15: 0x000000000000002d
  rip: 0x00007fff6c8732c6  rfl: 0x0000000000000206  cr2: 0x00007fffa2fc0188
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133




Binary Images:
       0x10b705000 -        0x10b734ff7  com.apple.installer (6.2.0 - 934.2) <36BD6561-1B22-3E97-8260-8A7CEF63A27A> /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
       0x1136ff000 -        0x113702047  libobjc-trampolines.dylib (756.2) <5795A048-3940-3801-90CE-33D1B1AF81F4> /usr/lib/libobjc-trampolines.dylib
       0x113c0b000 -        0x113c756ef  dyld (655.1.1)  /usr/lib/dyld
    0x7fff34ec5000 -     0x7fff34ed4ff7  libSimplifiedChineseConverter.dylib (73) <1D43794E-BEB8-359B-A27D-A8C623C925B1> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x7fff34f00000 -     0x7fff35259fff  com.apple.RawCamera.bundle (8.15.0 - 1031.4.4)  /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff3525c000 -     0x7fff35368fff  com.apple.AMDMTLBronzeDriver (2.11.20 - 2.1.1) <1D8E8E3B-88F4-35B1-8E83-AE74B558C26C> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
    0x7fff3ae4a000 -     0x7fff3b17bff7  com.apple.driver.AppleIntelSKLGraphicsMTLDriver (12.10.12 - 12.1.0) <5EA99AFC-48E4-3D83-AEDD-576D86B64BE9> /System/Library/Extensions/AppleIntelSKLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelSKLGraphicsMTLDriver
    0x7fff3c7d7000 -     0x7fff3c9b3ffb  com.apple.avfoundation (2.0 - 1550.4) <5854207B-6106-3DA4-80B6-36C42D042F26> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff3c9b4000 -     0x7fff3ca79fff  com.apple.audio.AVFAudio (1.0 - ???)  /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff3cb81000 -     0x7fff3cb81fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff3cb82000 -     0x7fff3cb98ff7  libCGInterfaces.dylib (506.22) <1B6C92D9-F4B8-37BA-9635-94C4A56098CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff3cb99000 -     0x7fff3d232fef  com.apple.vImage (8.1 - ???) <53FA3611-894E-3158-A654-FBD2F70998FE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff3d233000 -     0x7fff3d4acff3  libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff3d4ad000 -     0x7fff3d51fffb  libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff3d520000 -     0x7fff3d8c9ff3  libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff3d8ca000 -     0x7fff3d8dffeb  libLinearAlgebra.dylib (1243.200.4)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff3d8e0000 -     0x7fff3d8e5ff3  libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff3d8e6000 -     0x7fff3d962ff3  libSparse.dylib (79.200.5)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff3d963000 -     0x7fff3d976fe3  libSparseBLAS.dylib (1243.200.4)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff3d977000 -     0x7fff3db5eff7  libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff3db5f000 -     0x7fff3dc12ff7  libvMisc.dylib (671.250.4)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff3dc13000 -     0x7fff3dc13fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff3ddb5000 -     0x7fff3eb6affb  com.apple.AppKit (6.9 - 1671.60.107)  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff3ebbc000 -     0x7fff3ebbcfff  com.apple.ApplicationServices (50.1 - 50.1) <84097DEB-E2FC-3901-8DD7-A670EA2274E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff3ebbd000 -     0x7fff3ec28fff  com.apple.ApplicationServices.ATS (377 - 453.11.2.2)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff3ecc1000 -     0x7fff3edd8fff  libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff3edd9000 -     0x7fff3ee1bfff  libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff3ee75000 -     0x7fff3eea7fff  libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff3ef0c000 -     0x7fff3ef10ff3  com.apple.ColorSyncLegacy (4.13.0 - 1)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff3efab000 -     0x7fff3effdff7  com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff3effe000 -     0x7fff3f00dfff  com.apple.LangAnalysis (1.7.0 - 1.7.0)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff3f00e000 -     0x7fff3f057ff7  com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff3f058000 -     0x7fff3f091ff7  com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff3f092000 -     0x7fff3f09efff  com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff3f09f000 -     0x7fff3f316ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <04F482F1-E1C1-3955-8A6C-8AA152AA06F3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff3f318000 -     0x7fff3f318fff  com.apple.audio.units.AudioUnit (1.14 - 1.14)  /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff3f671000 -     0x7fff3fa12fff  com.apple.CFNetwork (978.0.7 - 978.0.7)  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff3fa27000 -     0x7fff3fa27fff  com.apple.Carbon (158 - 158) <56AD06AA-7BB4-3F0B-AEF7-9768D0BC1C98> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3fa28000 -     0x7fff3fa2bffb  com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff3fa2c000 -     0x7fff3fd23fff  com.apple.HIToolbox (2.1.1 - 918.7) <13F69D4C-D19F-3E09-9231-1978D783A556> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff3fd24000 -     0x7fff3fd27ff3  com.apple.help (1.3.8 - 66)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff3fd28000 -     0x7fff3fd2dff7  com.apple.ImageCapture (9.0 - 1534.2)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff3fd2e000 -     0x7fff3fdc3ff3  com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff3fdc4000 -     0x7fff3fddcff7  com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff3fdfc000 -     0x7fff3fdfdff7  com.apple.print.framework.Print (14.2 - 267.4)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3fdfe000 -     0x7fff3fe00ff7  com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff3fe01000 -     0x7fff3fe07ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff3ff29000 -     0x7fff3ff29fff  com.apple.Cocoa (6.11 - 23)  /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff3ff37000 -     0x7fff40086ff7  com.apple.ColorSync (4.13.0 - 3345.6) <31648BB6-7239-3D0E-81B1-BCF51FEF557F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff40212000 -     0x7fff40298fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff402fc000 -     0x7fff40326ffb  com.apple.CoreBluetooth (1.0 - 1)  /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff40327000 -     0x7fff406acfef  com.apple.CoreData (120 - 866.6) <132CB39B-8D58-30FA-B8AD-49BFFF34B293> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff406ad000 -     0x7fff4079dff7  com.apple.CoreDisplay (101.3 - 110.18) <0EB2A997-FCAD-3D17-B140-9829961E5327> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff4079e000 -     0x7fff40be2fe7  com.apple.CoreFoundation (6.9 - 1575.17)  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff40be4000 -     0x7fff41273fff  com.apple.CoreGraphics (2.0 - 1265.9)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff41275000 -     0x7fff41595fff  com.apple.CoreImage (14.4.0 - 750.0.140) <11026E39-D2FF-3CF6-8ACE-7BA293F9853E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff41668000 -     0x7fff41891fff  com.apple.CoreML (1.0 - 1) <9EC1FED2-BA47-307B-A326-43C4D05166E7> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
    0x7fff41892000 -     0x7fff41996fff  com.apple.CoreMedia (1.0 - 2290.13)  /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff41997000 -     0x7fff419f2fff  com.apple.CoreMediaIO (900.0 - 5050.1) <5F35E97B-2610-3744-94B6-062B0C27A6FD> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff419f3000 -     0x7fff419f3fff  com.apple.CoreServices (946 - 946) <455AB7C9-ECB1-3B5C-8D07-AC68810A90B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff419f4000 -     0x7fff41a70ff7  com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff41a71000 -     0x7fff41d48fff  com.apple.CoreServices.CarbonCore (1178.33 - 1178.33)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff41d49000 -     0x7fff41d91ff7  com.apple.DictionaryServices (1.2 - 284.16.4) <746EB200-DC51-30AE-9CBC-608A7B4CC8DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff41d92000 -     0x7fff41d9affb  com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff41d9b000 -     0x7fff41f4cff7  com.apple.LaunchServices (946 - 946)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff41f4d000 -     0x7fff41febff7  com.apple.Metadata (10.7.0 - 1191.57)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff41fec000 -     0x7fff42036ff7  com.apple.CoreServices.OSServices (946 - 946) <20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff42037000 -     0x7fff4209eff7  com.apple.SearchKit (1.4.0 - 1.4.0)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff4209f000 -     0x7fff420c0ff3  com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff423cb000 -     0x7fff4252dff3  com.apple.CoreText (352.0 - 584.26.3.2) <59919B0C-CBD5-3877-8D6F-D6048F1E5F42> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff4252e000 -     0x7fff4256eff3  com.apple.CoreVideo (1.8 - 281.4) <10CF8E52-07E3-382B-8091-2CEEEFFA69B4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff4256f000 -     0x7fff425fefff  com.apple.framework.CoreWLAN (13.0 - 1375.2)  /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff42775000 -     0x7fff42780ffb  com.apple.DirectoryService.Framework (10.14 - 207.200.4) <49B086F4-AFA2-3ABB-8D2E-CE253044C1C0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff42781000 -     0x7fff4282ffff  com.apple.DiscRecording (9.0.3 - 9030.4.5)  /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff42855000 -     0x7fff4285affb  com.apple.DiskArbitration (2.7 - 2.7)  /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff42a20000 -     0x7fff42dcdfff  com.apple.Foundation (6.9 - 1575.17) <20150BA3-74D6-3991-AD22-52735FAD0E24> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff42e3c000 -     0x7fff42e6bffb  com.apple.GSS (4.0 - 2.0)  /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff42f6b000 -     0x7fff43075fff  com.apple.Bluetooth (6.0.14 - 6.0.14d3)  /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff430d8000 -     0x7fff43167fff  com.apple.framework.IOKit (2.0.2 - 1483.260.4) <8A90F547-86EF-3DFB-92FE-0E2C0376DD84> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff43169000 -     0x7fff43178ffb  com.apple.IOSurface (255.6.1 - 255.6.1) <85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff43179000 -     0x7fff431cbff3  com.apple.ImageCaptureCore (1.0 - 1534.2) <27942C51-8108-3ED9-B37E-7C365A31EC2D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff431cc000 -     0x7fff43357fef  com.apple.ImageIO.framework (3.3.0 - 1850.2) <75E46A31-D87D-35CE-86A4-96A50971FDB2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff43358000 -     0x7fff4335cffb  libGIF.dylib (1850.2) <4774EBDF-583B-3DDD-A0E1-9F427CB6A074> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff4335d000 -     0x7fff43439fef  libJP2.dylib (1850.2) <697BB77F-A682-339F-8659-35432962432D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff4343a000 -     0x7fff4345ffeb  libJPEG.dylib (1850.2) <171A8AC4-AADA-376F-9F2C-B9C978DB1007> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff43722000 -     0x7fff43748feb  libPng.dylib (1850.2)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff43749000 -     0x7fff4374bffb  libRadiance.dylib (1850.2) <56907025-D5CE-3A9E-ACCB-A376C2599853> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff4374c000 -     0x7fff43799fe7  libTIFF.dylib (1850.2)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff4379a000 -     0x7fff437afff7  com.apple.InstallerPlugins (6.2.0 - 934.2)  /System/Library/Frameworks/InstallerPlugins.framework/Versions/A/InstallerPlugins
    0x7fff43a94000 -     0x7fff448f4fff  com.apple.JavaScriptCore (14607 - 14607.3.9) <9B7D9E8B-619D-34A1-8FA9-E23C0EA3CD02> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff4490c000 -     0x7fff44925fff  com.apple.Kerberos (3.0 - 1)  /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff44926000 -     0x7fff4495bff3  com.apple.LDAPFramework (2.4.28 - 194.5) <95DAD9EE-9B6F-3FF5-A5EF-F6672AD3CC55> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff44bdf000 -     0x7fff44be9fff  com.apple.MediaAccessibility (1.0 - 114.4) <76C449C5-DB45-3D7F-BFAD-3DACEF15DA21> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff44c99000 -     0x7fff4533ffff  com.apple.MediaToolbox (1.0 - 2290.13) <71BB5D76-34CA-3A30-AECF-24BE29FCC275> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff45341000 -     0x7fff453e9ff7  com.apple.Metal (162.2 - 162.2)  /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff453eb000 -     0x7fff45404ff3  com.apple.MetalKit (1.0 - 113) <51CDE966-54A7-3556-971B-1173E9986BB8> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
    0x7fff45405000 -     0x7fff45424ff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <44CE8362-E972-3697-AD6F-15BC863BAEB8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff45425000 -     0x7fff454a1fe7  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1)  /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff454a2000 -     0x7fff454c9fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1)  /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff454ca000 -     0x7fff455f5ff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1)  /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff455f6000 -     0x7fff45610fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1)  /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff45611000 -     0x7fff45612ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff46409000 -     0x7fff46415ff7  com.apple.NetFS (6.0 - 4.0)  /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff48eb3000 -     0x7fff48f0aff7  com.apple.opencl (2.15.3 - 2.15.3) <056BAD8A-23BC-3F74-9E2C-3AC81E7DEA5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff48f0b000 -     0x7fff48f26ff7  com.apple.CFOpenDirectory (10.14 - 207.200.4)  /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff48f27000 -     0x7fff48f32ffb  com.apple.OpenDirectory (10.14 - 207.200.4)  /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff49882000 -     0x7fff49884fff  libCVMSPluginSupport.dylib (17.7.3) <8E051EA7-55B6-3DF1-9821-72C391DE953B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff49885000 -     0x7fff4988aff3  libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff4988b000 -     0x7fff4988ffff  libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff49890000 -     0x7fff49898ff7  libGFXShared.dylib (17.7.3) <8C50BF27-B525-3B23-B86C-F444ADF97851> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff49899000 -     0x7fff498a4fff  libGL.dylib (17.7.3) <2AC457EA-1BD3-3C8E-AFAB-7EA6234EB749> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff498a5000 -     0x7fff498dffef  libGLImage.dylib (17.7.3)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff49a53000 -     0x7fff49a91fff  libGLU.dylib (17.7.3)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff4a42e000 -     0x7fff4a43dffb  com.apple.opengl (17.7.3 - 17.7.3) <94B5CF34-5BD6-3652-9A8C-E9C56E0A9FB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff4a7ba000 -     0x7fff4a903ff7  com.apple.QTKit (7.7.3 - 3040)  /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff4a904000 -     0x7fff4ab58fff  com.apple.imageKit (3.0 - 1067) <4F398AF4-828E-3FC2-9E3D-4EE3F36F7619> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff4ab59000 -     0x7fff4ac45fff  com.apple.PDFKit (1.0 - 745.3)  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff4ac46000 -     0x7fff4b115ff7  com.apple.QuartzComposer (5.1 - 370) <9C59494E-8D09-359E-B457-AA893520984C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff4b116000 -     0x7fff4b13cff7  com.apple.quartzfilters (1.10.0 - 83.1) <1CABB0FA-A6DB-3DD5-A598-F298F081E04E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff4b13d000 -     0x7fff4b23eff7  com.apple.QuickLookUIFramework (5.0 - 775.6) <5660DDBA-2BE4-310A-9E81-370106EDB21D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff4b23f000 -     0x7fff4b23ffff  com.apple.quartzframework (1.5 - 23) <31783652-5E36-3773-8847-9FECFE2487F0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff4b240000 -     0x7fff4b497ff7  com.apple.QuartzCore (1.11 - 701.14) <33E846BE-1794-3186-9BF2-6ADF62C782A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff4b498000 -     0x7fff4b4effff  com.apple.QuickLookFramework (5.0 - 775.6)  /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff4b6b6000 -     0x7fff4b6cdff7  com.apple.SafariServices.framework (14607 - 14607.3.9) <96DFC381-5242-3D06-B115-9367C79801C9> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff4bccc000 -     0x7fff4bfccfff  com.apple.security (7.0 - 58286.270.3.0.1)  /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff4bfcd000 -     0x7fff4c059fff  com.apple.securityfoundation (6.0 - 55185.260.1) <1EE899E6-222A-3526-B505-B0D0B6FA042A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff4c05a000 -     0x7fff4c08affb  com.apple.securityinterface (10.0 - 55109.200.8) <02B83641-2D21-3DB8-AAB8-6F8AAD0F6264> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff4c08b000 -     0x7fff4c08ffff  com.apple.xpc.ServiceManagement (1.0 - 1)  /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff4c428000 -     0x7fff4c495fff  com.apple.SystemConfiguration (1.17 - 1.17) <30C8327F-3EFF-3520-9C50-016F8B6B954F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff4c6f4000 -     0x7fff4ca55fff  com.apple.************ (1.0 - 2290.13) <7FCB2FC0-EFB8-37C2-B0D3-60AE9FDFE230> /System/Library/Frameworks/************.framework/Versions/A/************
    0x7fff4f6d1000 -     0x7fff4f776feb  com.apple.APFS (1.0 - 1) <2D22485D-552D-3CB6-9FE1-38547597918F> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff5018a000 -     0x7fff5018bff7  com.apple.AggregateDictionary (1.0 - 1)  /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff50549000 -     0x7fff5068cfff  com.apple.AnnotationKit (1.0 - 232.3.30)  /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
    0x7fff5068d000 -     0x7fff506a8ff7  com.apple.AppContainer (4.0 - 360.270.2) <644409D7-6C7A-336F-BF4F-80E82FB48BE9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff506a9000 -     0x7fff506b6fff  com.apple.AppSandbox (4.0 - 360.270.2) <175BF1C6-8CB1-3AAA-A752-781E09DE3D8E> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff5078c000 -     0x7fff507b8ff7  com.apple.framework.Apple80211 (13.0 - 1380.2) <16F093EF-370B-3B90-8DB4-E94624431D15> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff508e0000 -     0x7fff508effc7  com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff509eb000 -     0x7fff509f6fff  com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff50a37000 -     0x7fff50a80ff3  com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff50cb1000 -     0x7fff50ccefff  com.apple.aps.framework (4.0 - 4.0) <83FB4BD1-0C45-3CEF-8640-567DA5A300A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff50ccf000 -     0x7fff50cd3ff7  com.apple.AppleSRP (5.0 - 1)  /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff50cd4000 -     0x7fff50cf6fff  com.apple.applesauce (1.0 - ???)  /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff50db6000 -     0x7fff50db9ff7  com.apple.AppleSystemInfo (3.1.5 - 3.1.5)  /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff50dba000 -     0x7fff50e0aff7  com.apple.AppleVAFramework (5.1.4 - 5.1.4) <3399D678-8741-3B70-B8D0-7C63C8ACF7DF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff50e55000 -     0x7fff50e69ffb  com.apple.AssertionServices (1.0 - 1) <456E507A-4561-3628-9FBE-173ACE7429D8> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff51238000 -     0x7fff51324ff7  com.apple.AuthKit (1.0 - 1) <2765ABE9-54F2-3E45-8A93-1261E251B90D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff514e6000 -     0x7fff514eefff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff514ef000 -     0x7fff51584fff  com.apple.backup.framework (1.10.5 - ???) <4EEC51E2-AE4C-340A-B686-901810152C12> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff51585000 -     0x7fff515f2ff3  com.apple.BaseBoard (360.28 - 360.28) <68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff515fb000 -     0x7fff51601ffb  com.apple.BezelServicesFW (317.5 - 317.5) <25807B30-117A-33D9-93E6-48E8AE90BD63> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
    0x7fff51678000 -     0x7fff516b4ff3  com.apple.bom (14.0 - 197.6)  /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff5173a000 -     0x7fff5178dff7  com.apple.BridgeOSInstall (1.0 - 56.4) <9C45F3FE-F2D1-363F-8714-0BC494597C4B> /System/Library/PrivateFrameworks/BridgeOSInstall.framework/Versions/A/BridgeOSInstall
    0x7fff51791000 -     0x7fff51798ffb  com.apple.BridgeOSSoftwareUpdate (1.0 - 1) <070F976B-F62B-3FC2-A1FB-75F4D6C264E1> /System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework/Versions/A/BridgeOSSoftwareUpdate
    0x7fff51981000 -     0x7fff5199effb  com.apple.CacheDelete (1.0 - 1)  /System/Library/PrivateFrameworks/CacheDelete.framework/Versions/A/CacheDelete
    0x7fff52450000 -     0x7fff5249fff7  com.apple.ChunkingLibrary (201 - 201)  /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff53250000 -     0x7fff5325cff7  com.apple.CommerceCore (1.0 - 708.5)  /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff5325d000 -     0x7fff53266ffb  com.apple.CommonAuth (4.0 - 2.0) <93335CB6-ABEB-3EC7-A040-8A667F40D5F3> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff5327a000 -     0x7fff5328fffb  com.apple.commonutilities (8.0 - 900) <080E168B-21B7-3CCA-AB84-BB9911D18DAC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff533b9000 -     0x7fff5342bfff  com.apple.framework.ConfigurationProfiles (11.2 - 1181) <74BCA245-903C-3E9C-81C9-360D7E33D673> /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/ConfigurationProfiles
    0x7fff536ff000 -     0x7fff53ae2fef  com.apple.CoreAUC (274.0.0 - 274.0.0)  /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff53ae3000 -     0x7fff53b11ff7  com.apple.CoreAVCHD (6.0.0 - 6000.4.1)  /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff53ba7000 -     0x7fff53c05ffb  com.apple.corebrightness (1.0 - 1) <553EF5EE-7EA3-3D67-8275-65B9F93F8FAB> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
    0x7fff53d3c000 -     0x7fff53d45fff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <89BDACE6-32AA-3933-BD8C-A44650488873> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff53f3f000 -     0x7fff53f50ff7  com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff540f9000 -     0x7fff541e8fff  com.apple.CoreHandwriting (161 - 1.2) <7CBB18C3-FE95-3352-9D67-B441E89AD10F> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
    0x7fff543ba000 -     0x7fff543d0ffb  com.apple.CoreMediaAuthoring (2.2 - 959) <86089759-E920-37DB-A3BB-F5621C351E4A> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff544fa000 -     0x7fff54560ff7  com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff546cc000 -     0x7fff54758fff  com.apple.CorePDF (4.0 - 414)  /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff5480d000 -     0x7fff54815ff7  com.apple.CorePhoneNumbers (1.0 - 1) <11F97C7E-C183-305F-8E6C-9B374F50E26B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff54991000 -     0x7fff549c2ff3  com.apple.CoreServicesInternal (358 - 358)  /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff54d89000 -     0x7fff54e0dfff  com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff54e9d000 -     0x7fff54fc8ff7  com.apple.coreui (2.1 - 499.10)  /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff54fc9000 -     0x7fff55169fff  com.apple.CoreUtils (5.9 - 590.16) <66CC50F7-766D-33E2-A388-4DE22840ADFB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff551bd000 -     0x7fff55220ff7  com.apple.framework.CoreWiFi (13.0 - 1375.2)  /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff55221000 -     0x7fff55232ff7  com.apple.CrashReporterSupport (10.13 - 938.26)  /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff552c2000 -     0x7fff552d1fff  com.apple.framework.DFRFoundation (1.0 - 211.1)  /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff552d2000 -     0x7fff552d6ff7  com.apple.DSExternalDisplay (3.1 - 380) <787B9748-B120-3453-B8FE-61D9E363A9E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff55357000 -     0x7fff553ccffb  com.apple.datadetectorscore (7.0 - 590.27) <06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff55418000 -     0x7fff55455ff7  com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff55456000 -     0x7fff55591ff7  com.apple.desktopservices (1.13.5 - ???) <265C0E94-B8BF-3F58-8D68-EA001EEA0B15> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff556ce000 -     0x7fff5579cfff  com.apple.DiskImagesFramework (480.260.1 - 480.260.1) <2E15BEFC-21C1-37F9-ADF3-257C911FABCC> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff5579d000 -     0x7fff55863fff  com.apple.DiskManagement (12.1 - 1555.270.2)  /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff55864000 -     0x7fff55868ffb  com.apple.DisplayServicesFW (3.1 - 380) <62041594-2A4C-3362-87EE-F8E8C8E5BEEC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff558db000 -     0x7fff55910ff3  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <053C5AA0-CDB1-3DAA-982C-BDAEB6021858> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff55911000 -     0x7fff55914ff3  com.apple.EFILogin (2.0 - 2) <210948F9-FD39-392D-8349-34985B3C751C> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff55eee000 -     0x7fff56013fff  com.apple.EmbeddedOSInstall.framework (1.0 - 113.1)  /System/Library/PrivateFrameworks/EmbeddedOSInstall.framework/Versions/A/EmbeddedOSInstall
    0x7fff56014000 -     0x7fff5601aff7  com.apple.EmbeddedOSSupportHost (1.0 - 1) <2DDC94E5-A96D-3840-B036-76AEC96FA5E8> /System/Library/PrivateFrameworks/EmbeddedOSSupportHost.framework/Versions/A/EmbeddedOSSupportHost
    0x7fff5604a000 -     0x7fff5632cff7  com.apple.vision.EspressoFramework (1.0 - 120) <8B56D943-F87B-3A01-B7A4-19DE3312B61C> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
    0x7fff564d8000 -     0x7fff568f3fff  com.apple.vision.FaceCore (3.3.4 - 3.3.4)  /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff568fd000 -     0x7fff5691dff7  com.apple.framework.familycontrols (4.1 - 410) <7E50D03F-363B-3342-841D-B3583662B0B1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff5a1a7000 -     0x7fff5a1a8fff  libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff5b82a000 -     0x7fff5b82fff7  com.apple.GPUInfo (1.2.18 - 1.2.18) <3528CC80-C69C-3D57-AF41-54B65129BD78> /System/Library/PrivateFrameworks/GPUInfo.framework/Versions/A/GPUInfo
    0x7fff5b848000 -     0x7fff5b84dfff  com.apple.GPUWrangler (3.50.12 - 3.50.12) <6C820ED9-F306-3978-B5B8-432AD97BBDAF> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff5bbdb000 -     0x7fff5bbffff3  com.apple.GenerationalStorage (2.0 - 285.101) <84C2E52C-F2C6-3FF8-87E5-3C88A40D3881> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff5c618000 -     0x7fff5c658ffb  com.apple.GraphKit (1.0.5 - 30)  /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
    0x7fff5c659000 -     0x7fff5c668fff  com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff5c7ce000 -     0x7fff5c842ffb  com.apple.Heimdal (4.0 - 2.0)  /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff5d259000 -     0x7fff5d28ffff  com.apple.IASUtilities (1.0 - 507) <3F300497-6CDC-3971-8FD6-F111FB0A043D> /System/Library/PrivateFrameworks/IASUtilities.framework/Versions/A/IASUtilities
    0x7fff5db3c000 -     0x7fff5db45fff  com.apple.IOAccelMemoryInfo (1.0 - 1)  /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff5db46000 -     0x7fff5db4dffb  com.apple.IOAccelerator (404.14 - 404.14) <11A50171-C8AE-3BBC-9FB9-2A3313FFBD31> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff5db51000 -     0x7fff5db69fff  com.apple.IOPresentment (1.0 - 42.6) <6DFD9A6E-BF95-3A27-89E7-ACAA9E30D90A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff5df11000 -     0x7fff5df3eff7  com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff5df6a000 -     0x7fff5df89ffb  com.apple.DistributionKit (700 - 1000)  /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit.framework/Versions/A/DistributionKit
    0x7fff5df8a000 -     0x7fff5e037ffb  com.apple.installframework (700 - 1000)  /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    0x7fff5e038000 -     0x7fff5e04cffb  com.apple.InstallerDiagnostics (1.0 - 1) <995C0E42-DFCB-380F-833C-7A3E6150F785> /System/Library/PrivateFrameworks/InstallerDiagnostics.framework/Versions/A/InstallerDiagnostics
    0x7fff5e068000 -     0x7fff5e06cffb  com.apple.InternationalSupport (1.0 - 10.15.6) <6226A905-D055-321D-B665-5B0CC4798A74> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff5e1d1000 -     0x7fff5e1e3ff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <30CFE05C-4108-3879-AFAA-5BB02CBE190B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff5e1fe000 -     0x7fff5e2d9ff7  com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff5e2da000 -     0x7fff5e316ff7  com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff5e31d000 -     0x7fff5e322fff  com.apple.LinguisticData (1.0 - 238.25)  /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff5e3c0000 -     0x7fff5e415fff  com.apple.LoggingSupport (1.0 - 906.260.1) <35612CE3-0937-307A-816D-B2F85CE24A9E> /System/Library/PrivateFrameworks/LoggingSupport.framework/Versions/A/LoggingSupport
    0x7fff5e416000 -     0x7fff5e41bffb  com.apple.LoginUICore (4.0 - 4.0) <80E2124A-D27C-300C-AA21-AB7054AF7811> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff5eb40000 -     0x7fff5eb43fff  com.apple.Mangrove (1.0 - 25) <537A5B2E-4C30-3CFD-8BDC-79F9A04AC327> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff5ebca000 -     0x7fff5ebf0ff3  com.apple.MarkupUI (1.0 - 232.3.30)  /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
    0x7fff5ec58000 -     0x7fff5ec8bff7  com.apple.MediaKit (16 - 907) <5EE0E7DA-5ACC-33F3-9BF0-47A448C011A1> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff5f017000 -     0x7fff5f03fff7  com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff5f040000 -     0x7fff5f0cdff7  com.apple.gpusw.MetalTools (1.0 - 1)  /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff5f0e4000 -     0x7fff5f0fdffb  com.apple.MobileAssets (1.0 - 437.250.3) <8BE5B3A0-8F3A-3FAE-9AFF-32836300183C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff5f286000 -     0x7fff5f2a1ffb  com.apple.MobileKeyBag (2.0 - 1.0)  /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff5f2b4000 -     0x7fff5f329fff  com.apple.Montreal (1.0 - 42.15.9) <17BFD046-4362-3A76-A496-648D00FF3743> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
    0x7fff5f32a000 -     0x7fff5f354ffb  com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <42A23EC9-64A7-31C7-BF33-DF4412ED8A3F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff5f355000 -     0x7fff5f35dffb  com.apple.multiverse (1.0 - 27.250.8) <5F65D42B-0C02-3DE7-B3B4-12D2BCF483B3> /System/Library/PrivateFrameworks/MultiverseSupport.framework/Versions/A/MultiverseSupport
    0x7fff5f590000 -     0x7fff5f59afff  com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff5fd3f000 -     0x7fff5fdfaff7  com.apple.OSPersonalization (1.0 - 55.4)  /System/Library/PrivateFrameworks/OSPersonalization.framework/Versions/A/OSPersonalization
    0x7fff5fdfb000 -     0x7fff5fe4cff3  com.apple.OTSVG (1.0 - ???) <5BF1A9EB-2694-3267-9514-A4EB3BEF4081> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff60842000 -     0x7fff60849ff3  com.apple.PackageKit.PackageUIKit (3.0 - 832)  /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit.framework/Versions/A/PackageUIKit
    0x7fff6084a000 -     0x7fff60973fcf  com.apple.PackageKit (3.0 - 832) <0DC47C7A-62A7-3B06-AADF-2575F4042C6C> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff60ef0000 -     0x7fff60fe3fff  com.apple.PencilKit (1.0 - 1) <79225726-6980-3680-AC0B-D8C5C5DB2224> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
    0x7fff60fe4000 -     0x7fff60ff3ff7  com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff629d6000 -     0x7fff629f9ffb  com.apple.pluginkit.framework (1.0 - 1) <910C3AFE-7C46-3C34-B000-4ED92336B9FD> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff62a36000 -     0x7fff62a36ff7  com.apple.PowerlogControl (1.0 - 1)  /System/Library/PrivateFrameworks/PowerlogControl.framework/Versions/A/PowerlogControl
    0x7fff62e30000 -     0x7fff62e84ffb  com.apple.ProtectedCloudStorage (1.0 - 1) <53B3C1F3-BB97-379F-8CBA-8FDCDF085793> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff62e85000 -     0x7fff62ea3ff7  com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff63021000 -     0x7fff63024ff3  com.apple.QuickLookNonBaseSystem (1.0 - 1) <69D0DD00-A3D2-3835-91F0-F33BD9D7D740> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
    0x7fff63025000 -     0x7fff6303aff3  com.apple.QuickLookThumbnailing (1.0 - 1)  /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fff6303b000 -     0x7fff6308bfff  com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
    0x7fff6308c000 -     0x7fff63094fff  com.apple.RTCReporting (9.50.2 - 9.50.2)  /System/Library/PrivateFrameworks/RTCReporting.framework/Versions/A/RTCReporting
    0x7fff631c7000 -     0x7fff631d2fff  com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.2) <651F994E-21E1-359B-8FEA-6909CE9AAD56> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff631e5000 -     0x7fff63207fff  com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff63208000 -     0x7fff6321bff3  com.apple.xpc.RemoteXPC (1.0 - 1336.261.2)  /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
    0x7fff648b2000 -     0x7fff648b5ff7  com.apple.SecCodeWrapper (4.0 - 360.270.2) <6B331C0A-1A9D-3039-9FF6-89A49B04F846> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff64a11000 -     0x7fff64b2ffff  com.apple.Sharing (1288.62 - 1288.62) <48B1F247-7910-3C16-814C-B99DE231F7F0> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff65943000 -     0x7fff65bf2fff  com.apple.SkyLight (1.600.0 - 340.54) <90EB1C2E-B264-3EC4-AF7F-CDE7E7585746> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff66199000 -     0x7fff6626affb  com.apple.SoftwareUpdate.framework (6 - 1173.5) <5D913E58-DF1B-31F6-BC29-AB1EEC0ED5EA> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareUpdate
    0x7fff66395000 -     0x7fff663a1fff  com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff6675c000 -     0x7fff66796fff  com.apple.StorageKit (1.0 - 480.26) <051EE7DE-AFC4-3B45-9DB8-83854C2907AF> /System/Library/PrivateFrameworks/StorageKit.framework/Versions/A/StorageKit
    0x7fff66797000 -     0x7fff667a6ff3  com.apple.StorageManagement (1.0 - 1) <9E7DA9EA-DFF3-3C76-B9CD-86AD8E86E40E> /System/Library/PrivateFrameworks/StorageManagement.framework/Versions/A/StorageManagement
    0x7fff66a40000 -     0x7fff66a7cff3  com.apple.StreamingZip (1.0 - 1) <046FAD5C-E0C5-3013-B1FE-24C018A0DDCF> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff66af2000 -     0x7fff66b7dfc7  com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff66dc5000 -     0x7fff66defffb  com.apple.framework.SystemAdministration (1.0 - 1.0)  /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff67054000 -     0x7fff67060fff  com.apple.private.SystemPolicy (1.0 - 1) <9CDA85A3-875C-3615-8818-2DC73E9FFE8B> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff67065000 -     0x7fff67071ffb  com.apple.TCC (1.0 - 1) <73CF6FA9-44CE-30C9-887F-235940976585> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff672d7000 -     0x7fff6739fff3  com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff67455000 -     0x7fff67456fff  com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <15DF9C73-54E4-3C41-BCF4-378338C55FB4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff6745c000 -     0x7fff67613ffb  com.apple.UIFoundation (1.0 - 551.2) <917480B5-14BE-30E0-ABE6-9702336CC35A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff67668000 -     0x7fff6766cfff  com.apple.Uninstall (1.0.1 - 211) <8788927D-F426-3ACA-946E-FB2EB8C1F8E1> /System/Library/PrivateFrameworks/Uninstall.framework/Versions/A/Uninstall
    0x7fff676c4000 -     0x7fff676c6fff  libUAPreferences.dylib (361.53) <4891C9D8-DFA5-396F-82CE-E6F0F3B563D0> /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Libraries/libUAPreferences.dylib
    0x7fff6828f000 -     0x7fff68368fff  com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff68b40000 -     0x7fff68b43fff  com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff68f44000 -     0x7fff68f46ffb  com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff68f47000 -     0x7fff68f5cfff  com.apple.login (3.0 - 3.0)  /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff69210000 -     0x7fff69244fff  libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
    0x7fff69247000 -     0x7fff69251ff7  libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
    0x7fff69252000 -     0x7fff692dbfff  libCoreStorage.dylib (546.50.1) <8E643B27-7986-3351-B37E-038FB6794BF9> /usr/lib/libCoreStorage.dylib
    0x7fff692df000 -     0x7fff692e0ffb  libDiagnosticMessagesClient.dylib (107)  /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff69317000 -     0x7fff6956eff3  libFosl_dynamic.dylib (18.3.4) <1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8> /usr/lib/libFosl_dynamic.dylib
    0x7fff6956f000 -     0x7fff69581ff7  libIASAuthReboot.dylib (1247) <008C0BBC-3ED6-3274-9B54-58882A747E83> /usr/lib/libIASAuthReboot.dylib
    0x7fff6958e000 -     0x7fff69595fff  libMatch.1.dylib (31.200.1)  /usr/lib/libMatch.1.dylib
    0x7fff695bf000 -     0x7fff695defff  libMobileGestalt.dylib (645.270.1) <99A06C8A-97D6-383D-862C-F453BABB48A4> /usr/lib/libMobileGestalt.dylib
    0x7fff695df000 -     0x7fff695dffff  libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff6971f000 -     0x7fff69720ffb  libSystem.B.dylib (1252.250.1)  /usr/lib/libSystem.B.dylib
    0x7fff6979c000 -     0x7fff6979dfff  libThaiTokenizer.dylib (2.15.1)  /usr/lib/libThaiTokenizer.dylib
    0x7fff6979e000 -     0x7fff697a1ffb  libUniversalAccess.dylib (361.53) <056BBF08-B031-3A57-8355-881D42170F5C> /usr/lib/libUniversalAccess.dylib
    0x7fff697af000 -     0x7fff697c5ffb  libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
    0x7fff697c6000 -     0x7fff697efffb  libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
    0x7fff697f0000 -     0x7fff6986ffff  libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib
    0x7fff69873000 -     0x7fff69873ff3  libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
    0x7fff69943000 -     0x7fff69953ffb  libbsm.0.dylib (39.200.18)  /usr/lib/libbsm.0.dylib
    0x7fff69954000 -     0x7fff69961fff  libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
    0x7fff69962000 -     0x7fff699b5ff7  libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
    0x7fff699b6000 -     0x7fff699cbff7  libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
    0x7fff699cc000 -     0x7fff699ccff3  libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
    0x7fff699cd000 -     0x7fff699ddffb  libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
    0x7fff699de000 -     0x7fff699f6ffb  libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib
    0x7fff69c6b000 -     0x7fff69c81fff  libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
    0x7fff69c82000 -     0x7fff69c83ff3  libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff69d38000 -     0x7fff69e20fff  libcrypto.0.9.8.dylib (76.200.2) <5DF9F66E-EAEA-3BF5-AC77-C2B403AE72AB> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff69e21000 -     0x7fff69f19ff7  libcrypto.35.dylib (22.260.1) <91C3D71A-4D1D-331D-89CC-67863DF10574> /usr/lib/libcrypto.35.dylib
    0x7fff6a01b000 -     0x7fff6a11bfcb  libcrypto.42.dylib (22.260.1)  /usr/lib/libcrypto.42.dylib
    0x7fff6a11c000 -     0x7fff6a127ff7  libcsfde.dylib (546.50.1) <7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063> /usr/lib/libcsfde.dylib
    0x7fff6a12f000 -     0x7fff6a185ff3  libcups.2.dylib (462.12) <095619DC-9233-3937-9E50-5F10D917A40D> /usr/lib/libcups.2.dylib
    0x7fff6a1ae000 -     0x7fff6a201fff  libcurl.4.dylib (105.200.2)  /usr/lib/libcurl.4.dylib
    0x7fff6a288000 -     0x7fff6a28bff7  libdz.dylib (1.0.0 - 110.250.10) <68507118-9E70-3063-8416-B3645588896B> /usr/lib/libdz.dylib
    0x7fff6a2b9000 -     0x7fff6a2b9fff  libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
    0x7fff6a2eb000 -     0x7fff6a2f0ff7  libgermantok.dylib (17.15.2)  /usr/lib/libgermantok.dylib
    0x7fff6a2f1000 -     0x7fff6a2f6ff7  libheimdal-asn1.dylib (520.270.1) <73F60D6F-76F8-35EF-9C86-9A81225EE4BE> /usr/lib/libheimdal-asn1.dylib
    0x7fff6a321000 -     0x7fff6a411fff  libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
    0x7fff6a412000 -     0x7fff6a673ffb  libicucore.A.dylib (62141.0.1)  /usr/lib/libicucore.A.dylib
    0x7fff6a6c0000 -     0x7fff6a6c1fff  liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
    0x7fff6a6c2000 -     0x7fff6a6daff3  liblzma.5.dylib (10.200.3)  /usr/lib/liblzma.5.dylib
    0x7fff6a6f2000 -     0x7fff6a796ff7  libmecab.1.0.0.dylib (779.24.1)  /usr/lib/libmecab.1.0.0.dylib
    0x7fff6a797000 -     0x7fff6a99bfff  libmecabra.dylib (779.24.1)  /usr/lib/libmecabra.dylib
    0x7fff6ab73000 -     0x7fff6aec4ff7  libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
    0x7fff6af56000 -     0x7fff6b6dbfdf  libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib
    0x7fff6b6dc000 -     0x7fff6b6ddfff  libodfde.dylib (24.50.1) <46EA989F-415B-3FE6-983D-30CC9BE63DAE> /usr/lib/libodfde.dylib
    0x7fff6b6ed000 -     0x7fff6b6f1ffb  libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
    0x7fff6b6f4000 -     0x7fff6b729fff  libpcap.A.dylib (79.250.1)  /usr/lib/libpcap.A.dylib
    0x7fff6b842000 -     0x7fff6b85affb  libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
    0x7fff6b85c000 -     0x7fff6b897ff3  libsandbox.1.dylib (851.270.1) <04B924EF-2385-34DF-807E-93AAD9EF3AAB> /usr/lib/libsandbox.1.dylib
    0x7fff6b898000 -     0x7fff6b8aaff7  libsasl2.2.dylib (211) <10987614-6763-3B5D-9F28-91D121BB4924> /usr/lib/libsasl2.2.dylib
    0x7fff6b8ab000 -     0x7fff6b8acff7  libspindump.dylib (267.3)  /usr/lib/libspindump.dylib
    0x7fff6b8ad000 -     0x7fff6ba8afff  libsqlite3.dylib (274.26) <6404BA3B-BCA4-301F-B2FE-8776105A2AA3> /usr/lib/libsqlite3.dylib
    0x7fff6bb4e000 -     0x7fff6bb7dfff  libssl.44.dylib (22.260.1)  /usr/lib/libssl.44.dylib
    0x7fff6bb7e000 -     0x7fff6bbc9ff7  libstdc++.6.dylib (104.1)  /usr/lib/libstdc++.6.dylib
    0x7fff6bca3000 -     0x7fff6bca6ff7  libutil.dylib (51.200.4)  /usr/lib/libutil.dylib
    0x7fff6bca7000 -     0x7fff6bcb4fff  libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
    0x7fff6bcb9000 -     0x7fff6bd9bff3  libxml2.2.dylib (32.10)  /usr/lib/libxml2.2.dylib
    0x7fff6bd9c000 -     0x7fff6bdc4ff3  libxslt.1.dylib (16.5)  /usr/lib/libxslt.1.dylib
    0x7fff6bdc5000 -     0x7fff6bdd7ff7  libz.1.dylib (70.200.4)  /usr/lib/libz.1.dylib
    0x7fff6c5bb000 -     0x7fff6c5bfff3  libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
    0x7fff6c5c0000 -     0x7fff6c5caff3  libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff6c5cb000 -     0x7fff6c5d2ff7  libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
    0x7fff6c5d3000 -     0x7fff6c5dcff7  libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
    0x7fff6c5dd000 -     0x7fff6c661fc3  libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib
    0x7fff6c6e8000 -     0x7fff6c721ff7  libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib
    0x7fff6c722000 -     0x7fff6c74eff7  libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
    0x7fff6c74f000 -     0x7fff6c74fffb  libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
    0x7fff6c750000 -     0x7fff6c75cff3  libkxld.dylib (4903.270.47)  /usr/lib/system/libkxld.dylib
    0x7fff6c75d000 -     0x7fff6c75dff7  liblaunch.dylib (1336.261.2) <2B07E27E-D404-3E98-9D28-BCA641E5C479> /usr/lib/system/liblaunch.dylib
    0x7fff6c75e000 -     0x7fff6c763fff  libmacho.dylib (927.0.3)  /usr/lib/system/libmacho.dylib
    0x7fff6c764000 -     0x7fff6c766ffb  libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
    0x7fff6c767000 -     0x7fff6c768ff7  libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
    0x7fff6c769000 -     0x7fff6c780ff3  libsystem_asl.dylib (356.200.4)  /usr/lib/system/libsystem_asl.dylib
    0x7fff6c781000 -     0x7fff6c781ff7  libsystem_blocks.dylib (73)  /usr/lib/system/libsystem_blocks.dylib
    0x7fff6c782000 -     0x7fff6c809fff  libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
    0x7fff6c80a000 -     0x7fff6c80dffb  libsystem_configuration.dylib (963.270.3) <2B4A836D-68A4-33E6-8D48-CD4486B03387> /usr/lib/system/libsystem_configuration.dylib
    0x7fff6c80e000 -     0x7fff6c811ff7  libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff6c812000 -     0x7fff6c818fff  libsystem_darwin.dylib (1272.250.1)  /usr/lib/system/libsystem_darwin.dylib
    0x7fff6c819000 -     0x7fff6c81fff7  libsystem_dnssd.dylib (878.270.2)  /usr/lib/system/libsystem_dnssd.dylib
    0x7fff6c820000 -     0x7fff6c86bffb  libsystem_info.dylib (517.200.9)  /usr/lib/system/libsystem_info.dylib
    0x7fff6c86c000 -     0x7fff6c894ff7  libsystem_kernel.dylib (4903.270.47) <4195838C-EFEF-3CC9-B459-75032AF7EA1A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff6c895000 -     0x7fff6c8e0ff7  libsystem_m.dylib (3158.200.7)  /usr/lib/system/libsystem_m.dylib
    0x7fff6c8e1000 -     0x7fff6c90bfff  libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib
    0x7fff6c90c000 -     0x7fff6c916ff7  libsystem_networkextension.dylib (767.250.2)  /usr/lib/system/libsystem_networkextension.dylib
    0x7fff6c917000 -     0x7fff6c91efff  libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
    0x7fff6c91f000 -     0x7fff6c928fef  libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib
    0x7fff6c929000 -     0x7fff6c933ff7  libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff6c934000 -     0x7fff6c937ff7  libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff6c938000 -     0x7fff6c93aff3  libsystem_secinit.dylib (30.260.2)  /usr/lib/system/libsystem_secinit.dylib
    0x7fff6c93b000 -     0x7fff6c942ff3  libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff6c943000 -     0x7fff6c958fff  libsystem_trace.dylib (906.260.1)  /usr/lib/system/libsystem_trace.dylib
    0x7fff6c95a000 -     0x7fff6c95fffb  libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
    0x7fff6c960000 -     0x7fff6c98ffff  libxpc.dylib (1336.261.2) <7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4> /usr/lib/system/libxpc.dylib


External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 14559969
    thread_create: 0
    thread_set_state: 0


VM Region Summary:
ReadOnly portion of Libraries: Total=448.4M resident=0K(0%) swapped_out_or_unallocated=448.4M(100%)
Writable regions: Total=50.0T written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=50.0T(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG backing stores                 1160K        2 
CoreGraphics                         8K        1 
CoreImage                           24K        2 
CoreUI image data                  104K        1 
CoreUI image file                  208K        3 
Foundation                           4K        1 
JS JIT generated code              1.0G        3 
Kernel Alloc Once                    8K        1 
MALLOC                           324.1M       31 
MALLOC guard page                   32K        8 
MALLOC_LARGE (reserved)           50.0T        5         reserved VM address space (unallocated)
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
Memory Tag 242                      12K        1 
STACK GUARD                       56.0M       13 
Stack                             14.1M       13 
VM_ALLOCATE                       64.1M        9 
WebKit Malloc                     6264K        3 
__DATA                            33.8M      345 
__FONT_DATA                          4K        1 
__LINKEDIT                       222.4M        4 
__TEXT                           226.0M      353 
__UNICODE                          564K        1 
mapped file                      124.0M       16 
shared memory                      660K       13 
===========                     =======  ======= 
TOTAL                             50.0T      833 
TOTAL, minus reserved VM space     2.0G      833 


Model: MacBookPro13,3, BootROM 259.71.1.0.0, 4 processors, Intel Core i7, 2.7 GHz, 16 GB, SMC 2.38f7
Graphics: kHW_AMDRadeonPro455Item, AMD Radeon Pro 455, spdisplays_pcie_device, 2 GB
Graphics: kHW_IntelHDGraphics530Item, Intel HD Graphics 530, spdisplays_builtin
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x80CE, 0x4B3445424533303445422D45474347202020
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x80CE, 0x4B3445424533303445422D45474347202020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x15A), Broadcom BCM43xx 1.0 (7.77.61.2 AirPortDriverBrcmNIC-1305.8)
Bluetooth: Version 6.0.14d3, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: Apple T1 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.1
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.1

The package contains a plugin, which collects some user information and save it to a json file. Plugin bundle is signed properly by Developer ID Application certificate.


After testing, I found my plugin is the culprit. Removing it solves the problem, but it's just a normal plugin with two NSTextField and signed properly. The installer package only crashs after notarization.

Hmmm, crashing the installer, that’s exciting.

Looking at the code in frame 3,

xar_gzip_fromheap_in
, it will only call
abort
if something goes horribly wrong with memory allocation. Weird.

At this point I think I need to take a detailed look at the package before and after notarisation, and I don’t have time to do that in the context of DevForums. You should open a DTS tech support incident, which will allow me to allocate take to look at this in depth.

Share and Enjoy

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

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

My follow-up id is 721050450. I've send a email with links to both package files. Thanks!