Giter VIP home page Giter VIP logo

Comments (5)

FelixKratz avatar FelixKratz commented on May 19, 2024 1

Ok, so I had some fun with this issue as I was able to recreate it with your window_title script.
Funnily if you replace "sketchybar -m set title label" with "echo" in your script you can see that the script produces a very strange output. It seems to only print out the pipe symbol, but actually the size of the printed string is 6. This means, that the script produces garbage input for sketchybar. And garbage in = garbage out. The malformed string then makes its way to the CFStringCreateWithCString method which
has problems creating the CFString in UTF-8 format and returns a NULL pointer. This trips the SEGV in consecutive steps. So it seems there is a problem with the unicode ellipsis character in bash. If you $(echo ...) the ellipsis inside the parenthesis, or insert a white space in front of it, it will also work.

Maybe your other occasional SEGVs are also related to this behavior. I have caught this edge case explicitly e505222 . Should be good to go now.

from sketchybar.

FelixKratz avatar FelixKratz commented on May 19, 2024

Can you try it now? 52cb67c

from sketchybar.

FelixKratz avatar FelixKratz commented on May 19, 2024

Just to give my thought on the crashes in the case that this doesnt fix the problem:

In both reports the error is thrown after a label set event is triggered by some script. In more detail it is a zero pointer access in the preparation of the bar item string, which I think could be caused by a rare bug, where the label piped into the logic is a zero pointer to begin with.

I have tried recreating the crashes by invoking the label set command with all sorts of input and have not gotten a crash myself.

from sketchybar.

typkrft avatar typkrft commented on May 19, 2024

I don't know much about crash reports, but I did see that label change in the logs. I'll give the update a spin. Just thought I would mention and maybe it's related, in my window title script there's a Unicode eclipses character. If I put that inside the quotations with the variable it would also crash. I'll see if that still happens. Thanks again for all your work on this project.

from sketchybar.

typkrft avatar typkrft commented on May 19, 2024

So far so good, this does still however crash sketchybar. It's not that big deal though, just more an FYI. It's easy enough to move … outside the quotations.

sketchybar -m set title label "β”‚ $WINDOW_TITLE…"

Full Script

I'll reopen if the initial issue reoccurs.

