jrincayc / ucblogo-code

Berkeley Logo interpreter
https://people.eecs.berkeley.edu/~bh/logo.html
GNU General Public License v3.0
187 stars 34 forks source link

Doesn't run on newer OSX #4

Closed hitsthings closed 4 years ago

hitsthings commented 4 years ago

I downloaded UCBLogo-6.0.dmg.gz. First OSX couldn't figure out how to open it because it's not actually a gzip archive. I removed the .gz and ran it as a .dmg and that worked. I could access the drive contents inside.

But after moving UCBLogo to my Applications folder, I tried to run it and it's incompatible with OSX High Sierra because it's a 32-bit application. Apparently newer OSX is not compatible with anything that isn't 64-bit. So now I'm stuck.

jrincayc commented 4 years ago

Hm, it can be compiled in 64 bit mode (at least on Linux), so I (or someone else) will have to generate a 64 bit dmg.

brianharvey commented 4 years ago

It expands (as gz) and runs for me on 10.13 (High Sierra). From where did you download it?

hitsthings commented 4 years ago

To be clearer (sorry), I'm on Catalina right now. But I get a message stating the problem and links me to https://support.apple.com/en-au/HT208436 which says 10.13.4 and up are incompatible with 32-bit.

I either downloaded it from https://people.eecs.berkeley.edu/~bh/downloads/UCBLogo-6.0.dmg.gz or from the Releases panel here. Let me go check both and see if they are the same.

hitsthings commented 4 years ago

Ok so the releases page here is a legitimate GZip archive (6MB). But https://people.eecs.berkeley.edu/~bh/logo.html links to the URL above which is actually just a dmg (41MB).

Both have the 32-bit issue I mentioned.

hitsthings commented 4 years ago

When I attempt to open UCBLogo: image Learn More... takes me to the Apple support URL linked above.

brianharvey commented 4 years ago

Right. I guess that 10.13 doesn't let you make 32-bit apps, but as an undocumented feature lets you run the ones you have.

I tried cd ....../Logo/source configure -wx make logo and got fewer compiler errors than I expected, but gazillions of loader errors, ending with

  "_wxlPrintPreviewText", referenced from:
      _lprinttext in graphics.o
  "_wxlPrintText", referenced from:
      _lprinttext in graphics.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [logo] Error 1

so probably I have to update Xcode or something?

I was hoping this would just be an easy recompile, but of course not. If I remember correctly, it uses an ancient version of wxWidgets because version ancient+1 had some misfeature that made it not work with Logo. That certainly needs to be fixed because ancient-wxWidgets won't be 64-bit.

(I am so old that the idea of 64-bit words seems horribly wasteful to me; almost all the bits in memory will be zero almost all the time!)

hitsthings commented 4 years ago

I like to think I'm not that old, but 64-bit seems wasteful to me too. :)

Btw, this probably isn't the place to talk about it, but I'm trying to set up Logo for my son who just got into the Secret Coders graphic novel series, if you've heard of that. It's a story where kids use Logo to draw things in the air and their creations can get them out of sticky situations / fight bad guys / etc. The books are great, and they teach kids Logo with repeats and procedures, which is pretty cool. Their website recommends the UCBLogo implementation, so that's how I got here.

Thanks a ton for being such long term maintainers! It's great that the same stuff I used as a kid can be used by my son too.

brianharvey commented 4 years ago

Cool, no, I didn't know about that. It kind of reminds me of coding in Minecraft.

I wish I deserved your thanks, but I've been working on Snap! (snap.berkeley.edu) the past decade or so and letting Logo simmer. Thank @jrincayc who just recently volunteered to take it over. I bet he has an up-to-date compiler, too. :-)

jrincayc commented 4 years ago

Arrg, my mac laptop won't power up (and it is only ten years old and it worked fine when I used it two months ago) :( I don't think I will be able to help with this in the near future.

brianharvey commented 4 years ago

OK I'll see if I can get Xcode up to date (maybe not... Apple software hates me.)

hitsthings commented 4 years ago

I'm mostly in foreign lands with C++ and especially makefiles, but I can give building it a go if someone tells me what to run. I tried: make -f mac-makefile but that gave me:

gcc -g -O -DHAVE_WX    -O0   -c -o coms.o coms.c
In file included from coms.c:28:
./logo.h:69:10: fatal error: 'config.h' file not found
#include "config.h"
         ^~~~~~~~~~
1 error generated.
make: *** [coms.o] Error 1

I'm guessing I need to do something to turn config.h.in into config.h

hitsthings commented 4 years ago

Ah ./configure OK! Now I get

gcc -g -O -DHAVE_WX    -O0 -O0 -c mem.c
mem.c:24:33: error: redefinition of 'exp' as different kind of symbol
extern NODE *stack, *numstack, *exp, *val, *parm, *catch_tag, *arg;
                                ^
mem.c:24:33: note: unguarded header; consider using #ifdef guards or #pragma once
mem.c:24:33: note: previous definition is here
mem.c:104:23: warning: '/*' within block comment [-Wcomment]
/* #define GC_DEBUG 1 /* */
                      ^
mem.c:105:25: warning: '/*' within block comment [-Wcomment]
/* #define GC_TWOBYTE 1 /* Use 2-byte stack offset in mark phase */
                        ^
mem.c:484:5: warning: implicit declaration of function 'check_wx_stop' is invalid in C99 [-Wimplicit-function-declaration]
    check_throwing;
    ^
./logo.h:100:25: note: expanded from macro 'check_throwing'
#define check_throwing (check_wx_stop(0) || stopping_flag == THROWING)
                        ^
mem.c:522:10: warning: incompatible pointer types passing 'double (double)' to parameter of type 'NODE *' (aka 'struct logo_node *') [-Wincompatible-pointer-types]
    mark(exp);
         ^~~
