A bare-bones Python library for quality diversity optimization.

Overview

pyribs

Website Source PyPI Conda CI/CD Docs Docs Status Twitter
pyribs.org GitHub PyPI Conda Recipe Tests docs.pyribs.org Documentation Status Twitter

A bare-bones Python library for quality diversity optimization. pyribs is the official implementation of the Covariance Matrix Adaptation MAP-Elites (CMA-ME) algorithm and implements the Rapid Illumination of Behavior Space (RIBS) redesign of MAP-Elites detailed in the paper Covariance Matrix Adapation for the Rapid Illumination of Behavior Space.

Overview

Types of Optimization

Quality diversity (QD) optimization is a subfield of optimization where solutions generated cover every point in a behavior space while simultaneously maximizing (or minimizing) a single objective. QD algorithms within the MAP-Elites family of QD algorithms produce heatmaps (archives) as output where each cell contains the best discovered representative of a region in behavior space.

While many QD libraries exist, this particular library aims to be the QD analog to the pycma library (a single objective optimization library). In contrast to other QD libraries, this library is "bare-bones," meaning pyribs (like pycma) focuses solely on optimizing fixed-dimensional continuous domains. Focusing solely on this one commonly-occurring problem allows us to optimize the library for performance as well as simplicity of use. For applications of QD on discrete domains, we recommend using qdpy or sferes.

A user of pyribs selects three components that meet the needs of their application:

  • An Archive saves the best representatives generated within behavior space.
  • Emitters control how new candidate solutions are generated and affect if the algorithm prioritizes quality or diversity.
  • An Optimizer joins the Archive and Emitters together and acts as a scheduling algorithm for emitters. The Optimizer provides an interface for requesting new candidate solutions and telling the algorithm how candidates performed.

Citation

If you use pyribs in your research, please cite it as follows. Note that you will need to include the hyperref package in order to use the \url command.

@misc{pyribs,
  title = {pyribs: A bare-bones Python library for quality diversity
           optimization},
  author = {Bryon Tjanaka and Matthew C. Fontaine and Yulun Zhang and
            Sam Sommerer and Nathan Dennler and Stefanos Nikolaidis},
  year = {2021},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/icaros-usc/pyribs}},
}

If you use the CMA-ME algorithm, please also cite Fontaine 2020.