Click to expand! ```LOGS Process: sketchybar [65207] Path: /Users/USER/*/sketchybar Identifier: sketchybar Version: 0 Code Type: ARM-64 (Native) Parent Process: ??? [1] Responsible: kitty [28595] User ID: 501

Date/Time: 2021-08-30 10:24:38.393 -0400
OS Version: macOS 11.5.1 (20G80)
Report Version: 12
Anonymous UUID: 3435F104-7299-287C-D325-3FA6492FD51D

Sleep/Wake UUID: 4757E10F-0B9B-4443-B08E-702FE1AC5FE5

Time Awake Since Boot: 120000 seconds
Time Since Wake: 790 seconds

System Integrity Protection: disabled

Crashed Thread: 1

Exception Type: EXC_BAD_ACCESS (SIGABRT)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY

VM Regions Near 0:
-->
__TEXT 1006e8000-10072c000 [ 272K] r-x/r-x SM=COW /Users/*

Application Specific Information:

==65207==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x0001901dc598 bp 0x0001902b1908 sp 0x00016f8b57f0 T3)
==65207==The signal is caused by a UNKNOWN memory access.
==65207==Hint: address points to the zero page.
#0 0x1901dc598 in CFStringCreateCopy+0xc (CoreFoundation:arm64e+0xa598)

==65207==Register values:
x[0] = 0x0000000000000000 x[1] = 0x0000000000000000 x[2] = 0x0000000000000000 x[3] = 0x000000011b751cc0
x[4] = 0x000000011b751cc0 x[5] = 0x0000000000000001 x[6] = 0x000000016f834000 x[7] = 0x0000000000000001
x[8] = 0x0000000000000000 x[9] = 0x0000000000000000 x[10] = 0x0100000000000001 x[11] = 0x0000000100000000
x[12] = 0x00000000a4cb59d3 x[13] = 0x0000000000000000 x[14] = 0x00000001016f3a28 x[15] = 0x0000000000000006
x[16] = 0x000000018fff1610 x[17] = 0x00000001fb6b4ab8 x[18] = 0x0000000000000000 x[19] = 0x000000011b751ca0
x[20] = 0x000000011a6aa240 x[21] = 0x0000000000000000 x[22] = 0x0000000000000000 x[23] = 0x000000016f8b6160
x[24] = 0x000000016f8b6180 x[25] = 0x000000016f8b5e60 x[26] = 0x000000016f8b5e80 x[27] = 0x0000000000000000
x[28] = 0x0000007000020000 fp = 0x000000016f8b5810 lr = 0x00000001902b1908 sp = 0x000000016f8b57f0
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV (CoreFoundation:arm64e+0xa598) in CFStringCreateCopy+0xc
Thread T3 created by T0 here:
#0 0x100bed5b0 in wrap_pthread_create+0x54 (libclang_rt.asan_osx_dynamic.dylib:arm64e+0x395b0)
#1 0x1006f2de8 in event_loop_begin event_loop.c:143
#2 0x100720bf4 in main sketchybar.c:247
#3 0x19017542c in start+0x0 (libdyld.dylib:arm64e+0x1842c)

==65207==ABORTING

abort() called

Thread 0:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x000000019011cdd4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x000000019011d184 mach_msg + 76
2 com.apple.CoreFoundation 0x0000000190256d00 __CFRunLoopServiceMachPort + 372
3 com.apple.CoreFoundation 0x00000001902551cc __CFRunLoopRun + 1212
4 com.apple.CoreFoundation 0x0000000190254598 CFRunLoopRunSpecific + 600
5 com.apple.CoreFoundation 0x00000001902df5c4 CFRunLoopRun + 64
6 sketchybar 0x0000000100720d44 main + 540 (sketchybar.c:259)
7 libdyld.dylib 0x0000000190175430 start + 4

Thread 1 Crashed:
0 libsystem_kernel.dylib 0x0000000190124e68 __pthread_kill + 8
1 libsystem_pthread.dylib 0x000000019015743c pthread_kill + 292
2 libsystem_c.dylib 0x000000019009f454 abort + 124
3 libclang_rt.asan_osx_dynamic.dylib 0x0000000100c11cc4 __sanitizer::Abort() + 68
4 libclang_rt.asan_osx_dynamic.dylib 0x0000000100c11598 __sanitizer::Die() + 212
5 libclang_rt.asan_osx_dynamic.dylib 0x0000000100bf9eb4 __asan::ScopedInErrorReport::~ScopedInErrorReport() + 424
6 libclang_rt.asan_osx_dynamic.dylib 0x0000000100bf7c44 __asan::ReportDeadlySignal(__sanitizer::SignalContext const&) + 152
7 libclang_rt.asan_osx_dynamic.dylib 0x0000000100bf735c __asan::AsanOnDeadlySignal(int, void*, void*) + 100
8 libsystem_platform.dylib 0x00000001901a2c44 _sigtramp + 56
9 com.apple.CoreFoundation 0x00000001902b1908 CFAttributedStringCreate + 68
10 sketchybar 0x00000001007174ac bar_prepare_line + 832 (bar.c:74)
11 sketchybar 0x00000001007142ac bar_item_set_label + 1908 (bar_item.c:129)
12 sketchybar 0x00000001006fb1f4 handle_domain_set + 1976 (message.c:328)
13 sketchybar 0x00000001006f66a4 handle_message + 924 (message.c:487)
14 sketchybar 0x0000000100722da4 EVENT_HANDLER_DAEMON_MESSAGE + 724 (event.c:146)
15 sketchybar 0x00000001006f3294 event_loop_run + 1160 (event_loop.c:102)
16 libsystem_pthread.dylib 0x0000000190157878 _pthread_start + 320
17 libsystem_pthread.dylib 0x00000001901525e0 thread_start + 8

Thread 2:
0 libsystem_kernel.dylib 0x0000000190124f54 __accept + 8
1 libclang_rt.asan_osx_dynamic.dylib 0x0000000100bd9400 wrap_accept + 496
2 sketchybar 0x00000001006f0f04 socket_connection_handler + 696 (socket.c:111)
3 libsystem_pthread.dylib 0x0000000190157878 _pthread_start + 320
4 libsystem_pthread.dylib 0x00000001901525e0 thread_start + 8

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

Thread 1 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x0000000000000000 x5: 0x0000000000000000 x6: 0x0000000000000000 x7: 0x0000000000000000
x8: 0x87f3f26d945342aa x9: 0x87f3f26cfbd832aa x10: 0x0000000021b31ded x11: 0x0000000000000013
x12: 0x0000000000000000 x13: 0xffffffffffffffff x14: 0x0000000000000037 x15: 0x0000000000000030
x16: 0x0000000000000148 x17: 0x00000001febd6e90 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000016f8b7000 x21: 0x000000000000a727 x22: 0x000000016f8b70e0 x23: 0x000000016f8b6160
x24: 0x000000016f8b6180 x25: 0x000000016f8b5e60 x26: 0x000000016f8b5e80 x27: 0x0000000000000000
x28: 0x0000007000020000 fp: 0x000000010d98ef40 lr: 0x000000019015743c
sp: 0x000000010d98ef20 pc: 0x0000000190124e68 cpsr: 0x40001000
far: 0x0000000100d62454 esr: 0x56000080

Binary Images:
0x1006e8000 - 0x10072bfff +sketchybar (0) <10185C2D-D73B-334C-8C4D-AC9BC8AC54FF> /Users/USER/*/sketchybar
0x100aac000 - 0x100b2bfff dyld (852.2) <17D14D9B-B6B2-35DC-B157-4FD60213BE99> /usr/lib/dyld
0x100bb4000 - 0x100c37fff +libclang_rt.asan_osx_dynamic.dylib (1205.0.22.9) <0C6C4DD9-4D9E-3707-8549-2B7E9E6E8991> /Library/Developer/CommandLineTools/usr/lib/clang/12.0.5/lib/darwin/libclang_rt.asan_osx_dynamic.dylib
0x18feb2000 - 0x18feb3fff libsystem_blocks.dylib (79) /usr/lib/system/libsystem_blocks.dylib
0x18feb4000 - 0x18feebfff libxpc.dylib (2038.120.1) <33FB2ED1-AB10-3900-BA93-5767A5086AD7> /usr/lib/system/libxpc.dylib
0x18feec000 - 0x18ff03fff libsystem_trace.dylib (1277.120.1) <59FD0CCA-0321-3A28-A2FB-80CCBDDFEC82> /usr/lib/system/libsystem_trace.dylib
0x18ff04000 - 0x18ff77fff libcorecrypto.dylib (1000.140.4) /usr/lib/system/libcorecrypto.dylib
0x18ff78000 - 0x18ffa3fff libsystem_malloc.dylib (317.140.5) <816E435C-D24C-3EF5-8932-5B7C8EAE4AEC> /usr/lib/system/libsystem_malloc.dylib
0x18ffa4000 - 0x18ffe8fff libdispatch.dylib (1271.120.2) <7FAD1391-1E49-3CF2-9936-E808F815AA8F> /usr/lib/system/libdispatch.dylib
0x18ffe9000 - 0x190022fff libobjc.A.dylib (824) <3478ECD1-A8BB-38DC-BC97-966A244DB668> /usr/lib/libobjc.A.dylib
0x190023000 - 0x190025fff libsystem_featureflags.dylib (28.60.1) /usr/lib/system/libsystem_featureflags.dylib
0x190026000 - 0x1900a7fff libsystem_c.dylib (1439.141.1) <33167920-470B-366B-8EDC-C138EE669785> /usr/lib/system/libsystem_c.dylib
0x1900a8000 - 0x190103fff libc++.1.dylib (905.6) <95188C52-741C-3F57-A78F-90334F6518B1> /usr/lib/libc++.1.dylib
0x190104000 - 0x19011bfff libc++abi.dylib (905.6) <0EB11B11-F4A5-355E-B44C-955ADD774E61> /usr/lib/libc++abi.dylib
0x19011c000 - 0x19014ffff libsystem_kernel.dylib (7195.141.2) <1E1E6F44-01BC-3994-A907-61288C3D7BFD> /usr/lib/system/libsystem_kernel.dylib
0x190150000 - 0x19015cfff libsystem_pthread.dylib (454.120.2) <85E14929-1F9B-3E79-ABDE-06EB161F9574> /usr/lib/system/libsystem_pthread.dylib
0x19015d000 - 0x19019efff libdyld.dylib (852.2) /usr/lib/system/libdyld.dylib
0x19019f000 - 0x1901a5fff libsystem_platform.dylib (254.80.2) <17522FB4-6BA9-31D4-8222-699B80714CC3> /usr/lib/system/libsystem_platform.dylib
0x1901a6000 - 0x1901d1fff libsystem_info.dylib (542.40.3) <93ED568C-DBDC-3F74-9434-834B5DF0E2EC> /usr/lib/system/libsystem_info.dylib
0x1901d2000 - 0x190680fff com.apple.CoreFoundation (6.9 - 1777.103) <0EE241E3-3A80-3F15-AB1E-B5C18CA7E4B1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x190681000 - 0x1908b9fff com.apple.LaunchServices (1122.41 - 1122.41) <8846ED26-47F7-3C95-A12D-C0187D05059E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x1908ba000 - 0x190994fff com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x190995000 - 0x190bfffff libBLAS.dylib (1336.140.1) <01B7A91B-31CB-348C-BCAE-DAF215B566C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x190c00000 - 0x190c4afff com.apple.Lexicon-framework (1.0 - 86.2) <5F8A23F6-6713-3BC5-A59A-571972D88022> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x190c4b000 - 0x190caefff libSparse.dylib (106) <02748559-0716-35CC-8E70-22FF91D0CE47> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x190caf000 - 0x190d36fff com.apple.SystemConfiguration (1.20 - 1.20) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x190d37000 - 0x190d6afff libCRFSuite.dylib (50) /usr/lib/libCRFSuite.dylib
0x190d6b000 - 0x190f99fff libmecabra.dylib (929.10) /usr/lib/libmecabra.dylib
0x190f9a000 - 0x191326fff com.apple.Foundation (6.9 - 1777.103) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x191327000 - 0x191416fff com.apple.LanguageModeling (1.0 - 247.3) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x191417000 - 0x191539fff com.apple.CoreDisplay (237.4 - 237.4) <38654CFE-34C0-3A22-88F4-51B7E6CD22A5> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x19153a000 - 0x1917a2fff com.apple.audio.AudioToolboxCore (1.0 - 1181.72) /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
0x1917a3000 - 0x191972fff com.apple.CoreText (677.6.0.2 - 677.6.0.2) <650DCFE4-3F56-384E-98F3-55E64AD3A824> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x191973000 - 0x191f8dfff com.apple.audio.CoreAudio (5.0 - 5.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x191f8e000 - 0x1922f4fff com.apple.security (7.0 - 59754.140.13) <6A354A87-B586-3575-B518-CA046B4A2B36> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x1922f5000 - 0x192566fff libicucore.A.dylib (66112) <17E0A41B-60CE-3DC1-9842-D6FF595C55FC> /usr/lib/libicucore.A.dylib
0x192567000 - 0x192571fff libsystem_darwin.dylib (1439.141.1) <7E7806F7-0442-3280-97A1-2D6364FAF68B> /usr/lib/system/libsystem_darwin.dylib
0x192572000 - 0x192865fff com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x192866000 - 0x1928a1fff com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <409DAE8B-1FED-387A-ABC5-0D1866587B82> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x1928a2000 - 0x1928ddfff com.apple.CSStore (1122.41 - 1122.41) <724E19B8-926D-3BE2-8577-5B94F7F51E78> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
0x1928de000 - 0x1929a9fff com.apple.framework.IOKit (2.0.2 - 1845.120.6) <63CEB2C2-F60A-39BB-BEBD-0255154452CD> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1929aa000 - 0x1929b5fff libsystem_notify.dylib (279.40.4) /usr/lib/system/libsystem_notify.dylib
0x1929b6000 - 0x192a03fff libsandbox.1.dylib (1441.141.1) <6884FD62-5F52-3AAE-91A0-252130D8A729> /usr/lib/libsandbox.1.dylib
0x192a04000 - 0x193745fff com.apple.AppKit (6.9 - 2022.60.126) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x193746000 - 0x19396cfff com.apple.UIFoundation (1.0 - 728.9) <11CEEA67-6F89-3C70-AD0C-DE82A772875B> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x19396d000 - 0x19397ffff com.apple.UniformTypeIdentifiers (637 - 637) <53FB8E62-386B-36D6-95D9-6BAA6ABDD6A6> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
0x193980000 - 0x193aeafff com.apple.desktopservices (1.21 - 1346.6.1) <2211E581-3372-3D1C-BC73-0189321271EC> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x193db7000 - 0x1944fffff libnetwork.dylib (2288.140.7) /usr/lib/libnetwork.dylib
0x194500000 - 0x194988fff com.apple.CFNetwork (1240.0.4 - 1240.0.4) <496FEA2B-9B13-3881-ADB8-AACE980425D7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x194989000 - 0x194998fff libsystem_networkextension.dylib (1295.140.3) <52A5D26E-D9D2-3ECE-8015-B31B1B9F7FC9> /usr/lib/system/libsystem_networkextension.dylib
0x194999000 - 0x19499afff libenergytrace.dylib (22.100.1) <1BA088D7-0DAD-3F5E-80A5-5FD4E9EBEBF9> /usr/lib/libenergytrace.dylib
0x19499b000 - 0x1949edfff libMobileGestalt.dylib (978.140.1) <44B6E4D5-AC61-37AA-A775-2F89116772C2> /usr/lib/libMobileGestalt.dylib
0x1949ee000 - 0x194a05fff libsystem_asl.dylib (385) <55CF534F-17B2-3119-BCFB-A2F945CA3272> /usr/lib/system/libsystem_asl.dylib
0x194a06000 - 0x194a1ffff com.apple.TCC (1.0 - 1) <28C932A1-B171-36DC-8F03-803A53DB8865> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x194a20000 - 0x194d8dfff com.apple.SkyLight (1.600.0 - 588.6) <506C63D0-7362-36E6-92AB-5DCEF0014844> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x194d8e000 - 0x19537bfff com.apple.CoreGraphics (2.0 - 1463.16.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x19537c000 - 0x195471fff com.apple.ColorSync (4.13.0 - 3473.4.3) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x195472000 - 0x1954cdfff com.apple.HIServices (1.22 - 716) <6C9928A6-55D8-3981-A13F-333DBC62503D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x195827000 - 0x195bcffff com.apple.CoreData (120 - 1048) <33F455F4-6672-3227-A033-86B6FFCE629A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x195bd0000 - 0x195be6fff com.apple.ProtocolBuffer (1 - 285.24.10.20.1) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x195be7000 - 0x195d84fff libsqlite3.dylib (321.3) <7FD239FD-B516-37AD-8A4B-510E287523B8> /usr/lib/libsqlite3.dylib
0x195d85000 - 0x195df9fff com.apple.Accounts (113 - 113) /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x195dfa000 - 0x195e10fff com.apple.commonutilities (8.0 - 900) <00FA48A7-5445-3D7D-846A-CB98A7CE7583> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x195e11000 - 0x195e93fff com.apple.BaseBoard (526 - 526) /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x195e94000 - 0x195ee1fff com.apple.RunningBoardServices (1.0 - 505.100.8) <109B3867-729F-3569-9173-33B385DD6AEB> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
0x195ee2000 - 0x195f55fff com.apple.AE (918.6 - 918.6) <6747FF69-AF52-38BE-BF25-949838E4CA14> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x195f56000 - 0x195f5dfff libdns_services.dylib (1310.140.1) <2E0F76ED-EF2C-3396-83B6-A51C8B40811B> /usr/lib/libdns_services.dylib
0x195f5e000 - 0x195f65fff libsystem_symptoms.dylib (1431.140.1) <468E8052-5144-34BE-9923-1185ADDB556B> /usr/lib/system/libsystem_symptoms.dylib
0x195f66000 - 0x1960c2fff com.apple.Network (1.0 - 1) <0A500CB1-4EA0-3E6A-853D-C2C15C9B0C92> /System/Library/Frameworks/Network.framework/Versions/A/Network
0x1960c3000 - 0x1960f5fff com.apple.analyticsd (1.0 - 1) <9CC64514-F654-3A1B-AECA-3F26AF210F26> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
0x1960f6000 - 0x1960f8fff libDiagnosticMessagesClient.dylib (112) /usr/lib/libDiagnosticMessagesClient.dylib
0x1960f9000 - 0x196144fff com.apple.spotlight.metadata.utilities (1.0 - 2150.26) /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x196145000 - 0x1961defff com.apple.Metadata (10.7.0 - 2150.26) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x1961df000 - 0x1961e5fff com.apple.DiskArbitration (2.7 - 2.7) <8C067552-F381-3760-AEC2-7638F5C5C5F3> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x1961e6000 - 0x1964f0fff com.apple.vImage (8.1 - 544.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x1964f1000 - 0x1967adfff com.apple.QuartzCore (1.11 - 927.23) <29690F0A-64BE-3B7B-BBEE-51C2B4CFF552> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x1967ae000 - 0x1967effff libFontRegistry.dylib (309) <98642A69-7570-3882-886D-948C3BE15544> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x1967f0000 - 0x196907fff com.apple.coreui (2.1 - 692.1) <6980A16D-8F3F-3C98-879A-0AF6843EE57E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x196908000 - 0x1969e7fff com.apple.ViewBridge (553.1 - 553.1) <5484B22D-2AD1-32F5-A331-7D694C185F80> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x1969e8000 - 0x1969f2fff com.apple.PerformanceAnalysis (1.278.3 - 278.3) <79F08DB3-6510-326B-9AE1-285D1A1B6D4C> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x1969f3000 - 0x196a00fff com.apple.OpenDirectory (11.5 - 230.40.1) <080C6FB5-2BD5-347A-96B0-B76ACA21B2B6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x196a01000 - 0x196a20fff com.apple.CFOpenDirectory (11.5 - 230.40.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x196a21000 - 0x196a2dfff com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <90A90A11-F1E7-392A-90D1-845F2E956769> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x196a2e000 - 0x196a51fff com.apple.coreservices.SharedFileList (144 - 144) <74989CAA-FA6B-3739-B4E9-2E6CD4F0680B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x196a52000 - 0x196a54fff libapp_launch_measurement.dylib (14.1) <933BF613-819C-33B1-9CAD-B41162C60022> /usr/lib/libapp_launch_measurement.dylib
0x196a55000 - 0x196a97fff com.apple.CoreAutoLayout (1.0 - 21.10.1) /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
0x196a98000 - 0x196b84fff libxml2.2.dylib (34.10) <5FAA193C-37F9-3C80-A4B4-EC335DB259F5> /usr/lib/libxml2.2.dylib
0x196b85000 - 0x196bd8fff com.apple.CoreVideo (1.8 - 414.7) <8FE92E37-C772-3E16-A6D1-EB83A7C4DECA> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x196bd9000 - 0x196bdbfff com.apple.loginsupport (1.0 - 1) <378229DC-06F7-37C7-89B3-30670F59D022> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x196c03000 - 0x196c21fff com.apple.UserManagement (1.0 - 1) <9D3B5D37-FF02-32A9-BAE7-8D309E4D4630> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
0x197db9000 - 0x197dcafff libsystem_containermanager.dylib (318.100.4) <8944B2ED-3F69-36C9-AF47-D037500AE162> /usr/lib/system/libsystem_containermanager.dylib
0x197dcb000 - 0x197ddcfff com.apple.IOSurface (290.8.1 - 290.8.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x197ddd000 - 0x197de6fff com.apple.IOAccelerator (442.9 - 442.9) <88C4B886-3B17-38C6-816A-73105C201DEE> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x197de7000 - 0x197ed5fff com.apple.Metal (244.303 - 244.303) <6A26D72C-978C-3174-A467-734CD0D95275> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x197ed6000 - 0x197ef5fff com.apple.audio.caulk (1.0 - 70) <09E0A09A-009E-3179-BE94-AA78CC751D99> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
0x197ef6000 - 0x197fedfff com.apple.CoreMedia (1.0 - 2780.10) <51760A59-F514-33BE-8B01-57DCA4F0B5AF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x197fee000 - 0x198146fff libFontParser.dylib (305.6.0.2) <926296A3-5F14-3A48-A721-E6D1EBE08E83> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x198147000 - 0x198451fff com.apple.HIToolbox (2.1.1 - 1062) <6DB35C0F-E17F-3B6E-B532-3B49236D1501> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x198452000 - 0x198469fff com.apple.framework.DFRFoundation (1.0 - 267) <23E51575-3B19-3DC4-858D-E29AA9154E99> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x19846a000 - 0x19846dfff com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <8517A339-5D16-3C5A-9113-654C85967AD3> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x19846e000 - 0x198498fff com.apple.CoreSVG (1.0 - 149) <88A03E2D-1252-3348-9673-CFA5B90D12BB> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
0x198499000 - 0x1986b8fff com.apple.ImageIO (3.3.0 - 2130.6.5) <5601A5FE-BE54-3494-8CD9-2258647D7A54> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x1986b9000 - 0x1989d1fff com.apple.CoreImage (16.3.0 - 1140.2) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x1989d2000 - 0x198a36fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x198a37000 - 0x198a3bfff libsystem_configuration.dylib (1109.140.1) <0C225C5B-FF1B-3C81-B956-2FDA13DAA7DA> /usr/lib/system/libsystem_configuration.dylib
0x198a3c000 - 0x198a40fff libsystem_sandbox.dylib (1441.141.1) /usr/lib/system/libsystem_sandbox.dylib
0x198a41000 - 0x198a42fff com.apple.AggregateDictionary (1.0 - 1) <0E5213A0-A02B-3227-9BB6-0AE5A753D380> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x198a43000 - 0x198a46fff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x198a47000 - 0x198a48fff liblangid.dylib (136) <1A218183-2268-3E03-B19E-ECBFD41E2087> /usr/lib/liblangid.dylib
0x198a49000 - 0x198ad6fff com.apple.CoreNLP (1.0 - 245.2) <74F90926-0778-3E2B-AE6B-15D4CDBAEF67> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x198ad7000 - 0x198adefff com.apple.LinguisticData (1.0 - 399) <6BE62CC7-6B93-3453-98C7-478D466CDB85> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x198adf000 - 0x198f9dfff libBNNS.dylib (288.100.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x198f9e000 - 0x19904cfff libvDSP.dylib (760.100.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x19904d000 - 0x19905ffff com.apple.CoreEmoji (1.0 - 128.4) /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x199060000 - 0x19906afff com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <7D6FD9BF-526D-3503-82C0-F5989D1F775E> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
0x19906b000 - 0x199133fff com.apple.framework.CoreWLAN (16.0 - 1657) <2A21864D-F0EF-30A8-9430-E583F6E0E3D2> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x199134000 - 0x199335fff com.apple.CoreUtils (6.6 - 660.37) <25ACF729-68F1-3BAB-B331-E81886FB33AA> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x199336000 - 0x199358fff com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x199359000 - 0x199368fff com.apple.AssertionServices (1.0 - 505.100.8) <260BC6A1-6C96-3807-AD30-A1586FBAB6EF> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x199369000 - 0x1993ecfff com.apple.securityfoundation (6.0 - 55240.40.4) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x1993ed000 - 0x1993f6fff com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <715DCAA5-15D7-3A94-90AF-E7565176CFA8> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x1993f7000 - 0x1993fcfff com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x1993fd000 - 0x1993fffff libquarantine.dylib (119.40.2) /usr/lib/system/libquarantine.dylib
0x199400000 - 0x19940ffff libCheckFix.dylib (31) <94005245-B6CD-3EB8-BB36-DB87CB90B095> /usr/lib/libCheckFix.dylib
0x199410000 - 0x199426fff libcoretls.dylib (169.100.1) <012E29AA-D57E-3BDC-9F5B-72A71B233B73> /usr/lib/libcoretls.dylib
0x199427000 - 0x199437fff libbsm.0.dylib (68.40.1) /usr/lib/libbsm.0.dylib
0x199438000 - 0x19947dfff libmecab.dylib (929.10) <7E04F6C7-783D-382A-955B-7A9B2DCD5275> /usr/lib/libmecab.dylib
0x19947e000 - 0x199482fff libgermantok.dylib (24) <9BEA18EA-A6FB-32FE-8A89-7D18424DC020> /usr/lib/libgermantok.dylib
0x199483000 - 0x199497fff libLinearAlgebra.dylib (1336.140.1) <9F3C0A4B-1971-3E3D-8288-F0A423E98CA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x199498000 - 0x19969bfff com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x19969c000 - 0x1996e5fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <56E9900D-5CAF-31BE-8F81-CE01622D6AF5> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x1996e6000 - 0x199838fff com.apple.MLCompute (1.0 - 1) /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
0x199839000 - 0x199867fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <20C8225F-91A3-31B8-9546-CFDFE3C5CDEF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x199868000 - 0x1998bafff com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <9F7CB9CE-FCFF-35C9-A7BE-3A2908F60C0B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
0x1998bb000 - 0x199942fff com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <59B7BDE6-55F8-3D98-A91D-68DC9FC01573> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x199943000 - 0x199952fff com.apple.AppleFSCompression (125 - 1.0) <35F56F2F-1053-3EE4-9DEE-C8805AD528E8> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x199953000 - 0x19995ffff libbz2.1.0.dylib (44) <452F7FC4-4CD9-33E4-83DB-9B3535010FFC> /usr/lib/libbz2.1.0.dylib
0x199960000 - 0x199964fff libsystem_coreservices.dylib (127.1) /usr/lib/system/libsystem_coreservices.dylib
0x199965000 - 0x199995fff com.apple.CoreServices.OSServices (1122.41 - 1122.41) <6A662259-7AEA-360D-98F5-75EF8E3EC54E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x199996000 - 0x199aa6fff com.apple.AuthKit (1.0 - 1) <2EE9D018-FC4D-3B5F-99AE-9F72F2175A6A> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x199b4a000 - 0x199b5bfff libz.1.dylib (76) <9DC30F4E-5C37-387C-A16C-A72165922DCC> /usr/lib/libz.1.dylib
0x199b5c000 - 0x199b89fff libsystem_m.dylib (3186.100.3) /usr/lib/system/libsystem_m.dylib
0x199b8a000 - 0x199b8afff libcharset.1.dylib (59) <6EA647D8-9615-3AA2-A239-8654E0531E04> /usr/lib/libcharset.1.dylib
0x199b8b000 - 0x199b90fff libmacho.dylib (980) <0C537BDB-09A5-35F9-9671-0CD7DDED7AB9> /usr/lib/system/libmacho.dylib
0x199b91000 - 0x199ba8fff libkxld.dylib (7195.141.2) /usr/lib/system/libkxld.dylib
0x199ba9000 - 0x199bb6fff libcommonCrypto.dylib (60178.120.3) <8AAE1B05-7102-3A67-900E-DF0ACA311EC7> /usr/lib/system/libcommonCrypto.dylib
0x199bb7000 - 0x199bc1fff libunwind.dylib (201) <1680DD5C-83DD-3A6A-91E8-CE7F4FDF4115> /usr/lib/system/libunwind.dylib
0x199bc2000 - 0x199bc9fff liboah.dylib (203.58) <422ADBB4-0DBD-302E-9740-8B5DB64DF0E1> /usr/lib/liboah.dylib
0x199bca000 - 0x199bd2fff libcopyfile.dylib (173.40.2) <33FAED67-D5CD-3F2E-8C01-6125EFDA3520> /usr/lib/system/libcopyfile.dylib
0x199bd3000 - 0x199bd6fff libcompiler_rt.dylib (102.2) <10EE20DC-7B0B-3C93-A5C3-B2E35EA95FC1> /usr/lib/system/libcompiler_rt.dylib
0x199bd7000 - 0x199bd9fff libsystem_collections.dylib (1439.141.1) <16EBECBE-D09F-3612-BCCB-26EF80D6AC65> /usr/lib/system/libsystem_collections.dylib
0x199bda000 - 0x199bdcfff libsystem_secinit.dylib (87.60.1) <8547C446-2A1B-355E-B0A0-1E7752C9EED1> /usr/lib/system/libsystem_secinit.dylib
0x199bdd000 - 0x199bdffff libremovefile.dylib (49.120.1) <1A67C38F-ECC9-3B6C-8F26-2CB92E2FF075> /usr/lib/system/libremovefile.dylib
0x199be0000 - 0x199be0fff libkeymgr.dylib (31) /usr/lib/system/libkeymgr.dylib
0x199be1000 - 0x199be9fff libsystem_dnssd.dylib (1310.140.1) <9E4E2718-1F40-34F3-AC57-A225FB01926F> /usr/lib/system/libsystem_dnssd.dylib
0x199bea000 - 0x199beffff libcache.dylib (83) <49C0CF24-F396-3250-A254-C90E8C60134C> /usr/lib/system/libcache.dylib
0x199bf0000 - 0x199bf1fff libSystem.B.dylib (1292.120.1) /usr/lib/libSystem.B.dylib
0x199bf2000 - 0x199bf5fff libfakelink.dylib (3) /usr/lib/libfakelink.dylib
0x199bf6000 - 0x199bf6fff com.apple.SoftLinking (1.0 - 1) /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
0x199bf7000 - 0x199c32fff libpcap.A.dylib (98.100.3) /usr/lib/libpcap.A.dylib
0x199c33000 - 0x199d28fff libiconv.2.dylib (59) <4BF0362D-E9AF-3794-9E7E-40F07D845229> /usr/lib/libiconv.2.dylib
0x199d29000 - 0x199d3bfff libcmph.dylib (8) <826E544C-8026-3F4A-BA90-41C2372608AE> /usr/lib/libcmph.dylib
0x199d3c000 - 0x199dacfff libarchive.2.dylib (83.100.2) <7CC6F0E0-7E0D-30DD-9F66-282E90F54C32> /usr/lib/libarchive.2.dylib
0x199dad000 - 0x199e1dfff com.apple.SearchKit (1.4.1 - 1.4.1) <639851B8-C3A5-31F5-BE46-D5F0E87C3109> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x199e1e000 - 0x199e1ffff libThaiTokenizer.dylib (3) /usr/lib/libThaiTokenizer.dylib
0x199e20000 - 0x199e44fff com.apple.applesauce (1.0 - 16.28) <928E86D6-05A4-3C4E-9733-48F0D936B10A> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x199e45000 - 0x199e5bfff libapple_nghttp2.dylib (1.41) <18AA1475-8D4D-3DEA-A8AD-C6A0FC6B92AA> /usr/lib/libapple_nghttp2.dylib
0x199e5c000 - 0x199e6efff libSparseBLAS.dylib (1336.140.1) <31D093A9-02BC-3365-9171-6BEDEF6AE67D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x199e6f000 - 0x199e70fff com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <23F6F104-EE6C-3BE9-A1D4-EDECF349F3D7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x199e71000 - 0x199e75fff libpam.2.dylib (28.40.1) /usr/lib/libpam.2.dylib
0x199e76000 - 0x199e94fff libcompression.dylib (96.120.1) /usr/lib/libcompression.dylib
0x199e95000 - 0x199e99fff libQuadrature.dylib (7) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x199e9a000 - 0x19a356fff libLAPACK.dylib (1336.140.1) <90E16293-8B02-3B28-A7C2-B6FAD0EFF8B1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x19a357000 - 0x19a3a9fff com.apple.DictionaryServices (1.2 - 341) <9B09DFAC-4B3A-3047-9BF5-B324C1BB5930> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x19a3aa000 - 0x19a3c2fff liblzma.5.dylib (16) /usr/lib/liblzma.5.dylib
0x19a3c3000 - 0x19a3c4fff libcoretls_cfhelpers.dylib (169.100.1) <212C432C-7BBE-32BA-8104-E20AA4EB8053> /usr/lib/libcoretls_cfhelpers.dylib
0x19a3c5000 - 0x19a4a9fff com.apple.APFS (1677.141.1 - 1677.141.1) <7DAB2F49-0C29-35B7-9A3B-E5CE948C7C18> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x19a4aa000 - 0x19a4b7fff libxar.1.dylib (452) /usr/lib/libxar.1.dylib
0x19a4b8000 - 0x19a4bbfff libutil.dylib (58.40.2) <060B245B-5DDF-38B9-87F5-AD158328EF6C> /usr/lib/libutil.dylib
0x19a4bc000 - 0x19a4e5fff libxslt.1.dylib (17.6) <71A3CDF8-9C33-3C16-9F0B-95BAE843E5C6> /usr/lib/libxslt.1.dylib
0x19a4e6000 - 0x19a4f0fff libChineseTokenizer.dylib (37.1) <1C21D68B-E453-305A-B85B-BC082FC6BECD> /usr/lib/libChineseTokenizer.dylib
0x19a4f1000 - 0x19a560fff libvMisc.dylib (760.100.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x19a561000 - 0x19a5f2fff libate.dylib (3.0.6) /usr/lib/libate.dylib
0x19a5f3000 - 0x19a5fafff libIOReport.dylib (64.100.1) /usr/lib/libIOReport.dylib
0x19a6f6000 - 0x19a6fdfff libMatch.1.dylib (38) <7B0293BF-9571-3B0A-83A0-9E731F2921EC> /usr/lib/libMatch.1.dylib
0x19a6fe000 - 0x19a781fff libCoreStorage.dylib (554.140.2) /usr/lib/libCoreStorage.dylib
0x19a782000 - 0x19a7cdfff com.apple.AppleVAFramework (6.1.3 - 6.1.3) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x19a7ce000 - 0x19a7e7fff libexpat.1.dylib (26) /usr/lib/libexpat.1.dylib
0x19a7e8000 - 0x19a7f0fff libheimdal-asn1.dylib (597.140.2) <2A3C504F-5426-34F6-A38A-8C71C3D0A332> /usr/lib/libheimdal-asn1.dylib
0x19a7f1000 - 0x19a803fff com.apple.IconFoundation (479.4 - 479.4) /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
0x19a804000 - 0x19a867fff com.apple.IconServices (479.4 - 479.4) <21B058EF-DAA9-3212-9618-2209E215FDCB> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x19a868000 - 0x19a90afff com.apple.MediaExperience (1.0 - 1) <43595F1A-B167-3422-89D7-5A008D823D39> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
0x19a90b000 - 0x19a931fff com.apple.persistentconnection (1.0 - 1.0) /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
0x19a932000 - 0x19a93ffff com.apple.GraphVisualizer (1.0 - 100.1) <74E75E5A-7F4B-354F-B21B-587D810E03D6> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x19a940000 - 0x19ad52fff com.apple.vision.FaceCore (4.3.2 - 4.3.2) <467B3F1B-03CD-357F-A461-A2644B9D2FD9> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x19ad53000 - 0x19ad92fff com.apple.OTSVG (1.0 - 677.6.0.2) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x19ad93000 - 0x19ad9afff com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <07DD71D7-BFE0-3922-B200-5E4658CB7075> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
0x19ad9b000 - 0x19ada9fff libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x19adaa000 - 0x19adb0fff libspindump.dylib (295.2) <48C73925-4CBD-3D7C-A48A-AB06081EDCFF> /usr/lib/libspindump.dylib
0x19adb1000 - 0x19ae63fff com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x19aff8000 - 0x19b032fff com.apple.bom (14.0 - 235) <4A5B2EA7-B180-3AF2-921C-CFB81F0BDFE0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x19b033000 - 0x19b076fff com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x19b077000 - 0x19b158fff libJP2.dylib (2130.6.5) <02B5FEC4-8DC2-33D3-85A0-4538B70C2FD7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x19b159000 - 0x19b15cfff com.apple.WatchdogClient.framework (1.0 - 98.120.2) /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
0x19b15d000 - 0x19b195fff com.apple.MultitouchSupport.framework (4440.3 - 4440.3) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x19b196000 - 0x19b2c6fff com.apple.VideoToolbox (1.0 - 2780.10) <31481EBA-36A8-39F5-B12C-225102A38168> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x19b2c7000 - 0x19b2f9fff libAudioToolboxUtility.dylib (1181.72) <0001D73B-BFA2-3693-A457-7C2EF93730C8> /usr/lib/libAudioToolboxUtility.dylib
0x19b2fa000 - 0x19b320fff libPng.dylib (2130.6.5) <72A3474C-73F0-383E-971D-F6B4021947B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x19b321000 - 0x19b37dfff libTIFF.dylib (2130.6.5) <95151840-CF70-35BD-8A0B-EECDDA78C266> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x19b37e000 - 0x19b39cfff com.apple.IOPresentment (58 - 37) /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x19b39d000 - 0x19b3a1fff com.apple.GPUWrangler (6.3.5 - 6.3.5) <7A1D8536-7645-336C-B44C-378DE35080BF> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x19b3a2000 - 0x19b3a4fff libRadiance.dylib (2130.6.5) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x19b3a5000 - 0x19b3aafff com.apple.DSExternalDisplay (3.1 - 380) <0509DD59-93A0-35A4-A7CE-9111F3E3C208> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x19b3ab000 - 0x19b3cbfff libJPEG.dylib (2130.6.5) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x19b3cc000 - 0x19b3fbfff com.apple.ATSUI (1.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
0x19b3fc000 - 0x19b400fff libGIF.dylib (2130.6.5) <140A23AD-DD8A-3C19-B72A-9EAB4AFAC0C4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x19b401000 - 0x19b40afff com.apple.CMCaptureCore (1.0 - 82.6) <4AC105F5-F63B-3BD4-8747-D304DB870340> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
0x19b40b000 - 0x19b452fff com.apple.print.framework.PrintCore (16.1 - 531.1) <8BE371DC-05FE-341D-A53A-E47C2B055B37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x19b453000 - 0x19b506fff com.apple.TextureIO (3.10.9 - 3.10.9) <8B706071-6DD2-381B-A5B1-1218485CA13C> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x19b507000 - 0x19b50ffff com.apple.InternationalSupport (1.0 - 61.1) <8B30B40A-006A-3264-BAC2-73503AD66875> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x19b510000 - 0x19b584fff com.apple.datadetectorscore (8.0 - 674) <46D80D56-0583-31F9-B5C1-AE290E7ADA2B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x19b585000 - 0x19b5e4fff com.apple.UserActivity (439 - 439) <54509F5B-6C0A-3343-972B-240635833BA6> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
0x19c2c7000 - 0x19c2fcfff libSessionUtility.dylib (76.69) /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
0x19c2fd000 - 0x19c425fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x19c426000 - 0x19c48dfff com.apple.audio.AudioSession (1.0 - 76.69) <95397614-785D-3339-AC26-B21B281B78E9> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
0x19c48e000 - 0x19c4a0fff libAudioStatistics.dylib (27.64) <6A7B6876-57EB-3872-AFB0-5B1790B3C3CD> /usr/lib/libAudioStatistics.dylib
0x19c4a1000 - 0x19c4b4fff com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x19c4b5000 - 0x19c523fff com.apple.ApplicationServices.ATS (377 - 516) <72ADF0AD-B24B-31D9-A2BB-735DCAE85B08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x19c524000 - 0x19c53cfff libresolv.9.dylib (68) /usr/lib/libresolv.9.dylib
0x19c669000 - 0x19c748fff libSMC.dylib (20) <4D1A8739-7C87-321A-860C-E4A3B3C17142> /usr/lib/libSMC.dylib
0x19c749000 - 0x19c7a6fff libcups.2.dylib (494.1) /usr/lib/libcups.2.dylib
0x19c7a7000 - 0x19c7bafff com.apple.LangAnalysis (1.7.0 - 254) <5E255E88-9F9C-39B9-A9EA-8CFE7AE70984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x19c7bb000 - 0x19c7c7fff com.apple.NetAuth (6.2 - 6.2) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x19c7c8000 - 0x19c7cffff com.apple.ColorSyncLegacy (4.13.0 - 1) <829B3CFB-87C7-3FEA-9CA6-4186F83B23EC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x19c7d0000 - 0x19c7dbfff com.apple.QD (4.0 - 416) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x19c7dc000 - 0x19cdccfff com.apple.audio.AudioResourceArbitration (1.0 - 1) /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
0x19cdcd000 - 0x19cdd8fff com.apple.perfdata (1.0 - 67.40.1) <6F0D34A9-BFA6-36F3-91B5-18746942ACA3> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
0x19cdd9000 - 0x19cde6fff libperfcheck.dylib (41) <49CB0095-F2C3-3DC5-8035-7D106FB3061A> /usr/lib/libperfcheck.dylib
0x19cde7000 - 0x19cdf7fff com.apple.Kerberos (3.0 - 1) <52A2BBD7-A06A-3B16-8303-6AE1B55FDD5E> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x19cdf8000 - 0x19ce3ffff com.apple.GSS (4.0 - 2.0) <7A4EA60B-5234-3B4D-B380-0AF9699A9E2B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x19ce40000 - 0x19ce4ffff com.apple.CommonAuth (4.0 - 2.0) <5B4067F1-3885-3B29-891B-DE4DDB8AF341> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x19cea3000 - 0x19cec0fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x19cec1000 - 0x19cec9fff com.apple.CorePhoneNumbers (1.0 - 1) <6F4EDADF-6A7F-34AF-A13C-3FA3F8DEA795> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x19d013000 - 0x19d013fff liblaunch.dylib (2038.120.1) <86FD9379-882E-3603-9AC1-1B550DB2877D> /usr/lib/system/liblaunch.dylib
0x19d7c0000 - 0x19d8fcfff com.apple.Sharing (1630 - 1630) <68A9D635-F1B3-30A2-9B0B-76CB218CDC64> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x19d8fd000 - 0x19d9e7fff com.apple.Bluetooth (8.0.5 - 8.0.5d7) <809CE170-A03A-3A6C-99A0-EF5B80E01F0C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x19da00000 - 0x19da58fff com.apple.ProtectedCloudStorage (1.0 - 1) <9D534F56-4B00-3742-ADC8-5105F56BD2C3> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x19f257000 - 0x19f27efff com.apple.RemoteViewServices (2.0 - 163) <86432CAF-326C-3CFB-808E-CF4206EA50E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x19f27f000 - 0x19f28efff com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x19f28f000 - 0x19f296fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <89E5A849-7D0F-3C26-9C12-2D494098B33A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x19f4c5000 - 0x19f4c5fff libsystem_product_info_filter.dylib (8.40.1) <737F7B93-4291-31F6-AB14-7C6EFB368E4F> /usr/lib/system/libsystem_product_info_filter.dylib
0x19f598000 - 0x19f598fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <947CDAD5-05F9-3A69-9CB5-C40B3D1AE694> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x19f5ba000 - 0x19f5bafff com.apple.CoreServices (1122.41 - 1122.41) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x19f777000 - 0x19f777fff com.apple.Accelerate (1.11 - Accelerate 1.11) <735D582E-3502-3F6A-B0E0-3D7B963D0BF9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x19ffd4000 - 0x1a002ffff com.apple.CoreBluetooth (1.0 - 1) <715D760D-2E54-3D1F-9BE0-2ABC96C57988> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x1a0030000 - 0x1a003afff com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <619FB8BC-A772-351B-8BFE-5C87446E4B62> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
0x1a004f000 - 0x1a005afff com.apple.AppleIDAuthSupport (1.0 - 1) /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x1a005b000 - 0x1a010ffff com.apple.DiscRecording (9.0.3 - 9030.4.5) <487460DB-3576-3397-AEF2-0FE43B223CBB> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x1a0110000 - 0x1a0143fff com.apple.MediaKit (16 - 927.40.2) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x1a0144000 - 0x1a0224fff com.apple.DiskManagement (14.0 - 1733.140.2) <28A1B2B8-946D-3B10-8878-278B18BDE75C> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x1a0265000 - 0x1a03bbfff com.apple.FileProvider (349.4.2 - 349.4.2) <0D464632-889F-30FE-BB1B-A5DE513B7A73> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
0x1a03bc000 - 0x1a03defff com.apple.GenerationalStorage (2.0 - 323) <493BD794-E4B8-3549-BF36-CCDF41102647> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x1a0d42000 - 0x1a0d7cfff com.apple.DebugSymbols (195.1 - 195.1) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x1a0d7d000 - 0x1a0e2efff com.apple.CoreSymbolication (12.5 - 64544.81.1) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x1a1d33000 - 0x1a1d92fff com.apple.framework.Apple80211 (17.0 - 1728) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x1a1d93000 - 0x1a1ebefff com.apple.CoreWiFi (3.0 - 341) <3B8D0450-C2FE-338F-AB5F-16738CADD484> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x1a2197000 - 0x1a219afff com.apple.help (1.3.8 - 71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x1a219b000 - 0x1a21a2fff com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x1a21a3000 - 0x1a21aefff libcsfde.dylib (554.140.2) /usr/lib/libcsfde.dylib
0x1a23e1000 - 0x1a23e1fff com.apple.ApplicationServices (48 - 50) <3EA955FE-FC75-360D-B22D-2E7483F89834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x1a26d1000 - 0x1a26d1fff libHeimdalProxy.dylib (79) <55406169-F704-3EC4-9D28-D0664150A69F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
0x1a2778000 - 0x1a2778fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <54028634-7FFE-308D-8B42-3CF077247D02> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x1a30e6000 - 0x1a30ecfff com.apple.ASEProcessing (1.26.0 - 1.26.0) <573FC90F-704B-3A97-BAE1-E14C6E98AE9C> /System/Library/PrivateFrameworks/ASEProcessing.framework/Versions/A/ASEProcessing
0x1a4075000 - 0x1a4078fff com.apple.Cocoa (6.11 - 23) <7DD81C87-D0A6-3FFD-BEEE-1E683301D523> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x1a45ac000 - 0x1a45affff com.apple.IOSurfaceAccelerator (1.0.0 - 1.0.0) <38F53BAD-B4CE-35E3-8F3B-CDC9F926355B> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/Versions/A/IOSurfaceAccelerator
0x1a5627000 - 0x1a564efff com.apple.openscripting (1.7 - 190) <293B511D-4800-3DB6-9F9C-5D9277E902DF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x1a564f000 - 0x1a5652fff com.apple.securityhi (9.0 - 55008) <91D5E5E8-4D28-3205-A1C8-6EE8CE601747> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x1a5653000 - 0x1a5656fff com.apple.ink.framework (10.15 - 227) <02D1EC7F-A415-3C26-9516-30D2B6FC76FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x1a5657000 - 0x1a565afff com.apple.CommonPanels (1.2.6 - 101) <970512B9-2CD8-3B6D-885C-8FAF20D4D8B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x1a565b000 - 0x1a5662fff com.apple.ImageCapture (1711.5.2 - 1711.5.2) <857EB08B-75F6-3AAC-AD21-05EE34C93F10> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x1ab92b000 - 0x1ab92efff com.apple.print.framework.Print (15 - 271) <93419E4E-A1A0-3A33-8BB3-F2F1276FF55E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x1ab92f000 - 0x1ab932fff com.apple.Carbon (160 - 164) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x1abbf9000 - 0x1abc15fff com.apple.private.SystemPolicy (1.0 - 1) <511A98AB-03CB-3121-923C-6923F21149C5> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x1ac586000 - 0x1ac598fff libmis.dylib (274.140.2) <5B210F58-E8F8-35CE-97E2-1C532FED6177> /usr/lib/libmis.dylib
0x1aff79000 - 0x1aff92fff libCGInterfaces.dylib (544.4) <53F24AC1-8076-39BA-A872-52520DFE219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x1c22b4000 - 0x1c22c9fff com.apple.ScriptingBridge (1.4 - 80) <2B1E7D06-D802-34E5-8E03-CED3246F7321> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
0x1d2206000 - 0x1d220cfff libCoreFSCache.dylib (200.10) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x1d220d000 - 0x1d2212fff libCoreVMClient.dylib (200.10) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x1d2213000 - 0x1d2222fff com.apple.opengl (18.5.9 - 18.5.9) <588E5F4A-8C75-3469-A1BF-E9A4CD105311> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x1d2223000 - 0x1d2225fff libCVMSPluginSupport.dylib (18.5.9) <17BEA669-C514-35C1-8DFF-AF04374522F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x1d2226000 - 0x1d222efff libGFXShared.dylib (18.5.9) <5A86C0F8-FEDD-398D-81DC-3B128936E0F4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x1d222f000 - 0x1d2267fff libGLImage.dylib (18.5.9) <122738E2-5F1A-30BD-82B1-9205F04684E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x1d2268000 - 0x1d22a0fff libGLU.dylib (18.5.9) <752F741C-9C01-3D0C-BD83-9A4C2F30A851> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x1d240e000 - 0x1d2418fff libGL.dylib (18.5.9) <6F5D1A2B-3ADD-3234-8B1C-A500968B97D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x1d25a9000 - 0x1d2608fff com.apple.opencl (4.6 - 4.6) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x1e3678000 - 0x1e367ffff libRosetta.dylib (203.58) <422ADBB4-0DBD-302E-9740-8B5DB64DF0E1> /usr/lib/libRosetta.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: 7
thread_create: 6
thread_set_state: 10

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

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 256K 1
CG backing stores 688K 1
CoreGraphics 16K 1
Dispatch continuations 64.0M 1
Kernel Alloc Once 32K 1
MALLOC 1168K 7
MALLOC guard page 96K 5
STACK GUARD 56.0M 3
Sanitizer 2.0T 351
Sanitizer (reserved) 14.0T 10 reserved VM address space (unallocated)
Stack 9808K 4
Stack Guard 16K 1
VM_ALLOCATE 1.0G 6
__AUTH 596K 134
__AUTH_CONST 8694K 279
__DATA 17.2M 374
__DATA_CONST 9159K 278
__DATA_DIRTY 598K 98
__FONT_DATA 4K 1
__LINKEDIT 490.4M 6
__OBJC_CONST 1173K 112
__OBJC_RO 75.1M 1
__OBJC_RW 2576K 1
__TEXT 178.7M 296
__UNICODE 588K 1
dylib (reserved) 12K 1 reserved VM address space (unallocated)
mapped file 47.1M 10
shared memory 832K 13
=========== ======= =======
TOTAL 16.0T 1997
TOTAL, minus reserved VM space 2.0T 1997

</details>

from sketchybar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.