Giter Club home page Giter Club logo

waifu2x-ios's Introduction

waifu2x on iOS

Introduction

This is a Core ML implementation of waifu2x. The target of this project is to run waifu2x models right on iOS devices even without network. For macOS version please refer to waifu2x-mac.

Video support based on Metal Performance Shaders is also included in this repo. Models are loaded directly from Core ML models (see CoreML-MPS). It is meant to be run on macOS with a powerful discerete GPU through Mac Catalyst. Running it on iOS devices will significantly drop battery life and cause thermal issues. Most likely it will crash immediately.

The author is not responsible of any damage to your device.

Requirements (for shared library)

  • XCode 9+
  • iOS 11+
  • macOS 10.15+ (for Mac Catalyst)

Usage

After cloning this repo, remember to update submodules:

git submodule update --init

Then open waifu2x-ios.xcworkspace (not waifu2x-ios.xcodeproj).

Click Video Test on the top to pick video files. Output path will be printed in the console (starts with Output path:).

Image format

Images with RGB color space works fine. Others should be converted to RGB before processing otherwise output image will be broken. Alpha channel is scaled using bicubic interpolation. Generally it runs on GPU. It automatically falls back to CPU if image is too large for Metal to process, which is extremely slow. (A bad idea)

Video format

The built-in video decoder on iOS and macOS is very limited. If your video doesn't work, you can convert to a supported format using ffmpeg:

ffmpeg -i <INPUT VIDEO> -c:v libx264 -preset ultrafast -pix_fmt yuv420p -c:a aac -f mp4 <OUTPUT VIDEO>.mp4

About models

This repository includes all the models converted from waifu2x-caffe. If you want to dig into Core ML, it is recommended that you should convert them by yourself.

You can convert pre-trained models to Core ML format and then import them to XCode. The pre-trained model can be obtained from waifu2x-caffe.

You can use the same method described in MobileNet-CoreML. You should not specify any input and output layer in python script.

A working model should have input and output like the following example:

Benchmark on images

Environment

  • iPhone6s - waifu2x-ios on iPhone 6s with iOS 11.1
  • iPhone8 - waifu2x-ios on iPhone 8 with iOS 11.0
  • iPhone11Pro - waifu2x-ios on iPhone 11 Pro with iOS 13.1
  • iPad - waifu2x-ios on iPad Pro 10.5 with iOS 11.1
  • PC - waifu2x-caffe on Windows 10 16278 with GTX 960M

Results

All of the tests are running denoise level 2 with scale 2x model on anime-style images from Pixiv.

Test1

Image resolution: 600*849

Device Time(s)
iPhone6s 6.8
iPhone8 4.0
iPhone11Pro 2.0
iPad 2.9
PC 2.1

Test2

Image resolution: 3000*3328

Device Time(s)
iPhone6s 129.2
iPhone8 73.5
iPhone11Pro 18.8
iPad 49.2
PC 37.5

Evolution

Device: iPad Image resolution: 3000*3328

Milestone Time(s) RAM usage(GB)
Before using upconv models 141.7 1.86
After using upconv models 63.6 1.28
After adding pipeline on output 56.8 1.28
After adding pipeline on prediction 49.2 0.38
Pure MPSCNN implementation* 29.6 1.06

*: With crop size of 384 and double command buffers.

Performance on video

About 1.78 frames per second while scaling 1080p -> 2160p on 5700XT GPU.

Runs out of memory and crashes immediately with the same video on iOS with 4GB memory.

Demo

waifu2x-ios's People

Contributors

imxieyi avatar powhu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

waifu2x-ios's Issues

Broken Output Error

While processing an HEVC video file on an M1 Max with the following configuration:

Basic Mode
Real-CUGAN - Anime
2x Upscale
Conservative Variant
1.0 Intensity
MP4 Output format
Downscale OFF
Keep original

Max output: 1276x956
RAM Usage: 471.5/32GB

The following error occurred after getting through most of the encode:
Internal error: broken output from Core ML se_mean3… …the message is truncated.

The video was only about 251 seconds. Let me know if you need any additional information.

Thanks,
Matt

Batch noise reduction

Noise Reduction doesn't work on the second and above photos in batch mode (4x ultra noise reduction)

Reduce memory usage

Thanks for the iOS version. Works like a charm!

I did an opencl port sometime ago. And I faced the same problem of high memory usage. I solved it by slicing the image in several 128x128 chunks:
https://github.com/soywiz/kaifu2x#some-numbers-v030

The idea is:

Add a transparent padding 7 pixels at the left, 7 top, 7 right, 7 bottom to the original 2x nearest neighbour image. Then you get a 128x128 chunk (for example):

The first chunk to process would be (x=7,y=7,width=128,height=128).
Then from the resulting image, you get just width=114,height=114 and place in the final image at x=0,y=0.
For the next chunk you would use x=7+114,y=7,width=128,height=128, and place at x=114,y=0.
(The width/height can be 128 or less if the image with edges is not multiple of 128.)

You are processing more pixeles like this (you can reduce the additional processing by increasing the chunk size, though 128x128 is usually a good chunk size), but you won't get artifacts and will reduce the memory requirements and will be able to process even larger images on the gpu.

Processing the full image 1500x1500 would produce an image 3000x3000, and would require 3000x3000x4x256 bytes (a lot of memory). While in chunks it would be 128x128x4x256 = 16MB in the GPU. Or 256x256 chunks: 256x256x4x256 = 64MB

You can do the same trick for the bicubic interpolation. Also you can apply waifu2x per component instead of RGB and apply the waifu2x to the alpha channel too.

13.4下CoreML性能又更高了?

iPad Mini5 a12,pixiv下的jpg,low 降噪, 4x放大,原图比较小的话感觉ML比MPSCNN快一些,大图感觉没啥区别。是苹果鸡血驱动还是我理解错了文档里的意思(不应该是MPSCNN在新设备上更快么)

Feature requests: antialiasing & WebP

Hello. Fantastic app with no complaints on performance. There are two features that would be nice to see (I wasn’t sure if I should open two separate requests).

  1. WebP output file support
  2. Anti-aliasing mode. That is, upscale to 2x, 4x, or 8x before resizing down to the original dimensions for the output

Thank you and please excuse me if this is the wrong section for feature requests

it seems to be different code from the app released in the App Store

Hi, developer.

Thank you for releasing a great app and making the source code open!
But, it seems to be different code from the app released in the App Store.
I would like to learn by reading the source code of the released version.
Could you please update the repository?

Thanks.

描述一下枚举的区别吗?

能介绍一下这些枚举的区别吗?给一些注释也可以,没有看到太大的区别
case anime_noise0 = "anime_noise0_model"
case anime_noise1 = "anime_noise1_model"
case anime_noise2 = "anime_noise2_model"
case anime_noise3 = "anime_noise3_model"
case anime_scale2x = "up_anime_scale2x_model"
case anime_noise0_scale2x = "up_anime_noise0_scale2x_model"
case anime_noise1_scale2x = "up_anime_noise1_scale2x_model"
case anime_noise2_scale2x = "up_anime_noise2_scale2x_model"
case anime_noise3_scale2x = "up_anime_noise3_scale2x_model"
case photo_noise0 = "photo_noise0_model"
case photo_noise1 = "photo_noise1_model"
case photo_noise2 = "photo_noise2_model"
case photo_noise3 = "photo_noise3_model"
case photo_scale2x = "up_photo_scale2x_model"
case photo_noise0_scale2x = "up_photo_noise0_scale2x_model"
case photo_noise1_scale2x = "up_photo_noise1_scale2x_model"
case photo_noise2_scale2x = "up_photo_noise2_scale2x_model"
case photo_noise3_scale2x = "up_photo_noise3_scale2x_model"
case y_anime_scale2x = "y_anime_scale2x_model"

Image decay on the new A12 Bionic chip

I have received several reports that the image quality will decay on iPhone XS. The following is an example (pay attention to the color gradient):
Before processing:
image1
After processing:
image2
Result on iPhone 8 for comparison:
image3
The issue should come from the new neural engine on A12 chip. If this can be confirmed, neural engine should be disabled in this app. For details, it might because of one of the following reasons:

  1. Float16 numbers are cast to Float8 or lower precision before sending to neural engine.
  2. The model is somehow "optimized" by Core ML framework for better performance on the neural engine.

If this cannot be solved, I will consider rewriting the whole library in MPSNN which can only run on the GPU. It will also significantly increase the size of the app.

Since I don't have any iPhone XS/XS Max, I cannot debug this problem for now. Thanks ahead for anyone who can help investigate into this issue!

Appstore版和这个开源版速度相差好多

我发现这个版本和Appstore版本的SRCNN处理2倍插画,速度相差好多,接近一倍的速度差距。

能否告知下,需要通过什么来优化速度,指个方向。

Stuck on "Generating"

This seems to happen almost every time I perform a batch (although it's possible that I haven't tried enough singles to know it never happens there either). I haven't done nearly as much with photos; my input is primarily h.264 or HEVC. I've mostly been using the Real- models. But I remember it happening on PAN as well.

Output file sizes are usually less than 4GB. I always run with Parallel Processing using ANE + GPU. There is no consistency on which video gets stuck. Could be the first two in the batch, or somewhere in the middle. But one thing has been very consistent: there are always two videos stuck on "Generating." There's never just one video that didn't make it.

Some other information that might be useful: clicking the "Stop" button does not stop it from generating. I have to quit waifu2x in order to start another batch. Additionally, after quitting the app, the files that were being generated appear to have the expected file size for a completed render.

It seems like maybe something is getting stuck in the completion of the container, rather that the video itself? Although, that doesn't explain why two always get stuck.

No error, but the next two jobs seem to be stuck on "Generating" as a status. I'm not sure how long it's been like this, but it doesn't look like it's going to change any time soon. What part of the encode is this status? How long should it take?

Originally posted by @mattbisme in #48 (comment)

macOS 无法购买模型

点击Purchase提示Failed to retrieve product information.

Restore Purchase 提示This account has not purchased this item.

相同Apple ID在iOS上已经购买过模型,似乎是iOS App切换到macOS App的时候IAP产生的问题?

MacOS Memory Leak?

I keep running out of system memory since updating to Monterey 12.2.1 and Waifu2x 5.3.6 on my M1 Pro Macbook Pro with 16 GB of RAM and my Intel iMac with an Intel Core i9, Vega 48 GPU with 8 GB or HMB2 VRAM and 64 GB of RAM. I know Monterey has a memory leak issue that's been thrown around but it only happens to me using this specific app.

[Feature Request] Display Current FPS

Perhaps the most surprising missing feature is an FPS counter on running encodes. I often use FPS as a way to measure the practicality of an encode. Depending on the content, sometimes it's not worth using the "best quality" encode; it helps to know how much relative time I'll be saving based on the settings that I change.

Currently, I use a stopwatch to check how many "seconds per second" are being encoded. 🤣

Prevent Sleep during long tasks

I noticed when processing large files, such as videos, the app will not prevent the system from sleeping. While upscaling a job overnight, the computer fell asleep. Upon waking it, the app continued the upscale job.

Instead, it would be best if the app prevented system sleep while running a task.

App Crash on Launch

Jailbroken iPhone 8 Plus on iOS 11.3.1 app crashes on launch

Termination Description: DYLD, Symbol not found: _OBJC_CLASS_$_MPSNNFilterNode | R!eferenced from: /var/containers/Bundle/Application/0F3B5A32-D163-4B5E-954F-DF1BEE939DD0/waifu2x-ios.app/waifu2x-ios | Expected in: /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders | in /var/containers/Bundle/Application/0F3B5A32-D163-4B5E-954F-DF1BEE939DD0/waifu2x-ios.app/waifu2x-ios
Triggered by Thread:  0

[bug]M1平台丢失Alpha通道

在默认设置下,使用SRCNN/插画模式(没有测试其他模式),输出PNG和HEIC会丢失Alpha通道。
平台:macOS 11.4,M1 MacBook。

5.2.1出现切换账号丢失购买问题

在国区购买后,如果切换到其他账号就会丢失购买信息。

但是如果切换回国区后,勾选允许切换apple id再点恢复购买,仍然会提示是用另一个id购买的,必须关掉切换账号才能恢复购买,但是这样就不能切换账号了。。。

E58F4344-DE43-4A56-9DAB-B107D00E9C9C

"Performance" section appears empty when using "Basic" mode

image

This appears to only be a visual bug, from what I can tell. The heading for "Performance" options appears even when there are no settings to change. This actually confused me at first; I thought maybe the app was broken and I was unable to see anything below "Performance."

Since the "Batch size" setting appears under "Performance" when in Advanced mode, I'm guessing that this is only a visual bug; that it's actually supposed to be hidden when in Basic mode.

macos CLI how to deal with images

请问,有没有关于该软件如何处理macos 下图片的命令相关教程?

纯新手,也已购买对应解锁部分功能。

谢谢

大佬求教,waifu2x-caffe 的模型是怎么转换成CoreML的模型的?

在 waifu2x-caffe 项目中,只找到了.Json 后缀的Model。
https://github.com/lltcggie/waifu2x-caffe/tree/master/bin/models/anime_style_art

这个提供了caffemodel
https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Waifu2x-caffe/tree/master/Waifu2x-caffe/models/upconv_7_anime_style_art_rgb

用CoreML convert tool 具体转换的时候 还是会报错。
想知道 大佬 当时是怎么转换这个模型的。

output result is noisy..

Hi, iver tried running your converted coreml models but i am not getting desired results.
input image
(100*100)
Webp net-resizeimage

output image
(200*200)

oie_jGgceZazR65k

Catalyst version: Image settings window unresponsive after upscale.

Hi there,

In the latest update for the the MacOS Catalyst version, if you upscale a photo, and then go back and upscale a new one, the image setttings (MPSCNN/cunet, Noise Level, etc.) window becomes unresponsive. The only way to get around it is to close the program entirely and start it back up.

macOS 11.3: GUI卡死,CLI段错误

在最新的macOS Beta系统上用这个app,拖入图片后不显示预览且下方所有按钮无响应。尝试用CLI则会直接崩溃:

objc[14290]: Class VideoWriter is implemented in both /System/Library/PrivateFrameworks/AutoLoop.framework/Versions/A/AutoLoop (0x7fff84c255c0) and /Applications/waifu2x.app/Contents/MacOS/waifu2x (0x10e315660). One of the two will be used. Which one is undefined.
Image loaded: /Users/Admin/Pictures/waifu2x/1.5x/85765309_p0.jpg
Image size: 3779x2125
Color space:  (kCGColorSpaceICCBased; kCGColorSpaceModelRGB; sRGB IEC61966-2.1)

/usr/local/bin/waifu2x: line 10: 14290 Segmentation fault: 11  "${WAIFU2X_APP}/Contents/MacOS/waifu2x" "$@"

Stack trace:

Process:               waifu2x [14347]
Path:                  /Applications/waifu2x.app/Contents/MacOS/waifu2x
Identifier:            waifu2x
Version:               4.2.4 (8879)
App Item ID:           1479332784
App External ID:       840167383
Code Type:             X86-64 (Native)
Parent Process:        bash [14346]
Responsible:           Terminal [13636]
User ID:               501

Date/Time:             2021-02-20 12:59:08.392 +0800
OS Version:            macOS 11.3 (20E5186d)
Report Version:        12
Bridge OS Version:     5.3 (18P54529c)
Anonymous UUID:        26436FD4-08E4-C9EA-C753-F9630A2AD571


Time Awake Since Boot: 10000 seconds

System Integrity Protection: disabled

Crashed Thread:        3

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

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

VM Regions Near 0:
--> 
    __TEXT                      10e858000-10fd58000    [ 21.0M] r-x/r-x SM=COW  /Applications/waifu2x.app/Contents/MacOS/waifu2x

ID   Vend/Dev
ba02 67df1002
Seconds Ago   ID   Type
    10000.0   ba02 Attach

Thread 0:
0   libsystem_kernel.dylib        	0x00007fff203b3356 0x7fff203b2000 + 4950
1   libdispatch.dylib             	0x00007fff2023eceb 0x7fff2023b000 + 15595
2   libdispatch.dylib             	0x00007fff2023f1bd 0x7fff2023b000 + 16829
3   maccatalyst.xieyi.waifu2x     	0x000000010eb2538a 0x10e858000 + 2937738
4   maccatalyst.xieyi.waifu2x     	0x000000010eb42774 0x10e858000 + 3057524
5   maccatalyst.xieyi.waifu2x     	0x000000010eb41efc 0x10e858000 + 3055356
6   maccatalyst.xieyi.waifu2x     	0x000000010eb544da 0x10e858000 + 3130586
7   maccatalyst.xieyi.waifu2x     	0x000000010e8e9126 0x10e858000 + 594214
8   maccatalyst.xieyi.waifu2x     	0x000000010e8e9873 0x10e858000 + 596083
9   maccatalyst.xieyi.waifu2x     	0x000000010e8e9a60 0x10e858000 + 596576
10  maccatalyst.xieyi.waifu2x     	0x000000010e85ff25 0x10e858000 + 32549
11  maccatalyst.xieyi.waifu2x     	0x000000010e860b93 0x10e858000 + 35731
12  maccatalyst.xieyi.waifu2x     	0x000000010e860af0 0x10e858000 + 35568
13  maccatalyst.xieyi.waifu2x     	0x000000010ea1b3ee 0x10e858000 + 1848302
14  maccatalyst.xieyi.waifu2x     	0x000000010e85d25b 0x10e858000 + 21083
15  libdyld.dylib                 	0x00007fff20403f3d 0x7fff203ee000 + 89917

Thread 1:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 2:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 3 Crashed:
0   ???                           	000000000000000000 0 + 0
1   com.apple.MetalPerformanceShaders.MPSImage	0x00007fff2a2d5adc 0x7fff2a2a2000 + 211676
2   com.apple.MetalPerformanceShaders.MPSImage	0x00007fff2a2d62a7 0x7fff2a2a2000 + 213671
3   maccatalyst.xieyi.waifu2x     	0x000000010eb494c3 0x10e858000 + 3085507
4   maccatalyst.xieyi.waifu2x     	0x000000010eb43175 0x10e858000 + 3060085
5   maccatalyst.xieyi.waifu2x     	0x000000010eb47ed1 0x10e858000 + 3079889
6   maccatalyst.xieyi.waifu2x     	0x000000010eb47f14 0x10e858000 + 3079956
7   maccatalyst.xieyi.waifu2x     	0x000000010eb24af5 0x10e858000 + 2935541
8   maccatalyst.xieyi.waifu2x     	0x000000010eb24fc1 0x10e858000 + 2936769
9   libswiftObjectiveC.dylib      	0x00007fff33a23dae 0x7fff33a23000 + 3502
10  maccatalyst.xieyi.waifu2x     	0x000000010eb249ed 0x10e858000 + 2935277
11  maccatalyst.xieyi.waifu2x     	0x000000010e911cde 0x10e858000 + 761054
12  libdispatch.dylib             	0x00007fff2023d673 0x7fff2023b000 + 9843
13  libdispatch.dylib             	0x00007fff2023e856 0x7fff2023b000 + 14422
14  libdispatch.dylib             	0x00007fff2024463a 0x7fff2023b000 + 38458
15  libdispatch.dylib             	0x00007fff202450fd 0x7fff2023b000 + 41213
16  libdispatch.dylib             	0x00007fff2024ec5d 0x7fff2023b000 + 80989
17  libsystem_pthread.dylib       	0x00007fff203e54c0 0x7fff203e2000 + 13504
18  libsystem_pthread.dylib       	0x00007fff203e4493 0x7fff203e2000 + 9363

Thread 4:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 6:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 8:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 9:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 10:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 11:
0   libsystem_kernel.dylib        	0x00007fff203b3356 0x7fff203b2000 + 4950
1   libdispatch.dylib             	0x00007fff2023eceb 0x7fff2023b000 + 15595
2   libdispatch.dylib             	0x00007fff2023f1bd 0x7fff2023b000 + 16829
3   maccatalyst.xieyi.waifu2x     	0x000000010eb24986 0x10e858000 + 2935174
4   maccatalyst.xieyi.waifu2x     	0x000000010e911cde 0x10e858000 + 761054
5   libdispatch.dylib             	0x00007fff2023d673 0x7fff2023b000 + 9843
6   libdispatch.dylib             	0x00007fff2023e856 0x7fff2023b000 + 14422
7   libdispatch.dylib             	0x00007fff2024463a 0x7fff2023b000 + 38458
8   libdispatch.dylib             	0x00007fff202450fd 0x7fff2023b000 + 41213
9   libdispatch.dylib             	0x00007fff2024ec5d 0x7fff2023b000 + 80989
10  libsystem_pthread.dylib       	0x00007fff203e54c0 0x7fff203e2000 + 13504
11  libsystem_pthread.dylib       	0x00007fff203e4493 0x7fff203e2000 + 9363

Thread 12:
0   libsystem_pthread.dylib       	0x00007fff203e4484 0x7fff203e2000 + 9348