mem.c:386:17: note: passing argument to parameter 'nd' here
void mark(NODE* nd) {
                ^
4 warnings and 1 error generated.
make: *** [mem.o] Error 1
jrincayc commented 4 years ago

Hm, in Linux I get the warning:

mem.c: In function ‘gc’:
logo.h:99:25: warning: implicit declaration of function ‘check_wx_stop’; did you mean ‘check_X11_stop’? [-Wimplicit-function-declaration]

I bet if I fix the implicit declarations I will fix this for mac as well. I also now have a used mac mini to test this out with.

jrincayc commented 4 years ago

Well, I am getting closer to compiling. See branch https://github.com/jrincayc/ucblogo-code/tree/mac_compile It also required fiddling with the makefile and removing some of the ifdef WXMAC

jrincayc commented 4 years ago

It is kludgy, but I did manage to compile and get https://github.com/jrincayc/ucblogo-code/tree/mac_hacks to at least pass my smoke test (can draw a rectangle) and it is compiled in 64 bit mode. I used wxWidgets-3.0.4 compiled for cocoa and the xcode command line tools for OSX 10.11. I had to put a copy of ucblogo's Messages file in the ~/Documents/ directory.

hitsthings commented 4 years ago

That's awesome! Thank you so much!

brianharvey commented 4 years ago

I downloaded from your link into Github Desktop. But when I try to run Xcode it says some security certificate has expired (about iOS, which I don't even need). So, do you have an executable I can run?

jrincayc commented 4 years ago

Here is the executable. :deleted executable

Also, do you happen to have the configure.in that was used to generate the current configure script? I am looking for the one that has the wx configuration stuff in it.

brianharvey commented 4 years ago

Ugh, I did a lot of manual tweaking of what came out of autoconf. There was a reason, which I don't remember any more. Probably there isn't a configure.in with wx stuff. :-(

Could you make a non-shared version of wxWidgets and then make an executable? When I run it I get this:

bhpro13.home% logo dyld: Library not loaded: /Users/jjc/wxWidgets-3.0.4/build-cocoa-debug/lib/libwx_osx_cocoau_xrc-3.0.0.4.0.dylib Referenced from: /Users/bh/Desktop/logo Reason: image not found Abort

Sorry for being such a flake.

brianharvey commented 4 years ago

P.S. I have an executable that works in macOS 10.13 (High Sierra).

jrincayc commented 4 years ago

Okay, I am working on making a new configure.in After I get that working, I will work on making a better version of the logo executable. Did you manage to compile logo yourself?

brianharvey commented 4 years ago

No, I can't compile wxwidgets because I can't get Xcode to run. I guess maybe I could do it from a shell... OK, trying to compile wxwidgets --disable-shared. Stay tuned.

jrincayc commented 4 years ago

I just complied wxwidgets from the command line: https://github.com/wxWidgets/wxWidgets/blob/master/docs/osx/install.md

I have a configure.in that works for wxWidgets on linux. Unfortunately it doesn't work for X11 and I haven't tried it on mac yet. https://github.com/jrincayc/ucblogo-code/compare/config_wx And now I have a Thanksgiving meal to eat. Happy Thanksgiving. I'll be back some time later this week.

jrincayc commented 4 years ago

I compiled wxWidgets statically:

mkdir build-cocoa-static
cd build-cocoa-static
../configure --enable-debug --disable-shared
make -j6

and compiled the config_wx branch with:

./configure --prefix=$HOME/ucblogo_install --with-wx-config=$HOME/wxWidgets-3.0.4/build-cocoa-static/wx-config
make
jrincayc commented 4 years ago

Here is the binary:

logo.zip

brianharvey commented 4 years ago

Yay! It works. I'm going to try to package it up with the libraries and things. Thanks!

(Thanksgiving dinner was boring, huh?) :-)

jrincayc commented 4 years ago

Okay. The code to find the path to the bundle didn't compile so I removed it. It may need to be rewritten to work with wxWidgets 3.0 to get the package working. (Thanksgiving dinner was good, but ucblogo was interesting enough to stay awake to fix.)

jrincayc commented 4 years ago

Here is a test dmg file: http://jjc.freeshell.org/ucblogo.dmg This is built off of the branch wx_config

hitsthings commented 4 years ago

Just as validation, it's working perfectly for me. At least as far as I can to drawsquare etc.

I did get a crash at one point but I think it was because I opened it twice. Here's the dump I was shown if it helps.

Thanks so much for getting it workin in 64-bit!

Process:               UCBLogo [12367]
Path:                  /Applications/UCBLogo.app/Contents/MacOS/UCBLogo
Identifier:            UCBLogo
Version:               0.0.1d1
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           UCBLogo [12367]
User ID:               501

Date/Time:             2019-12-01 17:19:49.956 +1100
OS Version:            Mac OS X 10.15.1 (19B88)
Report Version:        12
Bridge OS Version:     3.0 (14Y906)
Anonymous UUID:        91554D07-EF1C-2413-C704-20A2F75B5380

Sleep/Wake UUID:       08983B8C-03D6-446C-A523-57744E57F300

Time Awake Since Boot: 50000 seconds
Time Since Wake:       520 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000768
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Segmentation fault: 11
Termination Reason:    Namespace SIGNAL, Code 0xb
Terminating Process:   exc handler [12367]

VM Regions Near 0x768:
--> 
    __TEXT                 0000000100000000-000000010066a000 [ 6568K] r-x/rwx SM=COW  /Applications/UCBLogo.app/Contents/MacOS/UCBLogo

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   UCBLogo                         0x00000001000346ce wxTerminal::Flush() + 14
1   UCBLogo                         0x000000010002a081 getFromWX_2 + 241
2   UCBLogo                         0x0000000100020a75 rd_getc + 21
3   UCBLogo                         0x0000000100020e10 reader + 672
4   UCBLogo                         0x000000010001ad6b start + 1099
5   UCBLogo                         0x000000010002a9e7 LogoApplication::OnRun() + 279
6   UCBLogo                         0x000000010033add5 wxEntry(int&, wchar_t**) + 309
7   UCBLogo                         0x000000010033afbc wxEntry(int&, char**) + 60
8   UCBLogo                         0x0000000100029c04 main + 20
9   UCBLogo                         0x0000000100001eb4 start + 52

Thread 1:: Dispatch queue: NSCGSDisableUpdates
0   libsystem_kernel.dylib          0x00007fff6cb391ba semaphore_timedwait_trap + 10
1   com.apple.SkyLight              0x00007fff636db6c0 CGSUpdateManager::enable_updates_common() + 302
2   com.apple.SkyLight              0x00007fff636dbdf7 SLSReenableUpdateTokenWithSeed + 121
3   libdispatch.dylib               0x00007fff6c99f583 _dispatch_call_block_and_release + 12
4   libdispatch.dylib               0x00007fff6c9a050e _dispatch_client_callout + 8
5   libdispatch.dylib               0x00007fff6c9a5ace _dispatch_lane_serial_drain + 597
6   libdispatch.dylib               0x00007fff6c9a6452 _dispatch_lane_invoke + 363
7   libdispatch.dylib               0x00007fff6c9afa9e _dispatch_workloop_worker_thread + 598
8   libsystem_pthread.dylib         0x00007fff6cbf971b _pthread_wqthread + 290
9   libsystem_pthread.dylib         0x00007fff6cbf957b start_wqthread + 15

Thread 2:: com.apple.NSEventThread
0   libsystem_kernel.dylib          0x00007fff6cb39166 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff6cb396cc mach_msg + 60
2   com.apple.CoreFoundation        0x00007fff3551736b __CFRunLoopServiceMachPort + 322
3   com.apple.CoreFoundation        0x00007fff35516907 __CFRunLoopRun + 1695
4   com.apple.CoreFoundation        0x00007fff35515fe3 CFRunLoopRunSpecific + 499
5   com.apple.AppKit                0x00007fff32729dba _NSEventThread + 132
6   libsystem_pthread.dylib         0x00007fff6cbfcd36 _pthread_start + 125
7   libsystem_pthread.dylib         0x00007fff6cbf958f thread_start + 15

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

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

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

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000011  rbx: 0x0000000000000000  rcx: 0x00007fff6cb39ada  rdx: 0xffffffffffffffff
  rdi: 0x0000000000000000  rsi: 0x0000000080017472  rbp: 0x00007ffeefbff480  rsp: 0x00007ffeefbff460
   r8: 0x0000000000000000   r9: 0x00007ffeefbff3b0  r10: 0x0000000000000018  r11: 0x0000000000000207
  r12: 0x00000001006f6be8  r13: 0x00000001006f6ba0  r14: 0x00000001004a0ae8  r15: 0x00000001004a0bd0
  rip: 0x00000001000346ce  rfl: 0x0000000000010207  cr2: 0x0000000000000768

Logical CPU:     0
Error Code:      0x00000004 (no mapping for user data write)
Trap Number:     14

Binary Images:
       0x100000000 -        0x100669fff +UCBLogo (0.0.1d1) <7BB10471-04F1-34D0-A5B0-FCDF2FAD56A3> /Applications/UCBLogo.app/Contents/MacOS/UCBLogo
       0x100c47000 -        0x100cd7b5f  dyld (733.6) <DAFEA246-2F9A-3DCB-A37C-4246D4F92770> /usr/lib/dyld
       0x102aa3000 -        0x102aa6047  libobjc-trampolines.dylib (781) <6CF41A53-C75E-3AAA-9E47-E35C1EE56CE4> /usr/lib/libobjc-trampolines.dylib
    0x7fff29dc8000 -     0x7fff29ee8ff5  com.apple.AMDMTLBronzeDriver (3.2.24 - 3.0.2) <63C45CEB-4AD1-396E-90C5-9A09B90C2584> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
    0x7fff2e1fb000 -     0x7fff2e5faff0  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.2.16 - 14.0.2) <DB072379-5E2E-3D62-A61E-04128EABD551> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
    0x7fff312ac000 -     0x7fff312acfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <956D070C-B522-3A08-891A-CAD6BA4082D1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff312ad000 -     0x7fff312c3ff7  libCGInterfaces.dylib (524.2) <23142415-0CD0-3020-B17E-F600C3889856> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff312c4000 -     0x7fff3192ffdf  com.apple.vImage (8.1 - 524.2) <DCF3349F-1159-3F46-81E0-C18E041DC940> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff31930000 -     0x7fff31b98fff  libBLAS.dylib (1303) <B950B953-116A-3C78-91A9-F983F61BC795> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff31b99000 -     0x7fff31e88ff7  libBNNS.dylib (144.40.3) <BAE2A5E4-14A1-3C54-86DF-888FA26C745E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff31e8a000 -     0x7fff3222ffff  libLAPACK.dylib (1303) <5C248B39-F233-3074-A3A5-AF8F436FBF87> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff32230000 -     0x7fff32245ff8  libLinearAlgebra.dylib (1303) <3AEC87AB-568C-3D88-959A-D6D8C2776FEC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff32246000 -     0x7fff3224bff3  libQuadrature.dylib (7) <7EE59014-8FC5-3369-868B-8A87E590BF78> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff3224c000 -     0x7fff322bcfff  libSparse.dylib (103) <093F97A4-47DE-38DF-BB7A-FF5A3FB0BB3B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff322bd000 -     0x7fff322cffef  libSparseBLAS.dylib (1303) <4536B3F7-7017-36F5-B500-1A63F691CE03> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff322d0000 -     0x7fff324a9ffb  libvDSP.dylib (735) <E849AEB0-2995-38A4-B0C3-4ACEAF434D12> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff324aa000 -     0x7fff32565fd3  libvMisc.dylib (735) <18B48679-444E-3680-A9B2-006A8D1DE3EB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff32566000 -     0x7fff32566fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <79C1A1C7-E97A-3B7A-8737-444B402A7AA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff32567000 -     0x7fff325c6ffc  com.apple.Accounts (113 - 113) <93F6714C-3028-3F7B-AA9B-82ED89D20D88> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff3270b000 -     0x7fff334c3ffe  com.apple.AppKit (6.9 - 1894.10.126) <76EB4086-CA3D-3448-8CE0-9812F9A94F3A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff33513000 -     0x7fff33513fff  com.apple.ApplicationServices (48 - 50) <0748E453-524B-33BA-806B-22786DED2958> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff33514000 -     0x7fff3357ffff  com.apple.ApplicationServices.ATS (377 - 493) <CF8434BF-B51D-3A68-B6FC-AFB0765530A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff33618000 -     0x7fff33656ffa  libFontRegistry.dylib (274) <A512DEE5-A697-3EE6-AF9D-606C9D9156A0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff336b1000 -     0x7fff336e0ff7  com.apple.ATSUI (1.0 - 1) <50DC5F09-5336-3718-AEE9-490773BA3070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff336e1000 -     0x7fff336e5ff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <D4F7C969-FE2C-3036-94E3-FD2882F89C6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff33780000 -     0x7fff337d6ffa  com.apple.HIServices (1.22 - 672) <0B1FD2E8-DEBD-3ED3-82F7-E0F80F21621A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff337d7000 -     0x7fff337e5fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <72ECDBB9-F607-3FB3-ABC3-882C9EFB3245> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff337e6000 -     0x7fff3382bff2  com.apple.print.framework.PrintCore (15 - 516) <78F4A9D5-82F5-3578-A78F-CDD438DB6A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff3382c000 -     0x7fff33836fff  com.apple.QD (4.0 - 413) <63CCC6D7-659A-341A-A8A4-55B596EEFE9C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff33837000 -     0x7fff33844ff0  com.apple.speech.synthesis.framework (9.0.22 - 9.0.22) <202F6033-A76D-3B2C-9BA9-9CCF4493AB4D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff33845000 -     0x7fff33925ff2  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <CAE6B655-8D07-3040-811E-CE5DE42249AE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff33927000 -     0x7fff33927fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <FE7A9727-7F3F-3E0F-B827-DF421993ED12> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff33c9d000 -     0x7fff34014ffb  com.apple.CFNetwork (1120 - 1120) <5EA797F3-2F7A-3E0C-8DBC-DBE145004EC5> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff3408e000 -     0x7fff3408efff  com.apple.Carbon (160 - 162) <56A09CBE-D5EB-3918-B42B-B3ABFF52E1D1> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3408f000 -     0x7fff34092ffb  com.apple.CommonPanels (1.2.6 - 101) <9286951D-8B2F-3A4B-86B2-767AFCC6A591> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff34093000 -     0x7fff34387ff3  com.apple.HIToolbox (2.1.1 - 993.4) <AB2DC9D2-6A2A-3EB0-8ED9-8053CFEEC0A9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff34388000 -     0x7fff3438bff3  com.apple.help (1.3.8 - 68) <64630D33-B292-3FD1-A3B7-AE98D4157EF1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff3438c000 -     0x7fff34391ff7  com.apple.ImageCapture (9.0 - 1600.18) <4B628CBB-65EC-3A36-8EBB-2F9D7D328744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff34392000 -     0x7fff34392fff  com.apple.ink.framework (10.15 - 227) <ED29C75F-6E14-352E-ACB9-AA899E2F5429> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff34393000 -     0x7fff343adff2  com.apple.openscripting (1.7 - 185.1) <D300E418-CF0F-3127-BCBA-A7553F2F1E88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff343ce000 -     0x7fff343cefff  com.apple.print.framework.Print (15 - 271) <4DDF3DC5-A69B-3BB8-B5F3-42ECC341A0B4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff343cf000 -     0x7fff343d1ff7  com.apple.securityhi (9.0 - 55008) <8E09C68A-87BB-3D55-A52F-AB1B249D06F8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff343d2000 -     0x7fff343d8ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <E2CECD92-568A-3C7A-AD98-D99CEF1BBCBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff34573000 -     0x7fff34573fff  com.apple.Cocoa (6.11 - 23) <EB4AD4EA-3212-385A-876E-9F8B30F8CA56> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff34581000 -     0x7fff3476cff7  com.apple.ColorSync (4.13.0 - 3394.3) <DCAECEC5-F7D0-3A28-AE9D-3FA59CC9FB26> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff34a56000 -     0x7fff34f65ffa  com.apple.audio.CoreAudio (5.0 - 5.0) <73C7F0DD-8919-3056-AB1F-67705F942A04> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff34fb8000 -     0x7fff34fefff0  com.apple.CoreBluetooth (1.0 - 1) <E57B1D4A-DF7A-37F3-833A-CD440EB58685> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff34ff0000 -     0x7fff353ceffc  com.apple.CoreData (120 - 973.1) <AC3856BC-894E-30C4-BA99-25C06A3D9FE8> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff353cf000 -     0x7fff354dbff6  com.apple.CoreDisplay (1.0 - 186.2.4) <AD10EEEB-9A5F-3904-A487-50F13E4B2357> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff354dc000 -     0x7fff3595bfe7  com.apple.CoreFoundation (6.9 - 1673.126) <15D61616-B29B-3BDB-8624-4B84A4956485> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff3595d000 -     0x7fff35fd5ff0  com.apple.CoreGraphics (2.0 - 1348.12.4.3) <B8D7910C-0C72-315F-8CE1-C257FD0ADD84> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff35fe3000 -     0x7fff36340ff5  com.apple.CoreImage (15.0.0 - 910.8) <CE3DB305-25FF-31FE-9334-C2370473BAAF> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff36704000 -     0x7fff367deffc  com.apple.CoreMedia (1.0 - 2510.17.4.6) <A455F944-F862-3668-AA2C-008106F9814F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff368c9000 -     0x7fff368c9fff  com.apple.CoreServices (1069.11 - 1069.11) <C8F86BE7-AAED-30A6-BBC2-550446137E7C> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff368ca000 -     0x7fff3694fff7  com.apple.AE (838 - 838) <3301AF1B-D178-306A-9641-B57AA03FB1BE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff36950000 -     0x7fff36c31fff  com.apple.CoreServices.CarbonCore (1217 - 1217) <FAA1467B-6D39-3EBE-9810-A4DF49478F10> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff36c32000 -     0x7fff36c7fffd  com.apple.DictionaryServices (1.2 - 323) <C1798F09-36D3-3C8E-AF72-A3DE63962AF1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff36c80000 -     0x7fff36c88fff  com.apple.CoreServices.FSEvents (1268.40.5 - 1268.40.5) <9BB76885-7CD7-3369-B759-33F7E5DA5392> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff36c89000 -     0x7fff36ec2ff0  com.apple.LaunchServices (1069.11 - 1069.11) <88F59BD5-412A-35EE-AD45-E6BF80B24891> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff36ec3000 -     0x7fff36f5bff9  com.apple.Metadata (10.7.0 - 2074.4) <028AC15A-35B7-3E1F-BCDC-470C8EA0CA09> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff36f5c000 -     0x7fff36f89ff7  com.apple.CoreServices.OSServices (1069.11 - 1069.11) <A667F007-A599-3869-99F7-1F8460011015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff36f8a000 -     0x7fff36ff1fff  com.apple.SearchKit (1.4.1 - 1.4.1) <F0A931E4-0C31-36BA-8DD7-01FDF9813FB7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff36ff2000 -     0x7fff37016ffd  com.apple.coreservices.SharedFileList (131 - 131) <62C3066A-3991-313F-AE2D-75B2B5934D52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff3733e000 -     0x7fff374f2ff6  com.apple.CoreText (643.1.1.5 - 643.1.1.5) <4525DC61-0B5B-33B2-A249-68C6A1267EE7> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff374f3000 -     0x7fff37537fff  com.apple.CoreVideo (1.8 - 334.0) <52692CD0-764F-3D77-9087-2825ED39AD0F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff37538000 -     0x7fff375c5ff1  com.apple.framework.CoreWLAN (13.0 - 1455.3) <3F7DCCA2-A5E2-3196-B2C7-31491192E75C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff3778b000 -     0x7fff37796ff7  com.apple.DirectoryService.Framework (10.15 - 220.40.1) <71100385-C865-3DEE-9B4E-B78E918E542B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff37797000 -     0x7fff37842ff0  com.apple.DiscRecording (9.0.3 - 9030.4.5) <F200BFE6-5AF1-34BA-8A87-B06753141358> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff37867000 -     0x7fff3786dff7  com.apple.DiskArbitration (2.7 - 2.7) <A3D2B0A0-3C72-3893-87BF-D45FE398A905> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff37a60000 -     0x7fff37b87ff7  com.apple.FileProvider (257 - 257) <E6755796-E58D-3C24-A0E9-0029521120C4> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff37b9f000 -     0x7fff37f66ff4  com.apple.Foundation (6.9 - 1673.126) <470C2315-3047-39BB-BB6B-2C620087091C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff37fd3000 -     0x7fff38023ff3  com.apple.GSS (4.0 - 2.0) <A149061D-5893-35B5-AE7F-BA889DFEADB2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff3815d000 -     0x7fff38275ff8  com.apple.Bluetooth (7.0.1 - 7.0.1f1) <61A2BDF8-E3AC-3714-A967-92404AC52389> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff382dc000 -     0x7fff3837fffb  com.apple.framework.IOKit (2.0.2 - 1726.41.1) <FBB4A97B-D7CF-3B8C-932D-672343D63260> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff38381000 -     0x7fff38391ff4  com.apple.IOSurface (269.6 - 269.6) <DB88C9C2-0F53-3C77-98F0-1D8A1DFA9CB1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff38408000 -     0x7fff38564ffe  com.apple.ImageIO.framework (3.3.0 - 1972.11.4.4) <2809F8D6-7B13-3703-B266-C5B7A6B62D97> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff38565000 -     0x7fff38568fff  libGIF.dylib (1972.11.4.4) <2BFC7FDD-4A4F-323C-B60A-3B4AE526F7CE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff38569000 -     0x7fff38623fef  libJP2.dylib (1972.11.4.4) <214BCCF5-2A06-3B4A-B2B8-4ECCB4B32D1C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff38624000 -     0x7fff38648fef  libJPEG.dylib (1972.11.4.4) <DBE9F84B-D9A2-3044-BFE2-B3853025FD9F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff388c6000 -     0x7fff388e0fe7  libPng.dylib (1972.11.4.4) <BD63D82F-55E5-32DB-96F9-8D7A3CDDA272> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff388e1000 -     0x7fff388e2fff  libRadiance.dylib (1972.11.4.4) <2454AEBE-BE87-3D0F-BE68-6ECA3FCA361C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff388e3000 -     0x7fff3892cfff  libTIFF.dylib (1972.11.4.4) <73A90FA4-9A51-3653-8F14-2EBBFEED3F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff38da5000 -     0x7fff39d39ff1  com.apple.JavaScriptCore (15608 - 15608.3.10.1.4) <84426449-FDEA-3B11-94AB-544A56CB07B3> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff39d51000 -     0x7fff39d63ff3  com.apple.Kerberos (3.0 - 1) <8018F664-0026-3CC3-8685-3E2FE0BF2C7F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff39d64000 -     0x7fff39d64fff  libHeimdalProxy.dylib (77) <51DB9CFB-808F-32E8-BB34-39F6702DBDED> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff39d65000 -     0x7fff39d9bfff  com.apple.LDAPFramework (2.4.28 - 194.5) <33F235C9-B0D4-3005-B395-DACE6DD93855> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff3a0f7000 -     0x7fff3a101fff  com.apple.MediaAccessibility (1.0 - 125) <DD6304A2-1692-3C69-9FEA-B51F92510D5B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff3a1cd000 -     0x7fff3a910ff7  com.apple.MediaToolbox (1.0 - 2510.17.4.6) <3F852775-C302-3EE8-8631-31D96375BD73> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff3a912000 -     0x7fff3a9d5ff9  com.apple.Metal (212.2.3 - 212.2.3) <AA7DE079-2DFD-3E9F-A041-464CFBE1ABAE> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff3a9f2000 -     0x7fff3aa2eff3  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <FB95B500-E5A3-3FAD-882E-D12FD9CA0964> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff3aa2f000 -     0x7fff3aab5fe6  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <C0E349E7-ADE3-3353-8CFF-3DAD653F810E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff3aab6000 -     0x7fff3aadaff8  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <8665FDF1-210F-3A8C-9D5D-FA0C49FD8C8C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff3aadb000 -     0x7fff3aaf0fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <EE7CF802-BF7F-3EEC-9EC2-26A3B3432275> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff3aaf1000 -     0x7fff3ac50ff4  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <46C9BDBB-1FB9-3E1A-A02C-818D16E472D9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff3ac51000 -     0x7fff3ac9ffff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <7CFEE008-E1AD-30FE-B0B7-9A7459701234> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff3aca0000 -     0x7fff3aca1ff5  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <241617D0-E5E7-3E36-971E-E278D15990A9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff3bbe7000 -     0x7fff3bbf3ffe  com.apple.NetFS (6.0 - 4.0) <5C3C3672-2549-316E-9AC6-A1CFDCD16E9C> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff3bbf4000 -     0x7fff3bd37ff6  com.apple.Network (1.0 - 1) <38F65393-1393-3888-9F02-C4087F19CA0D> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff3e760000 -     0x7fff3e7b8ff7  com.apple.opencl (3.5 - 3.5) <D734AF0C-0EA3-3264-BBF9-D3099ACF47E3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff3e7b9000 -     0x7fff3e7d5fff  com.apple.CFOpenDirectory (10.15 - 220.40.1) <AA81FC34-A7F6-3DA2-A275-B34F75099C7B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff3e7d6000 -     0x7fff3e7e1fff  com.apple.OpenDirectory (10.15 - 220.40.1) <ECFA2FFB-D5B6-3916-96F7-9F3A1EB1E534> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff3f13c000 -     0x7fff3f13efff  libCVMSPluginSupport.dylib (17.10.22) <48C3CA4F-69EF-31E7-9120-0BA8E9162ACA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff3f13f000 -     0x7fff3f144fff  libCoreFSCache.dylib (176.9) <D5D62F22-9099-370B-B264-B5398554EF0B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff3f145000 -     0x7fff3f149fff  libCoreVMClient.dylib (176.9) <31DA9263-05A0-35A5-9CB8-40F8311B964B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff3f14a000 -     0x7fff3f152ff7  libGFXShared.dylib (17.10.22) <B153F11B-C10F-38FE-AB8D-9E6C5315F210> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff3f153000 -     0x7fff3f15dfff  libGL.dylib (17.10.22) <59E124FF-8F56-3028-9816-40699F152B3B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff3f15e000 -     0x7fff3f193fff  libGLImage.dylib (17.10.22) <7EC55D26-7FA5-3B7B-A552-C50FA0308101> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff3f327000 -     0x7fff3f363fff  libGLU.dylib (17.10.22) <A4C86485-7CDF-30B0-ACB5-B0D11CA88ED0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff3fd93000 -     0x7fff3fda2ff7  com.apple.opengl (17.10.22 - 17.10.22) <0142B045-DCF8-3554-A7FB-48A173541E40> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff40d5c000 -     0x7fff40fdaff0  com.apple.QuartzCore (1.11 - 815.19.4.2) <5F492A40-BBBC-3A31-83A8-32462A7B1FB4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff41b27000 -     0x7fff41e6dff6  com.apple.security (7.0 - 59306.41.2) <FB3774D5-C940-35FB-960A-86253A01BDAE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff41e6e000 -     0x7fff41ef6ff7  com.apple.securityfoundation (6.0 - 55236) <6482C994-4DB4-320D-8FD4-50C998EA8856> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff41ef7000 -     0x7fff41f24fff  com.apple.securityinterface (10.0 - 55139.0.1) <CC270134-36F2-3FBF-A087-F4FFC6B65D05> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff41f50000 -     0x7fff41f54ff8  com.apple.xpc.ServiceManagement (1.0 - 1) <2B80E13A-AFFC-355A-AA82-CCDEF4718E66> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff42ce1000 -     0x7fff42d4bff7  com.apple.SystemConfiguration (1.19 - 1.19) <A52A533D-DA25-3607-A18E-CA7C539E1C52> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff42fc7000 -     0x7fff43321ff4  com.apple.VideoToolbox (1.0 - 2510.17.4.6) <D8DDFD1A-003E-399A-9469-E6E55551726D> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff435c4000 -     0x7fff43cccff6  libwebrtc.dylib (7608.3.10.1.4) <34C65BA0-76E5-3B29-97BA-C44E84CC45D7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
    0x7fff43ccd000 -     0x7fff45e70ff8  com.apple.WebCore (15608 - 15608.3.10.1.4) <76C41F28-1862-34DA-804B-1A9DDCF557BA> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff45e71000 -     0x7fff4606aff3  com.apple.WebKitLegacy (15608 - 15608.3.10.1.4) <23E4FF3A-B3F6-3367-BCAF-56B467C9FF32> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff4606b000 -     0x7fff46706ff2  com.apple.WebKit (15608 - 15608.3.10.1.4) <37C34BB7-F23E-3D1B-B36B-F5A28925E777> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff46aa7000 -     0x7fff46b6bfef  com.apple.APFS (1412.41.1 - 1412.41.1) <0319F563-43AE-3F80-9107-7F0056E726DB> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff4719b000 -     0x7fff471a6ff9  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <F9138D1F-8953-3F86-B59C-2583705ABEFC> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
    0x7fff47c47000 -     0x7fff47c48ff1  com.apple.AggregateDictionary (1.0 - 1) <93D38CEB-C8F2-3011-8810-64D1E33B0D62> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff48158000 -     0x7fff48175ffc  com.apple.AppContainer (4.0 - 448.40.2) <1A1D23EF-A9CA-3D46-ABAC-E87628E3DF26> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff481ca000 -     0x7fff481d8ff7  com.apple.AppSandbox (4.0 - 448.40.2) <19B46F6D-3F13-3679-81E0-C626E7E9749D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff4865f000 -     0x7fff48683ff3  com.apple.framework.Apple80211 (13.0 - 1460.1) <5290ABDC-D781-31CF-AD23-C39D3BA3FBD6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff487b9000 -     0x7fff487c8fdf  com.apple.AppleFSCompression (119 - 1.0) <7EEDBF8A-8812-33D6-A5B0-F7D36825EE73> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff488c7000 -     0x7fff488d2ff7  com.apple.AppleIDAuthSupport (1.0 - 1) <B84D3BAB-BCF7-3DD8-A656-498D5444DC9D> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff48914000 -     0x7fff4895cfff  com.apple.AppleJPEG (1.0 - 1) <CFE57DD6-F663-3DBF-8D37-BEFABF557D1F> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff48d35000 -     0x7fff48d39ff7  com.apple.AppleSRP (5.0 - 1) <77EB08CE-419B-38D5-9160-C1D4D3EE5131> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff48d3a000 -     0x7fff48d5cffb  com.apple.applesauce (1.0 - 16.22) <EFF69698-9566-3957-B3F5-CEC2B206EE7C> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff48e1c000 -     0x7fff48e1fffb  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <F4F1A097-C691-38BC-B91B-FFD828C3EA4E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff48e20000 -     0x7fff48e70ff7  com.apple.AppleVAFramework (6.1.2 - 6.1.2) <C380FF1E-965E-3F05-BDCF-BB9EAC7F7B74> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff48eb9000 -     0x7fff48ec8ff1  com.apple.AssertionServices (1.0 - 223.40.19) <73B5C0D9-AB04-3961-A01D-FFBC94D1348E> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff49404000 -     0x7fff49802ff4  com.apple.audio.AudioResourceArbitration (1.0 - 1) <D51DC94A-FFDE-3B61-8E71-A05298853297> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff49a59000 -     0x7fff49c96fff  com.apple.audio.AudioToolboxCore (1.0 - 1104.26) <9D7C2174-0854-3C13-AF80-E814A9EC013C> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff49c97000 -     0x7fff49db0ff0  com.apple.AuthKit (1.0 - 1) <F190E8C4-1D9B-34F2-9255-902509534E6A> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff49f6b000 -     0x7fff49f74ff3  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <5E2B9000-49D6-3BFA-97F1-3B47A8A7418D> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff49f75000 -     0x7fff4a016ff8  com.apple.backup.framework (1.11.1 - 1298.1.2) <3C069796-5360-32F6-8841-BC263B94B2A3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff4a017000 -     0x7fff4a098ffd  com.apple.BaseBoard (464.1 - 464.1) <1A44B522-904F-3541-BC8C-5EDF0C6EE49C> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff4a19a000 -     0x7fff4a1d6ff7  com.apple.bom (14.0 - 219.1) <4D4C4ACA-A1DD-3D0B-B362-8D202EBE8D9B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff4ad4b000 -     0x7fff4ad9afff  com.apple.ChunkingLibrary (302 - 302) <593921FE-7EFE-36F6-8B05-4E89B00EABD6> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff4bc23000 -     0x7fff4bc34fff  com.apple.CommonAuth (4.0 - 2.0) <1D04F654-22B1-37EF-90AD-3ADB5238806A> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff4bc48000 -     0x7fff4bc5ffff  com.apple.commonutilities (8.0 - 900) <0B13423D-84E7-394A-8E2A-62D815B5BC4B> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff4c358000 -     0x7fff4c72dfc8  com.apple.CoreAUC (283.0.0 - 283.0.0) <505292C7-A6F0-392F-A94D-03D74F61F717> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff4c72e000 -     0x7fff4c75cffb  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <BB2011D9-77DB-3C50-9228-C0A7B3880821> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff4c77f000 -     0x7fff4c79eff4  com.apple.analyticsd (1.0 - 1) <CFAD97DE-F4F0-3A1B-B6FE-855164CC68CC> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff4ca69000 -     0x7fff4ca74ff7  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <E382C414-45C5-370B-A011-ED8FFCE8737D> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff4ccec000 -     0x7fff4ccfcff3  com.apple.CoreEmoji (1.0 - 107) <8D1CA277-C4F7-3F3B-919E-73B68D39535E> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff4d34d000 -     0x7fff4d3b7ff8  com.apple.CoreNLP (1.0 - 213) <329A9840-CBD8-33A2-A584-2805042284A9> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff4d6b7000 -     0x7fff4d6bbfff  com.apple.CoreOptimization (1.0 - 1) <80C75A46-E0FC-3E28-85E1-FC43404214B5> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
    0x7fff4d826000 -     0x7fff4d82eff8  com.apple.CorePhoneNumbers (1.0 - 1) <D4405704-6DD4-3486-9DE4-80FC91F1F80B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff4d82f000 -     0x7fff4d88194b  com.apple.CorePrediction (1.0 - 1) <4E6EB3F2-C3D2-32EC-8713-6CF6C7235BA8> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
    0x7fff4df7a000 -     0x7fff4df9dfff  com.apple.CoreSVG (1.0 - 129) <00FDBCD4-A7CC-3E32-AC10-878B6A74596F> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff4df9e000 -     0x7fff4dfd1fff  com.apple.CoreServicesInternal (446.4 - 446.4) <E9CE4776-4375-384B-B4A8-D0BF1D5BBFA4> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff4dfd2000 -     0x7fff4e000ff7  com.apple.CSStore (1069.11 - 1069.11) <792520D2-5D81-3867-8DC7-75F8205D5A5B> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff4e501000 -     0x7fff4e588fff  com.apple.CoreSymbolication (11.0 - 64509.98.1) <F0A1415B-068A-3CE6-9AB3-B11EF978B58A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff4e620000 -     0x7fff4e74cffc  com.apple.coreui (2.1 - 607) <5FB17928-EB0D-3C46-B078-7B9621261385> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff4e74d000 -     0x7fff4e8e8ffe  com.apple.CoreUtils (6.1 - 610.14) <62284EE1-1F77-3487-8DD0-43BDCFFD27D2> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff4ea1d000 -     0x7fff4ea30ff1  com.apple.CrashReporterSupport (10.13 - 15011) <E4E96CDA-DFC4-3096-BCFC-994DB61D3E4D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff4ec9c000 -     0x7fff4ecaeff0  com.apple.framework.DFRFoundation (1.0 - 252) <A7A09B8B-CEAD-3480-906E-9C3B685E6611> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff4ecaf000 -     0x7fff4ecb4fff  com.apple.DSExternalDisplay (3.1 - 380) <F34E4A29-FD30-3DD0-946E-0AEDAE04EB18> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff4ed1d000 -     0x7fff4ed98ff8  com.apple.datadetectorscore (8.0 - 659) <0E160ECD-98B5-3D9E-B155-0942A4B009A5> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff4ede4000 -     0x7fff4ee22ff0  com.apple.DebugSymbols (194 - 194) <FF16F79C-0D6B-32BF-B2DC-25BAF1E914C2> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff4ee23000 -     0x7fff4ef7eff7  com.apple.desktopservices (1.14.1 - 1281.1.1) <44D9F114-0D09-331E-8CD2-3A191E5AE8E1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff4f0c0000 -     0x7fff4f188ff6  com.apple.DiskImagesFramework (559.40.3 - 559.40.3) <E2E4EDD4-00DA-3002-81A4-258281876871> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff4f189000 -     0x7fff4f259ff6  com.apple.DiskManagement (13.0 - 1648.0.5) <ADE3EAEE-5EAF-359E-BD5F-B2C348C3EEB0> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff4f338000 -     0x7fff4f33cff9  com.apple.EFILogin (2.0 - 2) <A50E6356-A248-31DE-931C-F89ED4B22F38> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff507b2000 -     0x7fff50bcdff9  com.apple.vision.FaceCore (4.3.0 - 4.3.0) <9F0FB4FD-C77F-3494-9898-9709BA2F1315> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff51233000 -     0x7fff5136affc  libFontParser.dylib (277.2.1.2) <92F025B1-AEE5-3BF8-8515-24FAF66AD7C2> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff5136b000 -     0x7fff5139ffff  libTrueTypeScaler.dylib (277.2.1.2) <AD3D80AD-FF50-3652-B42B-A26030249CDF> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
    0x7fff51404000 -     0x7fff51414ff6  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <E7C8B563-8C55-30CC-AA12-EC9A6B1DAB1A> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff548d8000 -     0x7fff548d9fff  libmetal_timestamp.dylib (902.11.1) <FA6BD306-D8F5-3F48-A98E-5BA327F3B679> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff55f80000 -     0x7fff55f86fff  com.apple.GPUWrangler (4.5.9 - 4.5.9) <382B7462-5644-3C3E-968A-A5A9EBAFEECA> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff562a1000 -     0x7fff562c7ffb  com.apple.GenerationalStorage (2.0 - 312) <C0B51C28-86E3-350E-BE7D-009032478C18> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff573e5000 -     0x7fff573f3ffb  com.apple.GraphVisualizer (1.0 - 100.1) <415AAD69-0A45-3B21-9698-D8798A48E5A2> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff573f4000 -     0x7fff57401ff3  com.apple.GraphicsServices (1.0 - 1.0) <CF29B1DA-52DD-3FBC-8C1B-64993478B264> /System/Library/PrivateFrameworks/GraphicsServices.framework/Versions/A/GraphicsServices
    0x7fff57586000 -     0x7fff57644ff4  com.apple.Heimdal (4.0 - 2.0) <735D30D6-8713-382B-97EA-12EFCC053486> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff59771000 -     0x7fff5977affe  com.apple.IOAccelMemoryInfo (1.0 - 1) <8FCBD2DE-0094-3F8B-BB86-646646BA5D9C> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff5977b000 -     0x7fff59783ff5  com.apple.IOAccelerator (438.2.7 - 438.2.7) <98C1C6DE-68A7-3396-B3D6-336CF11964AD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff59786000 -     0x7fff5979cff7  com.apple.IOPresentment (1.0 - 37) <E3AACF97-C85A-3720-90F0-61CAEF721F3D> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff59b26000 -     0x7fff59b71ffc  com.apple.IconServices (438.2 - 438.2) <49E47D81-CBE8-3CB3-82F6-927B0AE64086> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff59d2e000 -     0x7fff59d34ffc  com.apple.InternationalSupport (1.0 - 44) <E881A3F9-7D1E-3943-B8DB-7BF31057CBB6> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff59f75000 -     0x7fff59f95fff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <A6E97F92-DF9D-35F3-9DD8-2951FF162578> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff5a0ec000 -     0x7fff5a1baff5  com.apple.LanguageModeling (1.0 - 215) <D3478ED9-A757-355F-A4A0-464E133182D6> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff5a1bb000 -     0x7fff5a203ff7  com.apple.Lexicon-framework (1.0 - 72) <94910CCB-C386-3912-84A2-1A730BB6EF62> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff5a20a000 -     0x7fff5a20eff6  com.apple.LinguisticData (1.0 - 353) <23AF4473-4FDB-39D9-8862-7D23276606A9> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff5a2b2000 -     0x7fff5a2b7ff7  com.apple.LoginUICore (4.0 - 4.0) <7E1FC261-596B-3EBF-8BA2-0E2D616C9103> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff5aaa6000 -     0x7fff5aaa9fff  com.apple.Mangrove (1.0 - 25) <445D1183-447D-3F73-9532-11DAFF69F2A8> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff5ad0b000 -     0x7fff5ad95ff0  com.apple.MediaExperience (1.0 - 1) <40A6CE90-66FA-341B-ABF9-5EE0FB506645> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff5ad96000 -     0x7fff5adc9fff  com.apple.MediaKit (16 - 923) <F4E063D9-5302-3A54-A80E-721D2555E367> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff5b55f000 -     0x7fff5b5abff7  com.apple.spotlight.metadata.utilities (1.0 - 2074.4) <8957F147-9371-3728-896E-FC517AC7E86E> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff5b5ac000 -     0x7fff5b67affd  com.apple.gpusw.MetalTools (1.0 - 1) <494BAEE0-8742-31F9-BC6D-C947A2756C5F> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff5b8aa000 -     0x7fff5b8c8fff  com.apple.MobileKeyBag (2.0 - 1.0) <C137BEF9-6103-3AA5-B4BB-25BFE550B473> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff5bb2f000 -     0x7fff5bb5dff7  com.apple.MultitouchSupport.framework (3410.2 - 3410.2) <67076218-F639-3C44-9670-20B54714E339> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff5bfd2000 -     0x7fff5bfdcfff  com.apple.NetAuth (6.2 - 6.2) <BA114B8C-BE33-3DBB-BDC8-25423DBBD3A3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff5c9ca000 -     0x7fff5ca16ff7  com.apple.OTSVG (1.0 - 643.1.1.5) <239EB765-2776-30F4-A300-4DF12C987D0F> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff5dba5000 -     0x7fff5dbb0ffe  com.apple.PerformanceAnalysis (1.243 - 243) <FCF592E9-A0C8-3E31-BC87-91AEE71C2869> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff5dbb1000 -     0x7fff5dbd9ffb  com.apple.persistentconnection (1.0 - 1.0) <E6842FE3-D767-3540-95D3-39A213B45BD7> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff6049e000 -     0x7fff604f8fff  com.apple.ProtectedCloudStorage (1.0 - 1) <9B166C3E-ACED-3528-A68F-22491EE811BA> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff604f9000 -     0x7fff60512fff  com.apple.ProtocolBuffer (1 - 274.20.7.15.1) <89CB1292-0A41-3848-9AE1-CC5CEA756A25> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff60917000 -     0x7fff60940ff9  com.apple.RemoteViewServices (2.0 - 148) <D8DCE656-7CBF-381A-827A-B8AA2A34CC08> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff60aa5000 -     0x7fff60ae0ff0  com.apple.RunningBoardServices (1.0 - 223.40.19) <30C89668-9DEE-3948-B4EA-6DC9099497C2> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff6185a000 -     0x7fff618a4fff  com.apple.Safari.SafeBrowsing (15608 - 15608.3.10.1.4) <0EAC823B-0A4F-3FFC-89B0-EF5B19B1E339> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
    0x7fff623f4000 -     0x7fff623f7ff1  com.apple.SecCodeWrapper (4.0 - 448.40.2) <C2138BC2-5F03-3E79-AC0C-F95F0BC9C0B3> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff6253f000 -     0x7fff62663ff4  com.apple.Sharing (1496.4 - 1496.4) <509EE7C8-C096-372E-B1CC-1CBB7B59DFEF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff63697000 -     0x7fff6398fffa  com.apple.SkyLight (1.600.0 - 440.14) <87B4BC36-78DA-3320-B455-FACB48DC63AA> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff641d7000 -     0x7fff641e5fff  com.apple.SpeechRecognitionCore (6.0.91 - 6.0.91) <6D164E0A-5C8D-3125-933F-F4842C731E01> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff64a08000 -     0x7fff64a11ff3  com.apple.SymptomDiagnosticReporter (1.0 - 1238.40.4) <FB255398-53B0-3462-8227-EBD173B5F93E> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff64a83000 -     0x7fff64aadff0  com.apple.framework.SystemAdministration (1.0 - 1.0) <37D8FA9B-7C69-30D4-A8E9-8973924733B0> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff64cc6000 -     0x7fff64cd6ff3  com.apple.TCC (1.0 - 1) <87BE8D5C-5D35-3434-8BDF-1615349C7A21> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff651c8000 -     0x7fff6528fff4  com.apple.TextureIO (3.10.9 - 3.10.9) <499A5034-C527-30AC-9580-912423C3C2D8> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff6540c000 -     0x7fff6540dfff  com.apple.TrustEvaluationAgent (2.0 - 33) <4327B52D-2681-3195-B1F8-270D9137F932> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff660e6000 -     0x7fff6633fffa  com.apple.UIFoundation (1.0 - 659.5) <99072103-6A73-3538-944A-5FD2AF709A78> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff663d2000 -     0x7fff663d8ff6  com.apple.URLFormatting (119 - 119.13) <7257AB76-1449-3649-86BA-4B7F56B59480> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
    0x7fff66f30000 -     0x7fff66f50fff  com.apple.UserManagement (1.0 - 1) <CAD75201-57C8-338E-BE1B-5C5E2EEB9DAB> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff67d02000 -     0x7fff67decffe  com.apple.ViewBridge (462 - 462) <627E4CA4-2E4E-3CF7-8DBB-F09990DDF0FF> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff67f91000 -     0x7fff67f92fff  com.apple.WatchdogClient.framework (1.0 - 67.40.1) <B1228D4E-50B5-3630-A7F4-5598651CE963> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff6815b000 -     0x7fff6815bfff  com.apple.WebInspectorUI (15608 - 15608.3.10.1.4) <FAD34ABD-04C5-30F5-8784-1BD603755CD6> /System/Library/PrivateFrameworks/WebInspectorUI.framework/Versions/A/WebInspectorUI
    0x7fff68306000 -     0x7fff68342ff3  libAWDSupport.dylib (949) <03EE06EA-AD89-3377-A027-F268F8E46B23> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib
    0x7fff68343000 -     0x7fff685e8ff2  libAWDSupportFramework.dylib (3210) <9D077F42-DA50-3358-96D8-0DBB80E14615> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
    0x7fff685e9000 -     0x7fff685faff7  libprotobuf-lite.dylib (3210) <DE3E8323-4F86-3293-A793-D3AA0ACA8804> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
    0x7fff685fb000 -     0x7fff68655ff3  libprotobuf.dylib (3210) <E5FD19B6-6919-30D7-8C70-60D91FF87E10> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
    0x7fff68656000 -     0x7fff6869affe  com.apple.awd (1.0 - 949) <14BA32F0-A038-3720-83A6-176986C9B962> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
    0x7fff68b69000 -     0x7fff68b6cffe  com.apple.dt.XCTTargetBootstrap (1.0 - 15508) <BA4C9007-2C3E-33DE-B81C-608918D2FDF1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff68be5000 -     0x7fff68bf3ffd  com.apple.audio.caulk (1.0 - 32.3) <089441BF-D7F6-388F-8D89-0262AB2EEA3F> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff68f33000 -     0x7fff68f35ff3  com.apple.loginsupport (1.0 - 1) <FFE90A0A-BEBC-3032-9368-94C016BE0795> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff68f36000 -     0x7fff68f49ffd  com.apple.login (3.0 - 3.0) <51B9680F-41CE-394E-A600-1B5B0EC8D52B> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff69195000 -     0x7fff691aaff6  libAccessibility.dylib (2771.18.2.4) <26E69EEB-BEBD-3411-956A-FF6F0C238937> /usr/lib/libAccessibility.dylib
    0x7fff69268000 -     0x7fff6929dff2  libAudioToolboxUtility.dylib (1104.26) <261CDFD3-BEFF-3BE8-9322-8A0F5282D4B9> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff692a4000 -     0x7fff692d9ff7  libCRFSuite.dylib (48) <CDEA70A4-318B-3990-9AAE-1D7B18132760> /usr/lib/libCRFSuite.dylib
    0x7fff692dc000 -     0x7fff692e6ff3  libChineseTokenizer.dylib (34) <4D68248B-BD40-32E3-ABCA-CE23BCA0A6A4> /usr/lib/libChineseTokenizer.dylib
    0x7fff692e7000 -     0x7fff69370fff  libCoreStorage.dylib (551) <440FD2FE-94FD-3456-898A-6420EAC5A71F> /usr/lib/libCoreStorage.dylib
    0x7fff69373000 -     0x7fff69375fff  libDiagnosticMessagesClient.dylib (112) <83F42398-DB41-3BB2-B8A1-10D78C4B5778> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff693ba000 -     0x7fff69571ff3  libFosl_dynamic.dylib (100.4) <F5583DFD-E3A1-3D6A-8698-613F7FA119A0> /usr/lib/libFosl_dynamic.dylib
    0x7fff69598000 -     0x7fff6959eff3  libIOReport.dylib (54) <EC75DB3B-CFC4-3235-8C2F-CE3C29CA8CFE> /usr/lib/libIOReport.dylib
    0x7fff6967e000 -     0x7fff69685fff  libMatch.1.dylib (36) <D059FA22-1620-3A26-BF81-70EA469C97EB> /usr/lib/libMatch.1.dylib
    0x7fff696b5000 -     0x7fff696d4fff  libMobileGestalt.dylib (826.40.7) <C9875B8D-F7C6-32F6-A94D-1F2CA20D00CE> /usr/lib/libMobileGestalt.dylib
    0x7fff6983b000 -     0x7fff6983cff3  libSystem.B.dylib (1281) <1DD1BCD2-2C85-3B81-8CAF-224FB042F441> /usr/lib/libSystem.B.dylib
    0x7fff6983d000 -     0x7fff698cbffb  libTelephonyUtilDynamic.dylib (3851) <6ED64F20-2FEE-340B-9E7F-5E3A3AF93E93> /usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff698cc000 -     0x7fff698cdfff  libThaiTokenizer.dylib (3) <22582C9C-3D32-3832-8925-813E4F2BA8DA> /usr/lib/libThaiTokenizer.dylib
    0x7fff698e5000 -     0x7fff698fbfff  libapple_nghttp2.dylib (1.39.2) <9B990E6A-D9EB-3F2C-B7CA-085A47D4BC62> /usr/lib/libapple_nghttp2.dylib
    0x7fff69930000 -     0x7fff699a2ff7  libarchive.2.dylib (72.40.2) <25C00824-621A-3FF1-9B6C-52999B6DDF4E> /usr/lib/libarchive.2.dylib
    0x7fff699a3000 -     0x7fff69a39fc5  libate.dylib (2.0.9) <53750831-1A8E-3AF3-A22D-53C08F9D7002> /usr/lib/libate.dylib
    0x7fff69a3d000 -     0x7fff69a3dff3  libauto.dylib (187) <F4B3519A-A4FC-30E0-805C-70C99BA3FDDA> /usr/lib/libauto.dylib
    0x7fff69afb000 -     0x7fff69b0bfff  libbsm.0.dylib (60) <E57A0CC6-226D-3529-A23A-D5DD6674DB3E> /usr/lib/libbsm.0.dylib
    0x7fff69b0c000 -     0x7fff69b18fff  libbz2.1.0.dylib (44) <F3D26C17-BC6E-3A83-A3BB-137343C87303> /usr/lib/libbz2.1.0.dylib
    0x7fff69b19000 -     0x7fff69b6cfff  libc++.1.dylib (800.7) <1D42387D-206A-3F06-9B5F-705B83EAC295> /usr/lib/libc++.1.dylib
    0x7fff69b6d000 -     0x7fff69b81fff  libc++abi.dylib (800.7) <D89ABFBF-3754-35AB-BAEE-FBF14857F79B> /usr/lib/libc++abi.dylib
    0x7fff69b82000 -     0x7fff69b82ffb  libcharset.1.dylib (59) <EC5B95D9-388B-3351-9192-CD6CDB8C3E0F> /usr/lib/libcharset.1.dylib
    0x7fff69b83000 -     0x7fff69b94ffb  libcmph.dylib (8) <49C8E101-945E-369B-91D3-2129000DFF35> /usr/lib/libcmph.dylib
    0x7fff69b95000 -     0x7fff69bacfe7  libcompression.dylib (87) <77B35FFD-CE66-3CCA-BEDD-9771D698CEE3> /usr/lib/libcompression.dylib
    0x7fff69e79000 -     0x7fff69e8ffff  libcoretls.dylib (167) <4F054E37-783A-3FCD-B90B-23A0A83621D9> /usr/lib/libcoretls.dylib
    0x7fff69e90000 -     0x7fff69e91ffb  libcoretls_cfhelpers.dylib (167) <62E31BC8-A823-3816-B130-2BB550433203> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff6a335000 -     0x7fff6a439fe7  libcrypto.44.dylib (47.11.1) <7607262D-CEFA-3B52-A07E-7DC7904F9BD8> /usr/lib/libcrypto.44.dylib
    0x7fff6a43c000 -     0x7fff6a447ff7  libcsfde.dylib (551) <0A7CE4E1-45F7-3C3E-A092-EAB17818F4A8> /usr/lib/libcsfde.dylib
    0x7fff6a44f000 -     0x7fff6a4aefff  libcups.2.dylib (483) <38F989F6-5143-3D01-9F41-3B34553B68F0> /usr/lib/libcups.2.dylib
    0x7fff6a4b0000 -     0x7fff6a517fff  libcurl.4.dylib (118) <F75E40BA-8DA6-39E7-BDFE-C9F4823BF5E0> /usr/lib/libcurl.4.dylib
    0x7fff6a5ba000 -     0x7fff6a5baff3  libenergytrace.dylib (21) <1CE2BD78-F68E-36A3-BCE9-E9EAB78D9FF3> /usr/lib/libenergytrace.dylib
    0x7fff6a5bb000 -     0x7fff6a5d4ff7  libexpat.1.dylib (19) <E209623A-A410-3749-AD6D-2850241CB873> /usr/lib/libexpat.1.dylib
    0x7fff6a5e2000 -     0x7fff6a5e4ff7  libfakelink.dylib (149) <528A0ABE-B583-3DA1-8E5B-9CA7E89303DE> /usr/lib/libfakelink.dylib
    0x7fff6a5f3000 -     0x7fff6a5f8fff  libgermantok.dylib (24) <5E297121-22A7-3A2F-92B9-DD3E5C829CC7> /usr/lib/libgermantok.dylib
    0x7fff6a5f9000 -     0x7fff6a602ff7  libheimdal-asn1.dylib (564.40.3) <6C5102F7-85BE-34E0-BFC7-0569FCAE2755> /usr/lib/libheimdal-asn1.dylib
    0x7fff6a603000 -     0x7fff6a6f3ff7  libiconv.2.dylib (59) <EB71AC8F-EA44-3BEE-A210-2D92251CA51D> /usr/lib/libiconv.2.dylib
    0x7fff6a6f4000 -     0x7fff6a94cff7  libicucore.A.dylib (64243.0.1) <4CBF52D7-7235-34C8-9FF1-8657076B604F> /usr/lib/libicucore.A.dylib
    0x7fff6a966000 -     0x7fff6a967fff  liblangid.dylib (133) <DCC4FA36-0563-3BD2-AE35-9BAF52F5BD98> /usr/lib/liblangid.dylib
    0x7fff6a968000 -     0x7fff6a980ffb  liblzma.5.dylib (16) <7D2522C8-8CBE-32C9-8743-A8F598602F4C> /usr/lib/liblzma.5.dylib
    0x7fff6a998000 -     0x7fff6aa3ffff  libmecab.dylib (883) <FDA0E623-F6F2-3402-B72C-0C60A32C2CC1> /usr/lib/libmecab.dylib
    0x7fff6aa40000 -     0x7fff6aca0ff9  libmecabra.dylib (883) <2E84458F-5748-3A9B-94F3-CAF3C79E6383> /usr/lib/libmecabra.dylib
    0x7fff6b00c000 -     0x7fff6b03bff7  libncurses.5.4.dylib (57) <7115BD9E-9A53-3538-BA7C-6D71E8C0F9F1> /usr/lib/libncurses.5.4.dylib
    0x7fff6b16a000 -     0x7fff6b5dcff4  libnetwork.dylib (1880.40.26) <D8C5B7F0-04D5-3470-A9C4-EF8B2FF96986> /usr/lib/libnetwork.dylib
    0x7fff6b67b000 -     0x7fff6b6acff6  libobjc.A.dylib (781) <D866A31E-5CB1-3327-8D22-C4F83C9225D0> /usr/lib/libobjc.A.dylib
    0x7fff6b6ad000 -     0x7fff6b6aeff7  libodfde.dylib (26) <104DFC2F-ACCF-321A-974D-734E19056B21> /usr/lib/libodfde.dylib
    0x7fff6b6bf000 -     0x7fff6b6c3fff  libpam.2.dylib (25) <02ABA04D-5843-3850-82A3-EBECA6FC2CDF> /usr/lib/libpam.2.dylib
    0x7fff6b6c6000 -     0x7fff6b6f9ff7  libpcap.A.dylib (89.40.2) <C4F9F5BD-BA21-3038-9665-4D298FB7511C> /usr/lib/libpcap.A.dylib
    0x7fff6b77b000 -     0x7fff6b793fff  libresolv.9.dylib (67.40.1) <34848168-B77D-3749-A7ED-B1F3F92E5162> /usr/lib/libresolv.9.dylib
    0x7fff6b795000 -     0x7fff6b7d9ff7  libsandbox.1.dylib (1217.41.1) <EAC4CA6F-6527-373C-8AD8-F8F1B590B54B> /usr/lib/libsandbox.1.dylib
    0x7fff6b7da000 -     0x7fff6b7ecfff  libsasl2.2.dylib (213) <FA0CF2A0-1989-3CCF-8118-45017132788B> /usr/lib/libsasl2.2.dylib
    0x7fff6b7ed000 -     0x7fff6b7eeff7  libspindump.dylib (281.1) <D330C232-51A7-3943-87EB-FAEA3C9352DC> /usr/lib/libspindump.dylib
    0x7fff6b7ef000 -     0x7fff6b9dcff7  libsqlite3.dylib (308.4) <2D0B1BE5-9B8A-394F-82F7-F612B1A6C73F> /usr/lib/libsqlite3.dylib
    0x7fff6bad0000 -     0x7fff6bafdffb  libssl.46.dylib (47.11.1) <37B2EA03-9748-3324-ADDD-75F67D1E9D15> /usr/lib/libssl.46.dylib
    0x7fff6bb00000 -     0x7fff6bb4aff7  libstdc++.6.dylib (104.1) <8D404CA3-0176-3BC6-88D4-C77A552FEC56> /usr/lib/libstdc++.6.dylib
    0x7fff6bc2d000 -     0x7fff6bc30ffb  libutil.dylib (57) <B88D4C21-DAEF-3566-8EAE-5973C51A16FD> /usr/lib/libutil.dylib
    0x7fff6bc31000 -     0x7fff6bc3efff  libxar.1.dylib (420) <46AAA43E-6FC6-38A8-B696-62143706D33B> /usr/lib/libxar.1.dylib
    0x7fff6bc44000 -     0x7fff6bd26ff7  libxml2.2.dylib (32.12) <0DB777D9-F9A1-3921-BFCE-05A000293915> /usr/lib/libxml2.2.dylib
    0x7fff6bd2a000 -     0x7fff6bd52fff  libxslt.1.dylib (16.7) <C30A840F-E7E7-39D5-A633-9C256650B552> /usr/lib/libxslt.1.dylib
    0x7fff6bd53000 -     0x7fff6bd65fff  libz.1.dylib (76) <3EC7A143-AF2D-35EE-9C08-542B2907E3D2> /usr/lib/libz.1.dylib
    0x7fff6c7cb000 -     0x7fff6c7d0ff7  libcache.dylib (83) <74F6459D-3606-3ADB-9808-F6B0FE70062D> /usr/lib/system/libcache.dylib
    0x7fff6c7d1000 -     0x7fff6c7dcff7  libcommonCrypto.dylib (60165) <1333752F-5117-3E86-803A-06E166D80C8C> /usr/lib/system/libcommonCrypto.dylib
    0x7fff6c7dd000 -     0x7fff6c7e4fff  libcompiler_rt.dylib (101.2) <0437EBEF-8191-3912-A365-D6BB75C7A810> /usr/lib/system/libcompiler_rt.dylib
    0x7fff6c7e5000 -     0x7fff6c7eefff  libcopyfile.dylib (166.40.1) <7FAF372E-BAD5-30E6-A8F2-A3D06B91DC80> /usr/lib/system/libcopyfile.dylib
    0x7fff6c7ef000 -     0x7fff6c886fef  libcorecrypto.dylib (866.40.8) <AE25C9EE-5D63-3E49-B3AA-D482D35C085A> /usr/lib/system/libcorecrypto.dylib
    0x7fff6c99d000 -     0x7fff6c9deff0  libdispatch.dylib (1173.40.5) <1FF421B6-4BF0-3B5F-8F56-5ED3B3EFE06F> /usr/lib/system/libdispatch.dylib
    0x7fff6c9df000 -     0x7fff6ca14fff  libdyld.dylib (733.6) <2FA4B359-624B-337C-9207-CDCF841C2E52> /usr/lib/system/libdyld.dylib
    0x7fff6ca15000 -     0x7fff6ca15ffb  libkeymgr.dylib (30) <7EEF9246-30B4-34DD-8AD6-79679D1A7784> /usr/lib/system/libkeymgr.dylib
    0x7fff6ca16000 -     0x7fff6ca22ff7  libkxld.dylib (6153.41.3) <F9FF90CE-DCB0-3918-882F-6E475A6E244A> /usr/lib/system/libkxld.dylib
    0x7fff6ca23000 -     0x7fff6ca23ff7  liblaunch.dylib (1738.40.10) <CC02D5B3-A95D-3B16-8EE5-D62521CFE899> /usr/lib/system/liblaunch.dylib
    0x7fff6ca24000 -     0x7fff6ca29ff7  libmacho.dylib (949.0.1) <6C3E49B2-594D-3B9D-82DB-C4ABEB9788AB> /usr/lib/system/libmacho.dylib
    0x7fff6ca2a000 -     0x7fff6ca2cff3  libquarantine.dylib (110.40.3) <A1BCAA32-A194-3DBE-9930-8F49A4AEF284> /usr/lib/system/libquarantine.dylib
    0x7fff6ca2d000 -     0x7fff6ca2eff7  libremovefile.dylib (48) <DD7AE862-F179-3C07-A4FC-5775DDD4D3E6> /usr/lib/system/libremovefile.dylib
    0x7fff6ca2f000 -     0x7fff6ca46fff  libsystem_asl.dylib (377.40.1) <ECE44856-D279-3B5D-A0AA-8BE421D200C4> /usr/lib/system/libsystem_asl.dylib
    0x7fff6ca47000 -     0x7fff6ca47fff  libsystem_blocks.dylib (74) <DC521115-905A-3A0D-9337-C55FACCEA85F> /usr/lib/system/libsystem_blocks.dylib
    0x7fff6ca48000 -     0x7fff6cacfff7  libsystem_c.dylib (1353.41.1) <5AD50779-955E-3F56-BCB9-1E14833B3455> /usr/lib/system/libsystem_c.dylib
    0x7fff6cad0000 -     0x7fff6cad3fff  libsystem_configuration.dylib (1061.40.2) <7A2329E0-3C84-3DB7-BC32-E7796C50D621> /usr/lib/system/libsystem_configuration.dylib
    0x7fff6cad4000 -     0x7fff6cad7ff7  libsystem_coreservices.dylib (114) <DF341577-A307-3722-BB24-D4AACEAB19B3> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff6cad8000 -     0x7fff6cadffff  libsystem_darwin.dylib (1353.41.1) <E862B5B1-A367-39CA-8319-B2F9DFADF606> /usr/lib/system/libsystem_darwin.dylib
    0x7fff6cae0000 -     0x7fff6cae7ffb  libsystem_dnssd.dylib (1096.40.7) <2A9C6F3E-427B-332E-BDD3-D4651306F3DE> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff6cae8000 -     0x7fff6cae9ffb  libsystem_featureflags.dylib (17) <B94C0052-B75A-3169-80AA-5F480588AF6E> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff6caea000 -     0x7fff6cb37ff7  libsystem_info.dylib (538) <18CC56C5-5325-3375-BF99-FAE7F4F19DDD> /usr/lib/system/libsystem_info.dylib
    0x7fff6cb38000 -     0x7fff6cb64ff7  libsystem_kernel.dylib (6153.41.3) <18918E9C-45BC-3D5A-A6B6-3DBC60EEE2E1> /usr/lib/system/libsystem_kernel.dylib
    0x7fff6cb65000 -     0x7fff6cbacff7  libsystem_m.dylib (3178) <636A1A1C-7AFC-3E82-B86B-0173912A3437> /usr/lib/system/libsystem_m.dylib
    0x7fff6cbad000 -     0x7fff6cbd4ff7  libsystem_malloc.dylib (283.40.1) <F82A587B-44A2-3699-A218-9D3ECEE23D5A> /usr/lib/system/libsystem_malloc.dylib
    0x7fff6cbd5000 -     0x7fff6cbe2ff3  libsystem_networkextension.dylib (1095.40.22) <7F206A43-A941-3BAB-AE3A-16169F2FE6AB> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff6cbe3000 -     0x7fff6cbecfff  libsystem_notify.dylib (241) <C95CC58E-35E7-3828-AA2A-6EED73C12DE5> /usr/lib/system/libsystem_notify.dylib
    0x7fff6cbed000 -     0x7fff6cbf6fe7  libsystem_platform.dylib (220) <0CCDD81F-0891-3400-8A97-6CAC3BBBE2F9> /usr/lib/system/libsystem_platform.dylib
    0x7fff6cbf7000 -     0x7fff6cc01ff7  libsystem_pthread.dylib (416.40.3) <53C65598-9E9E-36FF-BDC2-74F228E58C5C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff6cc02000 -     0x7fff6cc06ffb  libsystem_sandbox.dylib (1217.41.1) <2183D15E-2CFD-3160-80CE-A948F0529005> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff6cc07000 -     0x7fff6cc09fff  libsystem_secinit.dylib (62.40.2) <D2782294-ACDC-30FF-A794-B4C1B324526B> /usr/lib/system/libsystem_secinit.dylib
    0x7fff6cc0a000 -     0x7fff6cc11ffb  libsystem_symptoms.dylib (1238.40.4) <A44E4405-E22E-32E9-83DE-8C7A82401DA0> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff6cc12000 -     0x7fff6cc28ff2  libsystem_trace.dylib (1147.40.13) <376CC435-E656-37D9-A5FF-C49B6E4525E2> /usr/lib/system/libsystem_trace.dylib
    0x7fff6cc2a000 -     0x7fff6cc2fffb  libunwind.dylib (35.4) <44448F1F-08E5-3425-ADBA-C38A9E8F90C7> /usr/lib/system/libunwind.dylib
    0x7fff6cc30000 -     0x7fff6cc64ff6  libxpc.dylib (1738.40.10) <99CC9436-D653-3762-ADBB-9054EBD1BA2B> /usr/lib/system/libxpc.dylib

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

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

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               256K        2 
Activity Tracing                   256K        1 
CG backing stores                 2632K        3 
CG image                            40K        5 
CoreAnimation                       36K        7 
CoreGraphics                         8K        1 
CoreImage                           24K        2 
CoreUI image data                  312K        5 
Foundation                           4K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           249.9M       92 
MALLOC guard page                   32K        8 
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
Memory Tag 242                      12K        1 
STACK GUARD                       56.0M        6 
Stack                             10.5M        6 
VM_ALLOCATE                         76K        9 
__DATA                            30.1M      323 
__DATA_CONST                        41K        3 
__FONT_DATA                          4K        1 
__LINKEDIT                       357.7M        4 
__OBJC_RO                         32.0M        1 
__OBJC_RW                         1780K        2 
__TEXT                           265.8M      322 
__UNICODE                          564K        1 
mapped file                       52.9M       19 
shared memory                      660K       20 
===========                     =======  ======= 
TOTAL                              1.4G      847 
TOTAL, minus reserved VM space     1.0G      847 

Model: MacBookPro14,3, BootROM 202.0.0.0.0, 4 processors, Quad-Core Intel Core i7, 2.9 GHz, 16 GB, SMC 2.45f1
Graphics: kHW_IntelHDGraphics630Item, Intel HD Graphics 630, spdisplays_builtin
Graphics: kHW_AMDRadeonPro560Item, Radeon Pro 560, spdisplays_pcie_device, 4 GB
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x173), Broadcom BCM43xx 1.0 (7.77.106.3 AirPortDriverBrcmNIC-1435.3)
Bluetooth: Version 7.0.1f1, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: Pixel 2
USB Device: Apple T1 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.3
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.3
jrincayc commented 4 years ago

@hitsthings Hm, if you can figure out how to replicate that crash, I'll look into it, otherwise I think I am going to close this bug as fixed.

jrincayc commented 4 years ago

I am closing this issue since we now have a 64 bit version, feel free to open another issue if you find more problems.