@inproceedings{10.1145/3377930.3390232,
  author = {Fontaine, Matthew C. and Togelius, Julian and Nikolaidis, Stefanos and Hoover, Amy K.},
  title = {Covariance Matrix Adaptation for the Rapid Illumination of Behavior Space},
  year = {2020},
  isbn = {9781450371285},
  publisher = {Association for Computing Machinery},
  address = {New York, NY, USA},
  url = {https://doi.org/10.1145/3377930.3390232},
  doi = {10.1145/3377930.3390232},
  booktitle = {Proceedings of the 2020 Genetic and Evolutionary Computation Conference},
  pages = {94–102},
  numpages = {9},
  location = {Canc\'{u}n, Mexico},
  series = {GECCO '20}
}

Usage

Here we show an example application of CMA-ME in pyribs. To initialize the algorithm, we first create:

  • A 2D GridArchive where each dimension contains 20 bins across the range [-1, 1].
  • An ImprovementEmitter, which starts from the search point 0 in 10 dimensional space and a Gaussian sampling distribution with standard deviation 0.1.
  • An Optimizer that combines the archive and emitter together.

After initializing the components, we optimize (pyribs maximizes) the negative 10-D Sphere function for 1000 iterations. Users of pycma will be familiar with the ask-tell interface (which pyribs adopted). First, the user must ask the optimizer for new candidate solutions. After evaluating the solution, they tell the optimizer the objective value and behavior characteristics (BCs) of each candidate solution. The algorithm then populates the archive and makes decisions on where to sample solutions next. Our toy example uses the first two parameters of the search space as BCs.

import numpy as np

from ribs.archives import GridArchive
from ribs.emitters import ImprovementEmitter
from ribs.optimizers import Optimizer

archive = GridArchive([20, 20], [(-1, 1), (-1, 1)])
emitters = [ImprovementEmitter(archive, [0.0] * 10, 0.1)]
optimizer = Optimizer(archive, emitters)

for itr in range(1000):
    solutions = optimizer.ask()

    objectives = -np.sum(np.square(solutions), axis=1)
    bcs = solutions[:, :2]

    optimizer.tell(objectives, bcs)

To visualize this archive with matplotlib, we then use the grid_archive_heatmap function from ribs.visualize.

import matplotlib.pyplot as plt
from ribs.visualize import grid_archive_heatmap

grid_archive_heatmap(archive)
plt.show()

Sphere heatmap

For more information, refer to the documentation.

Installation

pyribs supports Python 3.6-3.9. Earlier Python versions may work but are not officially supported.

To install from PyPI, run

pip install ribs

This command only installs dependencies for the core of pyribs. To install support tools like ribs.visualize, run

pip install ribs[all]

Equivalently, you can install the base version (equivalent to ribs) from Conda with

conda install -c conda-forge pyribs-base

The full version (equivalent to ribs[all]) can be installed with

conda install -c conda-forge pyribs

To test your installation, import it and print the version with:

python -c "import ribs; print(ribs.__version__)"

You should see a version number like 0.2.0 in the output.

From Source

To install a version from source, clone the repo

git clone https://github.com/icaros-usc/pyribs

Then cd into it

cd pyribs

And run

pip install -e .[all]

Documentation

See here for the documentation: https://docs.pyribs.org

To serve the documentation locally, clone the repo and install the development requirements with

pip install -e .[dev]

Then run

make servedocs

This will open a window in your browser with the documentation automatically loaded. Furthermore, every time you make changes to the documentation, the preview will also reload.

Contributors

pyribs is developed and maintained by the ICAROS Lab at USC.

We thank Amy K. Hoover and Julian Togelius for their contributions deriving the CMA-ME algorithm.

License

pyribs is released under the MIT License.

Credits

The pyribs package was initially created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

Comments
  • [BUG]  std::__1::system_error: condition_variable wait failed: Invalid argument

    [BUG] std::__1::system_error: condition_variable wait failed: Invalid argument

    • pyribs version: 0.4.0
    • Python version: 3.9
    • Operating System: Mac (Big Sur)

    Description

    I run pyribs code from poetry and python3.9. However, when I run the code for 12 ~ 36 hours, sometimes the code crushed...

    The error message is here.

    Application Specific Information:
    terminating with uncaught exception of type std::__1::system_error: condition_variable wait failed: Invalid argument
    abort() called
    

    I think this problem is arised from llvm or llvm-lite, because this error is due to thread ordering problem (maybe).

    Steps to Reproduce

    This command runs learning with pytorch and pyribs.

    nohup python -m mario_pytorch.cli learn-pyribs coin_enemy.yaml coin_enemy.yaml coin_enemy.yaml &
    

    Error traceback is here.

    Trace back
    Process:               Python [55836]
    Path:                  /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/Resources/Python.app/Contents/MacOS/Python
    Identifier:            org.python.python
    Version:               3.9.7 (3.9.7)
    Code Type:             X86-64 (Native)
    Parent Process:        zsh [14421]
    Responsible:           alacritty [1167]
    User ID:               501
    
    Date/Time:             2021-09-28 22:30:22.093 +0900
    OS Version:            macOS 11.6 (20G165)
    Report Version:        12
    Anonymous UUID:        795A460E-4BBC-7C3A-D5D0-447C26513803
    
    Sleep/Wake UUID:       FDBB4B4C-C0BA-41B9-A29C-828E3B109322
    
    Time Awake Since Boot: 480000 seconds
    Time Since Wake:       300000 seconds
    
    System Integrity Protection: enabled
    
    Crashed Thread:        8
    
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Exception Note:        EXC_CORPSE_NOTIFY
    
    Application Specific Information:
    terminating with uncaught exception of type std::__1::system_error: condition_variable wait failed: Invalid argument
    abort() called
    
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib        	0x00007fff203774ca __psynch_mutexwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203a82ab _pthread_mutex_firstfit_lock_wait + 76
    2   libsystem_pthread.dylib       	0x00007fff203a6192 _pthread_mutex_firstfit_lock_slow + 204
    3   libc++.1.dylib                	0x00007fff203413d9 std::__1::mutex::lock() + 9
    4   libc10.dylib                  	0x00000001265fff76 c10::ThreadPool::run(std::__1::function<void ()>) + 38
    5   libtorch_cpu.dylib            	0x00000001144beb29 at::internal::_parallel_run(long long, long long, long long, std::__1::function<void (long long, long long, unsigned long)> const&) + 969
    6   libtorch_cpu.dylib            	0x00000001182bf0e9 void at::vml::(anonymous namespace)::vsqrt<float>(float*, float const*, long long) + 169
    7   libtorch_cpu.dylib            	0x00000001182beca2 void c10::function_ref<void (char**, long long const*, long long, long long)>::callback_fn<auto at::TensorIteratorBase::loop_2d_from_1d<at::native::AVX2::sqrt_kernel(at::TensorIteratorBase&)::$_50::operator()() const::'lambda2'()::operator()() const::'lambda'(char**, long long const*, long long)>(at::native::AVX2::sqrt_kernel(at::TensorIteratorBase&)::$_50::operator()() const::'lambda2'()::operator()() const::'lambda'(char**, long long const*, long long) const&)::'lambda'(char**, long long const*, long long, long long)>(long, char**, long long const*, long long, long long) + 274
    8   libtorch_cpu.dylib            	0x00000001144db370 at::TensorIteratorBase::serial_for_each(c10::function_ref<void (char**, long long const*, long long, long long)>, at::Range) const + 560
    9   libtorch_cpu.dylib            	0x00000001181cf213 at::native::AVX2::sqrt_kernel(at::TensorIteratorBase&) + 291
    10  libtorch_cpu.dylib            	0x00000001151076cc c10::impl::wrap_kernel_functor_unboxed_<c10::impl::detail::WrapFunctionIntoFunctor_<c10::CompileTimeFunctionPointer<at::Tensor (at::Tensor const&), &(at::(anonymous namespace)::wrapper_sqrt(at::Tensor const&))>, at::Tensor, c10::guts::typelist::typelist<at::Tensor const&> >, at::Tensor (at::Tensor const&)>::call(c10::OperatorKernel*, c10::DispatchKeySet, at::Tensor const&) + 108
    11  libtorch_cpu.dylib            	0x0000000114f49fc2 at::redispatch::sqrt(c10::DispatchKeySet, at::Tensor const&) + 130
    12  libtorch_cpu.dylib            	0x0000000116d22010 c10::impl::wrap_kernel_functor_unboxed_<c10::impl::detail::WrapFunctionIntoFunctor_<c10::CompileTimeFunctionPointer<at::Tensor (c10::DispatchKeySet, at::Tensor const&), &(torch::autograd::VariableType::(anonymous namespace)::sqrt(c10::DispatchKeySet, at::Tensor const&))>, at::Tensor, c10::guts::typelist::typelist<c10::DispatchKeySet, at::Tensor const&> >, at::Tensor (c10::DispatchKeySet, at::Tensor const&)>::call(c10::OperatorKernel*, c10::DispatchKeySet, at::Tensor const&) + 448
    13  libtorch_cpu.dylib            	0x000000011544b10d at::Tensor::sqrt() const + 221
    14  libtorch_python.dylib         	0x0000000112d965c8 torch::autograd::THPVariable_sqrt(_object*, _object*) + 232
    15  org.python.python             	0x0000000104c76315 method_vectorcall_NOARGS + 99
    16  org.python.python             	0x0000000104d62a0e call_function + 164
    17  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    18  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    19  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    20  org.python.python             	0x0000000104d62a0e call_function + 164
    21  org.python.python             	0x0000000104d5fdfd _PyEval_EvalFrameDefault + 42860
    22  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    23  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    24  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    25  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    26  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    27  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    28  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    29  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    30  org.python.python             	0x0000000104d62a0e call_function + 164
    31  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    32  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    33  org.python.python             	0x0000000104d62a0e call_function + 164
    34  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    35  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    36  org.python.python             	0x0000000104d62a0e call_function + 164
    37  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    38  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    39  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    40  org.python.python             	0x0000000104d62a0e call_function + 164
    41  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    42  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    43  org.python.python             	0x0000000104d62a0e call_function + 164
    44  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    45  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    46  org.python.python             	0x0000000104d62a0e call_function + 164
    47  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    48  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    49  org.python.python             	0x0000000104d62a0e call_function + 164
    50  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    51  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    52  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    53  org.python.python             	0x0000000104c6a6c5 PyVectorcall_Call + 164
    54  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    55  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    56  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    57  org.python.python             	0x0000000104c6a6c5 PyVectorcall_Call + 164
    58  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    59  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    60  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    61  org.python.python             	0x0000000104c6d647 method_vectorcall + 160
    62  org.python.python             	0x0000000104c6a6c5 PyVectorcall_Call + 164
    63  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    64  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    65  org.python.python             	0x0000000104d62a0e call_function + 164
    66  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    67  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    68  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    69  org.python.python             	0x0000000104d62a0e call_function + 164
    70  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    71  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    72  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    73  org.python.python             	0x0000000104c6d788 method_vectorcall + 481
    74  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    75  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    76  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    77  org.python.python             	0x0000000104c6a0eb _PyObject_FastCallDictTstate + 87
    78  org.python.python             	0x0000000104cd7ee9 slot_tp_call + 187
    79  org.python.python             	0x0000000104c6a851 _PyObject_Call + 125
    80  org.python.python             	0x0000000104d5ff4c _PyEval_EvalFrameDefault + 43195
    81  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    82  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    83  org.python.python             	0x0000000104c6a0eb _PyObject_FastCallDictTstate + 87
    84  org.python.python             	0x0000000104cd7ee9 slot_tp_call + 187
    85  org.python.python             	0x0000000104c69ebe _PyObject_MakeTpCall + 129
    86  org.python.python             	0x0000000104d62a78 call_function + 270
    87  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    88  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    89  org.python.python             	0x0000000104d4f298 builtin_exec + 389
    90  org.python.python             	0x0000000104cb6069 cfunction_vectorcall_FASTCALL + 95
    91  org.python.python             	0x0000000104d62a0e call_function + 164
    92  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    93  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    94  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    95  org.python.python             	0x0000000104d62a0e call_function + 164
    96  org.python.python             	0x0000000104d5fd4e _PyEval_EvalFrameDefault + 42685
    97  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    98  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    99  org.python.python             	0x0000000104dcc046 pymain_run_module + 212
    100 org.python.python             	0x0000000104dcbb83 Py_RunMain + 1013
    101 org.python.python             	0x0000000104dccc16 pymain_main + 35
    102 org.python.python             	0x0000000104dcceec Py_BytesMain + 42
    103 libdyld.dylib                 	0x00007fff203c5f3d start + 1
    
    Thread 1:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libopenblas.0.dylib           	0x00000001082a221f blas_thread_server + 207
    3   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    4   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 2:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libopenblas.0.dylib           	0x00000001082a221f blas_thread_server + 207
    3   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    4   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 3:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libopenblas.0.dylib           	0x00000001082a221f blas_thread_server + 207
    3   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    4   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 4:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   org.python.python             	0x0000000104dbcc22 PyThread_acquire_lock_timed + 400
    3   org.python.python             	0x0000000104e19791 acquire_timed + 224
    4   org.python.python             	0x0000000104e198c7 lock_PyThread_acquire_lock + 44
    5   org.python.python             	0x0000000104c765bc method_vectorcall_VARARGS_KEYWORDS + 152
    6   org.python.python             	0x0000000104d62a0e call_function + 164
    7   org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    8   org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    9   org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    10  org.python.python             	0x0000000104d62a0e call_function + 164
    11  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    12  org.python.python             	0x0000000104d545f6 _PyEval_EvalCode + 406
    13  org.python.python             	0x0000000104c6aadc _PyFunction_Vectorcall + 376
    14  org.python.python             	0x0000000104d62a0e call_function + 164
    15  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    16  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    17  org.python.python             	0x0000000104d62a0e call_function + 164
    18  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    19  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    20  org.python.python             	0x0000000104d62a0e call_function + 164
    21  org.python.python             	0x0000000104d5fc85 _PyEval_EvalFrameDefault + 42484
    22  org.python.python             	0x0000000104c6aa24 _PyFunction_Vectorcall + 192
    23  org.python.python             	0x0000000104c6d788 method_vectorcall + 481
    24  org.python.python             	0x0000000104e18fcd t_bootstrap + 119
    25  org.python.python             	0x0000000104dbc893 pythread_wrapper + 36
    26  libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    27  libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 5:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libopenblas.0.dylib           	0x0000000139d772eb blas_thread_server + 619
    3   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    4   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 6:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libopenblas.0.dylib           	0x0000000139d772eb blas_thread_server + 619
    3   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    4   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 7:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libopenblas.0.dylib           	0x0000000139d772eb blas_thread_server + 619
    3   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    4   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 8 Crashed:
    0   libsystem_kernel.dylib        	0x00007fff2037b92e __pthread_kill + 10
    1   libsystem_pthread.dylib       	0x00007fff203aa5bd pthread_kill + 263
    2   libsystem_c.dylib             	0x00007fff202ff406 abort + 125
    3   libc++abi.dylib               	0x00007fff2036def2 abort_message + 241
    4   libc++abi.dylib               	0x00007fff2035f5e5 demangling_terminate_handler() + 242
    5   libobjc.A.dylib               	0x00007fff20258595 _objc_terminate() + 104
    6   libc++abi.dylib               	0x00007fff2036d307 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib               	0x00007fff2036d2a9 std::terminate() + 41
    8   libc10.dylib                  	0x000000012660015d c10::ThreadPool::main_loop(unsigned long) + 237
    9   libc10.dylib                  	0x0000000126600953 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, c10::ThreadPool::ThreadPool(int, int, std::__1::function<void ()>)::$_0> >(void*) + 67
    10  libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    11  libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 9:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libc++.1.dylib                	0x00007fff20313d72 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
    3   libc10.dylib                  	0x000000012660015d c10::ThreadPool::main_loop(unsigned long) + 237
    4   libc10.dylib                  	0x0000000126600953 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, c10::ThreadPool::ThreadPool(int, int, std::__1::function<void ()>)::$_0> >(void*) + 67
    5   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    6   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 10:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libc++.1.dylib                	0x00007fff20313d72 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
    3   libc10.dylib                  	0x000000012660015d c10::ThreadPool::main_loop(unsigned long) + 237
    4   libc10.dylib                  	0x0000000126600953 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, c10::ThreadPool::ThreadPool(int, int, std::__1::function<void ()>)::$_0> >(void*) + 67
    5   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    6   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 11:
    0   libsystem_kernel.dylib        	0x00007fff20377cde __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff203aae49 _pthread_cond_wait + 1298
    2   libc++.1.dylib                	0x00007fff20313d72 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
    3   libtorch_cpu.dylib            	0x00000001171c79cb torch::autograd::ReadyQueue::pop() + 75
    4   libtorch_cpu.dylib            	0x00000001171c906c torch::autograd::Engine::thread_main(std::__1::shared_ptr<torch::autograd::GraphTask> const&) + 188
    5   libtorch_cpu.dylib            	0x00000001171c877a torch::autograd::Engine::thread_init(int, std::__1::shared_ptr<torch::autograd::ReadyQueue> const&, bool) + 282
    6   libtorch_python.dylib         	0x000000011346b2b1 torch::autograd::python::PythonEngine::thread_init(int, std::__1::shared_ptr<torch::autograd::ReadyQueue> const&, bool) + 97
    7   libtorch_cpu.dylib            	0x00000001171d76f6 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (torch::autograd::Engine::*)(int, std::__1::shared_ptr<torch::autograd::ReadyQueue> const&, bool), torch::autograd::Engine*, int, std::__1::shared_ptr<torch::autograd::ReadyQueue>, bool> >(void*) + 70
    8   libsystem_pthread.dylib       	0x00007fff203aa8fc _pthread_start + 224
    9   libsystem_pthread.dylib       	0x00007fff203a6443 thread_start + 15
    
    Thread 12:
    0   libsystem_pthread.dylib       	0x00007fff203a6420 start_wqthread + 0
    
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000700003b6b000  rcx: 0x0000700003b6a748  rdx: 0x0000000000000000
      rdi: 0x0000000000001603  rsi: 0x0000000000000006  rbp: 0x0000700003b6a770  rsp: 0x0000700003b6a748
       r8: 0x0000700003b6a610   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000246
      r12: 0x0000000000001603  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x0000000000000016
      rip: 0x00007fff2037b92e  rfl: 0x0000000000000246  cr2: 0x00007fff806d6498
      
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    
    Thread 8 instruction stream not available.
    
    Thread 8 last branch register state not available.
    
    
    Binary Images:
           0x104bf7000 -        0x104bfafff +org.python.python (3.9.7 - 3.9.7) <1E49EAB2-31A4-3C3D-8361-1921C563716F> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/Resources/Python.app/Contents/MacOS/Python
           0x104c04000 -        0x104ecbfff +org.python.python (3.9.7, [c] 2001-2019 Python Software Foundation. - 3.9.7) <B7D44A26-04DC-33BB-BD26-DE64280CDE71> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/Python
           0x10516e000 -        0x105171fff +_heapq.cpython-39-darwin.so (0) <CD1D1C05-2094-3F08-909F-11A550809830> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_heapq.cpython-39-darwin.so
           0x1052be000 -        0x1052c9fff +math.cpython-39-darwin.so (0) <14AD2AB7-F5C9-377C-A325-0220E4E296F6> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/math.cpython-39-darwin.so
           0x105316000 -        0x105325fff +_datetime.cpython-39-darwin.so (0) <AB1EAD7C-F676-3F6F-B11F-E54D0FFA4F31> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_datetime.cpython-39-darwin.so
           0x1053b6000 -        0x1053b9fff +_opcode.cpython-39-darwin.so (0) <BE4D1A95-6618-327C-8643-9C72E5114DD5> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_opcode.cpython-39-darwin.so
           0x105486000 -        0x105489fff +_uuid.cpython-39-darwin.so (0) <A4AE04C6-51BA-3205-A994-4BE3BB3EBFB2> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_uuid.cpython-39-darwin.so
           0x1054d6000 -        0x1054d9fff +grp.cpython-39-darwin.so (0) <58C88DD2-475B-3C38-9C68-24E5FA7659BD> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/grp.cpython-39-darwin.so
           0x1054e6000 -        0x1054e9fff +_posixsubprocess.cpython-39-darwin.so (0) <62CED4A0-7C0B-3D5E-8FBE-52F9327256EA> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_posixsubprocess.cpython-39-darwin.so
           0x1054f6000 -        0x1054fdfff +select.cpython-39-darwin.so (0) <5753470D-7997-31E1-BBD7-94A466855843> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/select.cpython-39-darwin.so
           0x10554a000 -        0x1058d4fff +_multiarray_umath.cpython-39-darwin.so (0) <435243A3-7913-33D7-8B15-2C5B2EFED33F> /Users/USER/*/_multiarray_umath.cpython-39-darwin.so
           0x1059f1000 -        0x105b08fff +libgfortran.3.dylib (0) <9ABE5EDE-AD43-391A-9E54-866711FAC32A> /Users/USER/*/libgfortran.3.dylib
           0x105b6c000 -        0x105ba2fff +libquadmath.0.dylib (0) <7FFA409F-FB04-3B64-BE9A-3E3A494C975E> /Users/USER/*/libquadmath.0.dylib
           0x105bb1000 -        0x105bc6fff +libgcc_s.1.dylib (0) <7C6D7CB7-82DB-3290-8181-07646FEA1F80> /Users/USER/*/libgcc_s.1.dylib
           0x107c11000 -        0x107c18fff +_struct.cpython-39-darwin.so (0) <93E332EE-02B8-3ABE-877E-DD609A0DC607> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_struct.cpython-39-darwin.so
           0x107c25000 -        0x107c3cfff +_pickle.cpython-39-darwin.so (0) <C8F3E1BC-EA92-360B-876F-10B579B156A3> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_pickle.cpython-39-darwin.so
           0x107d4d000 -        0x107d5bfff +_multiarray_tests.cpython-39-darwin.so (0) <2D78F9BC-2246-3F2E-89B1-F37ADEF6179D> /Users/USER/*/_multiarray_tests.cpython-39-darwin.so
           0x107dac000 -        0x107dbffff +_ctypes.cpython-39-darwin.so (0) <CACA17B3-FD3F-3B94-A38F-A147CE8D75C3> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_ctypes.cpython-39-darwin.so
           0x107e50000 -        0x107e50fff +_api_implementation.cpython-39-darwin.so (0) <38FCEF85-8D81-3998-B478-0841AA48B92C> /Users/USER/*/_api_implementation.cpython-39-darwin.so
           0x107e54000 -        0x107eeffff  dyld (852.2) <0CC19410-FD43-39AE-A32A-50273F8303A4> /usr/lib/dyld
           0x107f6c000 -        0x10bb13fff +libopenblas.0.dylib (0) <DA9695E6-4AA4-38B6-B135-FBE8A661903F> /Users/USER/*/libopenblas.0.dylib
           0x10fce4000 -        0x10fce5fff +lapack_lite.cpython-39-darwin.so (0) <5B4E880A-77ED-3B12-B165-51B5AE1694C2> /Users/USER/*/lapack_lite.cpython-39-darwin.so
           0x10fce9000 -        0x10fd02fff +_umath_linalg.cpython-39-darwin.so (0) <4B88FBBA-B77D-35AF-89A0-2FBE22B04DD7> /Users/USER/*/_umath_linalg.cpython-39-darwin.so
           0x10fd91000 -        0x10fd98fff +zlib.cpython-39-darwin.so (0) <1EA0D007-1A97-3271-988F-9A2622C202A8> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/zlib.cpython-39-darwin.so
           0x10fda5000 -        0x10fda8fff +_bz2.cpython-39-darwin.so (0) <EF4D1F78-AAFD-3C0E-80A1-8F1EA11AAFAC> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_bz2.cpython-39-darwin.so
           0x10fdb5000 -        0x10fdbcfff +_lzma.cpython-39-darwin.so (0) <9DC55045-358C-315B-A77D-26D7C86527BF> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_lzma.cpython-39-darwin.so
           0x10fdc9000 -        0x10fde4fff +liblzma.5.dylib (0) <E4406E42-7BC4-3945-A1A4-E9B6874EF052> /usr/local/opt/xz/lib/liblzma.5.dylib
           0x10fe2b000 -        0x10fe3cfff +_pocketfft_internal.cpython-39-darwin.so (0) <E7BCC082-817A-3A54-A8B0-C5D7435A1FF5> /Users/USER/*/_pocketfft_internal.cpython-39-darwin.so
           0x10fe80000 -        0x10fef0fff +mtrand.cpython-39-darwin.so (0) <39239F50-35C0-36B8-BBE2-C3610591B865> /Users/USER/*/mtrand.cpython-39-darwin.so
           0x10ff44000 -        0x10ff62fff +bit_generator.cpython-39-darwin.so (0) <B5583D46-A7FE-350B-AE36-A2757C62BFDD> /Users/USER/*/bit_generator.cpython-39-darwin.so
           0x10ff7d000 -        0x10ffb3fff +_common.cpython-39-darwin.so (0) <4953FA1C-FF07-3D50-A6B8-CE5CD3F1C176> /Users/USER/*/_common.cpython-39-darwin.so
           0x11000b000 -        0x110012fff +binascii.cpython-39-darwin.so (0) <758ED00E-4585-3C09-AD9E-CCB38E6726AD> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/binascii.cpython-39-darwin.so
           0x11001f000 -        0x110026fff +_hashlib.cpython-39-darwin.so (0) <2D5B4733-9C6E-322A-8A60-C22D453C4470> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_hashlib.cpython-39-darwin.so
           0x110033000 -        0x110082fff +libssl.1.1.dylib (0) <F730C3EA-E6FE-30C2-8B1A-25A9EA161E9B> /usr/local/opt/[email protected]/lib/libssl.1.1.dylib
           0x1100af000 -        0x11026efff +libcrypto.1.1.dylib (0) <D3E07BBF-9953-374A-A95D-731D1D7E31D6> /usr/local/opt/[email protected]/lib/libcrypto.1.1.dylib
           0x110307000 -        0x11030efff +_blake2.cpython-39-darwin.so (0) <353696F3-1DC9-300D-B9E1-D7A8AABB4351> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_blake2.cpython-39-darwin.so
           0x11031b000 -        0x11031efff +_bisect.cpython-39-darwin.so (0) <D6B6A385-9F69-375A-924F-08CD99B79520> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_bisect.cpython-39-darwin.so
           0x11032b000 -        0x11032efff +_random.cpython-39-darwin.so (0) <F427C0DB-5AAA-3EE9-85B9-67DDB5A403FB> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_random.cpython-39-darwin.so
           0x11033b000 -        0x110342fff +_sha512.cpython-39-darwin.so (0) <F48D0A87-5C49-33D6-B126-96745496551B> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_sha512.cpython-39-darwin.so
           0x11034f000 -        0x1103a5fff +_bounded_integers.cpython-39-darwin.so (0) <B4276E6E-9784-3B9F-889D-8C6DD1DA44D4> /Users/USER/*/_bounded_integers.cpython-39-darwin.so
           0x1103c6000 -        0x1103d5fff +_mt19937.cpython-39-darwin.so (0) <9DC9D411-F5E4-3F7E-8E1A-212D48B50064> /Users/USER/*/_mt19937.cpython-39-darwin.so
           0x1103e1000 -        0x1103eefff +_philox.cpython-39-darwin.so (0) <674E94AD-7F1D-31FC-9999-01C978DC51CA> /Users/USER/*/_philox.cpython-39-darwin.so
           0x1103f9000 -        0x110403fff +_pcg64.cpython-39-darwin.so (0) <3CA12399-95F8-3517-ADC1-B27787C2EF31> /Users/USER/*/_pcg64.cpython-39-darwin.so
           0x11040e000 -        0x110415fff +_sfc64.cpython-39-darwin.so (0) <60E3EEA0-3400-31C0-8408-609BD92027CD> /Users/USER/*/_sfc64.cpython-39-darwin.so
           0x11041e000 -        0x1104a7fff +_generator.cpython-39-darwin.so (0) <BE119074-2D04-38BC-8388-2829113E35F0> /Users/USER/*/_generator.cpython-39-darwin.so
           0x112602000 -        0x112605fff +libtorch_global_deps.dylib (0) <AD88D349-CBB5-32AA-9F7F-7C6A31714454> /Users/USER/*/libtorch_global_deps.dylib
           0x11260a000 -        0x112751fff +libiomp5.dylib (0) <6934E91E-BB7D-3812-A269-50DB7D644483> /Users/USER/*/libiomp5.dylib
           0x1127d1000 -        0x1127d4fff +_C.cpython-39-darwin.so (0) <97DEDE4C-5B2A-3C68-B8F5-DF1A963668D9> /Users/USER/*/_C.cpython-39-darwin.so
           0x1127dd000 -        0x113d48fff +libtorch_python.dylib (0) <6FFE6E0B-99C8-3B2B-9446-F2D68E94B32D> /Users/USER/*/libtorch_python.dylib
           0x114451000 -        0x114458fff +libshm.dylib (0) <38F4375C-A5B7-3BB3-8925-52F5CD1806FA> /Users/USER/*/libshm.dylib
           0x114461000 -        0x114464fff +libtorch.dylib (0) <6532422C-0E9F-3801-B105-3E6C91CA4467> /Users/USER/*/libtorch.dylib
           0x114469000 -        0x122a70fff +libtorch_cpu.dylib (0) <82AE3DD4-2D82-396E-9150-C7312F5BE633> /Users/USER/*/libtorch_cpu.dylib
           0x1265e1000 -        0x126620fff +libc10.dylib (0) <276B5ECB-A5BF-343F-91D2-B788AD85888E> /Users/USER/*/libc10.dylib
           0x1269d1000 -        0x1269d8fff +cmath.cpython-39-darwin.so (0) <9AC09CDE-A0F5-3FEF-BF5C-72424F065FE9> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/cmath.cpython-39-darwin.so
           0x126d65000 -        0x126d74fff +_socket.cpython-39-darwin.so (0) <6EF253A5-5EAF-35CC-A614-2D74E32B9121> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_socket.cpython-39-darwin.so
           0x126d81000 -        0x126d88fff +array.cpython-39-darwin.so (0) <B0202C09-803F-34F7-B4E4-9363093B59F8> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/array.cpython-39-darwin.so
           0x126dd5000 -        0x126dd8fff +_multiprocessing.cpython-39-darwin.so (0) <332BD481-C242-34B4-A70B-0E11231D980A> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-darwin.so
           0x126de5000 -        0x126decfff +_json.cpython-39-darwin.so (0) <DC4BB2F5-40EB-35A0-BC44-DA7149BB731B> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_json.cpython-39-darwin.so
           0x126f39000 -        0x126f50fff +_ssl.cpython-39-darwin.so (0) <EBD0CB02-BF67-336F-9FBD-13A4869607BB> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_ssl.cpython-39-darwin.so
           0x126fa9000 -        0x126facfff +_scproxy.cpython-39-darwin.so (0) <A72A237E-EF0B-39A9-81AE-EA41A1FFF780> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_scproxy.cpython-39-darwin.so
           0x126ff9000 -        0x127104fff +unicodedata.cpython-39-darwin.so (0) <1EAD11CD-B1DE-3CBD-9D2C-CBFC37001B68> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/unicodedata.cpython-39-darwin.so
           0x127151000 -        0x127154fff +_contextvars.cpython-39-darwin.so (0) <6BA31210-1027-3A2E-8169-FF749715B20E> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_contextvars.cpython-39-darwin.so
           0x127161000 -        0x127168fff +_asyncio.cpython-39-darwin.so (0) <3E3D8DCD-51CE-38FD-A8A2-54A9C590F1C6> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_asyncio.cpython-39-darwin.so
           0x127379000 -        0x12737cfff +_queue.cpython-39-darwin.so (0) <F8D4336B-467B-3B0E-AD50-7C9088C1381D> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_queue.cpython-39-darwin.so
           0x127549000 -        0x12a9c4fff +cv2.cpython-39-darwin.so (0) <058437FA-245F-3ADF-B3D0-285333C98716> /Users/USER/*/cv2.cpython-39-darwin.so
           0x12b2d1000 -        0x12beb8fff +libavcodec.58.134.100.dylib (0) <D0F1D674-A42F-3BA0-8015-B02773A497B6> /Users/USER/*/libavcodec.58.134.100.dylib
           0x12c520000 -        0x12c6bffff +libavformat.58.76.100.dylib (0) <61C4CE57-90D7-304D-AF42-AF66C9EB5782> /Users/USER/*/libavformat.58.76.100.dylib
           0x12c70d000 -        0x12c760fff +libavutil.56.70.100.dylib (0) <5FBB93C6-4A1D-32A2-9BBA-91AB94440D9A> /Users/USER/*/libavutil.56.70.100.dylib
           0x12c987000 -        0x12ca06fff +libswscale.5.9.100.dylib (0) <9FD15138-342B-3393-8294-1854527721B8> /Users/USER/*/libswscale.5.9.100.dylib
           0x12ca19000 -        0x12ca34fff +libavresample.4.0.0.dylib (0) <B8188D5D-6AC9-32D7-B6DD-32B11962C4D4> /Users/USER/*/libavresample.4.0.0.dylib
           0x12ca3f000 -        0x12ca56fff +libswresample.3.9.100.dylib (0) <FA72CEA7-AEE9-386D-BD6E-5BB932A2757D> /Users/USER/*/libswresample.3.9.100.dylib
           0x12ca61000 -        0x12ca68fff +libwebpmux.3.dylib (0) <BD65A636-38F2-3F00-9EA3-32E606BFCCAD> /Users/USER/*/libwebpmux.3.dylib
           0x12ca75000 -        0x12cac8fff +libwebp.7.dylib (0) <65305228-46FE-3C23-82B1-0A2078F1DDE2> /Users/USER/*/libwebp.7.dylib
           0x12cadd000 -        0x12caf8fff +liblzma.5.dylib (0) <E4406E42-7BC4-3945-A1A4-E9B6874EF052> /Users/USER/*/liblzma.5.dylib
           0x12caff000 -        0x12cc2efff +libdav1d.5.dylib (0) <9BEE1F8F-2999-3369-AFAC-08ADDB443C1C> /Users/USER/*/libdav1d.5.dylib
           0x12ccd7000 -        0x12cce7fff +libopencore-amrwb.0.dylib (0) <A9879565-126F-3AEA-905F-320AEC806A43> /Users/USER/*/libopencore-amrwb.0.dylib
           0x12ccec000 -        0x12ccf3fff +libsnappy.1.1.9.dylib (0) <251C5A92-ECA8-3E71-8EF2-0C236A8D748D> /Users/USER/*/libsnappy.1.1.9.dylib
           0x12cd00000 -        0x12d16bfff +libaom.3.1.0.dylib (0) <26C45648-FCB4-39F3-A9B7-8E18D4796813> /Users/USER/*/libaom.3.1.0.dylib
           0x12d248000 -        0x12d27ffff +libmp3lame.0.dylib (0) <F5423EC7-022A-341F-A0AB-CABC3CE7C8AD> /Users/USER/*/libmp3lame.0.dylib
           0x12d2b9000 -        0x12d2dafff +libopencore-amrnb.0.dylib (0) <CEE1677D-C7A6-3711-B1CD-C279B6DE625E> /Users/USER/*/libopencore-amrnb.0.dylib
           0x12d2e0000 -        0x12d31ffff +libopenjp2.2.4.0.dylib (0) <161B8769-D70C-351E-9CDE-E55C2625F9B1> /Users/USER/*/libopenjp2.2.4.0.dylib
           0x12d330000 -        0x12d377fff +libopus.0.dylib (0) <96FF16C3-2C3F-390B-BECE-81DA8C649C84> /Users/USER/*/libopus.0.dylib
           0x12d380000 -        0x12d573fff +librav1e.0.4.1.dylib (0) <9A31287C-A59C-3566-894A-FB468B282AC4> /Users/USER/*/librav1e.0.4.1.dylib
           0x12d710000 -        0x12d721fff +libspeex.1.dylib (0) <D55FE52D-75C1-3435-AFC4-D1B73390209E> /Users/USER/*/libspeex.1.dylib
           0x12d727000 -        0x12d752fff +libtheoraenc.1.dylib (0) <77483EEF-0DA5-333D-A68E-693B9C2358CC> /Users/USER/*/libtheoraenc.1.dylib
           0x12d75f000 -        0x12d76afff +libtheoradec.1.dylib (0) <D4FF1AF2-237C-3EFE-B95C-375965A5DF0D> /Users/USER/*/libtheoradec.1.dylib
           0x12d777000 -        0x12d77efff +libogg.0.dylib (0) <DC8EB20F-46D2-3E27-B931-EF5CB0B0932E> /Users/USER/*/libogg.0.dylib
           0x12d78b000 -        0x12d7adfff +libvorbis.0.dylib (0) <DA7F7CAE-8D16-37D7-B52F-9988143141A1> /Users/USER/*/libvorbis.0.dylib
           0x12d7b3000 -        0x12d82afff +libvorbisenc.2.dylib (0) <E3986D08-096C-31D1-ADE4-707F97B57C19> /Users/USER/*/libvorbisenc.2.dylib
           0x12d85c000 -        0x12d881fff +libsoxr.0.1.2.dylib (0) <CDEA82D1-E97A-3A32-9E39-DEBA5EB745E4> /Users/USER/*/libsoxr.0.1.2.dylib
           0x12d8bd000 -        0x12d8f4fff +libbluray.2.dylib (0) <8B2D2BF4-9845-33F6-BE48-1ED89BEA836A> /Users/USER/*/libbluray.2.dylib
           0x12d905000 -        0x12da4cfff +libgnutls.30.dylib (0) <59E04E3D-FDB1-389F-AB87-78E13552A590> /Users/USER/*/libgnutls.30.dylib
           0x12da9d000 -        0x12db08fff +libsrt.1.4.3.dylib (0) <5305C919-6B09-3947-9670-F09655F3BA4C> /Users/USER/*/libsrt.1.4.3.dylib
           0x12db3d000 -        0x12db98fff +libzmq.5.dylib (0) <2A595E8B-957C-3C0A-9AEC-16A5855C0BF8> /Users/USER/*/libzmq.5.dylib
           0x12dbd9000 -        0x12dc08fff +libfontconfig.1.dylib (0) <B0C36C06-6190-3DA7-9107-CE9362345FA5> /Users/USER/*/libfontconfig.1.dylib
           0x12dc16000 -        0x12dc95fff +libfreetype.6.dylib (0) <17C2EF02-7F12-3A4E-8B86-C00A63960ED0> /Users/USER/*/libfreetype.6.dylib
           0x12dcb6000 -        0x12dcd8fff +libpng16.16.dylib (0) <F666699A-02D5-3061-ADF9-B7A7E471C1E1> /Users/USER/*/libpng16.16.dylib
           0x12dce2000 -        0x12dd85fff +libp11-kit.0.dylib (0) <E0E656CF-7D65-3624-8B33-DF2A7EA8909A> /Users/USER/*/libp11-kit.0.dylib
           0x12ddd6000 -        0x12ddf5fff +libidn2.0.dylib (0) <56294D6F-3D8B-3A05-9BB4-151E62BBA2EF> /Users/USER/*/libidn2.0.dylib
           0x12de02000 -        0x12df64fff +libunistring.2.dylib (0) <87504A09-7B20-34F2-A3C7-16C988E518AD> /Users/USER/*/libunistring.2.dylib
           0x12df78000 -        0x12df87fff +libtasn1.6.dylib (0) <C617D3EF-966F-351E-BF96-E9E6183C05E1> /Users/USER/*/libtasn1.6.dylib
           0x12df94000 -        0x12dfc3fff +libnettle.8.3.dylib (0) <48774D39-0130-379E-AEBC-51692EB062CA> /Users/USER/*/libnettle.8.3.dylib
           0x12dfd8000 -        0x12e00ffff +libhogweed.6.3.dylib (0) <A1E0D479-7275-3008-9517-0D59D43D1BF1> /Users/USER/*/libhogweed.6.3.dylib
           0x12e024000 -        0x12e07ffff +libgmp.10.dylib (0) <29E83045-6043-319C-B7CD-9E8296F132D8> /Users/USER/*/libgmp.10.dylib
           0x12e094000 -        0x12e09dfff +libintl.8.dylib (0) <FA921CC0-395B-3155-8259-EA61DE25C5D2> /Users/USER/*/libintl.8.dylib
           0x12e0a4000 -        0x12e0abfff +libffi.7.dylib (0) <F207D220-5D0E-31B5-99A5-F8708D4AE6E5> /Users/USER/*/libffi.7.dylib
           0x12e0b8000 -        0x12e107fff +libssl.1.1.dylib (0) <9BD08628-AC20-3489-B3D2-AC117A5BC2F8> /Users/USER/*/libssl.1.1.dylib
           0x12e134000 -        0x12e2f3fff +libcrypto.1.1.dylib (0) <EF694AAC-B437-322C-B619-BF3EB122466C> /Users/USER/*/libcrypto.1.1.dylib
           0x12e38c000 -        0x12e3cbfff +libsodium.23.dylib (0) <D8777AB1-B4BA-324E-8E40-FEF56A1E7955> /Users/USER/*/libsodium.23.dylib
           0x12e4dd000 -        0x12e4e0fff +_c_internal_utils.cpython-39-darwin.so (0) <9BC4E036-6BC7-375D-AE52-9A1EB97A5BFA> /Users/USER/*/_c_internal_utils.cpython-39-darwin.so
           0x12e569000 -        0x12e5c8fff +_imaging.cpython-39-darwin.so (0) <340D490E-8B08-3328-886D-EFC46313D878> /Users/USER/*/_imaging.cpython-39-darwin.so
           0x12e5f5000 -        0x12e62cfff +libjpeg.9.dylib (0) <A64FF089-2549-3F0D-88B5-6659DDF22B5D> /Users/USER/*/libjpeg.9.dylib
           0x12e641000 -        0x12e6c4fff +libopenjp2.2.4.0.dylib (0) <FB6A8678-FB3E-3D87-84D5-8E6F5ADB1633> /Users/USER/*/libopenjp2.2.4.0.dylib
           0x12e6d5000 -        0x12e6f0fff +libz.1.2.11.dylib (0) <167A44E4-48C7-3096-B8B0-D995E03899F2> /Users/USER/*/libz.1.2.11.dylib
           0x12e6f9000 -        0x12e790fff +libtiff.5.dylib (0) <94F97CED-9A97-3D7D-8567-9611564FCAE9> /Users/USER/*/libtiff.5.dylib
           0x12e7a5000 -        0x12e7ccfff +libxcb.1.1.0.dylib (0) <67125A03-DD5F-316E-B8A1-8D429AA8C847> /Users/USER/*/libxcb.1.1.0.dylib
           0x12e7e1000 -        0x12e7fcfff +liblzma.5.dylib (0) <E4406E42-7BC4-3945-A1A4-E9B6874EF052> /Users/USER/*/liblzma.5.dylib
           0x12e803000 -        0x12e806fff +libXau.6.dylib (0) <BEA2533A-4E98-3333-A29C-0B9622570F4B> /Users/USER/*/libXau.6.dylib
           0x12e8cf000 -        0x12e8eefff +_path.cpython-39-darwin.so (0) <3C986497-B2CF-39CC-9B2B-E07C42E37CFA> /Users/USER/*/_path.cpython-39-darwin.so
           0x12eafb000 -        0x12eba2fff +ft2font.cpython-39-darwin.so (0) <9F949864-235E-3D4B-AA9A-BE4C3C65A429> /Users/USER/*/ft2font.cpython-39-darwin.so
           0x12ebe7000 -        0x12ebfefff +kiwisolver.cpython-39-darwin.so (0) <21C4D931-C2E0-31B1-826C-41768B17D2D0> /Users/USER/*/kiwisolver.cpython-39-darwin.so
           0x12ec9f000 -        0x12ecbafff +_decimal.cpython-39-darwin.so (0) <589604D0-94CD-3882-ABDB-489C602C8D54> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_decimal.cpython-39-darwin.so
           0x12eccb000 -        0x12ece6fff +libmpdec.3.dylib (0) <1BEE3ECE-A6D5-3B00-A1E7-5E14EF5E3858> /usr/local/opt/mpdecimal/lib/libmpdec.3.dylib
           0x12f1b7000 -        0x12f1defff +_image.cpython-39-darwin.so (0) <E0AA8B60-DC8B-3A5A-93B6-BDF0C76AD861> /Users/USER/*/_image.cpython-39-darwin.so
           0x12f46b000 -        0x12f476fff +_macosx.cpython-39-darwin.so (0) <62EE0633-7148-3526-AD88-D78B9AB7A48E> /Users/USER/*/_macosx.cpython-39-darwin.so
           0x12f483000 -        0x12f4b6fff +_backend_agg.cpython-39-darwin.so (0) <C6594352-6664-333F-B649-0C248C94D62B> /Users/USER/*/_backend_agg.cpython-39-darwin.so
           0x12f58b000 -        0x12f592fff +pyexpat.cpython-39-darwin.so (0) <DA850A64-BFCD-3C36-A429-928CC3934865> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/pyexpat.cpython-39-darwin.so
           0x12f81f000 -        0x12f97afff +_message.cpython-39-darwin.so (0) <AC3C0037-1451-343A-8CE4-FF84F4CCF6EB> /Users/USER/*/_message.cpython-39-darwin.so
           0x12fc4d000 -        0x12fc54fff +_csv.cpython-39-darwin.so (0) <541B0BFA-41D7-3783-AE78-24A7B90DB958> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_csv.cpython-39-darwin.so
           0x12fca1000 -        0x12fca4fff +fcntl.cpython-39-darwin.so (0) <16DCC9F6-908A-3502-80C9-34E8C36C0B72> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/fcntl.cpython-39-darwin.so
           0x12fcb1000 -        0x12fcb4fff +termios.cpython-39-darwin.so (0) <896FC6EC-1438-35B0-9BBC-6CAB8C99C671> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/termios.cpython-39-darwin.so
           0x12fe01000 -        0x12fe50fff +_yaml.cpython-39-darwin.so (0) <DB663694-47F6-3DBB-9729-26FF01F4F3A0> /Users/USER/*/_yaml.cpython-39-darwin.so
           0x12fe75000 -        0x12fe78fff +__init__.cpython-39-darwin.so (0) <B8A6F134-DD51-38D6-8A21-8270F050A169> /Users/USER/*/__init__.cpython-39-darwin.so
           0x12fe85000 -        0x12fea8fff +dataclasses.cpython-39-darwin.so (0) <F88B0986-3158-3FEF-82BE-F307D95D03C7> /Users/USER/*/dataclasses.cpython-39-darwin.so
           0x12fec9000 -        0x12fef4fff +class_validators.cpython-39-darwin.so (0) <9A90E8DE-A738-3112-A557-AB9A91DCA0C2> /Users/USER/*/class_validators.cpython-39-darwin.so
           0x12ff1d000 -        0x12ff50fff +errors.cpython-39-darwin.so (0) <5DC5B3D5-4477-3244-98E5-E6E32F24B4DD> /Users/USER/*/errors.cpython-39-darwin.so
           0x12ff7d000 -        0x12ffa8fff +typing.cpython-39-darwin.so (0) <9378460F-7D51-3151-9B91-3A69144D48C9> /Users/USER/*/typing.cpython-39-darwin.so
           0x130011000 -        0x130054fff +utils.cpython-39-darwin.so (0) <93B0E07D-0AF2-34B4-99A7-C7315E6CE623> /Users/USER/*/utils.cpython-39-darwin.so
           0x130089000 -        0x130094fff +version.cpython-39-darwin.so (0) <24CA2AD9-8939-38D8-A437-5E5CA5A5D68C> /Users/USER/*/version.cpython-39-darwin.so
           0x1300a1000 -        0x1300bcfff +error_wrappers.cpython-39-darwin.so (0) <735A2938-EE89-3FB4-90DD-0689BF6150AE> /Users/USER/*/error_wrappers.cpython-39-darwin.so
           0x1300d5000 -        0x1300e8fff +json.cpython-39-darwin.so (0) <D23B228F-2B54-3963-8C84-D7AE413D1DBC> /Users/USER/*/json.cpython-39-darwin.so
           0x130139000 -        0x130170fff +color.cpython-39-darwin.so (0) <20C91F2B-BFC1-32A0-B7FF-EBD9F50E16EA> /Users/USER/*/color.cpython-39-darwin.so
           0x13019d000 -        0x1301fcfff +types.cpython-39-darwin.so (0) <E9DD8B49-5ECC-3012-8CF2-65B17E81D802> /Users/USER/*/types.cpython-39-darwin.so
           0x130245000 -        0x1302a0fff +validators.cpython-39-darwin.so (0) <7399AA81-65D2-3D28-9B17-D71D2F110461> /Users/USER/*/validators.cpython-39-darwin.so
           0x1302e1000 -        0x1302fcfff +datetime_parse.cpython-39-darwin.so (0) <1F9F6A56-5D68-37D9-A59D-A98B0A0AF570> /Users/USER/*/datetime_parse.cpython-39-darwin.so
           0x130351000 -        0x1303c0fff +fields.cpython-39-darwin.so (0) <2ABB24A3-72C4-3089-BA6D-7A90BA687CFC> /Users/USER/*/fields.cpython-39-darwin.so
           0x130405000 -        0x130478fff +main.cpython-39-darwin.so (0) <A38064E4-07B5-3713-9F67-9C1D050AECCB> /Users/USER/*/main.cpython-39-darwin.so
           0x1304bd000 -        0x1304c8fff +parse.cpython-39-darwin.so (0) <2FDA94D2-11C1-3C02-9D26-A290D38EDBC0> /Users/USER/*/parse.cpython-39-darwin.so
           0x1304d5000 -        0x13054cfff +schema.cpython-39-darwin.so (0) <F68454A2-02EB-340E-B239-0E1E5FAFEBCB> /Users/USER/*/schema.cpython-39-darwin.so
           0x130591000 -        0x1305c8fff +networks.cpython-39-darwin.so (0) <42AEC51C-C314-3401-A8BF-8E560CAC9DEE> /Users/USER/*/networks.cpython-39-darwin.so
           0x130635000 -        0x130640fff +annotated_types.cpython-39-darwin.so (0) <C8251061-B998-30DB-B155-0C69832827B1> /Users/USER/*/annotated_types.cpython-39-darwin.so
           0x13064d000 -        0x130670fff +decorator.cpython-39-darwin.so (0) <FCAF3100-701C-38C8-B1E8-20B9DB9950DA> /Users/USER/*/decorator.cpython-39-darwin.so
           0x13068d000 -        0x1306b0fff +env_settings.cpython-39-darwin.so (0) <7EF31DD7-FCF4-3766-A4E1-9CEBD4F83603> /Users/USER/*/env_settings.cpython-39-darwin.so
           0x1306cd000 -        0x1306dcfff +tools.cpython-39-darwin.so (0) <A0C525D2-C096-325E-ABFF-8F58AD275798> /Users/USER/*/tools.cpython-39-darwin.so
           0x13072d000 -        0x130738fff +lib_nes_env.cpython-39-darwin.so (0) <44E2DDEA-3D0C-34A7-BB31-0A24EFCDAE8D> /Users/USER/*/lib_nes_env.cpython-39-darwin.so
           0x1307a1000 -        0x130828fff +_C.so (0) <2C60267C-42A4-324E-BEEB-D77080136B6E> /Users/USER/*/_C.so
           0x130861000 -        0x1308dcfff +libc++.1.0.dylib (0) <397CB9FF-24A5-3156-8682-2E918D97C953> /Users/USER/*/libc++.1.0.dylib
           0x130b70000 -        0x130b77fff +_imagingft.cpython-39-darwin.so (0) <8096CACD-86B5-30B6-BFEE-FD88343CE2BF> /Users/USER/*/_imagingft.cpython-39-darwin.so
           0x130b80000 -        0x130c5ffff +libfreetype.6.dylib (0) <D5DA1F9B-6EFD-3827-8618-01EC82CB774F> /Users/USER/*/libfreetype.6.dylib
           0x130c80000 -        0x130e33fff +libharfbuzz.0.dylib (0) <A91D2A2E-F411-3094-82B1-546DC8834589> /Users/USER/*/libharfbuzz.0.dylib
           0x130fa0000 -        0x130fdffff +libpng16.16.dylib (0) <2443098B-9EBC-3FB7-8459-FDF084A36A6C> /Users/USER/*/libpng16.16.dylib
           0x130fec000 -        0x131004fff +libfribidi.0.dylib (0) <7689F44B-636D-31AB-960D-DFA16D0BDDA1> /usr/local/Cellar/fribidi/1.0.10/lib/libfribidi.0.dylib
           0x1310c9000 -        0x1310d4fff +_elementtree.cpython-39-darwin.so (0) <A3421CB5-BC48-3990-9FFF-3D908709FD13> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_elementtree.cpython-39-darwin.so
           0x131125000 -        0x13117cfff +video_reader.so (0) <AC5BE11E-E310-30F0-B0C6-1E68ADB0F28E> /Users/USER/*/video_reader.so
           0x1311bd000 -        0x13215ffff +libavcodec.58.54.100.dylib (0) <2D57A33E-BD96-3F26-B248-5363F7934883> /Users/USER/*/libavcodec.58.54.100.dylib
           0x1327b9000 -        0x132981fff +libavformat.58.29.100.dylib (0) <B1596DF4-A989-3770-AFDA-5B3617B4281C> /Users/USER/*/libavformat.58.29.100.dylib
           0x1329c6000 -        0x132a1efff +libavutil.56.31.100.dylib (0) <A3CE92E2-6AB8-3C1D-895C-9A1D6D98BCB8> /Users/USER/*/libavutil.56.31.100.dylib
           0x132abb000 -        0x132ad6fff +libswresample.3.5.100.dylib (0) <9021ED96-68E8-3631-A9B6-03A184360251> /Users/USER/*/libswresample.3.5.100.dylib
           0x132adb000 -        0x132b9dfff +libswscale.5.5.100.dylib (0) <EE3ABDD9-0B09-3F5E-B87C-7DB525BFE246> /Users/USER/*/libswscale.5.5.100.dylib
           0x132baa000 -        0x132c88fff +libiconv.2.dylib (0) <54F8BCBC-7F35-321F-9DBB-04CCC381C526> /Users/USER/*/libiconv.2.dylib
           0x132c94000 -        0x132ca9fff +libz.1.2.11.dylib (0) <9F3E21C1-F8BB-3DB7-918E-2BF914C74F6F> /Users/USER/*/libz.1.2.11.dylib
           0x132cad000 -        0x132cf5fff +libmp3lame.0.dylib (0) <B6A8675A-7CE9-35D1-B5CD-98A05EAEB817> /Users/USER/*/libmp3lame.0.dylib
           0x132d2b000 -        0x132e10fff +libopenh264.2.1.0.dylib (0) <E01520A5-C519-3319-845B-63F75E191801> /Users/USER/*/libopenh264.2.1.0.dylib
           0x132e53000 -        0x132e63fff +libbz2.1.0.8.dylib (0) <C4A6D9CF-7CFA-3CDD-94A2-0FC577E53071> /Users/USER/*/libbz2.1.0.8.dylib
           0x132e66000 -        0x132f92fff +libgnutls.30.dylib (0) <74D5F6DF-A5B1-3786-B59E-5A6068590504> /Users/USER/*/libgnutls.30.dylib
           0x132fd4000 -        0x132ff3fff +libidn2.0.dylib (0) <7DDC9170-5C76-3646-B309-DBEF0A4DB438> /Users/USER/*/libidn2.0.dylib
           0x132ff7000 -        0x133164fff +libunistring.2.dylib (0) <E86B0078-ACFC-35B5-836D-08C360CB4546> /Users/USER/*/libunistring.2.dylib
           0x133176000 -        0x133185fff +libtasn1.6.dylib (0) <3CA6DFAD-F788-3E51-9521-5627B8B1C366> /Users/USER/*/libtasn1.6.dylib
           0x133189000 -        0x1331bcfff +libnettle.8.4.dylib (0) <BE99CDF2-6373-3C9C-A191-5689C738D636> /Users/USER/*/libnettle.8.4.dylib
           0x1331e1000 -        0x133219fff +libhogweed.6.4.dylib (0) <79FB79E3-922E-3EC7-9BFE-1820DEAA3719> /Users/USER/*/libhogweed.6.4.dylib
           0x133231000 -        0x1332bcfff +libgmp.10.dylib (0) <B90EF9B1-36B0-3AB2-8C6F-981E0A69886B> /Users/USER/*/libgmp.10.dylib
           0x1332cc000 -        0x1332d6fff +libintl.8.dylib (0) <5B4596F5-FE8B-3A29-9630-A5D555F6905F> /Users/USER/*/libintl.8.dylib
           0x1332dc000 -        0x1332ebfff +image.so (0) <2447880D-5A92-3D60-AC06-EA8B498BC9BE> /Users/USER/*/image.so
           0x133300000 -        0x13332dfff +libpng16.16.dylib (0) <D34CA7DD-0A29-3F52-A226-03657F1BFE6B> /Users/USER/*/libpng16.16.dylib
           0x133336000 -        0x13336dfff +libjpeg.8.dylib (0) <625E86EC-E676-374F-B113-31B7C1A3D8B5> /Users/USER/*/libjpeg.8.dylib
           0x1333b4000 -        0x135c30fff +libllvmlite.dylib (0) <D41DB033-9219-375A-BD43-2BF0EF59A46B> /Users/USER/*/libllvmlite.dylib
           0x136769000 -        0x13676cfff +_lsprof.cpython-39-darwin.so (0) <5AA42060-BC40-391F-B3D7-E902CFE1AC84> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/_lsprof.cpython-39-darwin.so
           0x136879000 -        0x13687afff +_typeconv.cpython-39-darwin.so (0) <53B96668-FEE1-3348-B5CF-3704101E73DF> /Users/USER/*/_typeconv.cpython-39-darwin.so
           0x1369bd000 -        0x1369ebfff +_helperlib.cpython-39-darwin.so (0) <2F0FA90B-BC60-352B-B3C3-C5D12E09EDDC> /Users/USER/*/_helperlib.cpython-39-darwin.so
           0x136a35000 -        0x136a36fff +_dynfunc.cpython-39-darwin.so (0) <76DCF259-7C5F-3A0E-ADB3-23520EE09F3F> /Users/USER/*/_dynfunc.cpython-39-darwin.so
           0x136ab9000 -        0x136abffff +_dispatcher.cpython-39-darwin.so (0) <DB082428-5D46-3555-8F8A-906B58E92AAE> /Users/USER/*/_dispatcher.cpython-39-darwin.so
           0x136ac4000 -        0x136ac4fff +_devicearray.cpython-39-darwin.so (0) <274387E1-270C-3B22-B39B-ADEF47E892DE> /Users/USER/*/_devicearray.cpython-39-darwin.so
           0x136dc7000 -        0x136dcafff +_nrt_python.cpython-39-darwin.so (0) <1D5D5D46-7B9B-3EA5-8197-0C4C88F3D0DC> /Users/USER/*/_nrt_python.cpython-39-darwin.so
           0x136e8e000 -        0x136e90fff +_internal.cpython-39-darwin.so (0) <9A862218-A34F-393F-9807-EB3FE5DD1825> /Users/USER/*/_internal.cpython-39-darwin.so
           0x136f14000 -        0x136f20fff +_ccallback_c.cpython-39-darwin.so (0) <CB7D5E85-B15A-3E63-8C9E-F14151E5D2FB> /Users/USER/*/_ccallback_c.cpython-39-darwin.so
           0x136f6c000 -        0x136f6ffff +mmap.cpython-39-darwin.so (0) <68CFE3EC-B61F-3D43-B14A-26C097D2D0A3> /usr/local/Cellar/[email protected]/3.9.7/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload/mmap.cpython-39-darwin.so
           0x136fbc000 -        0x1370a6fff +interval.cpython-39-darwin.so (0) <0B5C4743-FB1C-3E08-9AF3-C1FC37936B79> /Users/USER/*/interval.cpython-39-darwin.so
           0x137103000 -        0x137233fff +hashtable.cpython-39-darwin.so (0) <E382D80A-EF6D-3207-A5B8-D285BBDE4066> /Users/USER/*/hashtable.cpython-39-darwin.so
           0x1372b5000 -        0x1372dafff +missing.cpython-39-darwin.so (0) <5FCB1CAD-D9F6-3884-9CEC-7D3FC5E70978> /Users/USER/*/missing.cpython-39-darwin.so
           0x137338000 -        0x13734bfff +dtypes.cpython-39-darwin.so (0) <44F0F6A1-C41B-339A-B23B-7FE4C39A788B> /Users/USER/*/dtypes.cpython-39-darwin.so
           0x137361000 -        0x137393fff +conversion.cpython-39-darwin.so (0) <DE5F606B-DBBA-38F1-A380-1B4543ADDD11> /Users/USER/*/conversion.cpython-39-darwin.so
           0x1373b1000 -        0x1373b5fff +base.cpython-39-darwin.so (0) <61BABC4E-F138-3D3D-8ACD-36538231C5DD> /Users/USER/*/base.cpython-39-darwin.so
           0x1373bc000 -        0x1373e5fff +nattype.cpython-39-darwin.so (0) <88CE307D-FBBC-309C-9657-A85667AB5AE8> /Users/USER/*/nattype.cpython-39-darwin.so
           0x137408000 -        0x137410fff +np_datetime.cpython-39-darwin.so (0) <68EEE593-2F92-37C4-82F7-FC7BC9694527> /Users/USER/*/np_datetime.cpython-39-darwin.so
           0x137418000 -        0x137442fff +timezones.cpython-39-darwin.so (0) <672DA392-2A12-36D8-921C-F1800F16F5B0> /Users/USER/*/timezones.cpython-39-darwin.so
           0x13745d000 -        0x137498fff +tzconversion.cpython-39-darwin.so (0) <AB15B925-700C-3D6F-B40B-51034EE0FD97> /Users/USER/*/tzconversion.cpython-39-darwin.so
           0x1374b6000 -        0x1374befff +ccalendar.cpython-39-darwin.so (0) <CB541F32-E099-39E0-AC7D-EB7D864D8B9D> /Users/USER/*/ccalendar.cpython-39-darwin.so
           0x1374c9000 -        0x137514fff +parsing.cpython-39-darwin.so (0) <02E1B0EF-033F-3732-97F3-F2995FECDCF5> /Users/USER/*/parsing.cpython-39-darwin.so
           0x137543000 -        0x137604fff +offsets.cpython-39-darwin.so (0) <46397768-B365-3ACF-A70D-4843C7F2F4C7> /Users/USER/*/offsets.cpython-39-darwin.so
           0x1376af000 -        0x137700fff +timedeltas.cpython-39-darwin.so (0) <BBFEB54F-9AB2-3B8F-90CB-270F25B70A4C> /Users/USER/*/timedeltas.cpython-39-darwin.so
           0x137735000 -        0x13776afff +fields.cpython-39-darwin.so (0) <5E1BBD92-E2B5-3250-8127-6D4043E557FA> /Users/USER/*/fields.cpython-39-darwin.so
           0x13778c000 -        0x1377d4fff +strptime.cpython-39-darwin.so (0) <F443F7C6-5B49-321F-8846-55E31B4C7174> /Users/USER/*/strptime.cpython-39-darwin.so
           0x137800000 -        0x137856fff +timestamps.cpython-39-darwin.so (0) <F2BE2F12-515E-3E36-96B7-F008F25E93FA> /Users/USER/*/timestamps.cpython-39-darwin.so
           0x1378d4000 -        0x1378dcfff +properties.cpython-39-darwin.so (0) <44E95D20-8B29-384C-8D61-EDA2E5DF505D> /Users/USER/*/properties.cpython-39-darwin.so
           0x1378e6000 -        0x13792efff +period.cpython-39-darwin.so (0) <A08CEF3B-E0CD-39C4-A648-99D3B631780B> /Users/USER/*/period.cpython-39-darwin.so
           0x13795e000 -        0x137984fff +vectorized.cpython-39-darwin.so (0) <7609B1A3-3AA0-356E-8EDC-A6F0DC837205> /Users/USER/*/vectorized.cpython-39-darwin.so
           0x13799a000 -        0x1379a0fff +ops_dispatch.cpython-39-darwin.so (0) <13387708-6CB1-36ED-80F3-8AE0B3A2578C> /Users/USER/*/ops_dispatch.cpython-39-darwin.so
           0x1379aa000 -        0x137b2afff +algos.cpython-39-darwin.so (0) <2FE4C4AF-9086-3754-9D15-B1CD6ADDD803> /Users/USER/*/algos.cpython-39-darwin.so
           0x137bdc000 -        0x137c4efff +lib.cpython-39-darwin.so (0) <0807864D-B5B9-3BB8-BBA7-6929A3AACEB8> /Users/USER/*/lib.cpython-39-darwin.so
           0x137c97000 -        0x137cb6fff +tslib.cpython-39-darwin.so (0) <51B5E12B-AE0F-35B0-93A9-7B5EF4AE9979> /Users/USER/*/tslib.cpython-39-darwin.so
           0x137cc8000 -        0x137ce3fff +hashing.cpython-39-darwin.so (0) <A0610428-9BF8-3928-85AD-9DFA97EFC2E9> /Users/USER/*/hashing.cpython-39-darwin.so
           0x137db5000 -        0x137ddcfff +ops.cpython-39-darwin.so (0) <ED888E3A-DFD1-3297-8052-23A1B9744391> /Users/USER/*/ops.cpython-39-darwin.so
           0x137e73000 -        0x137e7ffff +arrays.cpython-39-darwin.so (0) <510F3F39-8E98-38DF-B931-0FBA7D9AE552> /Users/USER/*/arrays.cpython-39-darwin.so
           0x137fca000 -        0x138037fff +index.cpython-39-darwin.so (0) <91C517D4-8C34-3337-9A5E-8ED1159333BC> /Users/USER/*/index.cpython-39-darwin.so
           0x138071000 -        0x1382f8fff +join.cpython-39-darwin.so (0) <50BA927A-41DC-3A33-8129-CD94AB76FA1D> /Users/USER/*/join.cpython-39-darwin.so
           0x138382000 -        0x13844afff +sparse.cpython-39-darwin.so (0) <86A6E7A2-1AC2-3387-B69E-83961701C712> /Users/USER/*/sparse.cpython-39-darwin.so
           0x138542000 -        0x138576fff +reduction.cpython-39-darwin.so (0) <53DBC8F3-5FD5-3CE3-8C75-EBAFD12A9A4B> /Users/USER/*/reduction.cpython-39-darwin.so
           0x1386d4000 -        0x1386d9fff +indexing.cpython-39-darwin.so (0) <4DE60F86-C3FC-3258-B7C9-B5260D8D9DFC> /Users/USER/*/indexing.cpython-39-darwin.so
           0x138720000 -        0x138755fff +internals.cpython-39-darwin.so (0) <5D856370-B2DE-3212-9EFE-30A4B90D5CD0> /Users/USER/*/internals.cpython-39-darwin.so
           0x138778000 -        0x138798fff +writers.cpython-39-darwin.so (0) <CE35ABD3-4433-35FA-A58B-860F129C3147> /Users/USER/*/writers.cpython-39-darwin.so
           0x13886f000 -        0x1388affff +aggregations.cpython-39-darwin.so (0) <9B825ADA-839A-3E4E-BA02-874E27C85933> /Users/USER/*/aggregations.cpython-39-darwin.so
           0x1388d7000 -        0x1388f1fff +indexers.cpython-39-darwin.so (0) <6B859CCB-84BE-397C-AF21-EC6802E537C7> /Users/USER/*/indexers.cpython-39-darwin.so
           0x138983000 -        0x1389b0fff +reshape.cpython-39-darwin.so (0) <5164BE8A-B11D-3CAD-9E36-03A90E2EF197> /Users/USER/*/reshape.cpython-39-darwin.so
           0x138a48000 -        0x138b57fff +groupby.cpython-39-darwin.so (0) <6DCF20D4-4E68-342F-A3CD-E6A5ADE3C871> /Users/USER/*/groupby.cpython-39-darwin.so
           0x138c5d000 -        0x138cb9fff +parsers.cpython-39-darwin.so (0) <BB7A9FDE-09BF-363D-8EF2-9E5E7027F9D1> /Users/USER/*/parsers.cpython-39-darwin.so
           0x138d2c000 -        0x138d3afff +json.cpython-39-darwin.so (0) <6476645A-6C14-378F-BC38-ECB515B50984> /Users/USER/*/json.cpython-39-darwin.so
           0x138ec4000 -        0x138ed2fff +testing.cpython-39-darwin.so (0) <A77EB2F3-62ED-31DA-BFBE-CB69E95D256C> /Users/USER/*/testing.cpython-39-darwin.so
           0x138f1f000 -        0x138fabfff +ckdtree.cpython-39-darwin.so (0) <11AB9E7B-2357-30CC-9948-54451E29203D> /Users/USER/*/ckdtree.cpython-39-darwin.so
           0x13902e000 -        0x1394ecfff +_sparsetools.cpython-39-darwin.so (0) <A43C6872-2D36-30BA-8B3B-D8B8C1BBE1C9> /Users/USER/*/_sparsetools.cpython-39-darwin.so
           0x139654000 -        0x1396ccfff +_csparsetools.cpython-39-darwin.so (0) <215BBED3-51FB-33A6-AD1E-9CF9A68537AD> /Users/USER/*/_csparsetools.cpython-39-darwin.so
           0x1396ff000 -        0x139750fff +_shortest_path.cpython-39-darwin.so (0) <0887ECD3-F977-3B28-A71C-8343BD0AEE8D> /Users/USER/*/_shortest_path.cpython-39-darwin.so
           0x139779000 -        0x139795fff +_tools.cpython-39-darwin.so (0) <6E5BD05F-A7AF-3B31-A1F6-3040CF9CD18A> /Users/USER/*/_tools.cpython-39-darwin.so
           0x1397aa000 -        0x1397c2fff +_traversal.cpython-39-darwin.so (0) <F2F85516-DF69-3F24-9138-31D9CB3D4FE6> /Users/USER/*/_traversal.cpython-39-darwin.so
           0x1397d2000 -        0x1397f0fff +_min_spanning_tree.cpython-39-darwin.so (0) <BADC00CD-09A9-3977-BB73-B14066FC2934> /Users/USER/*/_min_spanning_tree.cpython-39-darwin.so
           0x139804000 -        0x13982cfff +_flow.cpython-39-darwin.so (0) <C6988FA3-AB6C-3DEA-B4EF-1197F72A8748> /Users/USER/*/_flow.cpython-39-darwin.so
           0x139847000 -        0x139877fff +_matching.cpython-39-darwin.so (0) <CCE3C349-D9F4-35B6-B028-E39E8C218723> /Users/USER/*/_matching.cpython-39-darwin.so
           0x139894000 -        0x1398befff +_reordering.cpython-39-darwin.so (0) <DB750A8B-0FB9-3E6D-B5AE-D934F1BE9457> /Users/USER/*/_reordering.cpython-39-darwin.so
           0x139919000 -        0x1399f0fff +qhull.cpython-39-darwin.so (0) <EEFA3B64-17A7-3A23-AAE3-B18430240776> /Users/USER/*/qhull.cpython-39-darwin.so
           0x139a3e000 -        0x13d47ffff +libopenblas.0.dylib (0) <6286B1A0-1FC3-3620-A830-7AF7902EAD7F> /Users/USER/*/libopenblas.0.dylib
           0x13d774000 -        0x13d88bfff +libgfortran.3.dylib (0) <9ABE5EDE-AD43-391A-9E54-866711FAC32A> /Users/USER/*/libgfortran.3.dylib
           0x13d8f8000 -        0x13d92efff +libquadmath.0.dylib (0) <7FFA409F-FB04-3B64-BE9A-3E3A494C975E> /Users/USER/*/libquadmath.0.dylib
           0x13d942000 -        0x13d957fff +libgcc_s.1.dylib (0) <7C6D7CB7-82DB-3290-8181-07646FEA1F80> /Users/USER/*/libgcc_s.1.dylib
           0x143967000 -        0x14396cfff +messagestream.cpython-39-darwin.so (0) <8166D772-EFED-3B93-AC11-9F64A501DCDD> /Users/USER/*/messagestream.cpython-39-darwin.so
           0x143973000 -        0x14398dfff +_voronoi.cpython-39-darwin.so (0) <E33CA59B-B751-3FFF-AA04-EEF172046539> /Users/USER/*/_voronoi.cpython-39-darwin.so
           0x14399f000 -        0x1439fcfff +_fblas.cpython-39-darwin.so (0) <49674101-9FEA-3BEB-885D-1CAD642F43B7> /Users/USER/*/_fblas.cpython-39-darwin.so
           0x143a3b000 -        0x143b6cfff +_flapack.cpython-39-darwin.so (0) <78B0243F-ED10-3E68-B634-946DDE26F2E9> /Users/USER/*/_flapack.cpython-39-darwin.so
           0x143c7a000 -        0x143c86fff +_flinalg.cpython-39-darwin.so (0) <31BCBAD3-4C46-372E-89FE-5B262B451242> /Users/USER/*/_flinalg.cpython-39-darwin.so
           0x143c93000 -        0x143cb8fff +_solve_toeplitz.cpython-39-darwin.so (0) <84CE24CE-0D03-3095-891B-E169A92F5C56> /Users/USER/*/_solve_toeplitz.cpython-39-darwin.so
           0x143d10000 -        0x143d2ffff +_matfuncs_sqrtm_triu.cpython-39-darwin.so (0) <ED647DE1-80C9-3149-8896-356355ED7DE6> /Users/USER/*/_matfuncs_sqrtm_triu.cpython-39-darwin.so
           0x143d44000 -        0x143d79fff +_decomp_update.cpython-39-darwin.so (0) <5ADAC87E-96B2-3609-AC7C-A91F393ABB86> /Users/USER/*/_decomp_update.cpython-39-darwin.so
           0x143d8f000 -        0x143db4fff +cython_blas.cpython-39-darwin.so (0) <1ED95CEC-6E53-33F9-A6AF-8935ED46593F> /Users/USER/*/cython_blas.cpython-39-darwin.so
           0x143dd6000 -        0x143e3efff +cython_lapack.cpython-39-darwin.so (0) <962AC79E-4CAF-3F1E-A784-086138162CC0> /Users/USER/*/cython_lapack.cpython-39-darwin.so
           0x143ee2000 -        0x143ef1fff +_distance_wrap.cpython-39-darwin.so (0) <1DAB3DC8-47D1-3DAB-84A9-3EE32A1EF1C7> /Users/USER/*/_distance_wrap.cpython-39-darwin.so
           0x143efc000 -        0x143f17fff +_hausdorff.cpython-39-darwin.so (0) <2D24D024-9400-32A6-91C7-B915DAA478C9> /Users/USER/*/_hausdorff.cpython-39-darwin.so
           0x143f29000 -        0x1440affff +_ufuncs.cpython-39-darwin.so (0) <D644C26D-9B92-3E20-A191-1DDBE4D6515D> /Users/USER/*/_ufuncs.cpython-39-darwin.so
           0x14412c000 -        0x144140fff +_ufuncs_cxx.cpython-39-darwin.so (0) <BF3DAB68-ED1C-3FB0-BBD4-B4C981B33FBA> /Users/USER/*/_ufuncs_cxx.cpython-39-darwin.so
           0x144150000 -        0x14420afff +specfun.cpython-39-darwin.so (0) <5C7BE49B-2344-390C-BD20-386C0B58C37D> /Users/USER/*/specfun.cpython-39-darwin.so
           0x144261000 -        0x144264fff +_comb.cpython-39-darwin.so (0) <5E104723-F9C8-3C1C-B977-A3D43DC176E0> /Users/USER/*/_comb.cpython-39-darwin.so
           0x144269000 -        0x144275fff +_ellip_harm_2.cpython-39-darwin.so (0) <33C085EC-F0B3-3516-B11A-ED9175160435> /Users/USER/*/_ellip_harm_2.cpython-39-darwin.so
           0x144284000 -        0x1442bafff +_distance_pybind.cpython-39-darwin.so (0) <EB797653-266F-3425-8D3D-4A0CEB9118FF> /Users/USER/*/_distance_pybind.cpython-39-darwin.so
           0x1442dc000 -        0x144348fff +rotation.cpython-39-darwin.so (0) <99D21C5B-7FD4-343C-BD7A-094244EA4FF0> /Users/USER/*/rotation.cpython-39-darwin.so
           0x144403000 -        0x144406fff +_check_build.cpython-39-darwin.so (0) <C18E210A-BEDC-3E49-B286-AF7E45BAF82B> /Users/USER/*/_check_build.cpython-39-darwin.so
           0x14440f000 -        0x14446bfff +libomp.dylib (0) <67E65C94-D6D2-3253-B1BE-34B2D0DC141B> /Users/USER/*/libomp.dylib
           0x14449e000 -        0x1444a9fff +murmurhash.cpython-39-darwin.so (0) <B13AF96C-21AE-3520-A600-ABB99AEEDBC5> /Users/USER/*/murmurhash.cpython-39-darwin.so
           0x144637000 -        0x14463efff +_psutil_osx.cpython-39-darwin.so (0) <1D8BA00C-88D7-3969-B646-BAA9D4008EC2> /Users/USER/*/_psutil_osx.cpython-39-darwin.so
           0x144647000 -        0x14464afff +_psutil_posix.cpython-39-darwin.so (0) <D8075278-77D9-37AE-9F17-22BBE2D96380> /Users/USER/*/_psutil_posix.cpython-39-darwin.so
           0x1446d3000 -        0x1446f5fff +_nd_image.cpython-39-darwin.so (0) <0360D541-D11F-30E5-B953-D41AD7042EB5> /Users/USER/*/_nd_image.cpython-39-darwin.so
           0x1446fc000 -        0x144738fff +_ni_label.cpython-39-darwin.so (0) <1C2D71DF-10E8-32B9-91A0-656A3A72FB64> /Users/USER/*/_ni_label.cpython-39-darwin.so
           0x1447d4000 -        0x1447dbfff +minpack2.cpython-39-darwin.so (0) <EBECE5DC-5460-37D3-8927-E79579121DF3> /Users/USER/*/minpack2.cpython-39-darwin.so
           0x1447e5000 -        0x144813fff +_iterative.cpython-39-darwin.so (0) <0AF8CFB0-BAB2-3775-AC45-B3674335C86F> /Users/USER/*/_iterative.cpython-39-darwin.so
           0x144870000 -        0x1448c0fff +_superlu.cpython-39-darwin.so (0) <1FC66ED7-508B-3619-BD2F-9AE2C88738B6> /Users/USER/*/_superlu.cpython-39-darwin.so
           0x1448dc000 -        0x144962fff +_arpack.cpython-39-darwin.so (0) <03D2C4DF-C51B-3D85-8C36-999063295D42> /Users/USER/*/_arpack.cpython-39-darwin.so
           0x144988000 -        0x144993fff +_group_columns.cpython-39-darwin.so (0) <FF6B4CE7-29A2-3F85-AF5C-E558860C51B0> /Users/USER/*/_group_columns.cpython-39-darwin.so
           0x1449dc000 -        0x144a11fff +_trlib.cpython-39-darwin.so (0) <2E679185-E8A2-309B-91BE-BF1C7A31FDF9> /Users/USER/*/_trlib.cpython-39-darwin.so
           0x144a72000 -        0x144a8ffff +_lbfgsb.cpython-39-darwin.so (0) <3FB6BF32-E432-3261-B394-41975818EA8B> /Users/USER/*/_lbfgsb.cpython-39-darwin.so
           0x144a9a000 -        0x144aa4fff +moduleTNC.cpython-39-darwin.so (0) <97525FD8-B53E-3F83-B3B2-863A61872939> /Users/USER/*/moduleTNC.cpython-39-darwin.so
           0x144aa7000 -        0x144ac4fff +_cobyla.cpython-39-darwin.so (0) <8339F6C6-8A66-3CCF-91F5-40B34C55E6F1> /Users/USER/*/_cobyla.cpython-39-darwin.so
           0x144ace000 -        0x144aecfff +_slsqp.cpython-39-darwin.so (0) <368383B2-A44D-349F-AEB2-D206B559CC46> /Users/USER/*/_slsqp.cpython-39-darwin.so
           0x144b36000 -        0x144b53fff +_minpack.cpython-39-darwin.so (0) <B7A570B4-1E81-3D90-88DF-EA0F71A7FCF7> /Users/USER/*/_minpack.cpython-39-darwin.so
           0x144b5d000 -        0x144b76fff +givens_elimination.cpython-39-darwin.so (0) <D4B7EAA4-4712-3A49-AE29-DD5ECE2F2555> /Users/USER/*/givens_elimination.cpython-39-darwin.so
           0x144bc7000 -        0x144bc8fff +_zeros.cpython-39-darwin.so (0) <EE6FC0E5-2BA4-3A8C-B3DB-AD109105E138> /Users/USER/*/_zeros.cpython-39-darwin.so
           0x144bcb000 -        0x144bd3fff +__nnls.cpython-39-darwin.so (0) <891C41C6-739D-315A-A988-F94D86B78721> /Users/USER/*/__nnls.cpython-39-darwin.so
           0x144bdd000 -        0x144d62fff +_highs_wrapper.cpython-39-darwin.so (0) <AB404E5C-0B95-34D0-9A1A-DFBEBDB97143> /Users/USER/*/_highs_wrapper.cpython-39-darwin.so
           0x144e20000 -        0x144e23fff +_highs_constants.cpython-39-darwin.so (0) <D2CBB823-7DCC-3BFF-B404-3BBF00CF4E81> /Users/USER/*/_highs_constants.cpython-39-darwin.so
           0x144e6a000 -        0x144f0cfff +_interpolative.cpython-39-darwin.so (0) <0D777D3D-EE60-374F-83DD-4C5991CF53FF> /Users/USER/*/_interpolative.cpython-39-darwin.so
           0x144f39000 -        0x144f66fff +_bglu_dense.cpython-39-darwin.so (0) <EE8D5688-6B43-3450-9AEF-B56C788CDD6C> /Users/USER/*/_bglu_dense.cpython-39-darwin.so
           0x144f83000 -        0x144f86fff +_lsap_module.cpython-39-darwin.so (0) <D9E7EEDC-AA18-3E4E-9910-D2BA86C44AF2> /Users/USER/*/_lsap_module.cpython-39-darwin.so
           0x144fca000 -        0x144fdffff +_odepack.cpython-39-darwin.so (0) <D73F4375-058A-3CBC-B8F9-B499BE3DEF7E> /Users/USER/*/_odepack.cpython-39-darwin.so
           0x144fe9000 -        0x145000fff +_quadpack.cpython-39-darwin.so (0) <D25C75C6-03DD-3203-8C22-C77CBA4860B2> /Users/USER/*/_quadpack.cpython-39-darwin.so
           0x14500b000 -        0x145042fff +vode.cpython-39-darwin.so (0) <1685EAC9-2057-3952-A32D-6EF8BD02E222> /Users/USER/*/vode.cpython-39-darwin.so
           0x145050000 -        0x145068fff +_dop.cpython-39-darwin.so (0) <04A167CE-8EAC-319B-A5A2-BA06F7A3DCC9> /Users/USER/*/_dop.cpython-39-darwin.so
           0x145074000 -        0x14508cfff +lsoda.cpython-39-darwin.so (0) <55CD0DD2-1FB1-3F6D-A227-CBE38AC0E819> /Users/USER/*/lsoda.cpython-39-darwin.so
           0x145199000 -        0x1451cdfff +_fitpack.cpython-39-darwin.so (0) <B6EA4A22-60D1-333D-A597-EC277FA9A5AE> /Users/USER/*/_fitpack.cpython-39-darwin.so
           0x1451d9000 -        0x145238fff +dfitpack.cpython-39-darwin.so (0) <64753824-9833-334A-B12E-76A56A7B892B> /Users/USER/*/dfitpack.cpython-39-darwin.so
           0x14524f000 -        0x14527afff +_bspl.cpython-39-darwin.so (0) <B8A4C2D3-A299-3F7F-961E-AD6494C4FEB3> /Users/USER/*/_bspl.cpython-39-darwin.so
           0x145294000 -        0x1452d4fff +_ppoly.cpython-39-darwin.so (0) <5ED7D0D0-636C-37E3-BC2B-9D8022CE24D4> /Users/USER/*/_ppoly.cpython-39-darwin.so
           0x145331000 -        0x14536ffff +interpnd.cpython-39-darwin.so (0) <F8B6CC34-F672-34B5-A360-BC03C8AD8685> /Users/USER/*/interpnd.cpython-39-darwin.so
           0x145391000 -        0x1453e7fff +_rbfinterp_pythran.cpython-39-darwin.so (0) <280E99C0-8E0A-3674-80AC-F96C70814E65> /Users/USER/*/_rbfinterp_pythran.cpython-39-darwin.so
           0x1453fa000 -        0x145464fff +_stats.cpython-39-darwin.so (0) <64E54FBE-8049-35E6-93DD-B6FF680C74BB> /Users/USER/*/_stats.cpython-39-darwin.so
           0x145494000 -        0x14568ffff +cython_special.cpython-39-darwin.so (0) <3ACB41E3-BBD6-30A2-8B58-29CB0C66AFDF> /Users/USER/*/cython_special.cpython-39-darwin.so
           0x14576a000 -        0x1457a0fff +beta_ufunc.cpython-39-darwin.so (0) <1D584875-D053-31E8-9DE3-FF9AC2A2DDB6> /Users/USER/*/beta_ufunc.cpython-39-darwin.so
           0x1457c9000 -        0x1457f6fff +binom_ufunc.cpython-39-darwin.so (0) <4843D177-1393-3CC6-9CCC-BB5D0B9F761F> /Users/USER/*/binom_ufunc.cpython-39-darwin.so
           0x14581b000 -        0x14584afff +nbinom_ufunc.cpython-39-darwin.so (0) <EE15367B-9C05-3968-93F2-4DD6FB8CC2B5> /Users/USER/*/nbinom_ufunc.cpython-39-darwin.so
           0x145932000 -        0x145956fff +biasedurn.cpython-39-darwin.so (0) <2915397D-9745-31AD-B2BD-0268194B98A9> /Users/USER/*/biasedurn.cpython-39-darwin.so
           0x145a2e000 -        0x145a3afff +statlib.cpython-39-darwin.so (0) <5DCBFEEF-CEC8-3B9C-9D8F-4D98C5750930> /Users/USER/*/statlib.cpython-39-darwin.so
           0x145a44000 -        0x145a56fff +mvn.cpython-39-darwin.so (0) <85F8A456-AF66-3CB0-A23C-4DD6F8C8F2ED> /Users/USER/*/mvn.cpython-39-darwin.so
           0x145b59000 -        0x145b77fff +_sobol.cpython-39-darwin.so (0) <796D8029-04CD-39F4-830C-6A03126DF628> /Users/USER/*/_sobol.cpython-39-darwin.so
           0x145d54000 -        0x145d71fff +_qmc_cy.cpython-39-darwin.so (0) <FA6D083F-8AC6-3D4C-94E2-376B822DA4FA> /Users/USER/*/_qmc_cy.cpython-39-darwin.so
           0x145dc7000 -        0x145dcafff +_openmp_helpers.cpython-39-darwin.so (0) <E2E6B125-E1F8-3466-AFE4-4565186EED6C> /Users/USER/*/_openmp_helpers.cpython-39-darwin.so
           0x145e13000 -        0x145e2efff +_logistic_sigmoid.cpython-39-darwin.so (0) <EF9559DC-2490-3706-B353-CA6239BEC027> /Users/USER/*/_logistic_sigmoid.cpython-39-darwin.so
           0x145e43000 -        0x145ecefff +sparsefuncs_fast.cpython-39-darwin.so (0) <5CF19BC8-1450-3B34-A624-FF37702D21A4> /Users/USER/*/sparsefuncs_fast.cpython-39-darwin.so
           0x145eff000 -        0x145f2afff +_csr_polynomial_expansion.cpython-39-darwin.so (0) <079AB4C9-E941-310C-9995-0EB2557445A0> /Users/USER/*/_csr_polynomial_expansion.cpython-39-darwin.so
           0x145fc7000 -        0x145fdafff +_expected_mutual_info_fast.cpython-39-darwin.so (0) <FBB52F68-10A8-3C5F-B626-7ADD9D72DCBB> /Users/USER/*/_expected_mutual_info_fast.cpython-39-darwin.so
           0x145feb000 -        0x146012fff +_pairwise_fast.cpython-39-darwin.so (0) <99B4CA2D-E8B2-3ADB-A13A-14BE0F49A67B> /Users/USER/*/_pairwise_fast.cpython-39-darwin.so
           0x14606b000 -        0x1460c2fff +_ball_tree.cpython-39-darwin.so (0) <11527257-CBAD-39EC-B07F-F02C7D7EDD87> /Users/USER/*/_ball_tree.cpython-39-darwin.so
           0x1460f7000 -        0x146126fff +_dist_metrics.cpython-39-darwin.so (0) <B89B666B-4149-3812-A955-71F35CACA1E8> /Users/USER/*/_dist_metrics.cpython-39-darwin.so
           0x14614f000 -        0x146152fff +_typedefs.cpython-39-darwin.so (0) <F0483A6E-ABC8-3FE5-8295-42AB26D1AF60> /Users/USER/*/_typedefs.cpython-39-darwin.so
           0x14615b000 -        0x1461b2fff +_kd_tree.cpython-39-darwin.so (0) <F9026945-BBB4-36B3-B46F-8FB285F9F980> /Users/USER/*/_kd_tree.cpython-39-darwin.so
           0x14621f000 -        0x14623efff +_cdnmf_fast.cpython-39-darwin.so (0) <0598A821-3576-3A54-82DF-F0CC0DF41BE9> /Users/USER/*/_cdnmf_fast.cpython-39-darwin.so
           0x146253000 -        0x14626afff +_seq_dataset.cpython-39-darwin.so (0) <F06B9C31-D389-3326-A5DF-D06F79E8D51E> /Users/USER/*/_seq_dataset.cpython-39-darwin.so
           0x1462bf000 -        0x1462cafff +_random.cpython-39-darwin.so (0) <BE4B9FA0-2AD6-350C-A4B8-7309E0DD180C> /Users/USER/*/_random.cpython-39-darwin.so
           0x1462d7000 -        0x1462f6fff +arrayfuncs.cpython-39-darwin.so (0) <D699133C-CA13-3DBB-9E99-4D7520D1F6AB> /Users/USER/*/arrayfuncs.cpython-39-darwin.so
           0x14630b000 -        0x14634efff +_cython_blas.cpython-39-darwin.so (0) <7E8B8E52-9FFA-3F67-B2D4-49F359C961CB> /Users/USER/*/_cython_blas.cpython-39-darwin.so
           0x1463b3000 -        0x146402fff +_cd_fast.cpython-39-darwin.so (0) <81363600-77F5-3FB8-8D80-9BF2EA3CFAAF> /Users/USER/*/_cd_fast.cpython-39-darwin.so
           0x14646b000 -        0x146492fff +_sgd_fast.cpython-39-darwin.so (0) <8393A9DB-4D75-3F94-A37C-15DB5EA99E0F> /Users/USER/*/_sgd_fast.cpython-39-darwin.so
           0x1464b7000 -        0x1464d2fff +_weight_vector.cpython-39-darwin.so (0) <A999A678-3E53-3938-A7A4-2535A32E56FE> /Users/USER/*/_weight_vector.cpython-39-darwin.so
           0x146527000 -        0x146542fff +_sag_fast.cpython-39-darwin.so (0) <9AC09D37-5ABF-3052-A8BB-68AAC0848998> /Users/USER/*/_sag_fast.cpython-39-darwin.so
           0x146557000 -        0x146596fff +_libsvm.cpython-39-darwin.so (0) <D078A6A6-FEDE-3E55-96D8-CE51FECF7429> /Users/USER/*/_libsvm.cpython-39-darwin.so
           0x1465b7000 -        0x1465d2fff +_liblinear.cpython-39-darwin.so (0) <9EABBC95-1571-3356-9A38-10882E397B97> /Users/USER/*/_liblinear.cpython-39-darwin.so
           0x1465e3000 -        0x14661efff +_libsvm_sparse.cpython-39-darwin.so (0) <A2E70F99-5D5F-32FA-B2A1-DF7C16B34EC5> /Users/USER/*/_libsvm_sparse.cpython-39-darwin.so
           0x146677000 -        0x14667efff +_online_lda_fast.cpython-39-darwin.so (0) <70204028-6CAF-3C60-8C38-C0E7AB173941> /Users/USER/*/_online_lda_fast.cpython-39-darwin.so
           0x14668b000 -        0x14669afff +graph_shortest_path.cpython-39-darwin.so (0) <B24105D4-CF64-385D-8DD1-030FAEAF38D9> /Users/USER/*/graph_shortest_path.cpython-39-darwin.so
           0x1466e7000 -        0x14670efff +_isotonic.cpython-39-darwin.so (0) <5A15C36C-A49E-3363-96D8-53FFB0B60F08> /Users/USER/*/_isotonic.cpython-39-darwin.so
           0x146727000 -        0x146732fff +_utils.cpython-39-darwin.so (0) <70727D1D-30A9-36AB-A8DA-6C95B57523C4> /Users/USER/*/_utils.cpython-39-darwin.so
           0x14673f000 -        0x14675efff +_barnes_hut_tsne.cpython-39-darwin.so (0) <21E5F8E8-4728-3554-9CB8-80052D6F67A1> /Users/USER/*/_barnes_hut_tsne.cpython-39-darwin.so
           0x146773000 -        0x146796fff +_quad_tree.cpython-39-darwin.so (0) <00BD9EDD-3EEB-37F4-8967-DB9CF4128E79> /Users/USER/*/_quad_tree.cpython-39-darwin.so
           0x1467b7000 -        0x1467dafff +_criterion.cpython-39-darwin.so (0) <5E65D11F-EABA-33F2-8D93-18F66D4E01CB> /Users/USER/*/_criterion.cpython-39-darwin.so
           0x1467f3000 -        0x146816fff +_splitter.cpython-39-darwin.so (0) <0550229A-13E2-334D-B4A2-1AE7C6191E88> /Users/USER/*/_splitter.cpython-39-darwin.so
           0x14682f000 -        0x146876fff +_tree.cpython-39-darwin.so (0) <90E567E2-5DEC-381D-904D-17972381B098> /Users/USER/*/_tree.cpython-39-darwin.so
           0x1468a3000 -        0x1468c2fff +_utils.cpython-39-darwin.so (0) <062B13DD-F37D-303F-BA3D-87468B9071AD> /Users/USER/*/_utils.cpython-39-darwin.so
           0x14695b000 -        0x1469aafff +_k_means_fast.cpython-39-darwin.so (0) <BF89CA33-0C30-3404-A330-04CDFEB46873> /Users/USER/*/_k_means_fast.cpython-39-darwin.so
           0x1469d3000 -        0x146a0afff +_k_means_lloyd.cpython-39-darwin.so (0) <36952BEA-372A-3BE5-85FF-2768C9258A9D> /Users/USER/*/_k_means_lloyd.cpython-39-darwin.so
           0x146a2b000 -        0x146a72fff +_k_means_elkan.cpython-39-darwin.so (0) <853A6E26-0E70-3EBA-BFD6-A5F48FB70E34> /Users/USER/*/_k_means_elkan.cpython-39-darwin.so
           0x146a97000 -        0x146abafff +_fast_dict.cpython-39-darwin.so (0) <C524412E-04D6-3FF2-B52D-3C15E53BB732> /Users/USER/*/_fast_dict.cpython-39-darwin.so
           0x146ad7000 -        0x146b02fff +_hierarchical_fast.cpython-39-darwin.so (0) <F75F8812-64B5-3BC7-A6AD-6A2F6F642DE5> /Users/USER/*/_hierarchical_fast.cpython-39-darwin.so
           0x146b2b000 -        0x146b32fff +_dbscan_inner.cpython-39-darwin.so (0) <18BC6742-11CF-3E08-9A27-0585C1CBA9D2> /Users/USER/*/_dbscan_inner.cpython-39-darwin.so
           0x14723f000 -        0x14723ffff +_box.cpython-39-darwin.so (0) <6218528A-CE75-3211-B9BD-55576D4C234C> /Users/USER/*/_box.cpython-39-darwin.so
           0x14aecb000 -        0x14aedafff  libobjc-trampolines.dylib (824) <C1B6BD90-D6AA-388B-B692-D66D512630AA> /usr/lib/libobjc-trampolines.dylib
        0x7fff200e2000 -     0x7fff200e3fff  libsystem_blocks.dylib (79) <925E3B6D-184D-3E73-97B1-643C4ADB387A> /usr/lib/system/libsystem_blocks.dylib
        0x7fff200e4000 -     0x7fff20119fff  libxpc.dylib (2038.120.1) <FFFB49D7-2CA6-3E1F-AE4E-5697B19B7D76> /usr/lib/system/libxpc.dylib
        0x7fff2011a000 -     0x7fff20131fff  libsystem_trace.dylib (1277.120.1) <7E800ECA-DFDB-3737-A3C5-FFDE37E65383> /usr/lib/system/libsystem_trace.dylib
        0x7fff20132000 -     0x7fff201cffff  libcorecrypto.dylib (1000.140.4) <D211160D-E22F-3440-8054-1F5824519C7F> /usr/lib/system/libcorecrypto.dylib
        0x7fff201d0000 -     0x7fff201fcfff  libsystem_malloc.dylib (317.140.5) <050E37E1-1458-3F80-BFA3-F1488570169D> /usr/lib/system/libsystem_malloc.dylib
        0x7fff201fd000 -     0x7fff20241fff  libdispatch.dylib (1271.120.2) <8144B0BD-90D2-3EAE-999F-AB0D14082088> /usr/lib/system/libdispatch.dylib
        0x7fff20242000 -     0x7fff2027bfff  libobjc.A.dylib (824) <8C7C49A1-4211-3E4C-BA3D-160D675EEE96> /usr/lib/libobjc.A.dylib
        0x7fff2027c000 -     0x7fff2027efff  libsystem_featureflags.dylib (28.60.1) <E5C43AE3-19E7-3DAB-8B5D-D79A4B68B5C0> /usr/lib/system/libsystem_featureflags.dylib
        0x7fff2027f000 -     0x7fff20307fff  libsystem_c.dylib (1439.141.1) <3C273899-4CBE-32D5-BB31-7A449743204F> /usr/lib/system/libsystem_c.dylib
        0x7fff20308000 -     0x7fff2035dfff  libc++.1.dylib (905.6) <FD6DB1CB-B14B-3404-8BEB-B459C2F6C303> /usr/lib/libc++.1.dylib
        0x7fff2035e000 -     0x7fff20373fff  libc++abi.dylib (905.6) <D0CDDF98-1C04-300F-B685-4A4C59C04C42> /usr/lib/libc++abi.dylib
        0x7fff20374000 -     0x7fff203a3fff  libsystem_kernel.dylib (7195.141.6) <78289AAE-61B5-339F-A485-8819BC2388F2> /usr/lib/system/libsystem_kernel.dylib
        0x7fff203a4000 -     0x7fff203affff  libsystem_pthread.dylib (454.120.2) <1268FF2D-A513-3B51-BA65-AF2FF5789DDB> /usr/lib/system/libsystem_pthread.dylib
        0x7fff203b0000 -     0x7fff203ebfff  libdyld.dylib (852.2) <3DE0178A-0AEE-3D08-AE19-6C6403F69BA1> /usr/lib/system/libdyld.dylib
        0x7fff203ec000 -     0x7fff203f5fff  libsystem_platform.dylib (254.80.2) <EF52D569-09F5-32E1-B1B3-34E2CA55A017> /usr/lib/system/libsystem_platform.dylib
        0x7fff203f6000 -     0x7fff20421fff  libsystem_info.dylib (542.40.3) <55B39B7F-957B-3D99-A8DF-7CA80D38155D> /usr/lib/system/libsystem_info.dylib
        0x7fff20422000 -     0x7fff208bffff  com.apple.CoreFoundation (6.9 - 1778.101) <8CF9D741-ADFF-3D5E-ACDE-DC342701EE0D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff208c0000 -     0x7fff20af5fff  com.apple.LaunchServices (1122.44 - 1122.44) <C285E620-3D2F-3AD0-8A3D-BB1FC540FE44> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
        0x7fff20af6000 -     0x7fff20bcafff  com.apple.gpusw.MetalTools (1.0 - 1) <C41024C5-01E7-3A66-A1F8-D7BC767260D8> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
        0x7fff20bcb000 -     0x7fff20e27fff  libBLAS.dylib (1336.140.1) <170AFA22-1234-3DE9-9D94-52B3BE18E34E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
        0x7fff20e28000 -     0x7fff20e75fff  com.apple.Lexicon-framework (1.0 - 86.2) <B7047A55-806D-3B32-A2D6-885D824E54A6> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
        0x7fff20e76000 -     0x7fff20ee4fff  libSparse.dylib (106) <1E68BF64-7432-3509-BC85-5DE95379E901> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
        0x7fff20ee5000 -     0x7fff20f62fff  com.apple.SystemConfiguration (1.20 - 1.20) <8FEB39D4-ACD6-39F2-8D1B-A57CACD5628F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff20f63000 -     0x7fff20f97fff  libCRFSuite.dylib (50) <BCDD0ED1-D2F4-3556-B218-4420C7EA47D2> /usr/lib/libCRFSuite.dylib
        0x7fff20f98000 -     0x7fff211d0fff  libmecabra.dylib (929.10) <D780814D-2BB2-3D84-820E-12E4C23C590E> /usr/lib/libmecabra.dylib
        0x7fff211d1000 -     0x7fff2152ffff  com.apple.Foundation (6.9 - 1778.101) <7B7FB88B-01D3-38CE-8029-837DB094C545> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff21530000 -     0x7fff21618fff  com.apple.LanguageModeling (1.0 - 247.3) <DBFAE8CF-36B2-30D8-9E82-6C412CD935B4> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
        0x7fff21619000 -     0x7fff2174ffff  com.apple.CoreDisplay (237.4 - 237.4) <556BADE0-D3B0-309C-9740-7FEFBD052B6B> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
        0x7fff21750000 -     0x7fff219c0fff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72) <5C3B84EE-B281-34C4-832F-78F00CC63B93> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
        0x7fff219c1000 -     0x7fff21ba6fff  com.apple.CoreText (677.6.0.2 - 677.6.0.2) <10E1382E-7949-3F4E-8B15-A4BD31A75E91> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff21ba7000 -     0x7fff22238fff  com.apple.audio.CoreAudio (5.0 - 5.0) <5EEA9225-4837-37F3-9105-941A5743169F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff22239000 -     0x7fff22590fff  com.apple.security (7.0 - 59754.140.13) <A196C85A-DB28-3F5B-A415-5BE44AD81668> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff22591000 -     0x7fff227f0fff  libicucore.A.dylib (66112) <AC994BC1-F9CC-359C-A7B5-F2821EAEF650> /usr/lib/libicucore.A.dylib
        0x7fff227f1000 -     0x7fff227fafff  libsystem_darwin.dylib (1439.141.1) <2C81A009-45BB-30D7-A4F7-4B2EEC691617> /usr/lib/system/libsystem_darwin.dylib
        0x7fff227fb000 -     0x7fff22ae6fff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <2C65E0D8-A9C7-31D8-A3D3-3AC1A91C80A5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
        0x7fff22ae7000 -     0x7fff22b25fff  com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <3FC6073F-78E4-3D3B-8765-50E50512C5EB> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
        0x7fff22b26000 -     0x7fff22b60fff  com.apple.CSStore (1122.44 - 1122.44) <C103DAAA-A966-359B-97F0-BA3BB56ECBF1> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
        0x7fff22b61000 -     0x7fff22c0ffff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <720D9AE1-79D6-3E77-8D7A-47F8F6681050> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff22c10000 -     0x7fff22c1bfff  libsystem_notify.dylib (279.40.4) <2E40EA4A-B124-3010-8379-1B4D7082A08F> /usr/lib/system/libsystem_notify.dylib
        0x7fff22c1c000 -     0x7fff22c69fff  libsandbox.1.dylib (1441.141.4) <C291C059-F7E4-3C20-BCBF-60F7011F0718> /usr/lib/libsandbox.1.dylib
        0x7fff22c6a000 -     0x7fff239b5fff  com.apple.AppKit (6.9 - 2022.60.128) <02EC69A0-D634-341B-BE3D-840F496F5814> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff239b6000 -     0x7fff23c04fff  com.apple.UIFoundation (1.0 - 728.9) <C2E04F0F-AEAA-3B77-9BBA-1CF628341A56> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
        0x7fff23c05000 -     0x7fff23c17fff  com.apple.UniformTypeIdentifiers (637 - 637) <8FFD3B69-0840-34D6-83AD-7D521B1A2339> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
        0x7fff23c18000 -     0x7fff23da2fff  com.apple.desktopservices (1.21 - 1346.6.1) <F2C97567-5B56-3840-A384-2131E362083B> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
        0x7fff24082000 -     0x7fff24708fff  libnetwork.dylib (2288.140.7) <42825FCA-35A1-352F-AE68-19D8F695604B> /usr/lib/libnetwork.dylib
        0x7fff24709000 -     0x7fff24ba7fff  com.apple.CFNetwork (1240.0.4 - 1240.0.4) <E4BF9BFF-798B-33FF-B37D-6D8175CA708A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff24ba8000 -     0x7fff24bb6fff  libsystem_networkextension.dylib (1295.140.3) <83AA4425-2F1D-36EC-B77B-8D4F03CDDB68> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff24bb7000 -     0x7fff24bb7fff  libenergytrace.dylib (22.100.1) <9E877E0A-5261-3F75-91A0-521423499AD0> /usr/lib/libenergytrace.dylib
        0x7fff24bb8000 -     0x7fff24c14fff  libMobileGestalt.dylib (978.140.1) <D1FF79C3-4B2F-32FB-BF25-9F0B9E160692> /usr/lib/libMobileGestalt.dylib
        0x7fff24c15000 -     0x7fff24c2bfff  libsystem_asl.dylib (385) <8D324D65-EE16-3A1A-BD39-ACB1B3050D1F> /usr/lib/system/libsystem_asl.dylib
        0x7fff24c2c000 -     0x7fff24c44fff  com.apple.TCC (1.0 - 1) <18F48712-FFF0-3B30-B2C4-8A93AEF86A34> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff24c45000 -     0x7fff24faafff  com.apple.SkyLight (1.600.0 - 588.7) <5F88F814-A3DF-3446-8B35-F0CDD8C1B302> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
        0x7fff24fab000 -     0x7fff25634fff  com.apple.CoreGraphics (2.0 - 1463.17.3) <5EDF86BC-FFDE-3906-9674-142C113B34EF> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff25635000 -     0x7fff2572bfff  com.apple.ColorSync (4.13.0 - 3473.4.3) <102C423C-E05F-317B-83AE-A2A6B77D653B> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
        0x7fff2572c000 -     0x7fff25787fff  com.apple.HIServices (1.22 - 716) <B2D34F3F-0CEB-35F1-9B32-E0806CF3FC91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
        0x7fff25b2e000 -     0x7fff25f4dfff  com.apple.CoreData (120 - 1048) <33DE1B26-D4C6-3939-B12E-88897660BB38> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff25f4e000 -     0x7fff25f63fff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <AEDEFF64-CA8A-365C-900F-3107383F91D9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
        0x7fff25f64000 -     0x7fff26117fff  libsqlite3.dylib (321.3) <E7377C46-DA4F-3486-B935-0A35C3637215> /usr/lib/libsqlite3.dylib
        0x7fff26118000 -     0x7fff26194fff  com.apple.Accounts (113 - 113) <2AD45648-B327-313A-ACF2-846FB345A96E> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff26195000 -     0x7fff261acfff  com.apple.commonutilities (8.0 - 900) <98B456F4-8F4F-387B-B3BB-D3919295AE1D> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
        0x7fff261ad000 -     0x7fff2622cfff  com.apple.BaseBoard (526 - 526) <F9D85C3A-D0D6-351B-A6EE-5416CB90179D> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
        0x7fff2622d000 -     0x7fff26275fff  com.apple.RunningBoardServices (1.0 - 505.100.9) <2ED406CD-2253-33F0-B16A-694DB447CADC> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
        0x7fff26276000 -     0x7fff262eafff  com.apple.AE (918.6 - 918.6) <C5130BB4-18E7-3804-A9D9-915D318426A5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
        0x7fff262eb000 -     0x7fff262f1fff  libdns_services.dylib (1310.140.1) <22BE5030-2F48-3ED6-9DF8-9D102CEF33FF> /usr/lib/libdns_services.dylib
        0x7fff262f2000 -     0x7fff262f9fff  libsystem_symptoms.dylib (1431.140.1) <1B4D8837-C951-3B69-B079-85D477749E8B> /usr/lib/system/libsystem_symptoms.dylib
        0x7fff262fa000 -     0x7fff26485fff  com.apple.Network (1.0 - 1) <2155E1AA-2067-36CF-979E-2F96062D5CFE> /System/Library/Frameworks/Network.framework/Versions/A/Network
        0x7fff26486000 -     0x7fff264b5fff  com.apple.analyticsd (1.0 - 1) <0DF60ECD-742C-39D1-964A-48EC3DEA6319> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
        0x7fff264b6000 -     0x7fff264b8fff  libDiagnosticMessagesClient.dylib (112) <A7EC7265-E13C-3C98-81EE-3EFB5CC65AB0> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff264b9000 -     0x7fff26505fff  com.apple.spotlight.metadata.utilities (1.0 - 2150.26) <F709AE5E-AF80-3C9B-A3D3-B779164FBA95> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
        0x7fff26506000 -     0x7fff265a0fff  com.apple.Metadata (10.7.0 - 2150.26) <D7CE41CA-DDE7-32BE-926C-0DC3048C5E11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
        0x7fff265a1000 -     0x7fff265a7fff  com.apple.DiskArbitration (2.7 - 2.7) <8DF059B4-BE32-3171-8CC4-C5FA189FA718> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff265a8000 -     0x7fff26c0ffff  com.apple.vImage (8.1 - 544.4) <E62F9E4F-9A1D-3004-B7F4-6F83F71144C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
        0x7fff26c10000 -     0x7fff26eedfff  com.apple.QuartzCore (1.11 - 927.24) <88794856-F1F1-3D23-BDDB-0AE28A1D6D6E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff26eee000 -     0x7fff26f2ffff  libFontRegistry.dylib (309) <300F2208-7274-38F8-B88D-9237BA6B397E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff26f30000 -     0x7fff27070fff  com.apple.coreui (2.1 - 692.1) <BC5D8EAA-7CE8-35F3-8EAD-075B18D9606C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff27071000 -     0x7fff2715cfff  com.apple.ViewBridge (553.1 - 553.1) <DF83EA6E-4DA9-3322-BE86-0B3207167451> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff2715d000 -     0x7fff27168fff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <6AF20F05-FF15-3174-A504-1AC16BA14729> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
        0x7fff27169000 -     0x7fff27178fff  com.apple.OpenDirectory (11.6 - 230.40.1) <84B2D11F-E6C4-3C29-9A9A-939DB906E2F5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff27179000 -     0x7fff27198fff  com.apple.CFOpenDirectory (11.6 - 230.40.1) <6BE3204F-2F86-34A7-AD79-4C88320F446F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
        0x7fff27199000 -     0x7fff271a5fff  com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <DC473A17-310F-3C16-B545-F75CE3F6D39D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
        0x7fff271a6000 -     0x7fff271cafff  com.apple.coreservices.SharedFileList (144 - 144) <A13B58B8-6D7A-3F1B-AFB5-E41E0A6B4B81> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
        0x7fff271cb000 -     0x7fff271cdfff  libapp_launch_measurement.dylib (14.1) <511EC2A9-6059-3A7D-9D2A-741189922D02> /usr/lib/libapp_launch_measurement.dylib
        0x7fff271ce000 -     0x7fff27215fff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <18113C8E-B54E-3DD3-A1AD-2A5FD949CE66> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
        0x7fff27216000 -     0x7fff272f8fff  libxml2.2.dylib (34.10) <DD2093F0-F9B7-3F30-B46D-B028CE15E2B1> /usr/lib/libxml2.2.dylib
        0x7fff272f9000 -     0x7fff27346fff  com.apple.CoreVideo (1.8 - 414.7) <EE991A40-DE38-3B13-891E-A51987D5CD70> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff27347000 -     0x7fff27349fff  com.apple.loginsupport (1.0 - 1) <4C358D8E-4BB8-3DD8-8A72-11BD80607BDE> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
        0x7fff27372000 -     0x7fff2738dfff  com.apple.UserManagement (1.0 - 1) <FB298359-31F5-3DDD-B928-604C4B1ED1F3> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
        0x7fff28301000 -     0x7fff28311fff  libsystem_containermanager.dylib (318.100.4) <1139CD47-9CBA-356F-8694-1D00EB9F0C8F> /usr/lib/system/libsystem_containermanager.dylib
        0x7fff28312000 -     0x7fff28323fff  com.apple.IOSurface (290.8.1 - 290.8.1) <8B251196-DA38-38BF-8A91-45AC2B06014C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff28324000 -     0x7fff2832dfff  com.apple.IOAccelerator (442.9 - 442.9) <F2C3DC87-49D7-3A67-8E6D-12D75D98EFDD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
        0x7fff2832e000 -     0x7fff28451fff  com.apple.Metal (244.303 - 244.303) <71B6039E-232E-3AD2-881F-DF8E73C75B99> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
        0x7fff28452000 -     0x7fff2846efff  com.apple.audio.caulk (1.0 - 70) <F6A09FF3-1DC7-302C-86E3-B2DD9B7130A9> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
        0x7fff2846f000 -     0x7fff28559fff  com.apple.CoreMedia (1.0 - 2780.10) <6A003180-F8AA-3DFA-B095-61D8E859FE3F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff2855a000 -     0x7fff286b6fff  libFontParser.dylib (305.6.0.4) <C3E552F6-72AD-3F3A-B217-E44A5C565240> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
        0x7fff286b7000 -     0x7fff289b2fff  com.apple.HIToolbox (2.1.1 - 1062) <DEF01A0C-8B9D-359E-9FE7-B15D551888DC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
        0x7fff289b3000 -     0x7fff289c6fff  com.apple.framework.DFRFoundation (1.0 - 267) <EBFDDB28-7661-3B50-BC15-736C5DF05AB3> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
        0x7fff289c7000 -     0x7fff289cafff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <DD9E09C3-B658-3BD2-8229-E3E3C5D85552> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
        0x7fff289cb000 -     0x7fff289f4fff  com.apple.CoreSVG (1.0 - 149) <C4DC952A-9373-33E5-8A98-F008986B0420> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
        0x7fff289f5000 -     0x7fff28c31fff  com.apple.ImageIO (3.3.0 - 2130.7.3) <28C6A501-2548-3187-A13B-9F314280BBB8> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff28c32000 -     0x7fff28fadfff  com.apple.CoreImage (16.3.0 - 1140.2) <3ED3F244-632C-383D-89B0-50F2E0FDBA40> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
        0x7fff28fae000 -     0x7fff29014fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <C12F8828-6D1E-3820-BBF7-80EEA978AE9C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
        0x7fff29015000 -     0x7fff29018fff  libsystem_configuration.dylib (1109.140.1) <02F3A5C9-6289-3012-8F5F-F1DB669ADB79> /usr/lib/system/libsystem_configuration.dylib
        0x7fff29019000 -     0x7fff2901dfff  libsystem_sandbox.dylib (1441.141.4) <5471601B-5072-3E97-8926-804FF08DC4C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff2901e000 -     0x7fff2901ffff  com.apple.AggregateDictionary (1.0 - 1) <B25A1764-0BBC-388B-8FB4-A8FBB8F51C10> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
        0x7fff29020000 -     0x7fff29023fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <4A803F86-CA61-3508-864A-302F032ADA70> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
        0x7fff29024000 -     0x7fff29025fff  liblangid.dylib (136) <F4019132-A63D-3A38-A8DB-974C6F1311ED> /usr/lib/liblangid.dylib
        0x7fff29026000 -     0x7fff290cafff  com.apple.CoreNLP (1.0 - 245.2) <203C6AB9-5B07-3370-A056-DA1F2C8A8419> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
        0x7fff290cb000 -     0x7fff290d1fff  com.apple.LinguisticData (1.0 - 399) <AB85B59F-3047-37EC-AB9E-835D87BACF73> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
        0x7fff290d2000 -     0x7fff2977afff  libBNNS.dylib (288.100.5) <4BB7A1B7-D1F2-3DC3-BFC7-D57CBD892719> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
        0x7fff2977b000 -     0x7fff2994dfff  libvDSP.dylib (760.100.3) <DA809F3E-9391-3BE0-98C6-061CCACA809A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
        0x7fff2994e000 -     0x7fff2995ffff  com.apple.CoreEmoji (1.0 - 128.4) <8DB42230-A624-3C13-80F8-EC2CE89C0699> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
        0x7fff29960000 -     0x7fff2996afff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <195E20E7-33BD-3935-92ED-AA354180B7FA> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
        0x7fff2996b000 -     0x7fff29a3dfff  com.apple.framework.CoreWLAN (16.0 - 1657) <0A58C97E-2ACD-3223-8585-FDA5DA4C38C5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff29a3e000 -     0x7fff29c3ffff  com.apple.CoreUtils (6.6 - 660.37) <0B1ED18A-B228-3840-A0F2-23AC2C37A6CA> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff29c40000 -     0x7fff29c62fff  com.apple.MobileKeyBag (2.0 - 1.0) <19D8140C-CC92-35E8-AF78-B335567A7C24> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
        0x7fff29c63000 -     0x7fff29c73fff  com.apple.AssertionServices (1.0 - 505.100.9) <850AE031-A3B3-30C0-81A1-71FBCE620BC1> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
        0x7fff29c74000 -     0x7fff29cfffff  com.apple.securityfoundation (6.0 - 55240.40.4) <A7D05091-B54C-317A-81FE-4B174C968C5A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff29d00000 -     0x7fff29d09fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <98B365F9-8E0C-32C7-AC5A-FFB9A4A0B30A> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
        0x7fff29d0a000 -     0x7fff29d0efff  com.apple.xpc.ServiceManagement (1.0 - 1) <7D081389-0032-3521-A3D9-84B4667817FB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff29d0f000 -     0x7fff29d11fff  libquarantine.dylib (119.40.2) <3244B57B-9FDF-373E-9F96-A7BAD7534F23> /usr/lib/system/libquarantine.dylib
        0x7fff29d12000 -     0x7fff29d1dfff  libCheckFix.dylib (31) <AAB549BA-1738-33FD-BBC4-C34B5070C309> /usr/lib/libCheckFix.dylib
        0x7fff29d1e000 -     0x7fff29d35fff  libcoretls.dylib (169.100.1) <FC2811AD-9D76-3403-B760-32A101D07638> /usr/lib/libcoretls.dylib
        0x7fff29d36000 -     0x7fff29d46fff  libbsm.0.dylib (68.40.1) <61577B7F-2C06-365C-9039-E00B0B5258D0> /usr/lib/libbsm.0.dylib
        0x7fff29d47000 -     0x7fff29d90fff  libmecab.dylib (929.10) <D60C5095-3A5F-3284-9699-08C76DA29CBD> /usr/lib/libmecab.dylib
        0x7fff29d91000 -     0x7fff29d96fff  libgermantok.dylib (24) <6F2B01E8-6077-3B72-91F3-AB6D0FCB15D6> /usr/lib/libgermantok.dylib
        0x7fff29d97000 -     0x7fff29dacfff  libLinearAlgebra.dylib (1336.140.1) <A450756D-D3AC-342D-A802-ED6C554A494A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
        0x7fff29dad000 -     0x7fff29fcbfff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <8AAFA6C5-1FBD-359A-8774-F1D1FBFCCFFE> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
        0x7fff29fcc000 -     0x7fff2a01bfff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <0C854684-1D62-35D1-83C1-9066DB158189> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
        0x7fff2a01c000 -     0x7fff2a17dfff  com.apple.MLCompute (1.0 - 1) <9255AB44-3AB5-3F3F-8FA2-77FEA1C7C221> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
        0x7fff2a17e000 -     0x7fff2a1b4fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <B7361691-334A-3A33-98E1-A9A623E5D26A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
        0x7fff2a1b5000 -     0x7fff2a20bfff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <706E8171-48B3-33A3-B55B-35B5F86F3043> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
        0x7fff2a20c000 -     0x7fff2a29cfff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <3999E177-7A40-358A-BE89-1F20ADF13740> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
        0x7fff2a29d000 -     0x7fff2a2acfff  com.apple.AppleFSCompression (125 - 1.0) <F7163A3A-C4F0-3169-9501-B9AAB8CAE9CD> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
        0x7fff2a2ad000 -     0x7fff2a2b9fff  libbz2.1.0.dylib (44) <ECD22F5B-FD6C-39A5-884B-418C6B896263> /usr/lib/libbz2.1.0.dylib
        0x7fff2a2ba000 -     0x7fff2a2befff  libsystem_coreservices.dylib (127.1) <619CCB6D-226C-35BD-98FB-04A18FD54792> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff2a2bf000 -     0x7fff2a2ecfff  com.apple.CoreServices.OSServices (1122.44 - 1122.44) <C547575F-985F-31B8-A61C-79D3A673B8D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
        0x7fff2a2ed000 -     0x7fff2a41cfff  com.apple.AuthKit (1.0 - 1) <C72D7981-A3B6-3883-A14F-43485DF54FC4> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
        0x7fff2a4bb000 -     0x7fff2a4cdfff  libz.1.dylib (76) <F805C1CB-1B80-33D0-994C-1D522D347A68> /usr/lib/libz.1.dylib
        0x7fff2a4ce000 -     0x7fff2a515fff  libsystem_m.dylib (3186.100.3) <D61B56FE-649B-34A0-8446-25685B2BBBF2> /usr/lib/system/libsystem_m.dylib
        0x7fff2a516000 -     0x7fff2a516fff  libcharset.1.dylib (59) <363A6C40-7446-3A72-B5EA-4731843CFE2F> /usr/lib/libcharset.1.dylib
        0x7fff2a517000 -     0x7fff2a51cfff  libmacho.dylib (980) <A4F4D532-7824-3E4E-8FB6-45617415E7DD> /usr/lib/system/libmacho.dylib
        0x7fff2a51d000 -     0x7fff2a538fff  libkxld.dylib (7195.141.6) <1121F83B-5D42-368B-B440-100418CD4B23> /usr/lib/system/libkxld.dylib
        0x7fff2a539000 -     0x7fff2a544fff  libcommonCrypto.dylib (60178.120.3) <CF1E0E70-9F6C-3FAF-82B2-D55F7C9EBB03> /usr/lib/system/libcommonCrypto.dylib
        0x7fff2a545000 -     0x7fff2a54ffff  libunwind.dylib (201) <4602E909-C71A-3006-8140-BE616DA241EE> /usr/lib/system/libunwind.dylib
        0x7fff2a550000 -     0x7fff2a557fff  liboah.dylib (203.58) <F72C2D50-7279-3497-8A59-56908F9661F3> /usr/lib/liboah.dylib
        0x7fff2a558000 -     0x7fff2a562fff  libcopyfile.dylib (173.40.2) <B0F35A80-D5E3-33DD-A47D-ACBFE1300523> /usr/lib/system/libcopyfile.dylib
        0x7fff2a563000 -     0x7fff2a56afff  libcompiler_rt.dylib (102.2) <1C049207-1719-39AC-A2A9-6E5BE28AA138> /usr/lib/system/libcompiler_rt.dylib
        0x7fff2a56b000 -     0x7fff2a56dfff  libsystem_collections.dylib (1439.141.1) <F2D775D9-AAEF-371F-AA54-CFB882B9B430> /usr/lib/system/libsystem_collections.dylib
        0x7fff2a56e000 -     0x7fff2a570fff  libsystem_secinit.dylib (87.60.1) <EB4516ED-1F8B-3E8A-8C4B-B209A33DCCEF> /usr/lib/system/libsystem_secinit.dylib
        0x7fff2a571000 -     0x7fff2a573fff  libremovefile.dylib (49.120.1) <1AEE3D84-32F9-35FB-8036-B178C9E27D20> /usr/lib/system/libremovefile.dylib
        0x7fff2a574000 -     0x7fff2a574fff  libkeymgr.dylib (31) <698AF6EE-08BB-36CF-B7AD-9EC16E36FA0B> /usr/lib/system/libkeymgr.dylib
        0x7fff2a575000 -     0x7fff2a57cfff  libsystem_dnssd.dylib (1310.140.1) <0685BDB0-9A98-3ADD-B95A-11F221FD80D7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff2a57d000 -     0x7fff2a582fff  libcache.dylib (83) <B51FAB34-AA9C-38C5-95F1-E5E54B21EA67> /usr/lib/system/libcache.dylib
        0x7fff2a583000 -     0x7fff2a584fff  libSystem.B.dylib (1292.120.1) <DBD0A184-CD98-3225-8E9B-D5BFE0D30562> /usr/lib/libSystem.B.dylib
        0x7fff2a585000 -     0x7fff2a588fff  libfakelink.dylib (3) <BE0E6C60-675A-3739-A47A-67C650B1F790> /usr/lib/libfakelink.dylib
        0x7fff2a589000 -     0x7fff2a589fff  com.apple.SoftLinking (1.0 - 1) <9E4B6591-74E3-3B36-91C4-851FAA567DAA> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
        0x7fff2a58a000 -     0x7fff2a5c1fff  libpcap.A.dylib (98.100.3) <6DD23455-C0CA-313E-89B5-A45F8CD71C20> /usr/lib/libpcap.A.dylib
        0x7fff2a5c2000 -     0x7fff2a6b2fff  libiconv.2.dylib (59) <90F749E2-9D2D-3323-A018-31A1F95221A1> /usr/lib/libiconv.2.dylib
        0x7fff2a6b3000 -     0x7fff2a6c4fff  libcmph.dylib (8) <17871D7D-49C2-3343-AC30-C40E3AD5B2B6> /usr/lib/libcmph.dylib
        0x7fff2a6c5000 -     0x7fff2a736fff  libarchive.2.dylib (83.100.2) <5AF9560E-5683-33A5-8D60-A469193B94E3> /usr/lib/libarchive.2.dylib
        0x7fff2a737000 -     0x7fff2a79efff  com.apple.SearchKit (1.4.1 - 1.4.1) <A45AE5BD-9242-351E-B621-3EB50F66AB30> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
        0x7fff2a79f000 -     0x7fff2a7a0fff  libThaiTokenizer.dylib (3) <7B40AC51-B945-3AF0-B349-5818050D37FB> /usr/lib/libThaiTokenizer.dylib
        0x7fff2a7a1000 -     0x7fff2a7c3fff  com.apple.applesauce (1.0 - 16.28) <7D011403-38CD-37DA-B2C2-00D2D2273422> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
        0x7fff2a7c4000 -     0x7fff2a7dbfff  libapple_nghttp2.dylib (1.41) <E3FCBDB9-6671-3368-B371-B9CAC9BB1B45> /usr/lib/libapple_nghttp2.dylib
        0x7fff2a7dc000 -     0x7fff2a7f2fff  libSparseBLAS.dylib (1336.140.1) <78762464-084C-3743-BC56-A2AF5D010909> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
        0x7fff2a7f3000 -     0x7fff2a7f4fff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <BD2B6B2B-E116-3B97-A25F-71B4AC7B2BA6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
        0x7fff2a7f5000 -     0x7fff2a7f9fff  libpam.2.dylib (28.40.1) <E73D1903-42B9-3FF9-AE5D-482672F015AC> /usr/lib/libpam.2.dylib
        0x7fff2a7fa000 -     0x7fff2a819fff  libcompression.dylib (96.120.1) <CFE780B4-AFB0-327C-BB68-A5565AA7C630> /usr/lib/libcompression.dylib
        0x7fff2a81a000 -     0x7fff2a81ffff  libQuadrature.dylib (7) <9668C241-61D5-3AE9-9856-708ACDC27F12> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
        0x7fff2a820000 -     0x7fff2abbdfff  libLAPACK.dylib (1336.140.1) <8B968A9A-8263-3639-A740-636387467C03> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
        0x7fff2abbe000 -     0x7fff2ac0dfff  com.apple.DictionaryServices (1.2 - 341) <617030DF-769F-3CE0-869F-7F5B9B5A3784> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
        0x7fff2ac0e000 -     0x7fff2ac26fff  liblzma.5.dylib (16) <6DE3F2AA-7140-3F6D-AD12-0DBA19BBBD54> /usr/lib/liblzma.5.dylib
        0x7fff2ac27000 -     0x7fff2ac28fff  libcoretls_cfhelpers.dylib (169.100.1) <0CF72D7A-0A39-3683-82ED-29A09761D6FF> /usr/lib/libcoretls_cfhelpers.dylib
        0x7fff2ac29000 -     0x7fff2ad24fff  com.apple.APFS (1677.141.2 - 1677.141.2) <F42A21D0-F8CE-3DDA-ACE6-C0AC9EE2FA6C> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
        0x7fff2ad25000 -     0x7fff2ad32fff  libxar.1.dylib (452) <0B0B68CC-D627-3BDC-AE01-007C6AD8E97B> /usr/lib/libxar.1.dylib
        0x7fff2ad33000 -     0x7fff2ad36fff  libutil.dylib (58.40.2) <0EA3237C-B6E6-351B-AE27-8975D88602D6> /usr/lib/libutil.dylib
        0x7fff2ad37000 -     0x7fff2ad5ffff  libxslt.1.dylib (17.6) <300C3D2D-19B1-3D8E-B212-1D2EB6C8B80A> /usr/lib/libxslt.1.dylib
        0x7fff2ad60000 -     0x7fff2ad6afff  libChineseTokenizer.dylib (37.1) <B4314553-EF8B-3CD4-A7D8-76CD7FC7142D> /usr/lib/libChineseTokenizer.dylib
        0x7fff2ad6b000 -     0x7fff2ae28fff  libvMisc.dylib (760.100.3) <B8F30684-94D1-3A53-80BF-C78F424594AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
        0x7fff2ae29000 -     0x7fff2aec0fff  libate.dylib (3.0.6) <FA881406-28F3-33BD-B75D-40389CE2ADD1> /usr/lib/libate.dylib
        0x7fff2aec1000 -     0x7fff2aec8fff  libIOReport.dylib (64.100.1) <4D638FAC-2FD8-359C-8159-1ED37CBB5704> /usr/lib/libIOReport.dylib
        0x7fff2afca000 -     0x7fff2afd1fff  libMatch.1.dylib (38) <85F66EF8-FC5E-385C-AF8F-79532C2AC988> /usr/lib/libMatch.1.dylib
        0x7fff2afd2000 -     0x7fff2b05dfff  libCoreStorage.dylib (554.140.2) <249F3E03-6C96-3E20-999A-BBFE36AADECA> /usr/lib/libCoreStorage.dylib
        0x7fff2b05e000 -     0x7fff2b0b1fff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <2CDA1194-F435-3B9C-94A2-220E26E40DE6> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff2b0b2000 -     0x7fff2b0cbfff  libexpat.1.dylib (26.141.1) <84DC54E5-9E75-3F64-9D7F-3CA641674ED8> /usr/lib/libexpat.1.dylib
        0x7fff2b0cc000 -     0x7fff2b0d5fff  libheimdal-asn1.dylib (597.140.2) <8D7B3A0D-A699-3947-9E8C-EEA4B4AD6408> /usr/lib/libheimdal-asn1.dylib
        0x7fff2b0d6000 -     0x7fff2b0eafff  com.apple.IconFoundation (479.4 - 479.4) <6ED33568-2A1D-3918-9D32-D1E102002E48> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
        0x7fff2b0eb000 -     0x7fff2b157fff  com.apple.IconServices (479.4 - 479.4) <D94D5AF3-6EF6-30D8-A7F8-58A1A3E5641B> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
        0x7fff2b158000 -     0x7fff2b1f6fff  com.apple.MediaExperience (1.0 - 1) <245932F7-E76A-37A7-A033-7BB62F8ED190> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
        0x7fff2b1f7000 -     0x7fff2b21ffff  com.apple.persistentconnection (1.0 - 1.0) <90FBA2DD-E91A-3A9F-80C5-8F94950136A4> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
        0x7fff2b220000 -     0x7fff2b22efff  com.apple.GraphVisualizer (1.0 - 100.1) <9538C368-5703-367B-ADAE-20EC5C3C5C41> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
        0x7fff2b22f000 -     0x7fff2b64afff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <86110F21-96FE-325C-8D55-9385690C2386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff2b64b000 -     0x7fff2b692fff  com.apple.OTSVG (1.0 - 677.6.0.2) <34AD6D57-71B8-3859-94AF-DB856D8FD6BA> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
        0x7fff2b693000 -     0x7fff2b699fff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <AD03039F-3D12-31FE-A497-EC4A87097683> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
        0x7fff2b69a000 -     0x7fff2b6acfff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <B4F0CDA6-0332-3AB9-A0FB-8CD6EE316D30> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
        0x7fff2b6ad000 -     0x7fff2b6affff  libspindump.dylib (295.2) <8DE7E414-DCEC-30B8-87DC-511D362D49F3> /usr/lib/libspindump.dylib
        0x7fff2b6b0000 -     0x7fff2b770fff  com.apple.Heimdal (4.0 - 2.0) <30D71BC9-C18F-35C7-B7E1-88E645D4D329> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff2b910000 -     0x7fff2b94cfff  com.apple.bom (14.0 - 235) <E428566D-DFA2-33AC-AF3B-C68530D52522> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff2b94d000 -     0x7fff2b996fff  com.apple.AppleJPEG (1.0 - 1) <15DCB33B-EB52-38A2-B02F-EC235DC85B52> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff2b997000 -     0x7fff2ba76fff  libJP2.dylib (2130.7.3) <20747AB5-CFA0-3C7A-BE41-BF4B54FD2038> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff2ba77000 -     0x7fff2ba7afff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <0A097C25-405B-38CD-B6E2-57F51AD77AF0> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
        0x7fff2ba7b000 -     0x7fff2bab1fff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <0DF955E2-E57C-3C1B-96BD-5B81DAD43BC7> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
        0x7fff2bab2000 -     0x7fff2bc10fff  com.apple.VideoToolbox (1.0 - 2780.10) <4FF9A4C0-FFB4-3F68-9A84-949B4DB0DB7A> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff2bc11000 -     0x7fff2bc44fff  libAudioToolboxUtility.dylib (1181.72) <9D9EA545-924D-342A-BF27-C19887850F05> /usr/lib/libAudioToolboxUtility.dylib
        0x7fff2bc45000 -     0x7fff2bc65fff  libPng.dylib (2130.7.3) <29756FE6-34E9-3760-9B70-9FF6648BE7CC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff2bc66000 -     0x7fff2bcc5fff  libTIFF.dylib (2130.7.3) <692B9470-8F28-3C98-9C6A-DAE79FE0136F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff2bcc6000 -     0x7fff2bce2fff  com.apple.IOPresentment (58 - 37) <A86E6181-E216-3691-A7FF-0264A927C8CC> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
        0x7fff2bce3000 -     0x7fff2bceafff  com.apple.GPUWrangler (6.3.5 - 6.3.5) <CC101DAE-349B-3C72-9554-6F569364841E> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
        0x7fff2bceb000 -     0x7fff2bceefff  libRadiance.dylib (2130.7.3) <1A759A2B-28E8-32C4-940D-BE0239558098> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff2bcef000 -     0x7fff2bcf4fff  com.apple.DSExternalDisplay (3.1 - 380) <3FD5886F-5EDD-313D-9783-FF899E5F2650> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
        0x7fff2bcf5000 -     0x7fff2bd19fff  libJPEG.dylib (2130.7.3) <C0903C97-523A-3822-ABE4-D1047D6785DC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff2bd1a000 -     0x7fff2bd49fff  com.apple.ATSUI (1.0 - 1) <F9BEFF92-E409-35B6-89CB-0F221D804D3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
        0x7fff2bd4a000 -     0x7fff2bd4efff  libGIF.dylib (2130.7.3) <E92A145C-2B76-39D1-B481-B7C95ACBF989> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff2bd4f000 -     0x7fff2bd58fff  com.apple.CMCaptureCore (1.0 - 82.6) <E0EAD649-4C7A-384E-999B-4D82AA9CDA52> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
        0x7fff2bd59000 -     0x7fff2bda0fff  com.apple.print.framework.PrintCore (16.1 - 531.1) <035969B9-3323-3AF4-AC4C-1D5B941C7C62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
        0x7fff2bda1000 -     0x7fff2be6efff  com.apple.TextureIO (3.10.9 - 3.10.9) <4B778275-5F2D-36DA-A6AD-14C8E516E197> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
        0x7fff2be6f000 -     0x7fff2be77fff  com.apple.InternationalSupport (1.0 - 61.1) <56A6D4F8-FF5B-3F34-BD1A-249414F182E9> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
        0x7fff2be78000 -     0x7fff2bef2fff  com.apple.datadetectorscore (8.0 - 674) <CDA8DABD-62A3-3E1C-9A76-B00E1E950254> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
        0x7fff2bef3000 -     0x7fff2bf50fff  com.apple.UserActivity (439 - 439) <C272F369-1086-317C-A4CF-AE2E1EC4FFB4> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
        0x7fff2bf51000 -     0x7fff2c6edfff  com.apple.MediaToolbox (1.0 - 2780.10) <AFB06F1B-22BA-3DB7-B6E4-3C55F0A4BECF> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff2cbbe000 -     0x7fff2cbeffff  libSessionUtility.dylib (76.69) <400DF595-A30C-3AD3-A8BA-25260299ACE6> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
        0x7fff2cbf0000 -     0x7fff2cd24fff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <93226BB9-165F-3A42-8EE3-9670394C4DC9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff2cd25000 -     0x7fff2cd8afff  com.apple.audio.AudioSession (1.0 - 76.69) <ADC1C8FC-A444-3F15-A396-B4AB688BB326> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
        0x7fff2cd8b000 -     0x7fff2cd9dfff  libAudioStatistics.dylib (27.64) <74E8B615-03FE-327B-A8FB-EAC5EF117414> /usr/lib/libAudioStatistics.dylib
        0x7fff2cd9e000 -     0x7fff2cdadfff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <CE36276F-23DD-32A3-9863-D3A5DDE5965E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff2cdae000 -     0x7fff2ce1afff  com.apple.ApplicationServices.ATS (377 - 516) <6E601872-2340-3675-9B6F-0C1DB991C54E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
        0x7fff2ce1b000 -     0x7fff2ce33fff  libresolv.9.dylib (68) <86A4BABF-3EFC-3113-BE8A-2D1AAAEF0194> /usr/lib/libresolv.9.dylib
        0x7fff2cf01000 -     0x7fff2cf65fff  com.apple.CoreMediaIO (1000.0 - 5325) <42F6129C-48E9-316A-9F30-2FA4D96F709F> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff2cf66000 -     0x7fff2d045fff  libSMC.dylib (20) <CF88A94C-B5EE-306F-96A3-1442BA061C46> /usr/lib/libSMC.dylib
        0x7fff2d046000 -     0x7fff2d0a5fff  libcups.2.dylib (494.3) <2CE9752F-8763-3456-83CF-E4BCFB731153> /usr/lib/libcups.2.dylib
        0x7fff2d0a6000 -     0x7fff2d0b5fff  com.apple.LangAnalysis (1.7.0 - 254) <AB67008E-5986-3974-B986-FDBFAC018CAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff2d0b6000 -     0x7fff2d0c0fff  com.apple.NetAuth (6.2 - 6.2) <B5806BA7-9A6E-37A0-9AB9-6EC2D61844AC> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff2d0c1000 -     0x7fff2d0c8fff  com.apple.ColorSyncLegacy (4.13.0 - 1) <86D9E9C9-C631-371E-824E-A203FE9E560A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
        0x7fff2d0c9000 -     0x7fff2d0d4fff  com.apple.QD (4.0 - 416) <1D8792FC-4A76-3B4F-82CF-3889C05768FE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
        0x7fff2d0d5000 -     0x7fff2d729fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <C97CD66B-8267-3C39-B025-789864237928> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
        0x7fff2d72a000 -     0x7fff2d735fff  com.apple.perfdata (1.0 - 67.40.1) <10E2B0C5-83A4-368A-B972-7AFA40D5338C> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
        0x7fff2d736000 -     0x7fff2d744fff  libperfcheck.dylib (41) <A2D0E1A8-A98F-3DAA-B9FC-C033FC4CD9E0> /usr/lib/libperfcheck.dylib
        0x7fff2d745000 -     0x7fff2d754fff  com.apple.Kerberos (3.0 - 1) <0074E20F-E7D8-31F5-AF41-0D7BF370CD50> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff2d755000 -     0x7fff2d7a5fff  com.apple.GSS (4.0 - 2.0) <D546E52C-295F-3CCD-9925-03632FE72ECB> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff2d7a6000 -     0x7fff2d7b6fff  com.apple.CommonAuth (4.0 - 2.0) <DF20551B-1514-39B3-A52E-681A2E5F0D1C> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff2d7b7000 -     0x7fff2d7defff  com.apple.MobileAssets (1.0 - 659.100.21) <14EB0135-6B08-37A0-A517-E23997BAD7D5> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
        0x7fff2d80c000 -     0x7fff2d82bfff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <C48DA26A-6A69-3497-B94D-43332354162B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
        0x7fff2d82c000 -     0x7fff2d834fff  com.apple.CorePhoneNumbers (1.0 - 1) <9F49D632-C5F4-37F5-A2A8-2830A7560138> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
        0x7fff2d987000 -     0x7fff2d987fff  liblaunch.dylib (2038.120.1) <4A353070-A560-3A98-8869-28C92435C6B2> /usr/lib/system/liblaunch.dylib
        0x7fff2d988000 -     0x7fff2d98dfff  libffi.dylib (27) <8F8CC0F8-1CF8-304A-91D4-C8FCBB6EEF62> /usr/lib/libffi.dylib
        0x7fff2e169000 -     0x7fff2e2b4fff  com.apple.Sharing (1630 - 1630) <CE657A48-7BDD-34D7-9CBC-B1D6AD94B2B2> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff2e2b5000 -     0x7fff2e3d6fff  com.apple.Bluetooth (8.0.5 - 8.0.5d7) <D011494A-287B-3487-B817-2329843C2486> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff2e3f0000 -     0x7fff2e449fff  com.apple.ProtectedCloudStorage (1.0 - 1) <EA0958A6-8296-3E23-81BE-297473A6E17E> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
        0x7fff2fbb1000 -     0x7fff2fbd8fff  com.apple.RemoteViewServices (2.0 - 163) <7DBF2A51-CE8E-352E-9426-B83DC370ADDD> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
        0x7fff2fbd9000 -     0x7fff2fbe8fff  com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <076E6A5F-4FEE-378B-9DCD-AFFA1348C64F> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
        0x7fff2fbe9000 -     0x7fff2fbf0fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <DB80BAB9-5E83-32DB-A424-05BB19044665> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
        0x7fff2fe1e000 -     0x7fff2fe1efff  libsystem_product_info_filter.dylib (8.40.1) <78928329-DD98-3799-989D-870DF92FE8D5> /usr/lib/system/libsystem_product_info_filter.dylib
        0x7fff2fef6000 -     0x7fff2fef6fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <CDB56324-715E-3223-903F-EEC1D4E57F14> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff2ff1c000 -     0x7fff2ff1cfff  com.apple.CoreServices (1122.44 - 1122.44) <104E1757-7D8A-32D3-9B38-B23B1A8EAB17> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff300d8000 -     0x7fff300d8fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <28463942-495F-3231-9348-32ABC601A1F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff30119000 -     0x7fff30124fff  com.apple.MediaAccessibility (1.0 - 130) <677557AF-6AC1-3860-B7C4-772B8DA9957B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
        0x7fff30125000 -     0x7fff30144fff  com.apple.networking.AlgosScoreFramework (1.0 - 1) <BFF296BB-6E78-3213-B453-31AA58FC13E0> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
        0x7fff3091a000 -     0x7fff3097ffff  com.apple.CoreBluetooth (1.0 - 1) <32288DE3-BD59-35A6-9165-73176E074499> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff30980000 -     0x7fff30989fff  com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <9A1589E7-0B3A-3DC5-967C-7A3D4C14ED1E> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
        0x7fff3099d000 -     0x7fff309a9fff  com.apple.AppleIDAuthSupport (1.0 - 1) <C391F5AD-7903-31AF-8608-7826C0EFB3C5> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
        0x7fff309aa000 -     0x7fff30a52fff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <08A9AAA6-7057-3105-BDE1-DC7270C38774> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff30a53000 -     0x7fff30a86fff  com.apple.MediaKit (16 - 927.40.2) <86B948D3-5757-37A7-B2DA-F7C50778B108> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff30a87000 -     0x7fff30b72fff  com.apple.DiskManagement (14.0 - 1733.140.2) <CF6680B9-9799-3DE8-A600-094260672A4F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
        0x7fff30b73000 -     0x7fff30f2dfff  com.apple.CoreAUC (326.2.0 - 326.2.0) <58430C09-401A-3B4C-806E-E87C46816939> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff30f2e000 -     0x7fff30f31fff  com.apple.Mangrove (1.0 - 25) <0E9FF438-D4B3-3DF1-B8A7-64623282B9B3> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff30f32000 -     0x7fff30f5ffff  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <80DEBCCB-A598-3CE5-B988-FFC5B81389CF> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff30f60000 -     0x7fff310affff  com.apple.FileProvider (349.4.3 - 349.4.3) <E07C8909-299C-3696-BD84-5CF42EE64EE4> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
        0x7fff310b0000 -     0x7fff310d2fff  com.apple.GenerationalStorage (2.0 - 323) <9E36AF92-10E2-382B-A07C-4E3270448690> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
        0x7fff3153b000 -     0x7fff316cffff  com.apple.AVFCore (1.0 - 2020.10) <85D55F46-61B4-3A08-8B13-1A678B571D66> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
        0x7fff316d0000 -     0x7fff3173ffff  com.apple.FrontBoardServices (703.16 - 703.16) <5088E177-3DF7-3F48-B340-7E6FF569C1E2> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
        0x7fff31740000 -     0x7fff31769fff  com.apple.BoardServices (1.0 - 526) <9932480F-CA31-362C-B5BB-263998D63224> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
        0x7fff3191c000 -     0x7fff3195bfff  com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <B7DF9782-C63B-32F0-A008-E83503C76E78> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff31a0e000 -     0x7fff31a49fff  com.apple.DebugSymbols (195.1 - 195.1) <7D2E32A0-DB93-36EE-AE9C-7974708CF4FC> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff31a4a000 -     0x7fff31afffff  com.apple.CoreSymbolication (12.5 - 64544.81.1) <7215543C-E3B6-30A0-8B21-7FBDFB10F198> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
        0x7fff32a0e000 -     0x7fff32a71fff  com.apple.framework.Apple80211 (17.0 - 1728) <D89EA57A-D351-3BD1-A470-505C6D8BF4D6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff32a72000 -     0x7fff32bc3fff  com.apple.CoreWiFi (3.0 - 341) <0FE4018E-E199-3923-A56D-430E40F5EEB7> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff32bc4000 -     0x7fff32bdefff  com.apple.BackBoardServices (1.0 - 1.0) <C21E697A-AB8B-3353-9B92-7DB6C09DE34D> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
        0x7fff32ea5000 -     0x7fff32eacfff  com.apple.EFILogin (2.0 - 2) <77A5D3D5-3B8D-3B5D-A1BD-A7614C86AF67> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff32ead000 -     0x7fff32eb8fff  libcsfde.dylib (554.140.2) <8B6A31B3-9421-3BAE-882B-8BEF5217E251> /usr/lib/libcsfde.dylib
        0x7fff330f7000 -     0x7fff330f7fff  com.apple.ApplicationServices (48 - 50) <52BB5EB6-2C1B-34F9-8665-F50DD078E71B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff3340c000 -     0x7fff3340cfff  libHeimdalProxy.dylib (79) <A1B83B1E-006D-38A8-8878-FD6ECBBB9B1B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
        0x7fff334bf000 -     0x7fff334bffff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <0A5BB3A7-D9DC-346C-9FBB-FB075194E7AC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff334e3000 -     0x7fff33526fff  com.apple.StreamingZip (1.0 - 1) <DDE31BAA-F317-3EA3-AF44-7B05CDB95217> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
        0x7fff335d2000 -     0x7fff33dd3fff  com.apple.vision.EspressoFramework (1.0 - 256.4.4) <46EB212E-0528-3D15-AAA4-207E8B197A75> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
        0x7fff33dd4000 -     0x7fff33debfff  com.apple.ANEServices (4.76 - 4.76) <E54FB6F5-CBF8-3ED2-A73B-47C6D87910A4> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
        0x7fff3448f000 -     0x7fff344dffff  com.apple.ChunkingLibrary (334.1 - 334.1) <2CD91198-1354-357F-8858-D58244526C15> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff34d53000 -     0x7fff34d68fff  com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <C3AA92B0-9BF9-3806-A952-2A318AF1EEE4> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
        0x7fff34eef000 -     0x7fff34ef2fff  com.apple.Cocoa (6.11 - 23) <237F7F6E-E7D1-363A-92AF-32B564728891> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff3761f000 -     0x7fff37731fff  com.apple.AVFCapture (1.0 - 82.6) <FA7F06F5-9F18-3DF3-BB00-EA019050812E> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
        0x7fff37732000 -     0x7fff377c5fff  com.apple.Quagga (47 - 47) <A2CD23BB-59D9-31ED-B980-4CF5379CABDE> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
        0x7fff377c6000 -     0x7fff37a10fff  com.apple.CMCapture (1.0 - 82.6) <DC0EAADD-A8F6-3ECE-8D10-354103DB7767> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
        0x7fff3bc70000 -     0x7fff3bd07fff  com.apple.AirPlaySync (1.0 - 2780.10) <FE97137A-017E-392F-9457-1FF0ACB82681> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
        0x7fff3ca1c000 -     0x7fff3ca1cfff  com.apple.avfoundation (2.0 - 2020.10) <DF72C9C0-236F-326C-84C1-E4F25163310D> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff3cbd6000 -     0x7fff3cbf5fff  com.apple.private.SystemPolicy (1.0 - 1) <8BC55621-1E45-33B3-BCD6-C59F1F390695> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
        0x7fff3d533000 -     0x7fff3d545fff  libmis.dylib (274.140.2) <570E2D9A-BC76-37F7-8CFC-E18AD5E81CE0> /usr/lib/libmis.dylib
        0x7fff411fa000 -     0x7fff41218fff  libCGInterfaces.dylib (544.4) <05A5B7E9-C79A-3FEA-AD6C-72FE168004C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
        0x7fff437a7000 -     0x7fff43a1afff  com.apple.RawCamera.bundle (9.10.0 - 1450.3) <2F4C79D7-0A8A-3FE3-9A93-74F78774D0BC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff57f79000 -     0x7fff57f94fff  libJapaneseConverter.dylib (90) <0E15B967-50F7-3E69-8837-D927BC15D975> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
        0x7fff6ba7d000 -     0x7fff6ba83fff  libCoreFSCache.dylib (200.11) <3C96E791-3964-32EA-A84A-00DF3455B43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
        0x7fff6ba84000 -     0x7fff6ba88fff  libCoreVMClient.dylib (200.11) <966F49F6-D2D5-3ACB-9CFD-9F8D3C8C82F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff6ba89000 -     0x7fff6ba98fff  com.apple.opengl (18.5.9 - 18.5.9) <5C26B170-E22B-3AAD-BA33-61304FFA70B2> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff6ba99000 -     0x7fff6ba9bfff  libCVMSPluginSupport.dylib (18.5.9) <435F258D-95B5-3015-BDAC-4B8EF8E89F1E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
        0x7fff6ba9c000 -     0x7fff6baa4fff  libGFXShared.dylib (18.5.9) <851E0956-A16E-3F5D-B3BE-37B56C2BAA04> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff6baa5000 -     0x7fff6bad8fff  libGLImage.dylib (18.5.9) <687EBB15-1AB3-3815-A69D-58527655A92D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff6bad9000 -     0x7fff6bb15fff  libGLU.dylib (18.5.9) <29B7802C-F6E4-3DF1-B5D6-07B29C6D02B2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff6bcaa000 -     0x7fff6bcb4fff  libGL.dylib (18.5.9) <8A4ED04C-9171-3CE2-A52A-E7C4D76A6EDA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff6d0f4000 -     0x7fff6d14cfff  com.apple.opencl (4.6 - 4.6) <713206B3-A335-3AC5-B342-4CE16BDF69F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff6e1fe000 -     0x7fff6e2e5fff  com.apple.audio.AVFAudio (1.0 - 477.88) <5FBB7121-7190-317C-8796-4A64EBEE1629> /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
        0x7fff6f867000 -     0x7fff6f879fff  com.apple.CMImaging (1.0 - 82.6) <91AA282D-81A1-34C3-AFF4-887ABA89CCAA> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging
    
    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.4G resident=0K(0%) swapped_out_or_unallocated=1.4G(100%)
    Writable regions: Total=28.1G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=28.1G(100%)
     
                                    VIRTUAL   REGION 
    REGION TYPE                        SIZE    COUNT (non-coalesced) 
    ===========                     =======  ======= 
    Activity Tracing                   256K        1 
    Dispatch continuations            64.0M        1 
    Foundation                          16K        1 
    Kernel Alloc Once                    8K        1 
    MALLOC                            27.4G     3840 
    MALLOC guard page                   48K       10 
    MALLOC_MEDIUM (reserved)         240.0M        4         reserved VM address space (unallocated)
    STACK GUARD                         52K       13 
    Stack                             37.6M       14 
    VM_ALLOCATE                      288.4M      709 
    VM_ALLOCATE (reserved)           128.0M        2         reserved VM address space (unallocated)
    __DATA                            49.5M      755 
    __DATA_CONST                      16.4M      273 
    __DATA_DIRTY                       654K      111 
    __FONT_DATA                          4K        1 
    __LINKEDIT                       616.0M      494 
    __OBJC_RO                         70.3M        1 
    __OBJC_RW                         2496K        2 
    __TEXT                           816.9M      667 
    __UNICODE                          588K        1 
    mapped file                       63.6M       16 
    shared memory                      752K       14 
    ===========                     =======  ======= 
    TOTAL                             29.7G     6931 
    TOTAL, minus reserved VM space    29.3G     6931 
    
    Model: iMac18,3, BootROM 429.140.8.0.0, 4 processors, Quad-Core Intel Core i7, 4.2 GHz, 32 GB, SMC 2.41f2
    Graphics: kHW_AMDRadeonPro580Item, Radeon Pro 580, spdisplays_pcie_device, 8 GB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR4 SO-DIMM, 2400 MHz, 0x802C, 0x3841544631473634485A2D324733453220202020
    Memory Module: BANK 0/DIMM1, 8 GB, DDR4 SO-DIMM, 2400 MHz, 0x802C, 0x3841544631473634485A2D324733453220202020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR4 SO-DIMM, 2400 MHz, 0x802C, 0x3841544631473634485A2D324733453220202020
    Memory Module: BANK 1/DIMM1, 8 GB, DDR4 SO-DIMM, 2400 MHz, 0x802C, 0x3841544631473634485A2D324733453220202020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x16F), Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1680.8)
    Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD ST2000DM001, 2 TB
    USB Device: USB 3.0 Bus
    USB Device: Bluetooth USB Host Controller
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: USB KEYBOARD
    Thunderbolt Bus: iMac, Apple Inc., 41.4
    
    
    bug 
    opened by ganyariya 10
  • [BUG] Reevaluated agents are not matching archive BCs

    [BUG] Reevaluated agents are not matching archive BCs

    • pyribs version: 0.3.1
    • Python version: 3.7
    • Operating System: Windows
    • Emitter style: Improvement

    Description

    Trying to do: So, I am evolving an agent to play Zelda, and as my behavior characteristics, I am using the average action distribution entropy for the agent during the rollout and the number of steps the agent took to achieve the task (get key and get to the door). As the objective, I am +1 if the agents gets the key, +1 if the agent gets the key to the door, -1 if the agent dies to the single monster, and 0 otherwise. Therefore, an objective score of +2 is "solved".

    What is going wrong: When I extract a solution from the archive at the end of training, e.g: image

    the observed behaviour when I place the agent back into the game does not match the behaviour characterizations that the map says this network weights should achieve. To ensure that I wasn't losing precision due to saving the archive, I have been saving the dataframes in a pkl file. However, that is not a concern here since the archive/dataframe was not saved to disk on this round of experiments.

    Now, since the enemy agent moves around randomly, that could make sense that there is variation in the archived BCs and what I'm seeing afterwards. A stochastic environment can defeat many algorithms, but to mitigate noisy signals from the environment, I am averaging my BCs and objective values over 5 rollouts per potential agent. Maybe I just need to do more rollouts per candidate solution.

    image

    When I run the extracted agent, I am getting entropy values ~1.224 which, for reference, is very far away in my map and due to that higher entropy, the agents are behaving in what looks to be randomly:

    image

    Steps to Reproduce

    I can send over the full experiment notebook if requested.

    bug 
    opened by aadharna 9
  • [BUG] CVTArchive mishandles its

    [BUG] CVTArchive mishandles its "bins" parameter

    • pyribs version: 0.4.0
    • Python version: 3.6.9, 3.8.3
    • Operating System: Ubuntu 18.04.5 LTS, MacOS 10.15.7

    Description

    Parameter bins of the CVTArchive constructor is incorrectly cast into a tuple, causing np.zeros to reject it as a parameter later on.

    Steps to Reproduce

    import ribs, numpy as np
    archive = ribs.archives.CVTArchive((5, 5, 5, 5, 5), ((0., 1.), (0., 1.), (0., 1.), (0., 1.), (0., 1.)))
    print("There be dragons: ", archive._storage_dims)
    # Prints: There be dragons: ((5, 5, 5, 5, 5),)
    emitters = [ribs.emitters.ImprovementEmitter(archive, np.zeros(5), .5, seed=0, batch_size=20)]
    optimizer = ribs.optimizers.Optimizer(archive, emitters)
    # This crash ensues:
    #  Traceback (most recent call last):
    #    File "<stdin>", line 1, in <module>
    #    File "/usr/local/lib/python3.6/dist-packages/ribs/optimizers/_optimizer.py", line 61, in __init__
    #      self._archive.initialize(self._solution_dim)
    #    File "/usr/local/lib/python3.6/dist-packages/ribs/archives/_cvt_archive.py", line 204, in initialize
    #      ArchiveBase.initialize(self, solution_dim)
    #    File "/usr/local/lib/python3.6/dist-packages/ribs/archives/_archive_base.py", line 350, in initialize
    #      self._occupied = np.zeros(self._storage_dims, dtype=bool)
    #  TypeError: 'tuple' object cannot be interpreted as an integer
    

    Problem

    In class CVTArchive, parameter dims is miscast into a tuple on line 101:

     ArchiveBase.__init__(
                self,
                storage_dims=(bins,), # <<<< HERE
                behavior_dim=len(ranges),
                seed=seed,
                dtype=dtype,
            )
    

    Solution

    Use the same cast as in GridArchive on lines 41 and 48:

            self._dims = np.array(dims) # <<<< HERE
            if len(self._dims) != len(ranges):
                raise ValueError(f"dims (length {len(self._dims)}) and ranges "
                                 f"(length {len(ranges)}) must be the same length")
    
            ArchiveBase.__init__(
                self,
                storage_dims=tuple(self._dims), # <<<< HERE
                behavior_dim=len(self._dims),
                seed=seed,
                dtype=dtype,
            )
    
    bug 
    opened by twoletters 5
  • Visualize mesb

    Visualize mesb

    Description

    Add custom function to visualize a 2D SlidingBoundaryArchive.

    TODO

    • [x] Implement the function.
    • [x] Write tests for it.

    Status

    • [x] I have read the guidelines in CONTRIBUTING.rst.
    • [x] I have formatted my code using yapf
    • [x] I have tested my code by running pytest (tox is run in CI/CD)
    • [x] I have linted my code with pylint (Don't worry if there are too many errors)
    • [x] This PR is ready to go
    opened by lunjohnzhang 5
  • [FEATURE REQUEST] Archive of Classes

    [FEATURE REQUEST] Archive of Classes

    Description

    I'm not sure if this makes sense for the QDL QD algorithm, but I would like to generate diversity for multi-label classification. That is, each sample x has a binary vector of labels (length ~15-50). I would like to generate a diversity of these binary vectors. I can probably just use the CVTArchive with one-hot vectors, but I was curious if there is a better way, or if this will make sense with the QDL QD algorithm.

    Thank you!

    enhancement 
    opened by whitead 4
  • Implement CMA-MAE archive thresholds

    Implement CMA-MAE archive thresholds

    Description

    In this PR, we modify archive_base to implement archive thresholds from CMA-MAE.

    In addition to that, we also revive old implementation of add_single, which was removed in (#221) in favor of calling add with an array of a single element. We found it necessary to revive the old implementation so users of pyribs can easily "hack" the add_single function to use their own implementation. Otherwise, the users will either have to come up with their own implementation of add_single, or understand (and "hack") the much more complicated add function.

    In https://github.com/icaros-usc/pyribs/pull/221#issue-1286519732, it was mentioned that add_batch without numba gives roughly 2x speed increase over add_single with numba. Since we did not revive the use of numba in add_single, add_batch now has a roughly 2.5x - 3x speed increase over add_single. For example, cma_me_imp takes ~100s on my computer with add_batch and ~300s with add_single.

    TODO

    • [x] Revive old implementation of add_single in #221.
    • [x] Implement archive threshold single.
    • [x] Implement archive threshold batch.
    • [x] Verify CMA-MAE for add_single.
    • [x] Verify CMA-MAE for add.
    • [x] Verify CMA-MAEGA.

    Testing

    • [x] Add testing for threshold updating.
    • [x] Fix the tests such that they call add_single and add with single solution

    Can you also fix the tests such that they call add_single and add with single solution? We want to make sure we test both implementations, since we currently assume add_single calls add but that is no longer the case.

    • [x] Test for negative threshold_min.
    • [x] Re-run sphere.py test.
    • [x] add_single and add test with different learning rates.

    Status

    • [x] I have read the guidelines in CONTRIBUTING.md
    • [x] I have formatted my code using yapf
    • [x] I have tested my code by running pytest
    • [x] I have linted my code with pylint
    • [x] I have added a one-line description of my change to the changelog in HISTORY.md
    • [x] This PR is ready to go
    opened by itsdawei 4
  • [BUG] Building from source

    [BUG] Building from source

    • pyribs version: 0.3.1
    • Python version: 3.8.10, Conda 4.10.1, pip 21.0.1 (python 3.8)
    • Operating System: MacOS Catalina

    Description

    Hi, I am try to build this from source in a conda environment and get stuck at dask stuff in the LunarLander example. I tried building with just pip and no conda and got the same problems too :/

    I was not able to pip install .[all] in any environment, if that has anything to do with it. Here is what I've done let me know if something is wrong.

    Steps to Reproduce

    Setup

    conda create --name pyribs python=3.8
    git clone https://github.com/icaros-usc/pyribs.git
    cd pyribs
    which pip3                                                                     
    > /opt/anaconda3/envs/pyribs/bin/pip3
    /opt/anaconda3/envs/pyribs/bin/pip3 install .[all]
    > zsh: no matches found: .[all] # <-- I get this error from non-conda installs too...
    /opt/anaconda3/envs/pyribs/bin/pip3 install .
    
    # other dependencies needed to run test/examples.sh
    conda install -c conda-forge fire
    conda install matplotlib
    conda install -c conda-forge alive-progress
    conda install -c conda-forge gym
    conda install -c conda-forge gym-box2d
    conda install -c conda-forge dask-core
    conda install dask distributed
    

    Test

    ± % tests/examples.sh                                                                                                                                                                                                                                             !6335
    + TMPDIR=./examples_tmp
    + '[' '!' -d ./examples_tmp ']'
    + export OPENBLAS_NUM_THREADS=1
    + OPENBLAS_NUM_THREADS=1
    + export OMP_NUM_THREADS=1
    + OMP_NUM_THREADS=1
    + SPHERE_OUTPUT=./examples_tmp/sphere_output
    + python examples/sphere.py map_elites 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.141% QD Score: 258194.080
    |████████████████████████████████████████| 10/10 [100%] in 1.5s (6.49/s)
    Algorithm Time (Excludes Logging and Setup): 0.8987681865692139s
    + python examples/sphere.py line_map_elites 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 0.466% QD Score: 106726.478
    |████████████████████████████████████████| 10/10 [100%] in 1.7s (6.01/s)
    Algorithm Time (Excludes Logging and Setup): 1.0788006782531738s
    + python examples/sphere.py cma_me_imp 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.381% QD Score: 318960.752
    |████████████████████████████████████████| 10/10 [100%] in 3.8s (2.61/s)
    Algorithm Time (Excludes Logging and Setup): 3.141014814376831s
    + python examples/sphere.py cma_me_imp_mu 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.532% QD Score: 354225.362
    |████████████████████████████████████████| 10/10 [100%] in 3.6s (2.74/s)
    Algorithm Time (Excludes Logging and Setup): 3.0505564212799072s
    + python examples/sphere.py cma_me_rd 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.730% QD Score: 324428.521
    |████████████████████████████████████████| 10/10 [100%] in 3.7s (2.71/s)
    Algorithm Time (Excludes Logging and Setup): 3.073657751083374s
    + python examples/sphere.py cma_me_rd_mu 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.813% QD Score: 324367.066
    |████████████████████████████████████████| 10/10 [100%] in 3.8s (2.61/s)
    Algorithm Time (Excludes Logging and Setup): 3.112123966217041s
    + python examples/sphere.py cma_me_opt 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.601% QD Score: 366030.600
    |████████████████████████████████████████| 10/10 [100%] in 3.7s (2.67/s)
    Algorithm Time (Excludes Logging and Setup): 3.054513931274414s
    + python examples/sphere.py cma_me_mixed 20 10 ./examples_tmp/sphere_output
    on 10: Iteration 10 | Archive Coverage: 1.612% QD Score: 340016.277
    |████████████████████████████████████████| 10/10 [100%] in 3.8s (2.65/s)
    Algorithm Time (Excludes Logging and Setup): 3.078763484954834s
    + LUNAR_LANDER_OUTPUT=./examples_tmp/lunar_lander_output
    + python examples/lunar_lander.py --iterations 5 --outdir ./examples_tmp/lunar_lander_output
    > Starting search.
      - Open Dask's dashboard at http://localhost:8787 to monitor workers.
    |⚠                                       | (!) 0/5 [0%] in 0.7s (0.00/s)
    Traceback (most recent call last):
      File "examples/lunar_lander.py", line 401, in <module>
        fire.Fire(lunar_lander_main)
      File "/opt/anaconda3/envs/pyribs/lib/python3.8/site-packages/fire/core.py", line 141, in Fire
        component_trace = _Fire(component, args, parsed_flag_args, context, name)
      File "/opt/anaconda3/envs/pyribs/lib/python3.8/site-packages/fire/core.py", line 466, in _Fire
        component, remaining_args = _CallAndUpdateTrace(
      File "/opt/anaconda3/envs/pyribs/lib/python3.8/site-packages/fire/core.py", line 681, in _CallAndUpdateTrace
        component = fn(*varargs, **kwargs)
      File "examples/lunar_lander.py", line 391, in lunar_lander_main
        metrics = run_search(client, optimizer, env_seed, iterations, log_freq)
      File "examples/lunar_lander.py", line 218, in run_search
        futures = client.map(lambda model: simulate(model, env_seed), sols)
      File "/opt/anaconda3/envs/pyribs/lib/python3.8/site-packages/distributed/client.py", line 1784, in map
        futures = self._graph_to_futures(
      File "/opt/anaconda3/envs/pyribs/lib/python3.8/site-packages/distributed/client.py", line 2581, in _graph_to_futures
        dsk = dsk.__dask_distributed_pack__(self, keyset, annotations)
    TypeError: __dask_distributed_pack__() takes 3 positional arguments but 4 were given
    (pyribs)
    
    bug 
    opened by agaier 3
  • [BUG] Lunar Lander Example does not work

    [BUG] Lunar Lander Example does not work

    • pyribs version: 0.2.1
    • Python version: 3.8
    • Operating System: Ubuntu 20.04

    Description

    The seaborn dependency is not installed when using pip install -e .[examples]

    This leads to the following error:

    Traceback (most recent call last):
      File "lunar_lander.py", line 15, in <module>
        import seaborn as sns
    ModuleNotFoundError: No module named 'seaborn'
    

    Steps to Reproduce

    1. Clone repository
    2. run pip install -e .[examples] to install depedencies for examples
    3. cd examples
    4. python lunar_lander.py
    bug 
    opened by Bam4d 3
  • MAP-Elites with Sliding Boundaries

    MAP-Elites with Sliding Boundaries

    Description

    Implementation, tests, benchmark of MAP-Elites with Sliding Boundaries based on Hearthstone Deck Space paper.

    TODO

    • [x] Implement
    • [x] Test
    • [x] Benchmark
    • [x] Document
    • [ ] Numba-ize

    Questions

    • [ ] May need help with integrating numba.

    Status

    • [x] I have read the guidelines in CONTRIBUTING.rst.
    • [x] I have formatted my code using yapf
    • [x] I have tested my code by running pytest (tox is run in CI/CD)
    • [x] I have linted my code with pylint (Don't worry if there are too many errors)
    • [x] This PR is ready to go
    opened by lunjohnzhang 3
  • Sliding Boundaries Archive Heatmap Boundaries [BUG]

    Sliding Boundaries Archive Heatmap Boundaries [BUG]

    • pyribs version: 0.4.0
    • Python version: 3.9
    • Operating System: Windows

    Description

    Heyho,

    I am trying to plot a heatmap of a sliding boundaries archive that shows the boundaries. Therefore, I set the parameter boundary_lw to a value large than 0.

    The following picture shows the result of the function call (Fig. 1): image

    But what I would like to have the following (Fig. 2): image

    Steps to Reproduce

    The function call I have used is:

    from ribs.visualize import sliding_boundaries_archive_heatmap
    import matplotlib.pyplot as plt
    fig = plt.figure(figsize=(8, 6))
    sliding_boundaries_archive_heatmap(archive, boundary_lw=0.5, ax=ax1)
    plt.show()
    

    I can not share the archive I am using.

    Potential Fix

    I found the following solution while looking at the code.

    The current implementation of plotting the boundaries is the following:

    if boundary_lw > 0.0:
        ax.vlines(x_boundary,
                  lower_bounds[0],
                  upper_bounds[0],
                  color='k',
                  linewidth=boundary_lw)
        ax.hlines(y_boundary,
                  lower_bounds[1],
                  upper_bounds[1],
                  color='k',
                  linewidth=boundary_lw)
    

    However, to my understanding of the code, we would need to switch the indices. That is, to plot the boundaries correctly, we need the lower and upper bounds of the other dimension. Hence, the code should be:

    if boundary_lw > 0.0:
        ax.vlines(x_boundary,
                  lower_bounds[1],
                  upper_bounds[1],
                  color='k',
                  linewidth=boundary_lw)
        ax.hlines(y_boundary,
                  lower_bounds[0],
                  upper_bounds[0],
                  color='k',
                  linewidth=boundary_lw)
    

    I have used this code to produce Figure 2.

    I am not sure if I am just using the code incorrectly or if this is a bug. I would be happy to hear feedback.

    bug 
    opened by LennartPurucker 2
  • Major API Changes for Emitter

    Major API Changes for Emitter

    Description

    This PR introduces major API changes for the Emitter class. Emitter class now requires a Ranker object and a Selector object.

    The Ranker object will define a rank function which returns the index of the solutions in the descending order that they should be in. It will also define a reset function which resets the internal states of the object.

    RandomDirectionEmitter, OptimizingEmitter, and ImprovementEmitter are now all combined into EvolutionStrategyEmitter, which can be configured to use different Ranker's.

    We also introduce FilterSelector and MuSelector objects which defines a select() function that decides how many parents to select from the potential parents.

    EvolutionStrategyEmitter(x0, sigma0, ranker=Ranker, string, selector, ES, restart_rule, bounds, batch_size, seed) If ranker=str, then we create the object for you

    TODO

    Rankers

    • [x] Implement EvolutionStrategyEmitter
    • [ ] Implement ImprovementRanker
    • [x] Implement TwoStageImprovementRanker
    • [x] Implement RandomDirectionRanker
    • [x] Implement TwoStageRandomDirectionRanker
    • [x] Implement ObjectiveRanker
    • [x] Implement TwoStageObjectiveRanker
    • [x] Implement get_ranker(str) -> Ranker

    Selector

    • [x] MuSelector
    • [x] FilterSelector

    RestartChecker

    • [ ] come up with an API for this

    Others

    • [ ] Add documentation for all new classes/functions
    • [x] Handle repeating docstrings using methods of https://github.com/mwaskom/seaborn/blob/9d8ce6ad4ab213994f0bc84d0c46869df7be0b49/seaborn/relational.py#L719

    Status

    • [ ] I have read the guidelines in CONTRIBUTING.md.
    • [ ] I have formatted my code using yapf
    • [ ] I have tested my code by running pytest
    • [ ] I have linted my code with pylint
    • [ ] I have added a one-line description of my change to the changelog in HISTORY.md.
    • [ ] This PR is ready to go
    API 
    opened by itsdawei 2
  • Edit tutorials to improve flow

    Edit tutorials to improve flow

    Description

    TODO

    Questions

    Status

    • [x] I have read the guidelines in CONTRIBUTING.md
    • [x] I have formatted my code using yapf
    • [x] I have tested my code by running pytest
    • [x] I have linted my code with pylint
    • [ ] I have added a one-line description of my change to the changelog in HISTORY.md
    • [ ] This PR is ready to go
    opened by btjanaka 0
  • [FEATURE REQUEST] Adjustments to use negative objectives (cost)?

    [FEATURE REQUEST] Adjustments to use negative objectives (cost)?

    Description

    It would be nice to have an example where it's a minimization (of a cost) problem instead of the usual maximization (of a reward). The most straight forward approach is to use the negative cost as the objective, but that poses an issue with the usual QD score metric where 0 is given to unexplored cells. Presumably the normalized QD score should address this here:

    norm_qd_score=self.dtype(new_qd_score / self.cells),
    

    but I had to look into the code to confirm whether it would make sense with negative objectives or not, and there may be other cases that implicitly depend on a non-negative objective. Even then, the metric would start with 0, jump to a high negative, and slowly get closer to 0 from the negatives. This is less compelling than a monotonically increasing metric.

    The examples seem to use best - worst performance, which would work if the worst possible performance was known ahead of time and was bounded. But this is not the case in my problem. Switching it to best - worst as of now would not be valuable since it could be inflated by just finding a terrible solution.

    You could also use 1/cost as the objective, but this would stretch the optimizing landscape and would lead to very different behavior.

    It would be nice to have a tutorial or example with best practices for minimization problems, and things to watch out for.

    enhancement 
    opened by LemonPi 1
  • Adding DQD Tutorial

    Adding DQD Tutorial

    Description

    Adding DQD Tutorial https://colab.research.google.com/drive/1DCSFluMmquFPZ2rgUQWA44IPcu7EBfUJ#scrollTo=cr-94yAuzYns

    • [x] I have read the guidelines in CONTRIBUTING.md
    • [x] I have formatted my code using yapf
    • [x] I have tested my code by running pytest
    • [x] I have linted my code with pylint
    • [x] I have added a one-line description of my change to the changelog in HISTORY.md
    • [x] This PR is ready to go
    opened by Nivedit24 2
  • DQDogs Tutorial

    DQDogs Tutorial

    Description

    Write a tutorial for using cma_mae to generate images of dogs.

    TODO

    Status

    • [ ] I have read the guidelines in CONTRIBUTING.md
    • [ ] I have formatted my code using yapf
    • [ ] I have tested my code by running pytest
    • [ ] I have linted my code with pylint
    • [ ] I have added a one-line description of my change to the changelog in HISTORY.md
    • [ ] This PR is ready to go
    opened by itsdawei 0
  • Allow `sigma0` in `EvolutionStrategyEmitter` to be a vector

    Allow `sigma0` in `EvolutionStrategyEmitter` to be a vector

    Description

    Allow sigma0 in EvolutionStrategyEmitter to be a vector.

    TODO

    • [ ] Figure out how to allow sigma to be a vector in CMA-ES.

    Status

    • [x] I have read the guidelines in CONTRIBUTING.md
    • [x] I have formatted my code using yapf
    • [x] I have tested my code by running pytest
    • [x] I have linted my code with pylint
    • [x] I have added a one-line description of my change to the changelog in HISTORY.md
    • [x] This PR is ready to go
    opened by itsdawei 0
  • [FEATURE REQUEST] Separable objs and heatmap metrics

    [FEATURE REQUEST] Separable objs and heatmap metrics

    Hi! I would like to request a feature for separable optimization objective and heatmap metrics. For example, now I want to optimize for the loss which provides more training signal but visualize the accuracy which is more interpretable, but currently only the training objective could be visualized.

    Thanks so much, I really appreciate your hard work!

    enhancement 
    opened by lucys0 0
Releases(v0.4.0)
  • v0.4.0(Jul 22, 2021)

    To learn about this release, see our blog post: https://pyribs.org/blog/0-4-0

    Changelog

    API

    • Add ribs.visualize.parallel_axes_plot for analyzing archives with high-dimensional BCs (#92)
    • Backwards-incompatible: Reduce attributes and parameters in EmitterBase to make it easier to extend (#101)
    • In Optimizer, support emitters that return any number of solutions in ask() (#101)
    • Backwards-incompatible: Store metadata in archives as described in #87 (#103, #114, #115, #119)
    • Backwards-incompatible: Rename "index" to "index_0" in CVTArchive.as_pandas for API consistency (#113)
    • Backwards-incompatible: Make get_index() public in archives to emphasize each index's meaning (#128)
    • Backwards-incompatible: Add index to get_random_elite() and elite_with_behavior() in archives (#129)
    • Add clear() method to archive (#140, #146)
    • Represent archive elites with an Elite namedtuple (#142)
    • Add len and iter methods to archives (#151, #152)
    • Add statistics to archives (#100, #157)
    • Improve manipulation of elites by modifying as_pandas (#123, #149, #153, #158, #168)
    • Add checks for optimizer array and list shapes (#166)

    Documentation

    • Add bibtex citations for tutorials (#122)
    • Remove network training from Fooling MNIST tutorial (#161)
    • Fix video display for lunar lander in Colab (#163)
    • Fix Colab links in stable docs (#164)

    Improvements

    • Add support for Python 3.9 (#84)
    • Test with pinned versions (#110)
    • Increase minimum required versions for scipy and numba (#110)
    • Refactor as_pandas tests (#114)
    • Expand CI/CD to test examples and tutorials (#117)
    • Tidy up existing tests (#120, #127)
    • Fix vocab in various areas (#138)
    • Fix dependency issues in tests (#139)
    • Remove tox from CI (#143)
    • Replace "entry" with "elite" in tests (#144)
    • Use new archive API in ribs.visualize implementation (#155)
    Source code(tar.gz)
    Source code(zip)
  • v0.3.1(Mar 6, 2021)

    This release features various bug fixes and improvements. In particular, we have added tests for SlidingBoundariesArchive and believe it is ready for more rigorous use.

    Changelog

    • Move SlidingBoundariesArchive out of experimental by adding tests and fixing bugs (#93)
    • Added nicer figures to the Sphere example with grid_archive_heatmap (#86)
    • Added testing for Windows and MacOS (#83)
    • Fixed package metadata e.g. description
    Source code(tar.gz)
    Source code(zip)
  • v0.3.0(Feb 6, 2021)

    pyribs is now in beta. Since our alpha release (0.2.0), we have polished the library and added new tutorials and examples to our documentation.

    Changelog

    • Added a Lunar Lander example that extends the lunar lander tutorial (#70)
    • Added New Tutorial: Illuminating the Latent Space of an MNIST GAN (#78)
    • GridArchive: Added a boundaries attribute with the upper and lower bounds of each dimension's bins (#76)
    • Fixed a bug where CMA-ME emitters do not work with float32 archives (#74)
    • Fixed a bug where Optimizer is able to take in non-unique emitter instances (#75)
    • Fixed a bug where GridArchive failed for float32 due to a small epsilon (#81)
    • Fix issues with bounds in the SlidingBoundaryArchive (#77)
    • Added clearer error messages for archives (#82)
    • Modified the Python requirements to allow any version above 3.6.0 (#68)
    • The wheel is now fixed so that it only supports py3 rather than py2 and py3 (#68)
    • Miscellaneous documentation fixes (#71)
    Source code(tar.gz)
    Source code(zip)
  • v0.2.1(Jan 30, 2021)

  • v0.2.0(Jan 29, 2021)

Owner
ICAROS
Interactive and Collaborative Autonomous Robotic Systems
ICAROS
Using BERT+Bi-LSTM+CRF

Chinese Medical Entity Recognition Based on BERT+Bi-LSTM+CRF Step 1 I share the dataset on my google drive, please download the whole 'CCKS_2019_Task1

Xiang WU 55 Dec 21, 2022
Official implementation of YOGO for Point-Cloud Processing

You Only Group Once: Efficient Point-Cloud Processing with Token Representation and Relation Inference Module By Chenfeng Xu, Bohan Zhai, Bichen Wu, T

Chenfeng Xu 67 Dec 20, 2022
Gym environment for FLIPIT: The Game of "Stealthy Takeover"

gym-flipit Gym environment for FLIPIT: The Game of "Stealthy Takeover" invented by Marten van Dijk, Ari Juels, Alina Oprea, and Ronald L. Rivest. Desi

Lisa Oakley 2 Dec 15, 2021
Video-based open-world segmentation

UVO_Challenge Team Alpes_runner Solutions This is an official repo for our UVO Challenge solutions for Image/Video-based open-world segmentation. Our

Yuming Du 84 Dec 22, 2022
Scrutinizing XAI with linear ground-truth data

This repository contains all the experiments presented in the corresponding paper: "Scrutinizing XAI using linear ground-truth data with suppressor va

braindata lab 2 Oct 04, 2022
An official implementation of MobileStyleGAN in PyTorch

MobileStyleGAN: A Lightweight Convolutional Neural Network for High-Fidelity Image Synthesis Official PyTorch Implementation The accompanying videos c

Sergei Belousov 602 Jan 07, 2023
A Real-ESRGAN equipped Colab notebook for CLIP Guided Diffusion

#360Diffusion automatically upscales your CLIP Guided Diffusion outputs using Real-ESRGAN. Latest Update: Alpha 1.61 [Main Branch] - 01/11/22 Layout a

78 Nov 02, 2022
Second-Order Neural ODE Optimizer, NeurIPS 2021 spotlight

Second-order Neural ODE Optimizer (NeurIPS 2021 Spotlight) [arXiv] ✔️ faster convergence in wall-clock time | ✔️ O(1) memory cost | ✔️ better test-tim

Guan-Horng Liu 39 Oct 22, 2022
A highly modular PyTorch framework with a focus on Neural Architecture Search (NAS).

UniNAS A highly modular PyTorch framework with a focus on Neural Architecture Search (NAS). under development (which happens mostly on our internal Gi

Cognitive Systems Research Group 19 Nov 23, 2022
State-of-the-art language models can match human performance on many tasks

Status: Archive (code is provided as-is, no updates expected) Grade School Math [Blog Post] [Paper] State-of-the-art language models can match human p

OpenAI 259 Jan 08, 2023
Optimizing DR with hard negatives and achieving SOTA first-stage retrieval performance on TREC DL Track (SIGIR 2021 Full Paper).

Optimizing Dense Retrieval Model Training with Hard Negatives Jingtao Zhan, Jiaxin Mao, Yiqun Liu, Jiafeng Guo, Min Zhang, Shaoping Ma This repo provi

Jingtao Zhan 99 Dec 27, 2022
Joint Channel and Weight Pruning for Model Acceleration on Mobile Devices

Joint Channel and Weight Pruning for Model Acceleration on Mobile Devices Abstract For practical deep neural network design on mobile devices, it is e

11 Dec 30, 2022
Voxel-based Network for Shape Completion by Leveraging Edge Generation (ICCV 2021, oral)

Voxel-based Network for Shape Completion by Leveraging Edge Generation This is the PyTorch implementation for the paper "Voxel-based Network for Shape

10 Dec 04, 2022
The 2nd place solution of 2021 google landmark retrieval on kaggle.

Leaderboard, taxonomy, and curated list of few-shot object detection papers.

229 Dec 13, 2022
TigerLily: Finding drug interactions in silico with the Graph.

Drug Interaction Prediction with Tigerlily Documentation | Example Notebook | Youtube Video | Project Report Tigerlily is a TigerGraph based system de

Benedek Rozemberczki 91 Dec 30, 2022
Implementation of "Meta-rPPG: Remote Heart Rate Estimation Using a Transductive Meta-Learner"

Meta-rPPG: Remote Heart Rate Estimation Using a Transductive Meta-Learner This repository is the official implementation of Meta-rPPG: Remote Heart Ra

Eugene Lee 137 Dec 13, 2022
Rate-limit-semaphore - Semaphore implementation with rate limit restriction for async-style (any core)

Rate Limit Semaphore Rate limit semaphore for async-style (any core) There are t

Yan Kurbatov 4 Jun 21, 2022
End-to-End Speech Processing Toolkit

ESPnet: end-to-end speech processing toolkit system/pytorch ver. 1.3.1 1.4.0 1.5.1 1.6.0 1.7.1 1.8.1 1.9.0 ubuntu20/python3.9/pip ubuntu20/python3.8/p

ESPnet 5.9k Jan 04, 2023
A platform to display the carbon neutralization information for researchers, decision-makers, and other participants in the community.

Welcome to Carbon Insight Carbon Insight is a platform aiming to display the carbon neutralization roadmap for researchers, decision-makers, and other

Microsoft 14 Oct 24, 2022
Pytorch code for "Text-Independent Speaker Verification Using 3D Convolutional Neural Networks".

:speaker: Deep Learning & 3D Convolutional Neural Networks for Speaker Verification

Amirsina Torfi 114 Dec 18, 2022