Thread 3 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00007fca7741f700  rcx: 0x00007fca7740c630  rdx: 0x00007fca7880fa00
  rdi: 0x0000000000000000  rsi: 0x00007fca7741f700  rbp: 0x000070000cbe44a0  rsp: 0x000070000cbe4308
   r8: 0x00007fca77421550   r9: 0x00007fca77420e40  r10: 0x00007fff874008a0  r11: 0x00007fff6e1a54f4
  r12: 0x00007fca770312d0  r13: 0x00007fca77420e40  r14: 0x00007fff7bc0c146  r15: 0x00007fca7880fa00
  rip: 0x0000000000000000  rfl: 0x0000000000010246  cr2: 0x0000000000000000
  
Logical CPU:     0
Error Code:      0x00000014 (no mapping for user instruction read)
Trap Number:     14

Thread 3 instruction stream not available.

Thread 3 last branch register state not available.


Binary Images:
       0x10e858000 -        0x10fd57fff +maccatalyst.xieyi.waifu2x (4.2.4 - 8879) <9AA23FC1-7A7E-3F67-9F81-2CC2DB4819AC> /Applications/waifu2x.app/Contents/MacOS/waifu2x
       0x11002d000 -        0x110030fff +xieyi.additional-models-data (1.0 - 1) <48283A70-7B06-3CB7-A4D7-17A5156FC07E> /Applications/waifu2x.app/Contents/Frameworks/additional_models_data.framework/Versions/A/additional_models_data
       0x110045000 -        0x110048fff +xieyi.waifu2x-mlmodels (1.0 - 1) <C6D1F543-0AED-338B-ACB3-232B9E5AF3E1> /Applications/waifu2x.app/Contents/Frameworks/waifu2x_mlmodels.framework/Versions/A/waifu2x_mlmodels
       0x1100f6000 -        0x110105fff  libobjc-trampolines.dylib (824) <EC12754A-F55D-3556-9F6D-4F0C75454D9C> /usr/lib/libobjc-trampolines.dylib
       0x1168ae000 -        0x116949fff  dyld (851.18) <2E2A7D2A-663F-3ADF-9942-F137E901B0C9> /usr/lib/dyld
    0x7fff20120000 -     0x7fff20121fff  libsystem_blocks.dylib (79) <F4D1852E-CF54-3274-B949-A91604133AC8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff20122000 -     0x7fff20157fff  libxpc.dylib (2038.100.46) <55CF8ECD-D82D-3DDB-834E-E9D3A7D94DF8> /usr/lib/system/libxpc.dylib
    0x7fff20158000 -     0x7fff2016ffff  libsystem_trace.dylib (1277.100.16) <9A8021E9-2A1C-3B5A-8B40-1CA18A311F9E> /usr/lib/system/libsystem_trace.dylib
    0x7fff20170000 -     0x7fff2020dfff  libcorecrypto.dylib (1000.100.36) <1726E464-D0F7-3F97-9333-FBAD67634D24> /usr/lib/system/libcorecrypto.dylib
    0x7fff2020e000 -     0x7fff2023afff  libsystem_malloc.dylib (317.100.6) <5569B8AB-0397-3995-94C5-A99E9F57E1D9> /usr/lib/system/libsystem_malloc.dylib
    0x7fff2023b000 -     0x7fff2027ffff  libdispatch.dylib (1271.100.3) <788550EF-46C5-3152-9DEF-ABA22A27C3A2> /usr/lib/system/libdispatch.dylib
    0x7fff20280000 -     0x7fff202b9fff  libobjc.A.dylib (824) <B96EE933-7F66-3766-BA8C-A0460F9549CF> /usr/lib/libobjc.A.dylib
    0x7fff202ba000 -     0x7fff202bcfff  libsystem_featureflags.dylib (28.60.1) <35420EDF-FF28-3BAE-A42C-88715C14EDA2> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff202bd000 -     0x7fff20345fff  libsystem_c.dylib (1439.100.3) <3E54AC6A-CB38-381A-A0E6-A54A84301469> /usr/lib/system/libsystem_c.dylib
    0x7fff20346000 -     0x7fff2039bfff  libc++.1.dylib (905.6) <A149473B-A2BF-318D-8AD5-229A1F2619F8> /usr/lib/libc++.1.dylib
    0x7fff2039c000 -     0x7fff203b1fff  libc++abi.dylib (905.6) <0E137B9A-B841-3360-B183-539C7306C4DC> /usr/lib/libc++abi.dylib
    0x7fff203b2000 -     0x7fff203e1fff  libsystem_kernel.dylib (7195.100.326.0.1) <0F07C889-1CF5-3067-B53D-22A5B39B3295> /usr/lib/system/libsystem_kernel.dylib
    0x7fff203e2000 -     0x7fff203edfff  libsystem_pthread.dylib (454.100.8) <F33FF9C7-08A4-3EBA-A3E7-042288C3644D> /usr/lib/system/libsystem_pthread.dylib
    0x7fff203ee000 -     0x7fff20429fff  libdyld.dylib (851.18) <8DB297A6-B35E-348B-ADE4-7C8E29BB4360> /usr/lib/system/libdyld.dylib
    0x7fff2042a000 -     0x7fff20433fff  libsystem_platform.dylib (254.80.2) <FC46550F-C6B9-3F62-9855-8E5EC7B7E282> /usr/lib/system/libsystem_platform.dylib
    0x7fff20434000 -     0x7fff2045ffff  libsystem_info.dylib (542.40.3) <B414DE50-B38A-3BA1-A048-E66B9422217D> /usr/lib/system/libsystem_info.dylib
    0x7fff20460000 -     0x7fff208fcfff  com.apple.CoreFoundation (6.9 - 1775.113) <13C77067-6BF4-3982-9305-8205AFFC2122> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff208fd000 -     0x7fff20b2efff  com.apple.LaunchServices (1122.29 - 1122.29) <04AA2029-203A-3D67-9AB7-F68424A205D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20b2f000 -     0x7fff20c02fff  com.apple.gpusw.MetalTools (1.0 - 1) <0FEBDC70-EFC9-3AB3-A35D-F43B93484461> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20c03000 -     0x7fff20e5ffff  libBLAS.dylib (1336.100.1) <F3586896-DD62-322E-B018-A9A32DABF3FF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20e60000 -     0x7fff20eacfff  com.apple.Lexicon-framework (1.0 - 86.1) <5E5E0EB8-7980-3271-BB9C-9020A74D9A08> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20ead000 -     0x7fff20f1bfff  libSparse.dylib (106) <2E4E9E6D-C791-3043-ACFA-EDE97D6C023C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20f1c000 -     0x7fff20f99fff  com.apple.SystemConfiguration (1.20 - 1.20) <FEF21F9E-9134-336A-8DCC-1FB6537845D6> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff20f9a000 -     0x7fff20fcefff  libCRFSuite.dylib (50) <93353539-7ADB-35FC-B811-B0FD649FE776> /usr/lib/libCRFSuite.dylib
    0x7fff20fcf000 -     0x7fff21203fff  libmecabra.dylib (929.6) <C70F26A2-0A6C-366A-9357-14A6C48893E6> /usr/lib/libmecabra.dylib
    0x7fff21204000 -     0x7fff21561fff  com.apple.Foundation (6.9 - 1775.113) <577359EF-1C6B-3F02-87F7-171093F7D162> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff21562000 -     0x7fff2164afff  com.apple.LanguageModeling (1.0 - 247.3) <3C90A818-9D29-33C0-9A9A-E8CC72A7E14A> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff2164b000 -     0x7fff21781fff  com.apple.CoreDisplay (236.4 - 236.4) <D911EF07-6E7F-33EA-A588-5370D1C1BC0C> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff21782000 -     0x7fff219ecfff  com.apple.audio.AudioToolboxCore (1.0 - 1180.85.3) <D205E69E-A640-3FB2-8484-987C83391135> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff219ed000 -     0x7fff21bd1fff  com.apple.CoreText (677.4.0.1 - 677.4.0.1) <CEF51F62-CF19-34F6-90CF-C5FEEAFF18D3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21bd2000 -     0x7fff22260fff  com.apple.audio.CoreAudio (5.0 - 5.0) <DC4624D0-7C89-3674-A2E4-5A43D46C1FC1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff22261000 -     0x7fff225b4fff  com.apple.security (7.0 - 59754.100.97) <A3ED14DB-1A81-3933-A01B-695392E98183> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff225b5000 -     0x7fff22814fff  libicucore.A.dylib (66112) <FE1A7EF5-D613-32A5-A8A9-C17D256AA612> /usr/lib/libicucore.A.dylib
    0x7fff22815000 -     0x7fff2281efff  libsystem_darwin.dylib (1439.100.3) <B34E77C7-46F0-3AFF-99F3-1E05342A2AD2> /usr/lib/system/libsystem_darwin.dylib
    0x7fff2281f000 -     0x7fff22b0afff  com.apple.CoreServices.CarbonCore (1307.2 - 1307.2) <0735E71E-C8BD-337D-96EB-AD3BCA409CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22b0b000 -     0x7fff22b49fff  com.apple.CoreServicesInternal (476.1 - 476.1) <9EF9D5B8-B642-301B-815B-36392969944D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22b4a000 -     0x7fff22b84fff  com.apple.CSStore (1122.29 - 1122.29) <E7F0F57A-64E1-3903-954E-8126400FA311> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22b85000 -     0x7fff22c33fff  com.apple.framework.IOKit (2.0.2 - 1845.100.16) <F570D65D-0E14-35DE-AF79-879E06CA55A9> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22c34000 -     0x7fff22c3ffff  libsystem_notify.dylib (279.40.4) <0C2C9E36-93A0-382E-BE66-D69A03A75873> /usr/lib/system/libsystem_notify.dylib
    0x7fff22c40000 -     0x7fff22c8cfff  libsandbox.1.dylib (1441.100.23) <73529E17-26AD-3535-AF02-F78D03D06C22> /usr/lib/libsandbox.1.dylib
    0x7fff22c8d000 -     0x7fff239d3fff  com.apple.AppKit (6.9 - 2022.44.134) <75BB0216-1D43-3C2C-9C4A-BF46EA5543C8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff239d4000 -     0x7fff23c20fff  com.apple.UIFoundation (1.0 - 728.2) <2B5A6226-E09E-3435-8583-27DDD177D460> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23c21000 -     0x7fff23c33fff  com.apple.UniformTypeIdentifiers (636.6 - 636.6) <C16BD89C-4557-3230-93D2-771736A8C48E> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff23c34000 -     0x7fff23dbefff  com.apple.desktopservices (1.19 - 1346.4.5) <86C333B0-0AF2-3260-981F-87F0BB3F8FE1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff23dbf000 -     0x7fff23dd1fff  com.apple.metadata.SpotlightLinguistics (1.0 - 1) <E9A2BB89-F7B8-36EC-AB2C-EFC7EDCA6701> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/Versions/A/SpotlightLinguistics
    0x7fff23dd2000 -     0x7fff23fe0fff  com.apple.CoreDuet (1.0 - 1) <3448ECFB-E96A-3CD6-935D-7ADC7B45C015> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff2409e000 -     0x7fff2471cfff  libnetwork.dylib (2288.100.98.0.5) <718EB206-0111-3E35-8A51-D8EA52ED6D45> /usr/lib/libnetwork.dylib
    0x7fff2471d000 -     0x7fff24bbbfff  com.apple.CFNetwork (1236 - 1236) <C25A419D-D459-3EC1-8DD0-A628AE75BBA6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24bbc000 -     0x7fff24bcafff  libsystem_networkextension.dylib (1295.100.22) <2ED5A005-8B07-3E7F-B0D3-9DE4EDE45B69> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24bcb000 -     0x7fff24bcbfff  libenergytrace.dylib (22.100.1) <89E57D43-034A-3F7B-B83C-57473814A568> /usr/lib/libenergytrace.dylib
    0x7fff24bcc000 -     0x7fff24c28fff  libMobileGestalt.dylib (978.100.33) <A7974395-10D8-3784-B77A-1A2E7EF78853> /usr/lib/libMobileGestalt.dylib
    0x7fff24c29000 -     0x7fff24c3ffff  libsystem_asl.dylib (385) <318CBBCB-3AC9-3075-A372-82496520A04E> /usr/lib/system/libsystem_asl.dylib
    0x7fff24c40000 -     0x7fff24c57fff  com.apple.TCC (1.0 - 1) <48F76726-281A-3929-95F0-8CEF7E924B04> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24c58000 -     0x7fff24fbbfff  com.apple.SkyLight (1.600.0 - 579.6.1) <BDD3DCA4-14DB-39D2-9F41-875F88FBC031> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff24fbc000 -     0x7fff25645fff  com.apple.CoreGraphics (2.0 - 1463.4.1) <391FA348-5C13-330D-AE65-FC255B89EB84> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff25646000 -     0x7fff2573cfff  com.apple.ColorSync (4.13.0 - 3473.4.1) <FC88D95E-1D4A-31F5-87EB-5B20C2C25BD5> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2573d000 -     0x7fff25798fff  com.apple.HIServices (1.22 - 714) <09E28887-6222-31C0-B706-B183BD05332A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff25799000 -     0x7fff257d7fff  libAWDSupport.dylib (951) <0EF84A28-54EC-3C19-9A99-FDD2A5E6D4FF> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib
    0x7fff257d8000 -     0x7fff25834fff  libprotobuf.dylib (4144) <874F61C0-AD23-3DD6-8094-9078FF0A0028> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
    0x7fff25835000 -     0x7fff25846fff  libprotobuf-lite.dylib (4144) <E071963D-3548-3207-9E02-DE891C41475F> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
    0x7fff25847000 -     0x7fff2588bfff  com.apple.awd (1.0 - 951) <1EE34A40-385F-3C1F-B9E3-76D402FF0A02> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
    0x7fff2588c000 -     0x7fff25a4cfff  com.apple.Montreal (1.0 - 142) <D97FDF8D-37FE-3CFA-8AE8-FB31A27CD3C4> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
    0x7fff25a4d000 -     0x7fff25b3efff  com.apple.NLP (1.0 - 210.2) <213E131E-53F2-3BC4-BF46-30F527D8CD0C> /System/Library/PrivateFrameworks/NLP.framework/Versions/A/NLP
    0x7fff25b3f000 -     0x7fff25f5dfff  com.apple.CoreData (120 - 1046) <6E591794-BE3E-3912-A119-89E3304E126D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff25f5e000 -     0x7fff25f73fff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <B4C7E6E7-EB80-343F-8BC5-91637E4E7393> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff25f74000 -     0x7fff26127fff  libsqlite3.dylib (321.3) <D6BD9D45-68AB-3D8B-B765-4B1160515DA0> /usr/lib/libsqlite3.dylib
    0x7fff26128000 -     0x7fff261a4fff  com.apple.Accounts (113 - 113) <9F18F1F4-D6DD-33DD-9D9E-CE266E4952CD> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff261a5000 -     0x7fff261bcfff  com.apple.commonutilities (8.0 - 900) <884ADE72-6D16-3418-A536-22D592695AAC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff261bd000 -     0x7fff2623cfff  com.apple.BaseBoard (526 - 526) <A53B8544-7F82-3AD7-8238-52BC71F4FCC2> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff2623d000 -     0x7fff26285fff  com.apple.RunningBoardServices (1.0 - 505.100.7) <1622145F-094C-3C71-8184-112FB19190B9> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff26286000 -     0x7fff262fafff  com.apple.AE (918.4 - 918.4) <8CFAD659-5CFB-3D69-B3D1-B7111D7B5806> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff262fb000 -     0x7fff26301fff  libdns_services.dylib (1310.100.6) <29F2A46D-5635-308B-A0B8-91B8478915D2> /usr/lib/libdns_services.dylib
    0x7fff26302000 -     0x7fff26309fff  libsystem_symptoms.dylib (1431.100.15.0.1) <6095244D-4D5D-3D1E-A516-55D63478733D> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff2630a000 -     0x7fff2648efff  com.apple.Network (1.0 - 1) <56DBABFE-81FE-3849-8774-F3016E659C6E> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff2648f000 -     0x7fff264befff  com.apple.analyticsd (1.0 - 1) <38982658-9248-3C38-854F-7FED7EA57F9A> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff264bf000 -     0x7fff264c1fff  libDiagnosticMessagesClient.dylib (112) <C1CF7607-706F-3F7A-B53F-1D32FEC8D7B8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff264c2000 -     0x7fff2650efff  com.apple.spotlight.metadata.utilities (1.0 - 2150.11) <A37F4565-08DA-353F-8D41-24EA6823DB4E> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff2650f000 -     0x7fff265a9fff  com.apple.Metadata (10.7.0 - 2150.11) <E66541BF-061B-35B3-93F5-567CA3B20967> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff265aa000 -     0x7fff265b0fff  com.apple.DiskArbitration (2.7 - 2.7) <8FDA4408-ED5F-3D85-A282-116F9A56D6CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff265b1000 -     0x7fff26c18fff  com.apple.vImage (8.1 - 544.4) <2610F610-6B3D-3715-9A98-7AA4B708AC5E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26c19000 -     0x7fff26ef5fff  com.apple.QuartzCore (1.11 - 927.12) <30FE4312-3FD5-3F60-BD5A-E7599A605AC5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26ef6000 -     0x7fff26f37fff  libFontRegistry.dylib (309) <E19670D6-353D-3587-8CE6-AB4EBB3FE60B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff26f38000 -     0x7fff27078fff  com.apple.coreui (2.1 - 691.2) <484FB8E6-FA31-31B4-9527-572D7F38214A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff27079000 -     0x7fff27164fff  com.apple.ViewBridge (553 - 553) <9110D078-F52C-33AE-BB1D-F85959AA18AE> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff27165000 -     0x7fff27170fff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <8CE25249-629E-3C0C-B97F-4DD48A5A43E7> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff27171000 -     0x7fff27180fff  com.apple.OpenDirectory (11.3 - 230.40.1) <B37E8237-A068-38A0-9FF2-C5BE38EB11E0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff27181000 -     0x7fff271a0fff  com.apple.CFOpenDirectory (11.3 - 230.40.1) <F2558A35-10D6-3B1D-B2A4-141CFA2B7B0A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff271a1000 -     0x7fff271a9fff  com.apple.CoreServices.FSEvents (1290.100.2 - 1290.100.2) <4E7CCFE5-DCE0-3167-85E1-2C1BD26E47B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff271aa000 -     0x7fff271cefff  com.apple.coreservices.SharedFileList (144 - 144) <36385D34-3D4D-346E-9D3E-A09FA638E307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff271cf000 -     0x7fff271d1fff  libapp_launch_measurement.dylib (14.1) <946CC5A0-62A0-314E-B03D-27E648DC529B> /usr/lib/libapp_launch_measurement.dylib
    0x7fff271d2000 -     0x7fff27219fff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <D45A51A4-74FC-3C78-8CA2-A6F36EC54A7F> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff2721a000 -     0x7fff272fcfff  libxml2.2.dylib (34.9) <0CFC896C-4F84-3E02-8524-70468BA145D1> /usr/lib/libxml2.2.dylib
    0x7fff272fd000 -     0x7fff2734afff  com.apple.CoreVideo (1.8 - 414.6) <89FC0B39-C5C3-3E17-96D3-9B28CA41398C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff2734b000 -     0x7fff2734dfff  com.apple.loginsupport (1.0 - 1) <55357C9F-F9F4-347C-BAEF-4FDC5D486887> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff2734e000 -     0x7fff27375fff  com.apple.aps.framework (4.0 - 4.0) <973B78A0-4694-374B-9B3C-0D98A8ACD0E9> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff27376000 -     0x7fff27391fff  com.apple.UserManagement (1.0 - 1) <45EF9D59-B48C-3ED3-B46B-49E69E819156> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff27392000 -     0x7fff27523fff  com.apple.cloudkit.CloudKit (980 - 980) <3E4BA038-810B-3E23-B7F1-49253B64DBC2> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff27524000 -     0x7fff275a5fff  com.apple.CloudDocs (1.0 - 737) <FB93F966-9887-39E4-9D4A-83538C498CCB> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff275a6000 -     0x7fff27935fff  com.apple.CoreML (1.0 - 1) <A4D682A6-267A-3F30-AA2F-F4972D0EA784> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
    0x7fff28288000 -     0x7fff28305fff  com.apple.corelocation (2420.16.16 - 2420.16.16) <A7714D40-96D4-3F38-A0D5-2010435C1985> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff28306000 -     0x7fff28316fff  libsystem_containermanager.dylib (318.100.4) <DD1D07AA-21E2-3CAA-8C40-B213F6196496> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff28317000 -     0x7fff28328fff  com.apple.IOSurface (290.6 - 290.6) <4C03FF5A-656F-307D-99C9-5109E31EE4DA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff28329000 -     0x7fff28332fff  com.apple.IOAccelerator (442.9 - 442.9) <49CF4B00-45EE-3A96-B546-615558C8B56C> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28333000 -     0x7fff28456fff  com.apple.Metal (244.110 - 244.110) <067BDE3B-9F93-308B-8434-3983A5845CDA> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff28457000 -     0x7fff28473fff  com.apple.audio.caulk (1.0 - 70) <8448F5CE-4E08-3DFF-9BD9-67095AAC050C> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff28474000 -     0x7fff28602fff  com.apple.CoreMedia (1.0 - 2770.23.4.1) <E4889457-EF43-3310-9396-7EB55E807BCA> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff28603000 -     0x7fff2875ffff  libFontParser.dylib (305.4.0.1) <99CF180A-FEF1-336A-91D4-4CBFEB30FB76> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff28760000 -     0x7fff28a5bfff  com.apple.HIToolbox (2.1.1 - 1061.8) <40483E76-9E6E-3033-B80E-A904410A684F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff28a5c000 -     0x7fff28a6ffff  com.apple.framework.DFRFoundation (1.0 - 265) <5092BE7F-6CED-3E6F-88C1-497CA9901A18> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff28a70000 -     0x7fff28a73fff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <E26A350D-5177-376A-A9E8-60E186596285> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff28a74000 -     0x7fff28a9dfff  com.apple.CoreSVG (1.0 - 149) <CA939567-A47E-3D9F-ACA6-C668D72336CC> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff28a9e000 -     0x7fff28cd9fff  com.apple.ImageIO (3.3.0 - 2130.4.4) <EDDB11CD-4025-34C5-8B8A-1653A1704802> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28cda000 -     0x7fff29055fff  com.apple.CoreImage (16.3.0 - 1140.2) <E8016DC2-06AB-3E73-96FF-5F98F5A555AA> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff29056000 -     0x7fff290bcfff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <3C46DE80-89A2-3BCA-9727-F0EC3224FCEB> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff290bd000 -     0x7fff290c0fff  libsystem_configuration.dylib (1109.100.4) <791F6C7B-A858-349B-BD79-ED8D33B00A7D> /usr/lib/system/libsystem_configuration.dylib
    0x7fff290c1000 -     0x7fff290c5fff  libsystem_sandbox.dylib (1441.100.23) <C166479D-1F48-3BB5-9F34-E78EEEC3EDD0> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff290c6000 -     0x7fff290c7fff  com.apple.AggregateDictionary (1.0 - 1) <AF4CDF8F-78B7-3306-9D55-3523720F636B> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff290c8000 -     0x7fff290cbfff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <14AD67A3-428B-335C-87C2-DC7479B164F5> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff290cc000 -     0x7fff290cdfff  liblangid.dylib (136) <7C8D0F05-4CFA-32AA-9D90-105FFF7DA002> /usr/lib/liblangid.dylib
    0x7fff290ce000 -     0x7fff29172fff  com.apple.CoreNLP (1.0 - 245.2) <FACE4108-9289-3C37-9EFD-8BA926E16478> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff29173000 -     0x7fff29179fff  com.apple.LinguisticData (1.0 - 399) <95FE0A06-0029-3818-82DE-D6C812B644AF> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff2917a000 -     0x7fff29822fff  libBNNS.dylib (288.100.3) <79DA187F-0F8B-34E1-B7F2-4839D6DCF83D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff29823000 -     0x7fff299f5fff  libvDSP.dylib (760.100.3) <8AC1F990-C583-3354-B5D2-00EF0B696C51> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff299f6000 -     0x7fff29a07fff  com.apple.CoreEmoji (1.0 - 128.3) <F72E47CF-E6FC-3122-8CAA-E6E5A13FF041> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff29a08000 -     0x7fff29a12fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <D585FDE0-7184-32F2-8309-F4576C85A21D> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff29a13000 -     0x7fff29ae5fff  com.apple.framework.CoreWLAN (16.0 - 1657) <8A4F1134-081B-3D8F-AC2B-427C4818A404> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff29ae6000 -     0x7fff29ce0fff  com.apple.CoreUtils (6.6 - 660.29) <AB92860A-232A-346D-8429-BBF7321E9107> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29ce1000 -     0x7fff29d03fff  com.apple.MobileKeyBag (2.0 - 1.0) <42F1EF49-69B2-383D-B4EE-D7FE55A9E9F7> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29d04000 -     0x7fff29d14fff  com.apple.AssertionServices (1.0 - 505.100.7) <4E8E1B50-7946-34F1-B395-59BAB63EEF3F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29d15000 -     0x7fff29da0fff  com.apple.securityfoundation (6.0 - 55240.40.4) <18555F3B-38A9-3410-9A60-03D10872428E> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29da1000 -     0x7fff29daafff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <412A9CEE-60DA-3BA8-8A02-85BC8A905958> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29dab000 -     0x7fff29daffff  com.apple.xpc.ServiceManagement (1.0 - 1) <04E5DF22-9C60-3F91-996A-BEE834E656E1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29db0000 -     0x7fff29db2fff  libquarantine.dylib (119.40.2) <0B15B0B4-53EB-36F8-BA63-45E73C747353> /usr/lib/system/libquarantine.dylib
    0x7fff29db3000 -     0x7fff29dbefff  libCheckFix.dylib (31) <2707A663-A47A-3F91-BEDD-3AC38BC690E4> /usr/lib/libCheckFix.dylib
    0x7fff29dbf000 -     0x7fff29dd6fff  libcoretls.dylib (169.100.1) <A0F7FA11-2014-315B-9027-94291BA4A7DD> /usr/lib/libcoretls.dylib
    0x7fff29dd7000 -     0x7fff29de7fff  libbsm.0.dylib (68.40.1) <3FD67114-A942-36D6-9D9D-6AE6F4D4A96A> /usr/lib/libbsm.0.dylib
    0x7fff29de8000 -     0x7fff29e31fff  libmecab.dylib (929.6) <18F1D696-B1BF-3326-8427-9AC5CFE4764D> /usr/lib/libmecab.dylib
    0x7fff29e32000 -     0x7fff29e37fff  libgermantok.dylib (24) <E2BCE6B7-7578-3B1D-B2B2-AAF5E1783F63> /usr/lib/libgermantok.dylib
    0x7fff29e38000 -     0x7fff29e4dfff  libLinearAlgebra.dylib (1336.100.1) <75F2066D-A487-371D-BC86-E54BA3CD9CEB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29e4e000 -     0x7fff2a06cfff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <DD2330C4-727A-3CDA-A4A3-3C326D6622E3> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff2a06d000 -     0x7fff2a0bcfff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <42D1AD23-ECF2-3B76-9342-42E228EBC694> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff2a0bd000 -     0x7fff2a21dfff  com.apple.MLCompute (1.0 - 1) <D4427193-86A6-3AD7-ACA3-A02C147C0361> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a21e000 -     0x7fff2a254fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <7786632A-028B-3912-A89B-EE8F81B6B50F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a255000 -     0x7fff2a2a1fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <8A84DED2-C236-31F2-9CEB-8E5E08EB156E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a2a2000 -     0x7fff2a332fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <A27DA459-EC93-3983-B86C-3E89BA354057> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a333000 -     0x7fff2a342fff  com.apple.AppleFSCompression (125 - 1.0) <2385801E-8150-336E-A1BF-C87DE0EB6571> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a343000 -     0x7fff2a34ffff  libbz2.1.0.dylib (44) <53D3E234-88B4-376C-8745-21D813D28696> /usr/lib/libbz2.1.0.dylib
    0x7fff2a350000 -     0x7fff2a354fff  libsystem_coreservices.dylib (127) <25723A0D-6BAD-370E-ABC2-232361B8CF9B> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a355000 -     0x7fff2a382fff  com.apple.CoreServices.OSServices (1122.29 - 1122.29) <5CD965DC-B95E-3927-8780-FA06FCFE0171> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a383000 -     0x7fff2a4b2fff  com.apple.AuthKit (1.0 - 1) <6C174507-7799-3270-ADFC-C4132C3D63E9> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a4b3000 -     0x7fff2a4e1fff  com.apple.UserNotifications (1.0 - 348.4) <9E9587FF-5CBC-3B1F-924F-A6496B9FCB44> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications
    0x7fff2a4e2000 -     0x7fff2a550fff  com.apple.CoreSpotlight (1.0 - 2150.11) <73AF310C-530C-353E-9071-FC0EB6412CF5> /System/Library/Frameworks/CoreSpotlight.framework/Versions/A/CoreSpotlight
    0x7fff2a551000 -     0x7fff2a563fff  libz.1.dylib (76) <DEAD59FB-1200-3EE7-9729-4FFB820B1E17> /usr/lib/libz.1.dylib
    0x7fff2a564000 -     0x7fff2a5abfff  libsystem_m.dylib (3186.100.2) <7F76C2E6-FDF9-3EC5-B729-9E1D3A63DD5D> /usr/lib/system/libsystem_m.dylib
    0x7fff2a5ac000 -     0x7fff2a5acfff  libcharset.1.dylib (59) <7649DBB9-5AEB-31EA-B0EC-638A4B8F148E> /usr/lib/libcharset.1.dylib
    0x7fff2a5ad000 -     0x7fff2a5b2fff  libmacho.dylib (980) <B4B4495D-823C-3C89-8BDE-35BB8B00B7E2> /usr/lib/system/libmacho.dylib
    0x7fff2a5b3000 -     0x7fff2a5cefff  libkxld.dylib (7195.100.326.0.1) <94C76D5F-7382-341F-B137-D34FB77F952A> /usr/lib/system/libkxld.dylib
    0x7fff2a5cf000 -     0x7fff2a5dafff  libcommonCrypto.dylib (60178.100.1) <8AB73EAF-89A6-3344-B845-1891DC93556A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a5db000 -     0x7fff2a5e5fff  libunwind.dylib (201) <1E0CB6B7-E231-3713-A943-446316E24678> /usr/lib/system/libunwind.dylib
    0x7fff2a5e6000 -     0x7fff2a5edfff  liboah.dylib (203.39) <FD015509-DFBD-3C79-9E57-36D27DB78693> /usr/lib/liboah.dylib
    0x7fff2a5ee000 -     0x7fff2a5f8fff  libcopyfile.dylib (173.40.2) <A4D53E60-6A08-3CF7-9EF3-2933A7C67E2B> /usr/lib/system/libcopyfile.dylib
    0x7fff2a5f9000 -     0x7fff2a600fff  libcompiler_rt.dylib (102.2) <A1CB844F-3A90-33F5-8B73-E1605EC81F60> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a601000 -     0x7fff2a603fff  libsystem_collections.dylib (1439.100.3) <09516D4E-32D1-351E-A87B-ED01CF207841> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a604000 -     0x7fff2a606fff  libsystem_secinit.dylib (87.60.1) <6D067E47-DAD8-3AC6-A844-B488E123EE1C> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a607000 -     0x7fff2a609fff  libremovefile.dylib (49.100.1) <D054969A-52AF-338A-9E86-129D388AE873> /usr/lib/system/libremovefile.dylib
    0x7fff2a60a000 -     0x7fff2a60afff  libkeymgr.dylib (31) <0F9DAA9D-7918-3085-AC9F-176A4FD17146> /usr/lib/system/libkeymgr.dylib
    0x7fff2a60b000 -     0x7fff2a612fff  libsystem_dnssd.dylib (1310.100.6) <8D333977-A7F9-381A-A076-07627B239095> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a613000 -     0x7fff2a618fff  libcache.dylib (83) <85906A7C-F5AB-3F28-BA53-B80864D5A469> /usr/lib/system/libcache.dylib
    0x7fff2a619000 -     0x7fff2a61afff  libSystem.B.dylib (1292.100.5) <B67AFC26-364B-34DD-B9E3-32E80ABAF369> /usr/lib/libSystem.B.dylib
    0x7fff2a61b000 -     0x7fff2a61efff  libfakelink.dylib (3) <1723B7B9-53F2-391C-9D40-60F9410AD10B> /usr/lib/libfakelink.dylib
    0x7fff2a61f000 -     0x7fff2a61ffff  com.apple.SoftLinking (1.0 - 1) <B8E2A0ED-D4D7-3592-8181-62485C5B6B6A> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a620000 -     0x7fff2a657fff  libpcap.A.dylib (98.100.3) <9773F8FB-53B9-379A-860A-8DC5D8F9376D> /usr/lib/libpcap.A.dylib
    0x7fff2a658000 -     0x7fff2a748fff  libiconv.2.dylib (59) <C33AC0D2-4C14-3951-8460-5B3B0CEE4EA1> /usr/lib/libiconv.2.dylib
    0x7fff2a749000 -     0x7fff2a75afff  libcmph.dylib (8) <C0C5E24B-C02C-3856-B74F-8012B74FBADE> /usr/lib/libcmph.dylib
    0x7fff2a75b000 -     0x7fff2a7ccfff  libarchive.2.dylib (83.100.2) <D39994EA-680B-3E2E-8D4E-46C5AF97B83B> /usr/lib/libarchive.2.dylib
    0x7fff2a7cd000 -     0x7fff2a834fff  com.apple.SearchKit (1.4.1 - 1.4.1) <4401DA0F-878C-39D0-A091-B3A94AEB3B1B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a835000 -     0x7fff2a836fff  libThaiTokenizer.dylib (3) <5B8B6FE1-BB7E-3AE2-AF68-F2D97A778B86> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a837000 -     0x7fff2a859fff  com.apple.applesauce (1.0 - 16.28) <B2B32CA9-3691-3213-9823-1DC1C9B4C212> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a85a000 -     0x7fff2a871fff  libapple_nghttp2.dylib (1.41) <A8DE39C8-D943-3A90-911E-BA46E1B63991> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a872000 -     0x7fff2a888fff  libSparseBLAS.dylib (1336.100.1) <07A198D2-8593-38DE-9C72-584CE247B9F7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a889000 -     0x7fff2a88afff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <879363CD-819D-3DD2-B437-2A219FA7EEAB> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a88b000 -     0x7fff2a88ffff  libpam.2.dylib (28.40.1) <5BFD8BAC-E82E-3B80-81FB-8FBA87C0220D> /usr/lib/libpam.2.dylib
    0x7fff2a890000 -     0x7fff2a8a8fff  libcompression.dylib (96.100.7) <5403E10A-DD8E-3174-9204-D1EFE887D9F2> /usr/lib/libcompression.dylib
    0x7fff2a8a9000 -     0x7fff2a8aefff  libQuadrature.dylib (7) <6CF83E6B-F3CF-3859-AB49-3CB654A29D23> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a8af000 -     0x7fff2ac4cfff  libLAPACK.dylib (1336.100.1) <DBC525D3-5CB5-3B54-A70E-A7FA846BAD21> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2ac4d000 -     0x7fff2ac9cfff  com.apple.DictionaryServices (1.2 - 341) <8BF5208C-EDD5-3947-BC78-A24EEC3B3549> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2ac9d000 -     0x7fff2acb5fff  liblzma.5.dylib (16) <05827613-B85E-33EB-8280-4B3C7B231750> /usr/lib/liblzma.5.dylib
    0x7fff2acb6000 -     0x7fff2acb7fff  libcoretls_cfhelpers.dylib (169.100.1) <21F034DB-DC33-3430-8D59-DECCDE3D30BC> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2acb8000 -     0x7fff2adb2fff  com.apple.APFS (1677.100.100 - 1677.100.100) <4F8FE3AC-D821-397D-8470-92AD59B65BD6> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2adb3000 -     0x7fff2adc0fff  libxar.1.dylib (452) <53745E27-0D3B-3888-8026-4F9C6E9878AD> /usr/lib/libxar.1.dylib
    0x7fff2adc1000 -     0x7fff2adc4fff  libutil.dylib (58.40.2) <B3A0AA18-9E76-3466-8E30-8A9BE17FB541> /usr/lib/libutil.dylib
    0x7fff2adc5000 -     0x7fff2adedfff  libxslt.1.dylib (17.4) <54FE3CCA-0310-37BB-8E88-2849FD063004> /usr/lib/libxslt.1.dylib
    0x7fff2adee000 -     0x7fff2adf8fff  libChineseTokenizer.dylib (37) <7BB47E97-63B2-3DB2-A396-FDE1C26020CE> /usr/lib/libChineseTokenizer.dylib
    0x7fff2adf9000 -     0x7fff2aeb6fff  libvMisc.dylib (760.100.3) <B1B1D758-CAA9-35B1-AE94-27F29C6DA534> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2aeb7000 -     0x7fff2af4efff  libate.dylib (3.0.6) <D99EEED9-6DE2-334E-9D82-F3779666CFD9> /usr/lib/libate.dylib
    0x7fff2af4f000 -     0x7fff2af56fff  libIOReport.dylib (64.100.1) <DC8345F0-6AC2-3246-9476-BD9DE1DE92C1> /usr/lib/libIOReport.dylib
    0x7fff2af57000 -     0x7fff2af6afff  com.apple.CrashReporterSupport (10.13 - 15053) <D5CA66F1-C7D4-32CB-AAE4-AC9628A0D040> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff2af82000 -     0x7fff2affffff  com.apple.CVNLP (1.0 - 119) <7A99E6AA-EE0F-36F1-A6AD-1F0713E28D58> /System/Library/PrivateFrameworks/CVNLP.framework/Versions/A/CVNLP
    0x7fff2b000000 -     0x7fff2b020fff  com.apple.SharedWebCredentials (928.6 - 928.6) <E36B281C-7F48-34D3-BAD4-EC6E89FFC63C> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/Versions/A/SharedWebCredentials
    0x7fff2b021000 -     0x7fff2b057fff  com.apple.pluginkit.framework (1.0 - 1) <4E6A686A-1801-3925-B21B-DE00D722D86A> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff2b058000 -     0x7fff2b05ffff  libMatch.1.dylib (38) <67D8009E-766B-3BE5-9903-73B9E8F2BC42> /usr/lib/libMatch.1.dylib
    0x7fff2b060000 -     0x7fff2b0ebfff  libCoreStorage.dylib (554) <620413F2-0E6E-352C-B1A9-F844164BF455> /usr/lib/libCoreStorage.dylib
    0x7fff2b0ec000 -     0x7fff2b13ffff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <8295548F-1D50-3A17-B928-74AA503AE614> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b140000 -     0x7fff2b158fff  libexpat.1.dylib (26) <9D03E564-B590-3609-84E0-8A25A232032E> /usr/lib/libexpat.1.dylib
    0x7fff2b159000 -     0x7fff2b162fff  libheimdal-asn1.dylib (597.100.5) <55952DA3-E36D-3A8A-AF90-8B2178105B92> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b163000 -     0x7fff2b177fff  com.apple.IconFoundation (479.4 - 479.4) <6BDA1DBD-308A-3370-ADED-761870B2DE5D> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b178000 -     0x7fff2b1e4fff  com.apple.IconServices (479.4 - 479.4) <CA9CF0D1-F503-389E-B8BB-53AAC81E2168> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b1e5000 -     0x7fff2b2b0fff  com.apple.MediaExperience (1.0 - 1) <0E2E874A-30C6-3D47-82C3-99CF31D15EC1> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b2b1000 -     0x7fff2b2d9fff  com.apple.persistentconnection (1.0 - 1.0) <BC058695-D9EE-3CAD-9BC5-713DA63689FE> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b2da000 -     0x7fff2b2e8fff  com.apple.GraphVisualizer (1.0 - 100.1) <29CE88BB-0E5D-383A-BEF2-CE7CC215DC6F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b2e9000 -     0x7fff2b704fff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <848582AE-FF0E-3B64-B1CB-4B327E3E6287> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b705000 -     0x7fff2b74cfff  com.apple.OTSVG (1.0 - 677.4.0.1) <D302FA52-3069-3250-AF37-691C08051C01> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b74d000 -     0x7fff2b753fff  com.apple.xpc.AppServerSupport (1.0 - 2038.100.46) <B0EDBBD3-91A9-3058-BF26-CB82F4EFBA13> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b754000 -     0x7fff2b766fff  libhvf.dylib (305.4.0.1) <032A133A-268D-38EA-B014-A11D42D2CC10> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b767000 -     0x7fff2b769fff  libspindump.dylib (295.2) <5875280E-FF31-30DD-9B7B-DFA7B4C797AF> /usr/lib/libspindump.dylib
    0x7fff2b76a000 -     0x7fff2b82afff  com.apple.Heimdal (4.0 - 2.0) <1B94FC53-816E-3E95-BD10-785BBFD0D579> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b82b000 -     0x7fff2b845fff  com.apple.login (3.0 - 3.0) <C216FECC-FB09-35C1-8946-9894BE4532EE> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff2b846000 -     0x7fff2b91bfff  com.apple.corebrightness (1.0 - 1) <41F58641-6D9C-3B73-AFC5-73B38B46809D> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
    0x7fff2b9c4000 -     0x7fff2b9c7fff  libodfde.dylib (26) <0AE8F469-CBF9-3D9B-9505-24ABF68C8B26> /usr/lib/libodfde.dylib
    0x7fff2b9c8000 -     0x7fff2ba04fff  com.apple.bom (14.0 - 235) <62B0DA42-3D6E-3F9A-86FD-BDF06883FBB5> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2ba05000 -     0x7fff2ba4efff  com.apple.AppleJPEG (1.0 - 1) <72DD5E25-C626-3998-87A9-5A5C846FB8AC> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2ba4f000 -     0x7fff2bb2efff  libJP2.dylib (2130.4.4) <BA763587-451F-357C-931E-A1882C6D565C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2bb2f000 -     0x7fff2bb32fff  com.apple.WatchdogClient.framework (1.0 - 98.100.3) <EF58CEC6-F1A5-34EE-94BF-5A40479ABC58> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2bb33000 -     0x7fff2bb69fff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <A9739330-F254-36B9-808A-58B07AB2C65F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2bb6a000 -     0x7fff2bd26fff  com.apple.VideoToolbox (1.0 - 2770.23.4.1) <80805BED-A328-359E-9FA9-E1DFE684E1C4> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bd27000 -     0x7fff2bd5afff  libAudioToolboxUtility.dylib (1180.85.3) <1B7D25F8-032E-3590-9875-416A290698EF> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bd5b000 -     0x7fff2bd81fff  libPng.dylib (2130.4.4) <CFE1FFC4-C4EF-3FE5-ADAD-23FC97F8A06F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bd82000 -     0x7fff2bde1fff  libTIFF.dylib (2130.4.4) <73958D11-0F2F-3BEC-9C1E-3B06406CBAF9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bde2000 -     0x7fff2bdfefff  com.apple.IOPresentment (57 - 37) <317D1B9F-F7FB-33CD-ABDD-DD71D25CD665> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bdff000 -     0x7fff2be06fff  com.apple.GPUWrangler (6.2.7 - 6.2.7) <1FA4A4C1-E285-3FC3-A959-01A4E6DC13D2> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2be07000 -     0x7fff2be0afff  libRadiance.dylib (2130.4.4) <1778083C-1D6B-34A1-90D8-D2ADB716D469> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2be0b000 -     0x7fff2be10fff  com.apple.DSExternalDisplay (3.1 - 380) <6013BA00-1E2A-3535-9BBE-E25793A86E02> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2be11000 -     0x7fff2be35fff  libJPEG.dylib (2130.4.4) <B4830E18-9B55-34BA-9B58-4592018BBF4D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2be36000 -     0x7fff2be65fff  com.apple.ATSUI (1.0 - 1) <43EACF77-86B9-34C0-8634-B0AC4BC0963B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2be66000 -     0x7fff2be6afff  libGIF.dylib (2130.4.4) <FE27A9EF-F692-33B6-B22F-E1418CE2C11C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2be6b000 -     0x7fff2be74fff  com.apple.CMCaptureCore (1.0 - 81.28) <85E2941D-092E-3DED-AD98-24E414E46853> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2be75000 -     0x7fff2bebcfff  com.apple.print.framework.PrintCore (16 - 531) <CBE7FAC8-7601-3AFA-BD96-499EE10F05B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2bebd000 -     0x7fff2bf8afff  com.apple.TextureIO (3.10.9 - 3.10.9) <68FDCA0B-FE54-3338-B956-66752EB23276> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2bf8b000 -     0x7fff2bf93fff  com.apple.InternationalSupport (1.0 - 61.1) <D17AF012-E859-362D-9A79-A46E80A60594> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2bf94000 -     0x7fff2c00efff  com.apple.datadetectorscore (8.0 - 674) <EC2498F6-7830-3829-99F1-2854AB4DE6C9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2c00f000 -     0x7fff2c06cfff  com.apple.UserActivity (438 - 438) <7DF335E2-4164-3E06-B47C-9F55E75DF569> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2c06d000 -     0x7fff2cbd4fff  com.apple.MediaToolbox (1.0 - 2770.23.4.1) <1624307F-54AA-3DD5-AE4E-AB68893E32DC> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff2cc3e000 -     0x7fff2d013fff  libswiftCore.dylib (1205.0.24.5) <1C68E34F-4785-3F60-A50B-BBCCD549AE6A> /usr/lib/swift/libswiftCore.dylib
    0x7fff2d014000 -     0x7fff2d07afff  com.apple.imfoundation (10.0 - 1000) <73F4B8F7-8A99-3A67-BAE5-0DD2E0151F15> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
    0x7fff2d07b000 -     0x7fff2d0a3fff  com.apple.locationsupport (2420.16.16 - 2420.16.16) <171CEF65-B8D5-3A5A-848B-2B4D681130AE> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
    0x7fff2d0a4000 -     0x7fff2d0d5fff  libSessionUtility.dylib (76.67) <BFB5CDED-E0B5-3B65-94A9-FC6887D682C6> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2d0d6000 -     0x7fff2d1ecfff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <555CA650-6659-343B-B6CC-EA09790D9601> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2d1ed000 -     0x7fff2d252fff  com.apple.audio.AudioSession (1.0 - 76.67) <B291796D-472D-37E6-A46A-560EF82A3B0E> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2d253000 -     0x7fff2d265fff  libAudioStatistics.dylib (27.64) <925B70EF-B55F-34B1-8B95-5D2A3DAC3777> /usr/lib/libAudioStatistics.dylib
    0x7fff2d266000 -     0x7fff2d275fff  com.apple.speech.synthesis.framework (9.0.60 - 9.0.60) <2425CBCB-3A1E-3157-BF06-F45DA5EB5B95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2d276000 -     0x7fff2d2e2fff  com.apple.ApplicationServices.ATS (377 - 516) <A9ED0DB2-2A30-31FF-9E3A-9278C76D26A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2d2e3000 -     0x7fff2d2fbfff  libresolv.9.dylib (68) <21ECF1FC-DBC3-3FF5-93BD-C758263E89D3> /usr/lib/libresolv.9.dylib
    0x7fff2d2fc000 -     0x7fff2d30ffff  libsasl2.2.dylib (214) <D4FC4776-6AA7-353C-AFFB-0BB52A97872E> /usr/lib/libsasl2.2.dylib
    0x7fff2d310000 -     0x7fff2d31ffff  com.apple.multiverse (1.0 - 109.100.2) <F7866A9C-5B96-30DA-8610-D0638BC8B545> /System/Library/PrivateFrameworks/MultiverseSupport.framework/Versions/A/MultiverseSupport
    0x7fff2d3af000 -     0x7fff2d3c7fff  com.apple.CoreFollowUp-OSX (1.0 - 1) <6ECC4999-1B30-3326-B0F6-D193D7D4ADE1> /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/CoreFollowUp
    0x7fff2d3c8000 -     0x7fff2d42cfff  com.apple.CoreMediaIO (1000.0 - 5325) <FBCE67F0-E927-3B21-92AB-DAF9780F52C5> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff2d42d000 -     0x7fff2d50cfff  libSMC.dylib (20) <FB03912A-ED3C-3C4C-851B-EC500A796A31> /usr/lib/libSMC.dylib
    0x7fff2d50d000 -     0x7fff2d56cfff  libcups.2.dylib (494.1) <3A04B58E-6274-36DE-B23E-4894F95173F4> /usr/lib/libcups.2.dylib
    0x7fff2d56d000 -     0x7fff2d57cfff  com.apple.LangAnalysis (1.7.0 - 254) <B629B9C4-A7DF-37B6-9F5D-4AA6FB298C15> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d57d000 -     0x7fff2d587fff  com.apple.NetAuth (6.2 - 6.2) <B0E2C4BF-0F5F-33F7-9D96-E7E02454873C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d588000 -     0x7fff2d58ffff  com.apple.ColorSyncLegacy (4.13.0 - 1) <A81AC9ED-5F80-39EF-8643-799D9D7F9B02> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d590000 -     0x7fff2d59bfff  com.apple.QD (4.0 - 416) <362D6332-344D-3F5B-91FD-D10E773E1E53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d59c000 -     0x7fff2dbf0fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <812A4673-458D-3EBB-BB9A-99915260271A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2dbf1000 -     0x7fff2dbfcfff  com.apple.perfdata (1.0 - 67.40.1) <6C81F1F9-6351-32D5-A597-F3B5B990C3A8> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2dbfd000 -     0x7fff2dc0bfff  libperfcheck.dylib (41) <3F23F07D-363F-3B96-8482-A81B6BFABD7E> /usr/lib/libperfcheck.dylib
    0x7fff2dc0c000 -     0x7fff2dc1bfff  com.apple.Kerberos (3.0 - 1) <7C266D88-C061-360B-83F1-7B2C1B703E14> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2dc1c000 -     0x7fff2dc6cfff  com.apple.GSS (4.0 - 2.0) <8F0E3F41-656A-3990-8FCD-2D5CFEF94593> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2dc6d000 -     0x7fff2dc7dfff  com.apple.CommonAuth (4.0 - 2.0) <9D93B3EF-FB12-3113-A1AB-B72D13C5B91A> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2dc7e000 -     0x7fff2dca4fff  com.apple.MobileAssets (1.0 - 659.100.14) <421DFF49-8A64-3DC9-8BAD-D4CF9EC0F47E> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff2dca5000 -     0x7fff2dcd1fff  com.apple.CacheDelete (1.0 - 1) <A391B5F8-A220-300F-8DB7-365E3D6452B0> /System/Library/PrivateFrameworks/CacheDelete.framework/Versions/A/CacheDelete
    0x7fff2dcd2000 -     0x7fff2dcf1fff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <21729509-DD77-3F9D-9DE5-1F46313C652F> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff2dcf2000 -     0x7fff2dcfafff  com.apple.CorePhoneNumbers (1.0 - 1) <2A0D52C1-A540-3A79-ADC1-CDB7A0043CD3> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff2dcfb000 -     0x7fff2dd86fff  libTelephonyUtilDynamic.dylib (5359) <868A7A58-4EE3-3E64-B854-BAD4FC4BEB34> /usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff2de4f000 -     0x7fff2de4ffff  liblaunch.dylib (2038.100.46) <B55CC20C-93B4-3E8D-8E45-FC72B35A2AE9> /usr/lib/system/liblaunch.dylib
    0x7fff2e148000 -     0x7fff2e3d1fff  com.apple.NetworkExtension (1.0 - 1) <C6F14EE9-49DD-390E-AACB-DE77E0F776E5> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
    0x7fff2e3d2000 -     0x7fff2e4d3fff  com.apple.ids (10.0 - 1000) <EA68CD13-8E60-319B-A38E-B80C11F76452> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x7fff2e4d4000 -     0x7fff2e62dfff  com.apple.idsfoundation (10.0 - 1000) <D6C5D6D8-57BE-3A92-B2C8-E16F52B30F98> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
    0x7fff2e62e000 -     0x7fff2e778fff  com.apple.Sharing (1614 - 1614) <11D0BA45-C52B-3B97-AEB1-305B5BE30987> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff2e779000 -     0x7fff2e898fff  com.apple.Bluetooth (8.0.4 - 8.0.4d7) <433652FC-7337-3495-95DC-9C9AC33C202D> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2e899000 -     0x7fff2e8adfff  com.apple.AppContainer (4.0 - 509.100.11) <A87BA63D-A689-369C-9482-921DB390DFEE> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff2e8ae000 -     0x7fff2e8b1fff  com.apple.SecCodeWrapper (4.0 - 509.100.11) <D291A946-D512-3A22-9EBD-0417535815A6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff2e8b2000 -     0x7fff2e90bfff  com.apple.ProtectedCloudStorage (1.0 - 1) <B490101C-AC2C-3BA8-8D4D-465785FD9076> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff2e988000 -     0x7fff2e98cfff  libxcselect.dylib (2384) <0B0ACD66-1362-343E-8CA1-7BDF2853BEA8> /usr/lib/libxcselect.dylib
    0x7fff2ea6c000 -     0x7fff2eb61fff  com.apple.combine (1.0 - 252.155) <DC795AB8-9FB1-36A7-9A17-006CB2B2D7A9> /System/Library/Frameworks/Combine.framework/Versions/A/Combine
    0x7fff2eb62000 -     0x7fff30051fff  com.apple.GeoServices (1.0 - 1757.24.10.20.15) <E1E6542B-9908-3C01-AB3E-4A199DB58FDC> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff30052000 -     0x7fff3005dfff  com.apple.DirectoryService.Framework (11.3 - 230.40.1) <7F464251-F7C0-3BDE-836E-2575B32F611D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff3005e000 -     0x7fff30085fff  com.apple.RemoteViewServices (2.0 - 163) <2E80DA97-6F7F-3E57-948C-2D744F9FC81F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff30086000 -     0x7fff30095fff  com.apple.SpeechRecognitionCore (6.1.20 - 6.1.20) <1DE6FC64-FFB0-3C9C-851E-E07AAF9F2B6C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff30096000 -     0x7fff3009dfff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <0B109620-2337-3239-9DC2-E79D17110547> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff3009e000 -     0x7fff300aefff  com.apple.AppleLDAP (11.3 - 54) <C35A51A7-7719-307F-9683-F60C3B6864D3> /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
    0x7fff302cb000 -     0x7fff302cbfff  libsystem_product_info_filter.dylib (8.40.1) <EA0BC9F0-933E-371B-9215-A263E69F6390> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff302e0000 -     0x7fff302e3fff  com.apple.IOPlatformPluginFamily (1.0 - 1) <98369809-C6B1-3905-ADBB-8C21AC6FF0BE> /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/IOPlatformPluginFamily
    0x7fff30343000 -     0x7fff3035afff  libnetworkextension.dylib (1295.100.22) <DC837486-AB9C-3801-A569-F331B0B2A592> /usr/lib/libnetworkextension.dylib
    0x7fff303a1000 -     0x7fff303a2fff  libCTGreenTeaLogger.dylib (8220) <D5D91A39-E93C-3590-9E2C-542A0F6FD376> /usr/lib/libCTGreenTeaLogger.dylib
    0x7fff303a3000 -     0x7fff303a3fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <533CA6C2-D07A-35F6-A711-4A55A4319C52> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff303c9000 -     0x7fff303c9fff  com.apple.CoreServices (1122.29 - 1122.29) <5D48C4C6-5458-3CEA-9770-75944805D505> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff3042a000 -     0x7fff30588fff  com.apple.CoreSpeech (1.0 - 3004.22.2) <28B920FC-8EC5-3B64-8077-206749CAEF5A> /System/Library/PrivateFrameworks/CoreSpeech.framework/Versions/A/CoreSpeech
    0x7fff30593000 -     0x7fff30593fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <D8A3E393-A247-34BC-BE43-E3EA399B491D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff30594000 -     0x7fff305b0fff  com.apple.PrototypeTools (1.0 - 1) <EF11385E-1AB4-3F65-8398-11880E881E79> /System/Library/PrivateFrameworks/PrototypeTools.framework/Versions/A/PrototypeTools
    0x7fff305b4000 -     0x7fff305d3fff  com.apple.AssetCacheServices (118 - 118) <9C27FBF8-7278-3057-B860-C83F2B8798F7> /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServices
    0x7fff305d4000 -     0x7fff305dffff  com.apple.MediaAccessibility (1.0 - 130) <25A2127A-118C-3285-8AC2-7F2D20222A45> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff305e0000 -     0x7fff305fffff  com.apple.networking.AlgosScoreFramework (1.0 - 1) <F81BD13C-550C-362C-8FA2-60FF3C40AA7D> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
    0x7fff30600000 -     0x7fff30604fff  com.apple.AppleSRP (5.0 - 1) <F0CF0176-F068-3465-9A17-BC4167C40A47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff30605000 -     0x7fff30610fff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <ED65AB1A-71F3-3F71-9901-8A3A052E7A7E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff30611000 -     0x7fff30648fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <E685364E-3797-3837-A40A-F350CD05C0ED> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff30649000 -     0x7fff30921fff  com.apple.VN (4.2.6 - 4.2.6) <D0958F9C-0D66-36DE-8D0F-65540CBAEA45> /System/Library/Frameworks/Vision.framework/Versions/A/Vision
    0x7fff30922000 -     0x7fff30a78fff  libswiftFoundation.dylib (25.101) <3C0AFA1F-0598-32A7-92AD-279C12580309> /usr/lib/swift/libswiftFoundation.dylib
    0x7fff30a79000 -     0x7fff30afbfff  com.apple.AddressBook.ContactsFoundation (8.0 - 1151.1) <3F04569A-7D4F-3DC6-B51B-DF3FAEE52386> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
    0x7fff30afc000 -     0x7fff30b3efff  com.apple.contacts.ContactsPersistence (1.0 - 3497.4) <E4A30CE8-95E7-37AC-9FA7-359922C70F35> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
    0x7fff30b3f000 -     0x7fff30c75fff  com.apple.AddressBook.core (1.0 - 2452.5) <527FB5C0-3BA5-3F03-9EFF-31E9CFA3A22F> /System/Library/PrivateFrameworks/AddressBookCore.framework/Versions/A/AddressBookCore
    0x7fff30c76000 -     0x7fff30da8fff  com.apple.contacts (1.0 - 3497.4) <B4578A60-0274-359C-AC46-41B2FAC5B733> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
    0x7fff30da9000 -     0x7fff30db6fff  com.apple.PersonaKit (1.0 - 1) <E2B27A15-C48D-34F3-8513-83C0FAC68F93> /System/Library/PrivateFrameworks/PersonaKit.framework/Versions/A/PersonaKit
    0x7fff30db7000 -     0x7fff30dbbfff  com.apple.communicationsfilter (10.0 - 1000) <2640DB40-6780-3636-A649-78742F0B8AAE> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/Versions/A/CommunicationsFilter
    0x7fff30dbc000 -     0x7fff30dcffff  com.apple.FamilyCircle (1.0 - 113.0.0.7) <966D358D-F83B-3D95-9143-EBFB76863724> /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircle
    0x7fff30dd0000 -     0x7fff30e34fff  com.apple.CoreBluetooth (1.0 - 1) <3C9ED799-AACF-3ECE-B7E6-2933D1D9AA72> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff30e35000 -     0x7fff30e3efff  com.apple.SymptomDiagnosticReporter (1.0 - 79.100.9) <8D82D898-D910-348C-9A6B-7DBB7689EB52> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff30e3f000 -     0x7fff30e51fff  com.apple.PowerLog (1.0 - 1) <91F8FA8C-EFD4-3EE0-A781-57A638F20BAF> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
    0x7fff30e52000 -     0x7fff30e5efff  com.apple.AppleIDAuthSupport (1.0 - 1) <363DCBBA-8373-307E-8A59-9C0E1F130598> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff30e5f000 -     0x7fff30f07fff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <6070D307-B0C0-3BFB-BAAE-4B9E9413BD4C> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff30f08000 -     0x7fff30f3bfff  com.apple.MediaKit (16 - 927.40.2) <6F5F7177-4751-36FC-AB81-4C89DB476C1F> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff30f3c000 -     0x7fff31027fff  com.apple.DiskManagement (14.0 - 1733.100.3) <CCEEE063-F19F-3AED-BF0E-D17D14A7B287> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff31028000 -     0x7fff313e2fff  com.apple.CoreAUC (326.2.0 - 326.2.0) <3FF17942-3260-384C-B744-24D733B7D807> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff313e3000 -     0x7fff313e6fff  com.apple.Mangrove (1.0 - 25) <2566CCF7-C03D-3513-B6E5-3511DE68D727> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff313e7000 -     0x7fff31414fff  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <B11F1F28-57F9-3F0B-AD18-96B56BFFDEDF> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff31415000 -     0x7fff31562fff  com.apple.FileProvider (345 - 345) <7EA23BB3-63A4-3539-8D36-1D0A18D3E824> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff31563000 -     0x7fff31585fff  com.apple.GenerationalStorage (2.0 - 323) <BDAE0946-440B-399D-B5F1-C963FC6F5D38> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff315a2000 -     0x7fff315b8fff  com.apple.CPAnalytics (1.0 - 340.0.180) <3DD3AF2C-E77B-3771-A607-38DDE60722D7> /System/Library/PrivateFrameworks/CPAnalytics.framework/Versions/A/CPAnalytics
    0x7fff318f7000 -     0x7fff319c6fff  com.apple.CoreTelephony (113 - 8220) <4821BEEE-8575-3CBA-86A8-FDAFA6B7B642> /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony
    0x7fff319c7000 -     0x7fff319d4fff  com.apple.AppSandbox (4.0 - 509.100.11) <5AC69A58-FD3B-3564-B741-369A490AEE3D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff319d5000 -     0x7fff319eafff  libswiftDispatch.dylib (4.100.1) <89CE51EF-F141-3C20-85A0-E173B32E41B0> /usr/lib/swift/libswiftDispatch.dylib
    0x7fff319eb000 -     0x7fff31bccfff  com.apple.AVFCore (1.0 - 2010.21) <BAF6D0C8-5073-3D28-87A6-2D0F1E589EB9> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
    0x7fff31bcd000 -     0x7fff31c3cfff  com.apple.FrontBoardServices (703.15 - 703.15) <6658C425-0978-32C1-91F7-9BF87ADB2C16> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
    0x7fff31c3d000 -     0x7fff31c66fff  com.apple.BoardServices (1.0 - 526) <70D0DC32-1C2A-3A06-9344-DA4738C3BC9F> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
    0x7fff31c67000 -     0x7fff31c92fff  com.apple.contacts.vCard (1.0 - 3497.4) <4BD051C3-3B5C-3089-A120-69DD7783EC95> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff31c93000 -     0x7fff31ca0fff  com.apple.GraphicsServices (1.0 - 1.0) <6D652BC3-1B84-3933-8B6D-C86D0D364CEA> /System/Library/PrivateFrameworks/GraphicsServices.framework/Versions/A/GraphicsServices
    0x7fff31ca8000 -     0x7fff31cc3fff  com.apple.ExtensionKit (19.4 - 19.4) <DB297F77-E2A2-3215-BEA3-C966A5634D74> /System/Library/PrivateFrameworks/ExtensionKit.framework/Versions/A/ExtensionKit
    0x7fff31cc4000 -     0x7fff31ccafff  com.apple.ExtensionFoundation (19.4 - 19.4) <7A3B3A08-B975-3FA0-852A-DD04D9C6606C> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/Versions/A/ExtensionFoundation
    0x7fff31ccb000 -     0x7fff31d10fff  com.apple.CryptoTokenKit (1.0 - 1) <7332C808-7B6C-3751-A61A-E4140451E104> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit
    0x7fff31d11000 -     0x7fff31d27fff  com.apple.LocalAuthentication (1.0 - 827.100.19.121.1) <E2C6DC83-9CBA-3758-AA0E-6D1F993EC5DB> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
    0x7fff31d28000 -     0x7fff31d55fff  com.apple.CoreAuthentication.SharedUtils (1.0 - 827.100.19.121.1) <81DFBA3B-E484-325B-829B-818633C69BD2> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
    0x7fff31d56000 -     0x7fff31dc9fff  com.apple.avfoundationcf (2.0 - 428.4.12) <E5474154-1CA5-3819-A836-44A5F8BFAAED> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundationCF
    0x7fff31e19000 -     0x7fff31e58fff  com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <5EF58B38-9EF3-3975-A221-92FAFDBFFBC6> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff31e87000 -     0x7fff31f0afff  com.apple.SAObjects (1.0 - 1) <D9C0794E-C646-394C-BB6F-3845AE691D84> /System/Library/PrivateFrameworks/SAObjects.framework/Versions/A/SAObjects
    0x7fff31f0b000 -     0x7fff31f46fff  com.apple.DebugSymbols (195.1 - 195.1) <3E542F9A-3AD4-3484-A2C3-13EB2782F2D8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff31f47000 -     0x7fff31ffcfff  com.apple.CoreSymbolication (12.5 - 64544.69.1) <D7354FB0-F1C2-36EA-B4CC-EF0A4E5DA03D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff31ffd000 -     0x7fff32006fff  com.apple.CoreTime (284.0.2) <0E051B26-C6F1-3C8C-B12E-E2D848790762> /System/Library/PrivateFrameworks/CoreTime.framework/Versions/A/CoreTime
    0x7fff32007000 -     0x7fff3207bfff  com.apple.Rapport (2.4.0 - 240.14.1) <E388CC39-53AA-37DB-8DA1-56AD3D0A6403> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport
    0x7fff3207c000 -     0x7fff32936fff  com.apple.private.EmbeddedAcousticRecognition (1.0 - 1) <3CBFAFDB-CFB3-3FEC-82E5-30D2B63CEDB2> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/Versions/A/EmbeddedAcousticRecognition
    0x7fff32937000 -     0x7fff32982fff  com.apple.coreduetcontext (1.0 - 1) <2B1800BE-8CDF-31E5-916E-ED3F2BC15646> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext
    0x7fff32983000 -     0x7fff32eeffff  com.apple.Intents (1.0 - 1) <5C4770A6-0E05-38BE-BE5A-8B6496919054> /System/Library/Frameworks/Intents.framework/Versions/A/Intents
    0x7fff32ef0000 -     0x7fff32f53fff  com.apple.framework.Apple80211 (17.0 - 1728) <FF96E38A-5EFC-3C10-9DAB-FC2094C43010> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff32f54000 -     0x7fff330a5fff  com.apple.CoreWiFi (3.0 - 341) <28D87840-2F7D-3821-B8C6-DD71ABB9B4B2> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff330a6000 -     0x7fff330c0fff  com.apple.BackBoardServices (1.0 - 1.0) <6C51D648-E442-35FD-9A64-2457C1945FA2> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
    0x7fff330c1000 -     0x7fff330f8fff  com.apple.LDAPFramework (2.4.28 - 194.5) <8244951D-F6E7-30C1-94C2-3A1AA77EA4FE> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff330f9000 -     0x7fff330fafff  com.apple.TrustEvaluationAgent (2.0 - 35) <D5A6A161-12E3-3569-980B-00312B77DEBF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff330fb000 -     0x7fff33200fff  libcrypto.44.dylib (56.60.2) <D77A4262-0345-3108-BF34-DC8C3B4D21EB> /usr/lib/libcrypto.44.dylib
    0x7fff33201000 -     0x7fff3322efff  libssl.46.dylib (56.60.2) <EC25F6E6-BB4E-369B-99EB-2018A46E51DE> /usr/lib/libssl.46.dylib
    0x7fff3322f000 -     0x7fff332defff  com.apple.DiskImagesFramework (595.100.4 - 595.100.4) <C7D812FD-C61F-3568-84B1-BC3393CFF008> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff332df000 -     0x7fff33315fff  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <61339475-DF82-3345-9481-635F2AD84E62> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff33316000 -     0x7fff33325fff  com.apple.RemoteServiceDiscovery (1.0 - 1.100.7) <4B040FB6-00A4-33D0-96A0-1CB718440053> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff33326000 -     0x7fff3333dfff  com.apple.xpc.RemoteXPC (1.0 - 2038.100.46) <307807AA-C2B8-399B-A154-8FCE0DF927C8> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
    0x7fff3333e000 -     0x7fff33382fff  com.apple.DataDetectorsNaturalLanguage (1.0 - 159.1) <A1C31756-8F89-32EC-A97F-8EAFD5E0B52F> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/Versions/A/DataDetectorsNaturalLanguage
    0x7fff33383000 -     0x7fff33386fff  com.apple.help (1.3.8 - 71) <9387A26F-666C-318C-932C-EBD2DB61ECD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff33387000 -     0x7fff3338efff  com.apple.EFILogin (2.0 - 2) <840004C4-B39B-340F-9471-1D88201FE86F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff3338f000 -     0x7fff3339afff  libcsfde.dylib (554) <6D9A62FC-C121-3FD4-88CE-B4DE2ECEE1AF> /usr/lib/libcsfde.dylib
    0x7fff3339b000 -     0x7fff33401fff  libcurl.4.dylib (121.100.3) <B408469E-9018-3C0E-8EA4-0E53C59D5953> /usr/lib/libcurl.4.dylib
    0x7fff33402000 -     0x7fff33409fff  com.apple.LoginUICore (4.0 - 4.0) <448DDA1A-02D2-3D8A-AD74-52F14D585276> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff3340a000 -     0x7fff3346cfff  com.apple.AppSupport (1.0.0 - 29) <F55E37B9-F780-366C-9F8C-739205E551AF> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
    0x7fff3346d000 -     0x7fff3348ffff  com.apple.AppSSO (1.0 - 1) <C8321276-659C-39A6-9780-C54FE7D5F1B4> /System/Library/PrivateFrameworks/AppSSO.framework/Versions/A/AppSSO
    0x7fff335d4000 -     0x7fff335d4fff  com.apple.ApplicationServices (48 - 50) <327A20C7-E28F-3B65-A510-7F0A42AD38E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff335d5000 -     0x7fff335d7fff  com.apple.InternationalTextSearch (1.0 - 1) <3B7E42E3-6571-316F-B2E8-5D6DB8C2A814> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/Versions/A/InternationalTextSearch
    0x7fff335d8000 -     0x7fff33650fff  com.apple.ClassKit (1.2 - 146.4.43) <DE7F4621-A4C9-3BD1-A290-ECFA1E7B57BB> /System/Library/Frameworks/ClassKit.framework/Versions/A/ClassKit
    0x7fff33651000 -     0x7fff33795fff  com.apple.AppleAccount (1.0 - 1.0) <87AB3A21-1726-3853-A365-77477804F344> /System/Library/PrivateFrameworks/AppleAccount.framework/Versions/A/AppleAccount
    0x7fff33796000 -     0x7fff337d5fff  com.apple.AppleIDSSOAuthentication (1.0 - 1) <8D93DDE9-6EBF-3946-936C-1F2D0CE17F81> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
    0x7fff337d6000 -     0x7fff3382dfff  com.apple.CorePrediction (1.0 - 1) <2023EC13-A62F-3C95-ADE0-5A3F7091CA37> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
    0x7fff338e9000 -     0x7fff338e9fff  libHeimdalProxy.dylib (79) <FFDE97B6-A777-33A7-A335-6A42D94CE670> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff3399c000 -     0x7fff3399cfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <7D1450AF-A3A9-3910-8D78-2FB6975BCF2F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff339c0000 -     0x7fff33a03fff  com.apple.StreamingZip (1.0 - 1) <647496F2-D53D-3762-A42C-AA1B7A40823F> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff33a04000 -     0x7fff33a22fff  com.apple.DuetActivityScheduler (1.0 - 1) <FCB0184A-570C-3389-A527-F33E0EB3018F> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler
    0x7fff33a23000 -     0x7fff33a24fff  libswiftObjectiveC.dylib (3) <A42EC2A3-E59E-3933-845C-B04AAF57F00A> /usr/lib/swift/libswiftObjectiveC.dylib
    0x7fff33a25000 -     0x7fff33a36fff  libswiftos.dylib (1000.100.5) <2005F40F-0E6D-3050-BC4B-367CE5ECE41F> /usr/lib/swift/libswiftos.dylib
    0x7fff33a37000 -     0x7fff33a43fff  com.apple.IntentsFoundation (1.0 - 1) <2743E0B8-83F4-3CDF-B740-8E0E55974E99> /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation
    0x7fff33a44000 -     0x7fff33a49fff  com.apple.PushKit (1.0 - 1) <D6D81DB0-2007-3D76-BFE1-8BD39F47CB03> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
    0x7fff33a4a000 -     0x7fff33a7dfff  com.apple.C2 (1.3 - 573) <4FD0D4B1-4425-370B-B188-FDF00F2EC652> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
    0x7fff33a7e000 -     0x7fff33aaefff  com.apple.QuickLookThumbnailing (1.0 - 135.3) <440211D5-FEA8-3421-9DDD-AD9F9DCB458F> /System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fff33aaf000 -     0x7fff342b0fff  com.apple.vision.EspressoFramework (1.0 - 256.4.4) <D2C8F862-0974-3E0F-9B29-DBDB81398E18> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
    0x7fff342b1000 -     0x7fff342c8fff  com.apple.ANEServices (4.75 - 4.75) <82C50F1A-C5C4-3704-9BD2-4038F5DEBA81> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
    0x7fff342c9000 -     0x7fff3432efff  com.apple.proactive.support.ProactiveSupport (1.0 - 294.6) <EF54D821-B6F8-3FD7-B89B-A84D9B3FD47C> /System/Library/PrivateFrameworks/ProactiveSupport.framework/Versions/A/ProactiveSupport
    0x7fff3432f000 -     0x7fff34339fff  com.apple.corerecents (1.0 - 1) <D071723A-C144-3206-8E4C-2250AFF8E7AF> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
    0x7fff3433a000 -     0x7fff3436bfff  com.apple.iCalendar (7.0 - 833) <AB98E4D2-C1E3-3120-BBFB-8D9C533CE32E> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff3436c000 -     0x7fff343dcfff  com.apple.CalendarFoundation (8.0 - 1178.3.1) <AF4CCE64-1D96-3A8A-9B81-373FF63E454F> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/CalendarFoundation
    0x7fff343dd000 -     0x7fff343dffff  com.apple.CoreDuetDebugLogging (1.0 - 1) <F1C657D5-D63E-3F69-89D2-597E6866E5E5> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff343e0000 -     0x7fff343ecfff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <8264AFA3-56FC-316E-A984-C3DD7082BE9D> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff3447c000 -     0x7fff3452efff  com.apple.UIKitMacHelper (1.0 - 4213.0.400) <C7CC7DC8-3E43-3F43-866D-062BD93DEF9C> /System/Library/PrivateFrameworks/UIKitMacHelper.framework/Versions/A/UIKitMacHelper
    0x7fff3466c000 -     0x7fff3493afff  com.apple.spotlight.index (10.7.0 - 2150.11) <6945F65B-2CC9-3F04-9AD7-D76184A7487E> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex
    0x7fff34953000 -     0x7fff349a3fff  com.apple.ChunkingLibrary (334 - 334) <A96279B0-77A2-32C6-A285-450967272B60> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff34ad9000 -     0x7fff34b28fff  com.apple.CalDAV (8.0 - 795) <05C61CD2-E2ED-3A25-A06E-F85333E65B65> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x7fff34b29000 -     0x7fff34bc6fff  com.apple.CoreSuggestions (1.0 - 1115.514) <D7E304F4-7029-309A-9798-06B49D8E847F> /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/CoreSuggestions
    0x7fff34bc7000 -     0x7fff34d51fff  com.apple.ical.EventKit (3.0 - 1414.3.1) <A8A58082-E91C-3E61-A217-009F6AB50EE7> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
    0x7fff34d52000 -     0x7fff35021fff  com.apple.CalendarPersistence (8.0 - 1071.4.1) <842782E6-8810-3CDD-AA2D-0D9939C1D5DA> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/CalendarPersistence
    0x7fff35022000 -     0x7fff35047fff  com.apple.CalendarAgentLink (8.0 - 250) <705CA76B-E069-3801-980A-1128FF46A4EF> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
    0x7fff35048000 -     0x7fff35052fff  com.apple.RTCReporting (11.80.9 - 11.80.9) <EABEA973-9FD3-3C86-B379-2B89D1D62BD8> /System/Library/PrivateFrameworks/RTCReporting.framework/Versions/A/RTCReporting
    0x7fff351fa000 -     0x7fff351fcfff  com.apple.ConstantClasses (1.0 - 1) <ED586DCA-6751-3590-BA2D-892244534E68> /System/Library/PrivateFrameworks/ConstantClasses.framework/Versions/A/ConstantClasses
    0x7fff35214000 -     0x7fff35229fff  com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <9A3FEC7D-E6D2-3B77-B7D6-5C4235656AB0> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
    0x7fff3527c000 -     0x7fff352e7fff  com.apple.audio.midi.CoreMIDI (2.0 - 88) <CF880F3A-80DB-302F-8E1B-5042CE5AEADA> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x7fff3539b000 -     0x7fff3539efff  com.apple.Cocoa (6.11 - 23) <C3C8CDD0-FEC0-3F61-9EDA-EBB91866624F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff353e8000 -     0x7fff357d1fff  com.apple.AppleMediaServices (1.0 - 1) <632921A9-0E2E-3095-92D6-7E0472263704> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices
    0x7fff35809000 -     0x7fff35c55fff  com.apple.MediaRemote (1.0 - 1) <E1C71D1B-F812-3776-B6B9-A3CB32495BD1> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote
    0x7fff35c56000 -     0x7fff35df1fff  com.apple.AssistantServices (1.0 - 1) <89B63B30-F468-3BDE-AE0C-DA3C77CA0B38> /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/AssistantServices
    0x7fff35df2000 -     0x7fff35e74fff  com.apple.PhotoFoundation (6.0 - 340.0.180) <D6838E31-3BC6-372D-B644-54ADC9DF7302> /System/Library/PrivateFrameworks/PhotoFoundation.framework/Versions/A/PhotoFoundation
    0x7fff36474000 -     0x7fff36708fff  libAWDSupportFramework.dylib (4144) <6C5688FD-B675-3F00-9E70-30A9D946D46B> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
    0x7fff3677c000 -     0x7fff367acfff  libtidy.A.dylib (18.1) <B9E5F8F1-F878-32D7-8F4F-69FBD6AA0204> /usr/lib/libtidy.A.dylib
    0x7fff367ce000 -     0x7fff367e1fff  com.apple.Engram (1.0 - 1) <1AFA2404-D014-3CAF-BB51-03952F7C747B> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
    0x7fff367e2000 -     0x7fff36805fff  com.apple.openscripting (1.7 - 190) <59448CA9-A8DF-3D67-A4B9-3754E340BF5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff36806000 -     0x7fff36809fff  com.apple.securityhi (9.0 - 55008) <9F3617E3-F3E7-36D5-B86B-B888D7B69F8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff3680a000 -     0x7fff3680dfff  com.apple.ink.framework (10.15 - 227) <568F913F-9516-3CD3-A8C8-C3DAA330A86E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff3680e000 -     0x7fff36811fff  com.apple.CommonPanels (1.2.6 - 101) <7EC6F81E-2877-35BF-BEB7-A49CD39A924F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff36812000 -     0x7fff36819fff  com.apple.ImageCapture (1711.4.1 - 1711.4.1) <6A7F17DE-8958-30AC-8C8A-510CA064FF57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff37a6a000 -     0x7fff37b7afff  com.apple.AVFCapture (1.0 - 81.28) <EB775C45-7D8D-3D91-BAC8-C17EA23C8FA8> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
    0x7fff37b7b000 -     0x7fff37c0efff  com.apple.Quagga (47 - 47) <0FD97392-93A1-338E-A70A-F9BE9D587216> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
    0x7fff37c0f000 -     0x7fff37e57fff  com.apple.CMCapture (1.0 - 81.28) <75359539-B126-333A-922C-A1717435D368> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
    0x7fff37e58000 -     0x7fff37ec4fff  com.apple.RenderBox (77 - 77) <F85C5F64-4A5E-3807-BF63-A2951C0C735A> /System/Library/PrivateFrameworks/RenderBox.framework/Versions/A/RenderBox
    0x7fff381f3000 -     0x7fff382a0fff  com.apple.accounts.AccountsDaemon (113 - 113) <61220D17-F59D-362C-8A27-6CE6AE7C782A> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsDaemon
    0x7fff382a1000 -     0x7fff382a3fff  com.apple.OAuth (25 - 25) <E0391A07-C79B-33F0-876D-A4B88B2A3539> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff38853000 -     0x7fff38862fff  com.apple.HID (1.0 - 1) <F09B338B-48D2-3468-8D40-E277490CAAC0> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID
    0x7fff38863000 -     0x7fff3898afff  com.apple.QuickLookUIFramework (5.0 - 928.3) <DA19E340-2F3C-361D-BE5D-FD6FCBF0B7F0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff38d5d000 -     0x7fff38de3fff  com.apple.coredav (1.0.1 - 889) <B6C49A16-224B-36C5-AF67-12507E3922A9> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x7fff38de4000 -     0x7fff38e3afff  com.apple.ExchangeWebServices (8.0 - 814.80.1) <C450B74B-422F-3114-BE08-5BDA1D1E167F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/ExchangeWebServices
    0x7fff38e3b000 -     0x7fff38e7afff  com.apple.MediaServices (1.0 - 1) <64DE2333-2909-3FEB-BFAF-4C1498C668B1> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices
    0x7fff38f0a000 -     0x7fff38f37fff  com.apple.VirtualGarage (1.0 - 1) <B543722A-4640-345D-AC0D-268B95193AC7> /System/Library/PrivateFrameworks/VirtualGarage.framework/Versions/A/VirtualGarage
    0x7fff38f72000 -     0x7fff38f72fff  com.apple.marco (10.0 - 1000) <1DBB5C5C-0543-38D7-903B-2960B5558062> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x7fff39045000 -     0x7fff390b3fff  com.apple.Contacts.ContactsUICore (1.0 - 3419.1) <40D4F8B7-86CE-36B5-840C-7DC38A342689> /System/Library/PrivateFrameworks/ContactsUICore.framework/Versions/A/ContactsUICore
    0x7fff39158000 -     0x7fff39190fff  com.apple.contacts.ContactsAutocomplete (1.0 - 1152.3) <65EAC510-8267-3801-915D-D6C324C0FD4F> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/ContactsAutocomplete
    0x7fff39191000 -     0x7fff3919dfff  com.apple.KerberosHelper (4.0 - 1.0) <6D40F5D2-913C-3054-B114-22876770D6BA> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0x7fff3919e000 -     0x7fff391e1fff  com.apple.ResponseKit (1.0 - 165.2) <540961E4-3D2F-35A9-9D9F-0D7653E3F469> /System/Library/PrivateFrameworks/ResponseKit.framework/Versions/A/ResponseKit
    0x7fff391e2000 -     0x7fff39201fff  com.apple.proactive.support.ProactiveEventTracker (1.0 - 294.6) <3A888709-D525-3BAB-85B9-BC0F7195BF6B> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/Versions/A/ProactiveEventTracker
    0x7fff39631000 -     0x7fff39631fff  com.apple.PhoneNumbers (1.0 - 1) <E6731ACC-06C1-3BDC-A669-5686158A6638> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x7fff39632000 -     0x7fff39639fff  com.apple.URLFormatting (146 - 146.20) <5CB2A22F-AD90-3730-A330-F112D1B43D04> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
    0x7fff3963a000 -     0x7fff39648fff  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <F58851EF-13F5-3264-9F1B-21CF2BF369A2> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
    0x7fff39649000 -     0x7fff39660fff  libAccessibility.dylib (2885.29) <91E86CB4-AD1B-3363-AEF4-4D19F6191E51> /usr/lib/libAccessibility.dylib
    0x7fff3be18000 -     0x7fff3be82fff  com.apple.ShazamKit (1.0.0 - 92) <F61B20BE-C265-313B-921A-242FE18400DC> /System/Library/PrivateFrameworks/ShazamKit.framework/Versions/A/ShazamKit
    0x7fff3c02b000 -     0x7fff3c04dfff  com.apple.quicklook.QuickLookSupport (1.0 - 135.3) <7DDF741D-4B1B-3079-884C-604F6D59FEF1> /System/Library/PrivateFrameworks/QuickLookSupport.framework/Versions/A/QuickLookSupport
    0x7fff3c04e000 -     0x7fff3c129fff  com.apple.AirPlaySync (1.0 - 2770.23.4.1) <766839C5-76EC-353E-A32C-F921300E1183> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
    0x7fff3c12e000 -     0x7fff3c1effff  com.apple.siri.parsec.CoreParsec (1.0 - 386.4.37) <B29E7804-93D1-3C41-9329-2DB7762F64CE> /System/Library/PrivateFrameworks/CoreParsec.framework/Versions/A/CoreParsec
    0x7fff3c1f0000 -     0x7fff3c2abfff  com.apple.TelephonyUtilities (1.0 - 1.0) <46CE6C7D-A9A2-3799-AE1B-42A7D074950F> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/Versions/A/TelephonyUtilities
    0x7fff3c2ac000 -     0x7fff3c2f9fff  com.apple.DeviceManagement (1.0 - 41) <07E06692-79C5-3EB4-847B-48805DE088FD> /System/Library/PrivateFrameworks/DeviceManagement.framework/Versions/A/DeviceManagement
    0x7fff3c2fa000 -     0x7fff3c304fff  libswiftCoreGraphics.dylib (2) <F4D66FA3-BEB0-3626-AC2C-E243AA03C537> /usr/lib/swift/libswiftCoreGraphics.dylib
    0x7fff3c305000 -     0x7fff3c30efff  libswiftDarwin.dylib (1205.0.24.8) <160CDDF6-CDC8-39EC-91DB-CA7DB6EE644A> /usr/lib/swift/libswiftDarwin.dylib
    0x7fff3c35b000 -     0x7fff3c3a9fff  com.apple.Safari.SafeBrowsing (16611 - 16611.1.14.1.2) <60DFA96E-C6FC-3394-8BE4-9F8CAE616578> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
    0x7fff3cd38000 -     0x7fff3cd3bfff  com.apple.print.framework.Print (15 - 271) <ED50FB44-DA44-3D16-807A-63766F3BD2CB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3cd3c000 -     0x7fff3cd3ffff  com.apple.Carbon (160 - 164) <B4AC46D4-C29D-3074-896D-B59F9E1A4798> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3cd40000 -     0x7fff3cdddfff  com.apple.coremotion (2420.16.16 - 2420.16.16) <8D1D871B-2309-3936-A0A6-27FA91F6E536> /System/Library/Frameworks/CoreMotion.framework/Versions/A/CoreMotion
    0x7fff3cdde000 -     0x7fff3ce37fff  com.apple.QuickLookIosmac (5.0 - 928.3) <72C00A43-C357-30B7-A86D-B6D3373F975F> /System/Library/PrivateFrameworks/QuickLookIosmac.framework/Versions/A/QuickLookIosmac
    0x7fff3ce38000 -     0x7fff3ce38fff  com.apple.avfoundation (2.0 - 2010.21) <0BC592E8-D9BF-386A-B476-46392370ACED> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff3cfea000 -     0x7fff3cff1fff  com.apple.EmbeddedOSSupportHost (1.0 - 1) <DBAE92AD-70FC-373C-A5B1-4C85F02F7411> /System/Library/PrivateFrameworks/EmbeddedOSSupportHost.framework/Versions/A/EmbeddedOSSupportHost
    0x7fff3cff2000 -     0x7fff3d011fff  com.apple.private.SystemPolicy (1.0 - 1) <A16111DE-C835-3E2B-A704-E7E512C26A0B> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3d1d2000 -     0x7fff3d1d5fff  com.apple.QuickLookNonBaseSystem (1.0 - 1) <D672E7E8-E44B-3CD2-985F-250D1B5A5691> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
    0x7fff3d1d6000 -     0x7fff3d209fff  com.apple.datadetectors (5.0 - 423) <D9BE2C27-5EAA-35C6-9A2B-64E10D049D66> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x7fff3d395000 -     0x7fff3d3affff  com.apple.mediastream (1.0 - 340.0.180) <0958D059-F9F9-3083-8EF7-0F26FA63B6B2> /System/Library/PrivateFrameworks/MediaStream.framework/Versions/A/MediaStream
    0x7fff3d5e8000 -     0x7fff3d5ecfff  com.apple.CoreOptimization (1.0 - 1) <398B2104-A1D9-30FC-A06E-5FC7077FFA93> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
    0x7fff3d5ed000 -     0x7fff3d5f3fff  com.apple.FeatureFlagsSupport (1.0 - 28.60.1) <9FB13E79-BECC-30EF-AAA4-0EB3784AC78A> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/Versions/A/FeatureFlagsSupport
    0x7fff3d5f4000 -     0x7fff3d5f9fff  com.apple.incomingcallfilter (10.0 - 1000) <9053D6B5-C73E-32CE-AFB9-C94B61863CA0> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/Versions/A/IncomingCallFilter
    0x7fff3d5fa000 -     0x7fff3d690fff  com.apple.facetimeservices (10.0 - 1000) <83D9740F-60B5-3385-9717-724F1915D819> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x7fff3d691000 -     0x7fff3d6a8fff  com.apple.CoreSDB (10.0 - 1000) <927B838E-963B-3B58-A53E-08C756A43844> /System/Library/PrivateFrameworks/CoreSDB.framework/Versions/A/CoreSDB
    0x7fff3d6a9000 -     0x7fff3d70dfff  com.apple.proactive.PersonalizationPortrait (1.0 - 1115.514) <EBDFFF34-25A9-3E57-9654-994B0CB2BAB3> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/Versions/A/PersonalizationPortrait
    0x7fff3d70e000 -     0x7fff3d723fff  com.apple.contacts.donation (1.0 - 1079) <CD0E565A-8BAB-341A-BB6B-373B0FA46BEB> /System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/ContactsDonation
    0x7fff3d724000 -     0x7fff3d765fff  com.apple.NaturalLanguage (1.0 - 84) <E282FB25-87F5-3FBD-B8E1-E6880EA3448D> /System/Library/Frameworks/NaturalLanguage.framework/Versions/A/NaturalLanguage
    0x7fff3d796000 -     0x7fff3d7dcfff  com.apple.Catalyst (1.0 - 7.2) <BE47F235-0F39-36BE-B5AB-FCC13ABE4349> /System/Library/PrivateFrameworks/Catalyst.framework/Versions/A/Catalyst
    0x7fff3d7e9000 -     0x7fff3d808fff  com.apple.LocalAuthentication.DaemonUtils (1.0 - 827.100.19.121.1) <F3AAB9C2-1352-35DC-BB76-160790C0FED7> /System/Library/Frameworks/LocalAuthentication.framework/Support/DaemonUtils.framework/Versions/A/DaemonUtils
    0x7fff3d8b0000 -     0x7fff3d91ffff  com.apple.LoggingSupport (1.0 - 1277.100.16) <B9303B59-FC87-3032-AF76-8E723932FC15> /System/Library/PrivateFrameworks/LoggingSupport.framework/Versions/A/LoggingSupport
    0x7fff3d920000 -     0x7fff3d92bfff  com.apple.MallocStackLogging (1.0 - 1) <5B8E08C4-051D-3911-B184-280F171BC69A> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
    0x7fff3d940000 -     0x7fff3d952fff  libmis.dylib (274.100.12) <559ECF87-5902-3909-9BC1-A37576D9E97C> /usr/lib/libmis.dylib
    0x7fff3d953000 -     0x7fff3d956fff  com.apple.gpusw.GPURawCounter (20.3 - 12.0) <D507401D-925B-3357-959A-2ED2FC219C0E> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
    0x7fff3d957000 -     0x7fff3d95ffff  libswiftCoreAudio.dylib (1.1) <4D9672CC-B8A9-3EFF-99E7-535A303F5AA1> /usr/lib/swift/libswiftCoreAudio.dylib
    0x7fff3d960000 -     0x7fff3d960fff  libswiftCoreFoundation.dylib (1.6) <9D26F163-6926-37EF-9677-1769EBAF0782> /usr/lib/swift/libswiftCoreFoundation.dylib
    0x7fff3d961000 -     0x7fff3d96bfff  libswiftIntents.dylib (8) <52502FE0-C782-335E-B730-EC727D6549FB> /usr/lib/swift/libswiftIntents.dylib
    0x7fff3d96c000 -     0x7fff3d96cfff  libswiftXPC.dylib (1.1) <97DADDB3-7EDC-3654-A31D-E096817C20DE> /usr/lib/swift/libswiftXPC.dylib
    0x7fff3d96d000 -     0x7fff3d96dfff  libswiftCoreImage.dylib (1) <1D0C11B1-D756-35D7-BAD3-FB3940A713E1> /usr/lib/swift/libswiftCoreImage.dylib
    0x7fff3d96e000 -     0x7fff3d96efff  libswiftIOKit.dylib (1) <28CC21C6-1075-3D09-A87C-2FEAF98E160F> /usr/lib/swift/libswiftIOKit.dylib
    0x7fff3d96f000 -     0x7fff3dadefff  com.apple.CoreHandwriting (161 - 1.2) <273381AC-CDB9-3274-94E0-6601AF6FECEA> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
    0x7fff3e01c000 -     0x7fff3e02bfff  com.apple.CoreKDL (1.0 - 1) <9AE9ACE9-0A46-3D4A-B83E-A076CC9B35A2> /System/Library/PrivateFrameworks/CoreKDL.framework/Versions/A/CoreKDL
    0x7fff3e0c6000 -     0x7fff3e24cfff  com.apple.SearchFoundation (1.0 - 386.4.37) <7A15F24C-0415-3AAA-ADDD-0762475C7446> /System/Library/PrivateFrameworks/SearchFoundation.framework/Versions/A/SearchFoundation
    0x7fff3e24d000 -     0x7fff3e485fff  com.apple.Photos (1.0 - 340.0.180) <91E47338-FF6B-3B1E-92F9-EACC4D7D9E30> /System/Library/Frameworks/Photos.framework/Versions/A/Photos
    0x7fff3e486000 -     0x7fff3e4e8fff  com.apple.ImageCaptureCore (1711.4.1 - 1711.4.1) <72C25436-E31A-3AF0-88FE-F6A473086756> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff3e53c000 -     0x7fff3e566fff  com.apple.ToneLibrary (1.0 - 1) <7F21F76B-9E3D-34A7-9286-8E4DBE4E2E0E> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff3e56f000 -     0x7fff3e601fff  com.apple.internal.VoiceTrigger (1.0 - 1) <95ABF62B-2BB3-3FC1-BA2E-BA44A49E155D> /System/Library/PrivateFrameworks/VoiceTrigger.framework/Versions/A/VoiceTrigger
    0x7fff3e664000 -     0x7fff3e6d6fff  com.apple.ScreenTimeCore (3.0 - 497.4.2) <5CC9F78F-A5CA-3712-8A20-2E47C2587C21> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/Versions/A/ScreenTimeCore
    0x7fff3e6d7000 -     0x7fff3e6dbfff  com.apple.contextkit.ContextKitExtraction (1.0 - 1) <0B89F306-B176-3087-B0A3-50F2229F0599> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/Versions/A/ContextKitExtraction
    0x7fff3e6dc000 -     0x7fff3e6edfff  com.apple.contextkit.ContextKit (1.0 - 1) <3E35A039-B5C2-3F41-B6CA-244A1AA3B2F3> /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/ContextKit
    0x7fff3e6ee000 -     0x7fff3e75afff  com.apple.Safari.Core (16611 - 16611.1.14.1.2) <E3BB8DF4-8753-34EB-BB8F-BB9B2C645330> /System/Library/PrivateFrameworks/SafariCore.framework/Versions/A/SafariCore
    0x7fff3e8b7000 -     0x7fff3eb92fff  com.apple.iTunesCloud (1.0 - 1) <4A41A0B4-33ED-323C-A92B-0A195823194C> /System/Library/PrivateFrameworks/iTunesCloud.framework/Versions/A/iTunesCloud
    0x7fff3fa2d000 -     0x7fff3fa38fff  com.apple.BridgeXPC (1.0 - 37.100.1) <6FFED141-D3AD-3717-8DAC-8C9CABEBF909> /System/Library/PrivateFrameworks/BridgeXPC.framework/Versions/A/BridgeXPC
    0x7fff3fa39000 -     0x7fff3fa43fff  com.apple.skp.FeedbackLogger (1.0 - 1) <D38C3276-DAFB-3E31-B6BD-953CEAD9665E> /System/Library/PrivateFrameworks/FeedbackLogger.framework/Versions/A/FeedbackLogger
    0x7fff3fefd000 -     0x7fff3ff16fff  libswiftsimd.dylib (1.3) <FE371C49-1B11-3263-A74E-F00211D58539> /usr/lib/swift/libswiftsimd.dylib
    0x7fff3ff65000 -     0x7fff3ff93fff  com.apple.MobileInstallation (2.0 - 1.0) <12338EA6-9DBE-374D-88E2-A51767AEA2E3> /System/Library/PrivateFrameworks/MobileInstallation.framework/Versions/A/MobileInstallation
    0x7fff3ff94000 -     0x7fff3ffa1fff  com.apple.FuseBoardServices (1.0 - 238) <BA5B8B7C-FA6E-3EF4-9864-9D3370FE008A> /System/Library/PrivateFrameworks/FuseBoardServices.framework/Versions/A/FuseBoardServices
    0x7fff3ffa2000 -     0x7fff4001ffff  com.apple.TextInput (1.0 - 1.0) <430FCACC-C465-3FA0-A4F3-F7A9DB091075> /System/Library/PrivateFrameworks/TextInput.framework/Versions/A/TextInput
    0x7fff404c5000 -     0x7fff40580fff  com.apple.AssetsLibraryServices (1.0 - 340.0.180) <872B7562-5B1A-3A5C-B739-50F15D1B9B7F> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/Versions/A/AssetsLibraryServices
    0x7fff40581000 -     0x7fff40c6bfff  com.apple.PhotoLibraryServices (1.0 - 340.0.180) <E8F8C4DA-610B-3540-92C7-D28030C148B8> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/Versions/A/PhotoLibraryServices
    0x7fff40c6c000 -     0x7fff40ca5fff  com.apple.siri.DistributedEvaluation (1.0 - 36.3) <724C9CAF-FAF9-3062-8C56-A72CD466B301> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/Versions/A/DistributedEvaluation
    0x7fff40d4d000 -     0x7fff40d58fff  com.apple.CaptiveNetworkSupport (13.0 - 1) <0E02A0C0-12E2-37C6-9316-5EFFA7E8E146> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNetwork
    0x7fff40eae000 -     0x7fff410f0fff  libmorphun.dylib (100.2) <40B24ED9-164B-3DC6-B4F4-A4A9E5C75F8D> /usr/lib/libmorphun.dylib
    0x7fff410f5000 -     0x7fff4110cfff  com.apple.LookupFramework (1.2 - 284) <ED4C2480-E8B5-389C-98C7-F7AF1FDD4FD2> /System/Library/PrivateFrameworks/Lookup.framework/Versions/A/Lookup
    0x7fff4113d000 -     0x7fff41146fff  com.apple.IOAccelMemoryInfo (1.0 - 1) <7B40A0A9-2110-31E5-B1A1-783C7E617E3C> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff411b1000 -     0x7fff411c7fff  com.apple.IntentsCore (1.0 - 1) <3647DB28-130E-3615-8236-8B78C6EC2B2A> /System/Library/PrivateFrameworks/IntentsCore.framework/Versions/A/IntentsCore
    0x7fff41512000 -     0x7fff415c8fff  com.apple.siri.SiriInstrumentation (1.0 - 1) <60F31A24-5E55-38CC-AB25-4B870213DAA7> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/Versions/A/SiriInstrumentation
    0x7fff415c9000 -     0x7fff415e7fff  libCGInterfaces.dylib (544.4) <AF40BF9E-4EFB-3660-82B1-205651327F0B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff415e8000 -     0x7fff415e9fff  libswiftCoreLocation.dylib (5) <A5EADAB2-E1E6-329C-A808-2F535B62A650> /usr/lib/swift/libswiftCoreLocation.dylib
    0x7fff415ea000 -     0x7fff415f3fff  libswiftCoreMIDI.dylib (2) <A5318AB0-8766-326B-A310-A2F3E80FBEFE> /usr/lib/swift/libswiftCoreMIDI.dylib
    0x7fff41783000 -     0x7fff41788fff  com.apple.idskvstore (10.0 - 1000) <BADBD9C2-77C8-3A80-A730-80C19EB27428> /System/Library/PrivateFrameworks/IDSKVStore.framework/Versions/A/IDSKVStore
    0x7fff41789000 -     0x7fff417abfff  com.apple.LocalAuthenticationUI (1.0 - 827.100.19.121.1) <26D7F652-3799-3CFE-8710-75E67A6F438F> /System/Library/PrivateFrameworks/LocalAuthenticationUI.framework/Versions/A/LocalAuthenticationUI
    0x7fff4198e000 -     0x7fff419eafff  com.apple.AppStoreDaemon (1.0 - 1) <0054BA82-232C-375E-9CF3-BFF85120B72A> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Versions/A/AppStoreDaemon
    0x7fff41bca000 -     0x7fff41cfcfff  com.apple.Navigation (1.0 - 1) <F14EB267-C937-3610-9BD6-EBB6320B781F> /System/Library/PrivateFrameworks/Navigation.framework/Versions/A/Navigation
    0x7fff41cfd000 -     0x7fff41d18fff  com.apple.IAP (1.0 - 1.0.0) <3D8DE1CF-4DA0-3674-9C01-DDEF9F6CC555> /System/Library/PrivateFrameworks/IAP.framework/Versions/A/IAP
    0x7fff41e5a000 -     0x7fff41e5dfff  com.apple.ftclientservices (10.0 - 1000) <76BD29E2-C904-3D08-A6A6-B0AAE9B5A4DE> /System/Library/PrivateFrameworks/FTClientServices.framework/Versions/A/FTClientServices
    0x7fff41e5e000 -     0x7fff41eaefff  com.apple.CharacterPicker (1.0 - 184.3) <531CA00C-0275-36FF-8313-981A43B8C206> /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/CharacterPicker
    0x7fff41eb1000 -     0x7fff41ec3fff  libprequelite.dylib (106.100.2) <5208329D-A39F-3776-9AF1-7A439B70B907> /usr/lib/libprequelite.dylib
    0x7fff41ed8000 -     0x7fff41edcfff  libswiftCoreData.dylib (3) <65A16002-4013-324E-BD13-E4F5D95248CE> /usr/lib/swift/libswiftCoreData.dylib
    0x7fff42bb6000 -     0x7fff42be2fff  com.apple.AttributeGraph (81 - 81) <C9D96BF7-AC62-3FBD-A609-F1FE8038EB43> /System/Library/PrivateFrameworks/AttributeGraph.framework/Versions/A/AttributeGraph
    0x7fff42be3000 -     0x7fff42c1cfff  com.apple.EmojiFoundation (1.0 - 1) <53096F68-A498-3B09-9411-3CA19CFFBF49> /System/Library/PrivateFrameworks/EmojiFoundation.framework/Versions/A/EmojiFoundation
    0x7fff42c68000 -     0x7fff439c8fff  libfaceCore.dylib (4.2.6) <FEE6F3F6-36B0-387B-85E3-0FB2B7D7DB3C> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
    0x7fff439c9000 -     0x7fff43adcfff  com.apple.TextRecognition (1.0 - 157) <86C66901-2A93-3BDA-AD9F-BFDC818D4784> /System/Library/PrivateFrameworks/TextRecognition.framework/Versions/A/TextRecognition
    0x7fff43add000 -     0x7fff43af5fff  com.apple.Futhark (1.0 - 1) <52BFA6A1-1657-38B5-9896-F68D729A954D> /System/Library/PrivateFrameworks/Futhark.framework/Versions/A/Futhark
    0x7fff43af6000 -     0x7fff43d60fff  com.apple.DifferentialPrivacy (1.0 - 1) <F404FDFE-0088-308B-B728-D939A4DDD0D8> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/Versions/A/DifferentialPrivacy
    0x7fff43d61000 -     0x7fff43d7afff  com.apple.SafariFoundation (16611 - 16611.1.14.1.2) <AA5CD271-2F9A-3058-82CC-38CB1395F53F> /System/Library/PrivateFrameworks/SafariFoundation.framework/Versions/A/SafariFoundation
    0x7fff43d82000 -     0x7fff43ff5fff  com.apple.RawCamera.bundle (9.10.0 - 1440) <558E06FC-A3C5-3275-9FAD-80C9789C2BBB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff4412d000 -     0x7fff44162fff  com.apple.MobileBluetooth (1.0 - 1.0) <FA7AF830-37FA-35E9-9BFB-7826F003305B> /System/Library/PrivateFrameworks/MobileBluetooth.framework/Versions/A/MobileBluetooth
    0x7fff44163000 -     0x7fff44166fff  com.apple.ContactsUI.ContactsUIMacHelper (1.0 - 2452.5) <68C1BFC9-2A2E-3DCA-8083-4A1FBA9BC699> /System/Library/PrivateFrameworks/ContactsUIMacHelper.framework/Versions/A/ContactsUIMacHelper
    0x7fff44855000 -     0x7fff44858fff  com.apple.biome.BiomeFoundation (1.0 - 28.11) <40DBC459-9B66-3D33-9755-A1A0A27F4067> /System/Library/PrivateFrameworks/BiomeFoundation.framework/Versions/A/BiomeFoundation
    0x7fff44859000 -     0x7fff4485dfff  com.apple.DAAPKit (1.0 - 1) <A2945FE9-4107-32E4-8202-5E0073FE998D> /System/Library/PrivateFrameworks/DAAPKit.framework/Versions/A/DAAPKit
    0x7fff44914000 -     0x7fff44985fff  com.apple.FrontBoard (703.15 - 703.15) <450B9509-8B7C-3066-BAF3-55D21C9CE50B> /System/iOSSupport/System/Library/PrivateFrameworks/FrontBoard.framework/Versions/A/FrontBoard
    0x7fff44986000 -     0x7fff44a47fff  com.apple.imsharedutilities (10.0 - 1000) <CF3EBC37-624C-33EB-9A5C-61864CC3D318> /System/iOSSupport/System/Library/PrivateFrameworks/IMSharedUtilities.framework/Versions/A/IMSharedUtilities
    0x7fff44a48000 -     0x7fff45d9cfff  com.apple.UIKitCore (1.0 - 4213.0.400) <95253CCE-F657-351E-A6AF-8DA4141FA55F> /System/iOSSupport/System/Library/PrivateFrameworks/UIKitCore.framework/Versions/A/UIKitCore
    0x7fff45d9d000 -     0x7fff45f44fff  com.apple.MediaPlayer (1.0 - 1.0) <D186EE96-D093-3BC4-BBED-3A5AB50B6C52> /System/iOSSupport/System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer
    0x7fff45f45000 -     0x7fff45ff1fff  com.apple.MMCS (1.3 - 573) <B50E39A8-D337-39BD-A0DA-BF10B0D9BCBB> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fff45ff2000 -     0x7fff4605efff  com.apple.acg.InertiaCam (1.0 - 1) <CADE306A-FDE0-313B-9F7F-BC86317EFC30> /System/Library/PrivateFrameworks/InertiaCam.framework/Versions/A/InertiaCam
    0x7fff460a7000 -     0x7fff46199fff  com.apple.ConfigurationEngineModel (1.0 - 41) <1952EF1B-CF3B-3B72-A661-CF37BAAE8059> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/Versions/A/ConfigurationEngineModel
    0x7fff461d2000 -     0x7fff461d7fff  libswiftMetal.dylib (1.3.1) <EC6C4592-E077-3FD6-A42A-81F2D7CC6DC3> /usr/lib/swift/libswiftMetal.dylib
    0x7fff461d8000 -     0x7fff461ddfff  libswiftCompression.dylib (1) <43602493-6036-32FE-92E1-C45BF376F763> /usr/lib/swift/libswiftCompression.dylib
    0x7fff461de000 -     0x7fff461e9fff  libswiftCloudKit.dylib (980) <D3B62C5E-E212-3915-A8EE-331142B1B126> /usr/lib/swift/libswiftCloudKit.dylib
    0x7fff461f2000 -     0x7fff4634afff  com.apple.SoundAnalysis (1.0 - 1) <A1FC48AA-5747-3497-96A8-4051BFF70253> /System/Library/Frameworks/SoundAnalysis.framework/Versions/A/SoundAnalysis
    0x7fff466f1000 -     0x7fff4670ffff  com.apple.ftawd (8.0 - 900) <B1467238-B22D-3A8D-B122-D14E26947E72> /System/Library/PrivateFrameworks/FTAWD.framework/Versions/A/FTAWD
    0x7fff46978000 -     0x7fff469b8fff  com.apple.biome.BiomeStreams (1.0 - 28.11) <F89502F3-B2C7-32E1-A335-4A8A56BC3016> /System/Library/PrivateFrameworks/BiomeStreams.framework/Versions/A/BiomeStreams
    0x7fff469b9000 -     0x7fff469c9fff  com.apple.framework.ctcategories (1.0 - 5.26) <E60428C3-17CE-3C40-BEF7-176C2DBD8483> /System/Library/PrivateFrameworks/Categories.framework/Versions/A/Categories
    0x7fff474e1000 -     0x7fff4750dfff  com.apple.UsageTracking (3.0 - 145) <9452BD29-E68F-3375-8918-D84DF2DA574F> /System/Library/PrivateFrameworks/UsageTracking.framework/Versions/A/UsageTracking
    0x7fff4750e000 -     0x7fff4766cfff  com.apple.Translation (1.0 - 128.8) <51FE3317-059E-36D4-8852-6DBD76B5E54A> /System/Library/PrivateFrameworks/Translation.framework/Versions/A/Translation
    0x7fff4766d000 -     0x7fff47efffff  com.apple.VectorKit (1.0 - 1721.24.10.20.10) <22ADF7FD-6F33-3834-AD20-3431A1BEB163> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
    0x7fff47f04000 -     0x7fff47f41fff  com.apple.osanalytics.OSAnalytics (1.0 - 1) <9338B55D-BDF3-345E-B29A-3CC4F83A2B82> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
    0x7fff4807e000 -     0x7fff481f3fff  com.apple.CloudPhotoLibrary (1.0 - 340.0.180) <96DCCADE-400A-383D-93FD-302A3796C0F3> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/Versions/A/CloudPhotoLibrary
    0x7fff481f4000 -     0x7fff48200fff  com.apple.DCIMServices (1.0 - 340.0.180) <3919B9BC-53F9-3B3C-8768-BD4B51EDF53A> /System/Library/PrivateFrameworks/DCIMServices.framework/Versions/A/DCIMServices
    0x7fff48229000 -     0x7fff485cbfff  com.apple.SDAPI (1.0 - 1) <266EA9EA-AC0B-3FAB-A963-05372F007F64> /System/Library/PrivateFrameworks/SDAPI.framework/Versions/A/SDAPI
    0x7fff48775000 -     0x7fff48789fff  libswiftAppKit.dylib (103.10) <4622DB93-2A86-33EA-94CA-2A6A31CE12B7> /usr/lib/swift/libswiftAppKit.dylib
    0x7fff4878a000 -     0x7fff4878bfff  libswiftQuartzCore.dylib (1) <68212D04-337A-3F9F-9654-B657A2D8E927> /usr/lib/swift/libswiftQuartzCore.dylib
    0x7fff48a98000 -     0x7fff48a9ffff  com.apple.MobileSystemServices (1.0 - 1) <79A42AE2-1E88-3F67-AA57-7BED57634DE4> /System/Library/PrivateFrameworks/MobileSystemServices.framework/Versions/A/MobileSystemServices
    0x7fff48b3e000 -     0x7fff48ba6fff  com.apple.EmailCore (11.0 - 3654.80.0.2.32) <6DEC006A-0A5B-394B-BEF7-BA43C6E73542> /System/Library/PrivateFrameworks/EmailCore.framework/Versions/A/EmailCore
    0x7fff48e12000 -     0x7fff48e39fff  com.apple.photo.MediaConversionService (6.0 - 340.0.180) <EDAD0B6E-5974-393E-9BE3-25E29152F6D7> /System/Library/PrivateFrameworks/MediaConversionService.framework/Versions/A/MediaConversionService
    0x7fff48eb4000 -     0x7fff49912fff  com.apple.ModelIO (246.2 - 246.2) <33141993-B8D2-36E9-B487-4E7E28AF4A1F> /System/Library/Frameworks/ModelIO.framework/Versions/A/ModelIO
    0x7fff49913000 -     0x7fff49929fff  com.apple.UIKitServices (1.0 - 1) <ED2D748C-5276-3796-B985-6372F74BD73C> /System/Library/PrivateFrameworks/UIKitServices.framework/Versions/A/UIKitServices
    0x7fff49ab3000 -     0x7fff49cb4fff  com.apple.photo.NeutrinoCore (1.0 - 340.0.180) <0A89254F-6A1A-3896-8180-7D49A62C1D66> /System/Library/PrivateFrameworks/NeutrinoCore.framework/Versions/A/NeutrinoCore
    0x7fff49da2000 -     0x7fff49e13fff  com.apple.EmailFoundation (11.0 - 3654.80.0.2.32) <3FB8FD4C-5D83-3612-AE81-A5392D8566B1> /System/Library/PrivateFrameworks/EmailFoundation.framework/Versions/A/EmailFoundation
    0x7fff4a217000 -     0x7fff4a227fff  com.apple.Speech (1.0 - 1) <50F30B01-068A-3056-B010-1AC8876F1445> /System/Library/Frameworks/Speech.framework/Versions/A/Speech
    0x7fff4a2d0000 -     0x7fff4a2e9fff  com.apple.biome.BiomePubSub (1.0 - 28.11) <E92CEE87-EF34-36E9-BDE3-3AEA86C4B60E> /System/Library/PrivateFrameworks/BiomePubSub.framework/Versions/A/BiomePubSub
    0x7fff4a2ea000 -     0x7fff4a2fbfff  com.apple.biome.BiomeStorage (1.0 - 28.11) <3757EA1B-9358-3E8B-81F6-850F21706D5D> /System/Library/PrivateFrameworks/BiomeStorage.framework/Versions/A/BiomeStorage
    0x7fff4a2fc000 -     0x7fff4a3a5fff  com.apple.SpeakerRecognition (1.0 - 3004.22.2) <8964B27B-D194-3CFF-A0A1-A0CD500A01D4> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/Versions/A/SpeakerRecognition
    0x7fff4a3c6000 -     0x7fff4a3c9fff  libswiftCoreML.dylib (1006.100.20) <E9CFCD1B-B422-3F38-BAEF-C4C0E62414D3> /usr/lib/swift/libswiftCoreML.dylib
    0x7fff4aa6e000 -     0x7fff4aadafff  com.apple.PhotosFormats (1.0 - 340.0.180) <181641C0-6235-3231-90AD-A2234F9F97B9> /System/Library/PrivateFrameworks/PhotosFormats.framework/Versions/A/PhotosFormats
    0x7fff4bd9c000 -     0x7fff4bda6fff  com.apple.EmailAddressing (11.0 - 3654.80.0.2.32) <FB2E3DB2-601A-31F4-AD13-D14ACBE586A5> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAddressing
    0x7fff4bda7000 -     0x7fff4be45fff  com.apple.Email (11.0 - 3654.80.0.2.32) <2151AD1D-1F17-39EB-8D32-EAC9EA02FDA5> /System/Library/PrivateFrameworks/Email.framework/Versions/A/Email
    0x7fff4be4a000 -     0x7fff4bf55fff  com.apple.CoreMediaStream (1.0 - 340.0.180) <642E98EE-6B8E-3BB4-B80B-AC542B83103C> /System/Library/PrivateFrameworks/CoreMediaStream.framework/Versions/A/CoreMediaStream
    0x7fff4bf56000 -     0x7fff4bf68fff  libswiftUniformTypeIdentifiers.dylib (636.6) <E97DBD73-32B0-3215-A3B1-7BBB6901002E> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
    0x7fff4bf69000 -     0x7fff4bfd1fff  libswiftAccelerate.dylib (10.40.1) <D9DB3FE9-0F33-3936-A5C4-33AC5C5C81F3> /usr/lib/swift/libswiftAccelerate.dylib
    0x7fff4d78b000 -     0x7fff4d8e1fff  com.apple.photo.PhotoImaging (1.0 - 340.0.180) <95F909CC-2A3F-3B6B-9C0A-AC9BE2E42FE8> /System/Library/PrivateFrameworks/PhotoImaging.framework/Versions/A/PhotoImaging
    0x7fff4d8e2000 -     0x7fff4d8e4fff  com.apple.ParsecSubscriptionServiceSupport (1.0 - 977) <70E5A62E-44B9-35FA-98B7-07A3ED01808A> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/Versions/A/ParsecSubscriptionServiceSupport
    0x7fff4e11c000 -     0x7fff4e166fff  com.apple.PhotosImagingFoundation (6.0 - 340.0.180) <3D8898B5-5F60-345A-B6B1-F67F9C423830> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/Versions/A/PhotosImagingFoundation
    0x7fff4e167000 -     0x7fff4e171fff  com.apple.CloudPhotoServices (1.0 - 340.0.180) <9DFD4C7B-B579-380D-B0D2-2D9017C5AE08> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/CloudPhotoServices
    0x7fff4e172000 -     0x7fff4e1cdfff  com.apple.acg.AutoLoop (1.0 - 1) <73B4D1F3-1AA4-33D9-B0AF-C9DA6462E2C0> /System/Library/PrivateFrameworks/AutoLoop.framework/Versions/A/AutoLoop
    0x7fff4e1ce000 -     0x7fff4e248fff  com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework (1.0 - 364.40.11) <36330D6D-B1C8-31C9-B883-DAEB4B96D0F1> /System/Library/Frameworks/VideoSubscriberAccount.framework/Versions/A/VideoSubscriberAccount
    0x7fff4e249000 -     0x7fff4e47dfff  com.apple.Osprey (1.0 - 1) <78FE2171-08AD-37F9-9B9D-A98FE00E571F> /System/Library/PrivateFrameworks/Osprey.framework/Versions/A/Osprey
    0x7fff4e6e4000 -     0x7fff4e71cfff  libswiftCoreMedia.dylib (1) <D5B0960F-D171-3813-B985-567B3EABAC3F> /usr/lib/swift/libswiftCoreMedia.dylib
    0x7fff4ef8c000 -     0x7fff4ef95fff  com.apple.Reveal (1.0 - 22) <398917EC-765F-3035-A6F8-13CB4F48BDBC> /System/Library/PrivateFrameworks/Reveal.framework/Versions/A/Reveal
    0x7fff4ef96000 -     0x7fff4ef9bfff  com.apple.RevealCore (1.0 - 22) <7C46F064-9A8D-3BBE-B598-648DD279AC7C> /System/Library/PrivateFrameworks/RevealCore.framework/Versions/A/RevealCore
    0x7fff4efe7000 -     0x7fff4f011fff  com.apple.MailSupport (11.0 - 3654.80.0.2.32) <E85B5710-E465-31C5-8FAC-3EAB69B91AEB> /System/Library/PrivateFrameworks/MailSupport.framework/Versions/A/MailSupport
    0x7fff4f10e000 -     0x7fff4f12ffff  com.apple.framework.PrintKit (2.0 - 253.2) <8F01F235-04DB-3A6F-84D6-262F7965D6B3> /System/Library/PrivateFrameworks/PrintKit.framework/Versions/A/PrintKit
    0x7fff4f1cf000 -     0x7fff4f1d0fff  libswiftOSLog.dylib (1) <60168D4A-9381-360B-B338-EF6379AE62D1> /usr/lib/swift/libswiftOSLog.dylib
    0x7fff4f280000 -     0x7fff4f286fff  libswiftAVFoundation.dylib (2010.21) <DCDA4E0B-EFCF-3B93-8995-11B52FFA0295> /usr/lib/swift/libswiftAVFoundation.dylib
    0x7fff4f300000 -     0x7fff4f32dfff  com.apple.AppSupportUI (1.0 - 37) <28CB8E37-A8EB-3666-BAD0-044D21A3CEB0> /System/iOSSupport/System/Library/PrivateFrameworks/AppSupportUI.framework/Versions/A/AppSupportUI
    0x7fff4f32e000 -     0x7fff4f490fff  com.apple.WebKitLegacy (16611 - 16611.1.14.1.2) <BAE78958-75BC-3C65-80AB-000ED5355BBE> /System/iOSSupport/System/Library/PrivateFrameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff4f4a1000 -     0x7fff5172ffff  com.apple.WebCore (16611 - 16611.1.14.1.2) <5E05CC18-948A-3138-BB86-65EA01541910> /System/iOSSupport/System/Library/PrivateFrameworks/WebCore.framework/Versions/A/WebCore
    0x7fff51730000 -     0x7fff51912fff  com.apple.ContactsUI (1.0.0 - 1109.5) <FB527922-1121-341B-9717-4DE6056E0514> /System/iOSSupport/System/Library/Frameworks/ContactsUI.framework/Versions/A/ContactsUI
    0x7fff51a4a000 -     0x7fff51a9bfff  com.apple.PhysicsKit (1.0 - 1) <CDA5B347-7A42-3147-8D64-C0175A5C45E2> /System/Library/PrivateFrameworks/PhysicsKit.framework/Versions/A/PhysicsKit
    0x7fff51ae5000 -     0x7fff51b83fff  com.apple.Symbolication (12.5 - 64544.61.1) <9283B429-0DAD-3E07-8CB8-716D6BB8F886> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff51bba000 -     0x7fff51c1bfff  com.apple.AXRuntime (1.0.0 - 1) <1A860520-26F3-384C-8069-2E102CA0E757> /System/Library/PrivateFrameworks/AXRuntime.framework/Versions/A/AXRuntime
    0x7fff51d0f000 -     0x7fff51d2dfff  com.apple.CoreMaterial (1.0 - 1) <C3D7F8E1-C7AE-3EA0-B18B-EE3A5E3A6415> /System/Library/PrivateFrameworks/CoreMaterial.framework/Versions/A/CoreMaterial
    0x7fff51e8f000 -     0x7fff53075fff  com.apple.JavaScriptCore (16611 - 16611.1.14.1.2) <DC0DC46E-ED1E-3C62-BE2B-587643BE1D1F> /System/iOSSupport/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff53315000 -     0x7fff535befff  com.apple.MapKit (1.0 - 1.0) <4EB85B17-4B16-30F2-BA18-E7CA53D38F4A> /System/iOSSupport/System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
    0x7fff535bf000 -     0x7fff5379ffff  com.apple.imcore (10.0 - 1000) <35BB355D-313E-37CC-992E-9A97D0B31E8F> /System/iOSSupport/System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x7fff537a0000 -     0x7fff537e0fff  com.apple.OnBoardingKit (1.0 - 1) <EB44898D-1148-3315-A198-6B2F5F5809E1> /System/iOSSupport/System/Library/PrivateFrameworks/OnBoardingKit.framework/Versions/A/OnBoardingKit
    0x7fff537fa000 -     0x7fff53806fff  com.apple.PersonaUI (1.0 - 1) <8A7E11A5-4151-357D-9326-85602B583CF3> /System/iOSSupport/System/Library/PrivateFrameworks/PersonaUI.framework/Versions/A/PersonaUI
    0x7fff53807000 -     0x7fff53eeafff  com.apple.WebKit (16611 - 16611.1.14.1.2) <4F9BD279-7684-369F-84F5-3BBF7D9B046E> /System/iOSSupport/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff53eeb000 -     0x7fff53eeffff  com.apple.managedconfiguration (1.0 - 1.0) <3246E78E-41B1-3C85-82C6-75C15FA26BDE> /System/iOSSupport/System/Library/PrivateFrameworks/ManagedConfiguration.framework/Versions/A/ManagedConfiguration
    0x7fff53ef0000 -     0x7fff53f18fff  com.apple.ShareSheet (1614 - 1614) <45D482A5-B947-3B69-98A6-865EEAF07E96> /System/Library/PrivateFrameworks/ShareSheet.framework/Versions/A/ShareSheet
    0x7fff5401f000 -     0x7fff5402bfff  com.apple.OSLog (1.0 - 1277.100.16) <78FF23B1-5D50-36CF-909B-B51FC868E21D> /System/Library/Frameworks/OSLog.framework/Versions/A/OSLog
    0x7fff5416c000 -     0x7fff5416cfff  com.apple.quicklook.QuickLookUIIosmac (1.0 - 1) <E874B052-17C2-3776-BAAF-ECEDDEC5D0E1> /System/Library/PrivateFrameworks/QuickLookUIIosmac.framework/Versions/A/QuickLookUIIosmac
    0x7fff541d9000 -     0x7fff54301fff  com.apple.InternalSwiftProtobuf (1.0 - 1.14.0) <80859DA1-B217-3876-A39D-B5EBFCAAFECA> /System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/Versions/A/InternalSwiftProtobuf
    0x7fff54444000 -     0x7fff54447fff  com.apple.StoreKitUIMac (1.0 - 1) <270EB71C-2526-3144-A8F7-4726723C8CC6> /System/Library/PrivateFrameworks/StoreKitUIMac.framework/Versions/A/StoreKitUIMac
    0x7fff54448000 -     0x7fff54448fff  com.apple.MobileCoreServices (1122.29 - 1122.29) <687B2126-236D-35F1-9178-F2196689FAF0> /System/iOSSupport/System/Library/Frameworks/MobileCoreServices.framework/Versions/A/MobileCoreServices
    0x7fff54449000 -     0x7fff5444ffff  com.apple.AuthKitUIMacHelper (1.0 - 1) <730C8739-3776-34D1-B11F-6B6D22F74683> /System/iOSSupport/System/Library/PrivateFrameworks/AuthKitUIMacHelper.framework/Versions/A/AuthKitUIMacHelper
    0x7fff54450000 -     0x7fff5446cfff  com.apple.DocumentManagerCore (1.0 - 200.5.2) <BB3C6DB3-9C45-33D7-8BE4-9FAABE0396B5> /System/iOSSupport/System/Library/PrivateFrameworks/DocumentManagerCore.framework/Versions/A/DocumentManagerCore
    0x7fff5446d000 -     0x7fff54590fff  com.apple.AnnotationKit (1.0 - 383.6) <4D3CCE09-C588-3CB0-B005-79D977CE15F7> /System/iOSSupport/System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
    0x7fff54591000 -     0x7fff545d3fff  com.apple.AuthKitUI (1.0 - 1) <B62AED8D-125C-36ED-BF8C-1A9EAA2A19C5> /System/iOSSupport/System/Library/PrivateFrameworks/AuthKitUI.framework/Versions/A/AuthKitUI
    0x7fff545d4000 -     0x7fff545edfff  com.apple.IntlPreferences (1.0 - 332.3) <243B5658-EA22-326B-A7FB-FABED1F3065D> /System/iOSSupport/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
    0x7fff545fe000 -     0x7fff54633fff  com.apple.SafariServices (14.1 - 604.1) <53934BEF-0B49-3749-84AF-E9602AFDDBEC> /System/iOSSupport/System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff54634000 -     0x7fff54851fff  com.apple.Safari.Shared (16611 - 16611.1.14.1.2) <769353EA-2B64-3909-9059-E65139EC3F5F> /System/iOSSupport/System/Library/PrivateFrameworks/SafariShared.framework/Versions/A/SafariShared
    0x7fff54c75000 -     0x7fff54c7cfff  com.apple.quicklook (1.0 - 1) <1B086F95-BD06-323B-BC71-0A3982A9B90F> /System/iOSSupport/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff54c7d000 -     0x7fff54d34fff  com.apple.Safari.Shared.UI (16611 - 16611.1.14.1.2) <25391A35-5098-3A13-9FF4-E004FC61144F> /System/iOSSupport/System/Library/PrivateFrameworks/SafariSharedUI.framework/Versions/A/SafariSharedUI
    0x7fff54d35000 -     0x7fff54d5ffff  com.apple.MarkupUI (1.0 - 383.6) <A2506AAC-292C-330D-BF2F-DEB18745491F> /System/iOSSupport/System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
    0x7fff54d60000 -     0x7fff54e1ffff  com.apple.CorePDF (5.0 - 529) <4D7406BD-0FA3-383D-8F57-96A9F197756E> /System/iOSSupport/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff54e20000 -     0x7fff54e5afff  com.apple.DocumentManager (1.0 - 200.5.2) <FE880D25-5D90-3191-BCD5-0907984CE695> /System/iOSSupport/System/Library/PrivateFrameworks/DocumentManager.framework/Versions/A/DocumentManager
    0x7fff54e8e000 -     0x7fff54e8efff  com.apple.UIKit (1.0 - 4213.0.400) <18CA44CE-8988-3E0A-BC1A-FBB88B1A7B74> /System/iOSSupport/System/Library/Frameworks/UIKit.framework/Versions/A/UIKit
    0x7fff54e8f000 -     0x7fff54f47fff  com.apple.PDFKit (1.0 - 950.30.3) <E76BB197-75C6-3E36-858F-CF22F440D222> /System/iOSSupport/System/Library/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff54f48000 -     0x7fff54f60fff  com.apple.MetalKit (147.1 - 147.1) <86EFB358-24A9-3C79-AF67-1F818B9F275B> /System/iOSSupport/System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
    0x7fff54f61000 -     0x7fff54fb2fff  com.apple.messageui (1.0.0 - 3654.80.0.2.32) <8A4A4069-639E-3C15-AA08-6C86722C4ED2> /System/iOSSupport/System/Library/Frameworks/MessageUI.framework/Versions/A/MessageUI
    0x7fff54fb3000 -     0x7fff54fc2fff  com.apple.AuthenticationServices (12.0 - 1.0) <3F24067E-5BDA-3035-9BEE-C6F3E87A7347> /System/iOSSupport/System/Library/Frameworks/AuthenticationServices.framework/Versions/A/AuthenticationServices
    0x7fff54fd6000 -     0x7fff54fe8fff  com.apple.mobileicons.framework (1.0 - 372.0) <6F26207A-4AA6-305B-BBD6-C4D9DB00E06A> /System/Library/PrivateFrameworks/MobileIcons.framework/Versions/A/MobileIcons
    0x7fff54fe9000 -     0x7fff5513efff  com.apple.IMDPersistence (10.0 - 1000) <7A80D6D5-FD05-3240-9934-CA1FC5ABCA05> /System/iOSSupport/System/Library/PrivateFrameworks/IMDPersistence.framework/Versions/A/IMDPersistence
    0x7fff5513f000 -     0x7fff55152fff  com.apple.WebUI (1.0 - 1.0) <6CB6A1CF-07D1-3592-B7FF-D55094F5DDC6> /System/iOSSupport/System/Library/PrivateFrameworks/WebUI.framework/Versions/A/WebUI
    0x7fff55153000 -     0x7fff5540ffff  com.apple.PencilKit (1.0 - 1) <BCD1534A-E965-3672-AED2-D6529D3A55B3> /System/iOSSupport/System/Library/Frameworks/PencilKit.framework/Versions/A/PencilKit
    0x7fff55410000 -     0x7fff554bffff  com.apple.LinkPresentation (146 - 146.20) <BA9F6321-ADCF-30BE-A132-1AA1354757FA> /System/iOSSupport/System/Library/Frameworks/LinkPresentation.framework/Versions/A/LinkPresentation
    0x7fff5642e000 -     0x7fff5701dfff  com.apple.SwiftUI (130 - 130) <93E53D1A-FD50-32B9-AB90-DBD8F9340D57> /System/iOSSupport/System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI
    0x7fff5701e000 -     0x7fff5705dfff  libswiftUIKit.dylib (4202) <D2552CDF-3D8A-36C5-9450-D548AAB79B99> /System/iOSSupport/usr/lib/swift/libswiftUIKit.dylib
    0x7fff5865c000 -     0x7fff58691fff  com.apple.PhotosPlayer (1.0 - 340.0.180) <253319D2-7311-3E95-8192-85C2424A91BF> /System/iOSSupport/System/Library/PrivateFrameworks/PhotosPlayer.framework/Versions/A/PhotosPlayer
    0x7fff58692000 -     0x7fff58699fff  com.apple.MessageUIMacHelper (1.0 - 3654.80.0.2.32) <14D149B9-6685-34AE-B384-6D3D130A3E5B> /System/Library/PrivateFrameworks/MessageUIMacHelper.framework/Versions/A/MessageUIMacHelper
    0x7fff5baaa000 -     0x7fff5bad1fff  com.apple.StoreKit (1.0 - 1) <289B2D80-84C3-30AB-8817-728C73C67E92> /System/iOSSupport/System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
    0x7fff5e184000 -     0x7fff5e60ffff  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (16.2.14 - 16.0.2) <7F0667AC-0A3F-3A4A-B960-9ECA55384BC6> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
    0x7fff69b2f000 -     0x7fff69b33fff  libmetal_timestamp.dylib (31001.183) <F2369917-AAEE-3ECF-AD0A-E0883991D3FE> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
    0x7fff6bf7a000 -     0x7fff6bf80fff  libCoreFSCache.dylib (177.25) <D1AE856D-A03C-3898-BFD9-E6DC9E0F82E1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6bf81000 -     0x7fff6bf85fff  libCoreVMClient.dylib (177.25) <386E6636-6F72-39CE-912E-C64AFDA87906> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6bf86000 -     0x7fff6bf95fff  com.apple.opengl (18.5.6 - 18.5.6) <FAA396D1-5F70-376A-8656-838F8F7DD20F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6bf96000 -     0x7fff6bf98fff  libCVMSPluginSupport.dylib (18.5.6) <71103A68-BB65-361E-92DF-F39D7824AA19> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6bf99000 -     0x7fff6bfa1fff  libGFXShared.dylib (18.5.6) <A094F742-8791-309A-8733-1E6B6CF62AC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6bfa2000 -     0x7fff6bfd5fff  libGLImage.dylib (18.5.6) <DA3C4068-1C95-31FF-90E2-301A98832FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6bfd6000 -     0x7fff6c012fff  libGLU.dylib (18.5.6) <AC07E7B1-9336-3EFA-81B8-22E097F0E063> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6c1a7000 -     0x7fff6c1b1fff  libGL.dylib (18.5.6) <DBFE5B68-30CA-3BF1-B1BB-013F17546874> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6d5f1000 -     0x7fff6d649fff  com.apple.opencl (4.5 - 4.5) <5DB1ADF5-D477-3DF0-9129-1584B958FCF3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff6e173000 -     0x7fff6e38efff  com.apple.AMDMTLBronzeDriver (4.4.15.1 - 4.0.4) <C04DA8C1-5B07-3117-BBDE-8052DB54A8B0> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
    0x7fff6e6fb000 -     0x7fff6e7e2fff  com.apple.audio.AVFAudio (1.0 - 477.82) <BEA80E8D-7588-326B-AE5E-26EB642EC101> /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff6edd5000 -     0x7fff6ede8fff  com.apple.ExternalAccessory (1.0.0 - 1.0) <07D09647-2DFC-34D3-9BFF-4A259E90A793> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
    0x7fff6fd0a000 -     0x7fff6fd0afff  com.apple.AuthenticationServicesCore (1.0 - ???) <693065BA-AF4E-3154-B346-F8EE2D2ABA2B> /System/Library/PrivateFrameworks/AuthenticationServicesCore.framework/Versions/A/AuthenticationServicesCore
    0x7fff6fd4a000 -     0x7fff6fd5cfff  com.apple.CMImaging (1.0 - 81.28) <51B630C4-B99F-3626-8B4C-E6D5418EA170> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging
    0x7fff70b12000 -     0x7fff70b13fff  com.apple.corespeech.CoreSpeechFoundation (1.0 - 1) <192A2E9A-CB38-390D-B254-1E588CF1B34D> /System/Library/PrivateFrameworks/CoreSpeechFoundation.framework/Versions/A/CoreSpeechFoundation
    0x7fff71fc9000 -     0x7fff72738fff  com.apple.PegasusAPI (1.0 - 386.4.37) <494FF396-A603-3929-A47C-48FEC1633507> /System/Library/PrivateFrameworks/PegasusAPI.framework/Versions/A/PegasusAPI
    0x7fff73d3f000 -     0x7fff73d40fff  com.apple.StoreKitUIMac (1.0 - 1) <52499AAF-C5CA-35F3-B110-F13ED50AC4A3> /System/Library/PrivateFrameworks/StoreKitMacHelper.framework/Versions/A/StoreKitMacHelper
    0x7fff73f3c000 -     0x7fff73f47fff  com.apple.SymptomAnalytics (1.0 - 1431.100.15.0.1) <A064159B-2E1D-3315-B2D5-B8E443CA2DE4> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/Versions/A/SymptomAnalytics
    0x7fff7415d000 -     0x7fff74175fff  com.apple.SymptomPresentationFeed (1.0 - 1431.100.15.0.1) <DC97784B-F310-3F35-A3F9-C3A4C9EDBF04> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/Versions/A/SymptomPresentationFeed
    0x7fff77bef000 -     0x7fff77bf1fff  libAXSafeCategoryBundle.dylib (2885.29) <C8572304-9E94-3EB8-9631-0499E3C45F84> /usr/lib/libAXSafeCategoryBundle.dylib
    0x7fff77d1a000 -     0x7fff77d21fff  libRosetta.dylib (203.39) <FD015509-DFBD-3C79-9E57-36D27DB78693> /usr/lib/libRosetta.dylib
    0x7fff7850a000 -     0x7fff7850afff  libswiftFileProvider.dylib (345) <A2CF276E-EFA3-3891-ABB4-65F67496CA88> /usr/lib/swift/libswiftFileProvider.dylib
    0x7fff7851f000 -     0x7fff78521fff  libswiftModelIO.dylib (1) <C1A9ADD0-C054-3A14-95AA-1F175FFFD57B> /usr/lib/swift/libswiftModelIO.dylib
    0x7fff78524000 -     0x7fff78524fff  libswiftPhotos.dylib (340.0.180) <9D801133-FAE4-3146-BFF0-503C71A15B76> /usr/lib/swift/libswiftPhotos.dylib
    0x7fff790f9000 -     0x7fff79258fff  com.apple.PhotosUI (1.0 - 340.0.180) <0399ADD5-CF77-3EB8-A0FB-4B5B2DF1440F> /System/iOSSupport/System/Library/Frameworks/PhotosUI.framework/Versions/A/PhotosUI
    0x7fff79fc8000 -     0x7fff79ff0fff  com.apple.FuseBoard (1.0 - 238) <55430BC8-B40C-3039-8122-74B8ECEDA363> /System/iOSSupport/System/Library/PrivateFrameworks/FuseBoard.framework/Versions/A/FuseBoard
    0x7fff7a48e000 -     0x7fff7a495fff  com.apple.mobilesafari.framework (14.1 - 604.1) <A15E494C-42D7-3160-A964-DCC217BFB501> /System/iOSSupport/System/Library/PrivateFrameworks/MobileSafari.framework/Versions/A/MobileSafari
    0x7fff7a5f2000 -     0x7fff7a63dfff  com.apple.PhotoLibrary (1.0 - 340.0.180) <0EA9EC7B-AF34-39C9-A13D-4A977703928B> /System/iOSSupport/System/Library/PrivateFrameworks/PhotoLibrary.framework/Versions/A/PhotoLibrary
    0x7fff7a63e000 -     0x7fff7ab14fff  com.apple.PhotosUICore (1.0 - 340.0.180) <E0201226-10CB-39A9-B5E2-E1AC6EDCD700> /System/iOSSupport/System/Library/PrivateFrameworks/PhotosUICore.framework/Versions/A/PhotosUICore
    0x7fff7b983000 -     0x7fff7b984fff  libswiftMetalKit.dylib (1.2) <4F0509FB-D374-3288-B806-A392FC3B969A> /System/iOSSupport/usr/lib/swift/libswiftMetalKit.dylib
    0x7fff7b995000 -     0x7fff7b995fff  libswiftSafariServices.dylib (2) <E335F107-4C37-3EB0-B3AB-8D1F6BF35E55> /System/iOSSupport/usr/lib/swift/libswiftSafariServices.dylib
    0x7fff7b99e000 -     0x7fff7b9a0fff  libswiftWebKit.dylib (7611.1.14.1.2) <DEDC68B1-ADF4-31D9-8734-0396EB560456> /System/iOSSupport/usr/lib/swift/libswiftWebKit.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: 0
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%)
Writable regions: Total=220.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=220.8M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
Dispatch continuations            96.0M        1 
Foundation                          16K        1 
Image IO                          2192K        1 
Kernel Alloc Once                    8K        1 
MALLOC                            98.6M       63 
MALLOC guard page                   16K        4 
MALLOC_LARGE (reserved)           8748K        1         reserved VM address space (unallocated)
STACK GUARD                       56.0M       13 
Stack                             14.1M       13 
VM_ALLOCATE                        212K        4 
__CTF                               759        1 
__DATA                            52.6M      672 
__DATA_CONST                      54.7M      499 
__DATA_DIRTY                      2754K      325 
__FONT_DATA                          4K        1 
__LINKEDIT                       500.2M       10 
__OBJC_RO                         70.0M        1 
__OBJC_RW                         2480K        2 
__TEXT                           584.5M      672 
__UNICODE                          588K        1 
mapped file                       39.6M        6 
shared memory                     1152K       13 
===========                     =======  ======= 
TOTAL                              1.5G     2306 
TOTAL, minus reserved VM space     1.5G     2306 

Model: Macmini8,1, BootROM 1554.100.52.0.0 (iBridge: 18.16.14529.5.3,0), 6 processors, 6-Core Intel Core i7, 3.2 GHz, 16 GB, SMC 
Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin
Graphics: Radeon RX 570, Radeon RX 570, spdisplays_pcie_device, 4 GB
Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2667 MHz, Kingston, KHX2666C15S4/8G
Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2667 MHz, Kingston, KHX2666C15S4/8G
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Dec 24 2020 01:27:50 version 9.30.444.6.32.5.66 FWID 01-54f9c857
Bluetooth: Version 8.0.4d7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Thunderbolt Ethernet Slot 1, Ethernet, en6
PCI Card: Aquantia AQC107, sppci_ethernet, Thunderbolt@197,0,0
PCI Card: Radeon RX 570, sppci_displaycontroller, Thunderbolt@71,0,0
PCI Card: pci1002,aaf0, sppci_audiodevice, Thunderbolt@71,0,1
USB Device: USB 3.1 Bus
USB Device: ASM1352R-Safe
USB Device: USB3.0 Hub
USB Device: USB2.0 Hub
USB Device: XBOX ACC
USB Device: USB2.1 Hub
USB Device: USB 2.0 Hub
USB Device: USB Storage
USB Device: OBINS
AnnePro2
USB Device: FiiO USB DAC K1
USB Device: USB Audio Device
USB Device: iPhone
USB Device: USB3.1 Hub
USB Device: USB 10/100/1000 LAN
USB Device: PSSD T7
USB Device: Apple T2 Bus
USB Device: Headset
USB Device: Apple T2 Controller
Thunderbolt Bus: Mac mini, Apple Inc., 47.4
Thunderbolt Device: RX570 eGFX Breakaway Puck, Sonnet Technologies, Inc., 1, 25.1
Thunderbolt Bus: Mac mini, Apple Inc., 47.4
Thunderbolt Device: SANLink3 N1, Promise Technology, Inc., 3, 33.3

[Feature Request] ProRes export?

Hello! I am loving the newest features on the app, it's absolutely wonderful. I see that ProRes import/decode is supported in the current app and I was hoping that ProRes export/encode support could be added to the app, at least to Mac's/iPhones with ProRes hardware accelerator support.

Please consider this addition and thank you for your work on this amazing app.

Image Chooser of Batch Mode Cannot Show Latest Images

I send some images by AirDrop, however, they cannot be seen in the image chooser of batch mode. Yet they can be found in Photo app and other mode's image chooser.
Also, some album preview of the image chooser show wrong images.

iPhone 8 Plus (Global)
iOS 12
waifu2x 3.0 (build 2219)

图片选择器选中后无法回到主界面

在 App 主界面点 + 号从相册选择图片时,选中图片点击添加后图片选择器不会消失,点击取消也没有反应,而且选中的内容必须手动反选后才能保住不被重复添加

Hope the future version could support batch-import and export

In the current version, it could only choose one picture one time and you must choose an action after the process , then you could do the next, and it’s a waste of time, hope the next version could choose more pictures one time (even up to ten or more pictures ) , and t can save time :)

开源版本处理彩色图片会错乱

使用项目中的Demo, 直接选取一张照片,经过很长时间的处理之后,会发现生成的图片错乱,并且有横向纵向的很多蓝绿色的条纹。

Demo没有任何改动,试了下应该随便一张图片都会这样,请问这是哪方面的问题?需要截图的话之后附上。

[Enhancement/macOS]重启保留文件权限,或给予特定文件夹RW权限

每次系统重启都需要打开app重新给权限,CLI才能正常工作。有没有办法保存文件权限?
或者,是否可以用entitlements永久允许读写某些文件夹?以我的use case来说的话一直允许~/Pictures就够了,大部分人的话再加上~/Downloads也应该够了。这俩都有对应的ent应该可以直接从Xcode里启用。
https://developer.apple.com/documentation/security/app_sandbox

Thanks

[Feature Request]添加 CUNet 模型

或者能否给予更多的指导。我仅有一些通用的编码知识,没有机器学习相关的经验。
我在尝试转换 waifu2x 里的 CUNet 预训练模型到 Core ML 模型,但是非常苦手。

我已经在环境里安装好了 conda 和 coremltools,然而样例代码里做的事情与我期望的有很大差别。

Why is the image quality is a little worse than Waifu2x-caffe?

I tried upscaled this picture in the same parameters but the output is slightly different from the Waifu2x-caffe.
waifu2x-ios config:
ios config

waifu2x-caffe config:
pc config

original image:
961884bfgy1fh5utux4zpj210q1fun9x

waifu2x-ios output(zoom in):
IMG_7734

waifu2x-caffe output(zoom in):
IMG_7736

The result of waifu2x-caffe looks cleaner especially around the edges of eyes and hairs.

[feature] export as gif or mp4

now waifu2x can import gif, but can only export static image format. if waifu2x can import animated gif and export it in high res, it would be much better. (also for some animated video format)

considering about the ram usage, using anime4k may be a good idea.

【Question】Is there a separate charge for model unlocking for the mac app version and the ios/ipados app version?

If you check the in-app purchase section of the app store, you will see that there is a menu item called "mac version" in addition to the regular model unlock.
Do I need to pay extra to use the unlocked IOS version in the mac app?

Quote: https://apps.apple.com/us/app/waifu2x/id1286485858

In-App Purchases
Additional Models
$6.99
Additional Models for Mac
$6.99
Three tips
$2.99
Tip
$0.99
Two tips
$1.99

Apple Silicon Macs?

With the Apple Silicon Macs coming up will you merge the MacOS and iOS versions into one central app or will they continue on seperately?

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.