TorchIO is a Medical image preprocessing and augmentation toolkit for deep learning. Part of the PyTorch Ecosystem.

Overview

TorchIO logo

Tools like TorchIO are a symptom of the maturation of medical AI research using deep learning techniques.

Jack Clark, Policy Director at OpenAI (link).


Package PyPI downloads PyPI version Conda version Contributors
CI Build status Documentation status Coverage status
Code Code quality Code maintainability pre-commit
Tutorials Google Colab
Social Slack Slack

Progressive artifacts

Augmentation


Original Random blur
Original Random blur
Random flip Random noise
Random flip Random noise
Random affine transformation Random elastic transformation
Random affine transformation Random elastic transformation
Random bias field artifact Random motion artifact
Random bias field artifact Random motion artifact
Random spike artifact Random ghosting artifact
Random spike artifact Random ghosting artifact

Queue

(Queue for patch-based training)


TorchIO is a Python package containing a set of tools to efficiently read, preprocess, sample, augment, and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

This package has been greatly inspired by NiftyNet, which is not actively maintained anymore.

Credits

If you like this repository, please click on Star!

If you use this package for your research, please cite the paper:

F. Pérez-García, R. Sparks, and S. Ourselin. TorchIO: a Python library for efficient loading, preprocessing, augmentation and patch-based sampling of medical images in deep learning. Computer Methods and Programs in Biomedicine (June 2021), p. 106236. ISSN: 0169-2607.doi:10.1016/j.cmpb.2021.106236.

BibTeX entry:

@article{perez-garcia_torchio_2021,
    title = {TorchIO: a Python library for efficient loading, preprocessing, augmentation and patch-based sampling of medical images in deep learning},
    journal = {Computer Methods and Programs in Biomedicine},
    pages = {106236},
    year = {2021},
    issn = {0169-2607},
    doi = {https://doi.org/10.1016/j.cmpb.2021.106236},
    url = {https://www.sciencedirect.com/science/article/pii/S0169260721003102},
    author = {P{\'e}rez-Garc{\'i}a, Fernando and Sparks, Rachel and Ourselin, S{\'e}bastien},
    keywords = {Medical image computing, Deep learning, Data augmentation, Preprocessing},
}

This project is supported by the following institutions:

Getting started

See Getting started for installation instructions and a Hello, World! example.

Longer usage examples can be found in the tutorials.

All the documentation is hosted on Read the Docs.

Please open a new issue if you think something is missing.

Contributors

Thanks goes to all these people (emoji key):


Fernando Pérez-García

💻 📖

valabregue

🤔 👀 💻

GFabien

💻 👀 🤔

G.Reguig

💻

Niels Schurink

💻

Ibrahim Hadzic

🐛

ReubenDo

🤔

Julian Klug

🤔

David Völgyes

🤔 💻

Jean-Christophe Fillion-Robin

📖

Suraj Pai

🤔

Ben Darwin

🤔

Oeslle Lucena

🐛

Soumick Chatterjee

💻

neuronflow

📖

Jan Witowski

📖

Derk Mus

📖 💻

Christian Herz

🐛

Cory Efird

💻

Esteban Vaca C.

🐛

Ray Phan

🐛

Akis Linardos

🐛 💻

Nina Montana-Brown

📖

fabien-brulport

🐛

malteekj

🐛

Andres Diaz-Pinto

🐛

Sarthak Pati

📦

GabriellaKamlish

🐛

Tyler Spears

🐛

DaGuT

📖

Xiangyu Zhao

🐛

siahuat0727

📖 🐛

Svdvoort

💻

Albans98

💻

Matthew T. Warkentin

💻

glupol

🐛

ramonemiliani93

📖

Justus Schock

💻

Stefan Milorad Radonjić

🐛

Sajan Gohil

🐛

This project follows the all-contributors specification. Contributions of any kind welcome!

Comments
  • Reproduce a given transform

    Reproduce a given transform

    🚀 Feature Given the history information saved in the sample for a given transform, how can I apply the exact same transform on a new volume

    Motivation After doing a lot of data augmentation for training and validation, I would like to visually check some specific volume (the one having the worst loss for instance). Since saving all the transformed volume can become a very high cost (in terme of disk space) one prefer to save the transform's parameter, and have the possibility to re-create the exact same transformed volume

    Pitch I implemented once for the RandomElasticDeformation

        def apply_given_transform(self, sample: Subject, bspline_params) -> dict:
            for image_dict in sample.get_images(intensity_only=False):
                if image_dict[TYPE] == LABEL:
                    interpolation = Interpolation.NEAREST
                else:
                    interpolation = self.interpolation
                image_dict[DATA] = self.apply_bspline_transform(
                    image_dict[DATA],
                    image_dict[AFFINE],
                    bspline_params,
                    interpolation,
                )
            return sample
    
    

    Alternatives may be a more generic way would be to separate the apply_transform code in 2 disctinct par one to get the random param one to apply them so that the apply code could be reuse in both case ....

    Additional context

    enhancement 
    opened by romainVala 55
  • How to structure queue to improve training time

    How to structure queue to improve training time

    Hi,

    I am trying to parameterize torchio.queue to improve training time. Here are my augmentations:

    global_augs_dict = {
        'normalize':ZNormalization(),
        'affine':RandomAffine(image_interpolation = 'linear'), 
        'elastic': RandomElasticDeformation(num_control_points=(7, 7, 7),locked_borders=2),
        'motion': RandomMotion(degrees=10, translation = 10, num_transforms= 2, image_interpolation = 'linear', p = 1., seed = None), 
        'ghosting': RandomGhosting(num_ghosts = (4, 10), axes = (0, 1, 2), intensity = (0.5, 1), restore = 0.02, p = 1., seed = None),
        'bias': RandomBiasField(coefficients = 0.5, order= 3, p= 1., seed = None), 
        'blur': RandomBlur(std = (0., 4.), p = 1, seed = None), 
        'noise':RandomNoise(mean = 0, std = (0, 0.25), p = 1., seed = None) , 
        'swap':RandomSwap(patch_size = 15, num_iterations = 100, p = 1, seed = None) 
    }
    

    I have tried a couple of different configurations of the queue construction (for BraTS 2020 training data):

    patches_queue = torchio.Queue(
    subjects_dataset,max_length = 1,
    samples_per_volume  = 1,
    sampler = UniformSampler([128,128,128]),
    num_workers=4,
    shuffle_subjects=False, 
    shuffle_patches=True)
    

    Here is my output:

    Output

    Hostname   : XXXXXX
    Training Data Samples:  332
    CUDA_VISIBLE_DEVICES:  0
    Current Device :  0
    Device Count on Machine :  1
    Device Name :  Tesla P100-PCIE-12GB
    Cuda Availibility :  True
    Using device: cuda
    Memory Usage:
      Allocated: 0.0 GB
      Cached:  0.0 GB
    Starting Learning rate is: 0.001
    
    
    Epoch Started at: 2020-08-20 11:07:31.169938
    Epoch # :  0
    Learning rate: 0.001
    Epoch Training dice: 0.31517219005821734
    Best Training Dice: 0.31517219005821734
    Average Training Loss: 0.6848278099417825
    Best Training Epoch:  0
    Epoch Validation dice: 0.4284125193288893
    Best Validation Dice: 0.4284125193288893
    Average Validation Loss: 0.5715874806711106
    Best Validation Epoch:  0
    Time for epoch: 730.7090194821358 mins
    
    
    Epoch Started at: 2020-08-20 23:18:13.753733
    Epoch # :  1
    Learning rate: 0.00075025
    Epoch Training dice: 0.4328200096387767
    Best Training Dice: 0.4328200096387767
    Average Training Loss: 0.5671799903612232
    Best Training Epoch:  1
    Epoch Validation dice: 0.4653519422259088
    Best Validation Dice: 0.4653519422259088
    Average Validation Loss: 0.5346480577740912
    Best Validation Epoch:  1
    Time for epoch: 727.3753080646197 mins
    
    
    Epoch Started at: 2020-08-21 11:25:36.334792
    Epoch # :  2
    Learning rate: 0.0005005
    Epoch Training dice: 0.4529779154852848
    Best Training Dice: 0.4529779154852848
    Average Training Loss: 0.5470220845147151
    Best Training Epoch:  2
    Epoch Validation dice: 0.49953905589465886
    Best Validation Dice: 0.49953905589465886
    Average Validation Loss: 0.5004609441053411
    Best Validation Epoch:  2
    Time for epoch: 738.0272558371227 mins
    
    
    Epoch Started at: 2020-08-21 23:43:38.034053
    Epoch # :  3
    Learning rate: 0.0002507499999999999
    Epoch Training dice: 0.4745635877166486
    Best Training Dice: 0.4745635877166486
    Average Training Loss: 0.5254364122833516
    Best Training Epoch:  3
    Epoch Validation dice: 0.47297200991573
    Best Validation Dice: 0.49953905589465886
    Average Validation Loss: 0.5270279900842699
    Best Validation Epoch:  2
    Time for epoch: 728.7016223390897 mins
    
    
    Epoch Started at: 2020-08-22 11:52:20.179293
    Epoch # :  4
    Learning rate: 9.999999999999159e-07
    Epoch Training dice: 0.4744484525172589
    Best Training Dice: 0.4745635877166486
    Average Training Loss: 0.5255515474827412
    Best Training Epoch:  3
    Epoch Validation dice: 0.48653238308167823
    Best Validation Dice: 0.49953905589465886
    Average Validation Loss: 0.5134676169183217
    Best Validation Epoch:  2
    Time for epoch: 724.4470616658529 mins
    
    
    Epoch Started at: 2020-08-22 23:56:47.029944
    Epoch # :  5
    Learning rate: 0.0002507499999999999
    Epoch Training dice: 0.47198090723001274
    Best Training Dice: 0.4745635877166486
    Average Training Loss: 0.5280190927699873
    Best Training Epoch:  3
    Epoch Validation dice: 0.45542112143185937
    Best Validation Dice: 0.49953905589465886
    Average Validation Loss: 0.5445788785681406
    Best Validation Epoch:  2
    Time for epoch: 723.8550246238708 mins
    
    
    Epoch Started at: 2020-08-23 12:00:38.396858
    Epoch # :  6
    Learning rate: 0.0005005
    Epoch Training dice: 0.4634351750670278
    Best Training Dice: 0.4745635877166486
    Average Training Loss: 0.5365648249329721
    Best Training Epoch:  3
    

    patches_queue = torchio.Queue(
    subjects_dataset,max_length = 10,
    samples_per_volume  = 10,
    sampler = UniformSampler([128,128,128]),
    num_workers=4,
    shuffle_subjects=False, 
    shuffle_patches=True)
    

    Here is my output:

    Output

    Hostname   : XXXXXX
    Training Data Samples:  3320
    CUDA_VISIBLE_DEVICES:  0
    Current Device :  0
    Device Count on Machine :  1
    Device Name :  Tesla P100-PCIE-12GB
    Cuda Availibility :  True
    Using device: cuda
    Memory Usage:
      Allocated: 0.0 GB
      Cached:  0.0 GB
    Starting Learning rate is: 0.001
    
    
    Epoch Started at: 2020-08-22 09:31:48.666395
    Epoch # :  0
    Learning rate: 0.001
    Epoch Training dice: 0.436339787389386
    Best Training Dice: 0.436339787389386
    Average Training Loss: 0.5636602126106139
    Best Training Epoch:  0
    Epoch Validation dice: 0.4510045856401002
    Best Validation Dice: 0.4510045856401002
    Average Validation Loss: 0.5489954143599001
    Best Validation Epoch:  0
    Time for epoch: 775.5885859568914 mins
    
    
    Epoch Started at: 2020-08-22 22:27:23.982092
    Epoch # :  1
    Learning rate: 0.00075025
    Epoch Training dice: 0.47390382915650414
    Best Training Dice: 0.47390382915650414
    Average Training Loss: 0.5260961708434958
    Best Training Epoch:  1
    Epoch Validation dice: 0.46360749397146783
    Best Validation Dice: 0.46360749397146783
    Average Validation Loss: 0.536392506028532
    Best Validation Epoch:  1
    Time for epoch: 758.6359572728475 mins
    
    
    Epoch Started at: 2020-08-23 11:06:02.140065
    Epoch # :  2
    Learning rate: 0.0005005
    Epoch Training dice: 0.4902666910009399
    Best Training Dice: 0.4902666910009399
    Average Training Loss: 0.5097333089990602
    Best Training Epoch:  2
    Epoch Validation dice: 0.4494907715524214
    Best Validation Dice: 0.46360749397146783
    Average Validation Loss: 0.5505092284475785
    Best Validation Epoch:  1
    Time for epoch: 745.3841615160306 mins
    
    
    Epoch Started at: 2020-08-23 23:31:25.190341
    Epoch # :  3
    Learning rate: 0.0002507499999999999
    Epoch Training dice: 0.501831035780201
    Best Training Dice: 0.501831035780201
    Average Training Loss: 0.498168964219799
    Best Training Epoch:  3
    

    Is there any way to improve the training time?

    Cheers, Sarthak

    patch-based-training optimization 
    opened by sarthakpati 30
  • Random simulation transform

    Random simulation transform

    Following the idea of lab2im, RandomSimulation transform simulates a volume from label maps by sampling a Gaussian variable from each label map and summing the different random variables.
    If an existing volume is given to the transform, zero elements from the simulated volume will be filled with elements of the preexisting volume.

    Results obtained from Colin27, 2008 version:

    import torch
    from torchio import RandomSimulation, DATA, RescaleIntensity, Compose
    from torchio.datasets import Colin27
    import matplotlib.pyplot as plt
    
    colin = Colin27(2008)
    torch.manual_seed(0)
    
    # Using the default coefficients
    transform = RandomSimulation(label_keys='cls')
    transformed = transform(colin)
    
    plt.figure()
    plt.imshow(transformed['image']['data'][0, :, :, 100], cmap='gray')
    plt.axis('off')
    
    # Using custom coefficients
    label_values = colin['cls'][DATA].unique()
    coefficients = {
         i: {
            'mean': i / len(label_values), 'std': 0.01
         } for i in range(1, len(label_values))
    }
    transform = RandomSimulation(label_keys='cls', coefficients=coefficients)
    transformed = transform(colin)
    
    plt.figure()
    plt.imshow(transformed['image']['data'][0, :, :, 100], cmap='gray')
    plt.axis('off')
    
    # Inpainting the simulated image on the original T1 image
    rescale_transform = RescaleIntensity((0, 1), (1, 99))   # Rescale intensity before inpainting
    simulation_transform = RandomSimulation(label_keys='cls', image_key='t1')
    transform = Compose([rescale_transform, simulation_transform])
    transformed = transform(colin)
    
    plt.figure()
    plt.imshow(transformed['t1']['data'][0, :, :, 100], cmap='gray')
    plt.axis('off')
    
    plt.show()
    

    default clean with_t1

    I don't know why but sampling the Gaussian variables is slow in Pytorch when the volume starts to be too big: image

    This kind of issue seems to have already been reported there but I haven't found a solution so far.

    opened by GFabien 29
  • Add some deterministic transforms

    Add some deterministic transforms

    Description

    This is a refactoring of the reproducibility system of the library, plus adding new features to invert transforms easily.

    Linked issues

    Resolves #191. Resolves #142. Resolves #208. Resolves #299. Resolves #336. Resolves #355.

    Further issues to take into account

    • [x] ~Saving transforms history~
    • [x] Reproducing RandomNoise (add seed to parameters?)
    • [x] ~Add a history to the Image class, and how to handle that without code duplication?~
    • [x] Think about how to handle multichannel images
    • [x] Avoid duplication of inverse() method
    • [x] Consider adding transform to history inside deterministic transforms
    • [x] Handle Compose and OneOf separately

    Progress

    New transforms

    • [x] Affine
    • [x] BiasField
    • [x] Blur
    • [x] ~Downsample~
    • [x] ElasticDeformation
    • [x] Flip
    • [x] Gamma
    • [x] Ghosting
    • [x] LabelsToImage
    • [x] Motion
    • [x] Noise
    • [x] Spike
    • [x] Swap

    To update

    • [x] Lambda
    • [x] Pad
    • [x] Crop
    • [x] Resample
    • [x] ToCanonical
    • [x] ZNormalization
    • [x] HistogramStandardization
    • [x] RescaleIntensity
    • [ ] ~CropOrPad~

    Write inverse() method

    • [x] Pad
    • [x] Crop
    • [ ] Resample?
    • [ ] ToCanonical?
    • [ ] ZNormalization?
    • [ ] HistogramStandardization?
    • [ ] RescaleIntensity?

    New usage

    import torchio as tio
    
    transforms = (
        tio.RescaleIntensity(),
        tio.RandomAffine(),
        tio.RandomBlur(),
        tio.RandomNoise(),
        tio.Flip(),
    )
    
    transform = tio.Compose(transforms)
    
    colin = tio.datasets.Colin27()
    transformed = transform(colin)
    same_transform = transformed.get_composed_history()  # reproducibility
    inverted = transformed.apply_inverse_transform()  # invertibility
    

    Checklist

    • [x] I have read the CONTRIBUTING docs and have a developer setup (especially important are pre-commitand pytest)
    • [ ] Non-breaking change (would not break existing functionality)
    • [x] Breaking change (would cause existing functionality to change)
    • [x] Tests added or modified to cover the changes
    • [x] Integration tests passed locally by running pytest
    • [x] In-line docstrings updated
    • [x] Documentation updated, tested running make html inside the docs/ folder
    • [x] This pull request is ready to be reviewed
    • [x] If the PR is ready and there are multiple commits, I have squashed them and force-pushed
    documentation enhancement help wanted good first issue tests augmentation preprocessing 
    opened by fepegar 25
  • 3D Slicer not starting after installation of torchio from ExtensionManager

    3D Slicer not starting after installation of torchio from ExtensionManager

    🐛Bug

    Slicer 4.13.0-2020-11-11

    To reproduce

    Install torchIO from the Slicer ExtensionManager. When opening it, it's asking for installing torch and torchvision which I did. Then restart Slicer

    python-traceback

    Process:               Slicer [28579]
    Path:                  /Applications/Slicer_4.13_11_12.app/Contents/MacOS/Slicer
    Identifier:            ???
    Version:               ??? (4.13.0-2020-11-11)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Slicer [28579]
    User ID:               1555809845
    
    Date/Time:             2020-11-12 10:23:10.922 -0500
    OS Version:            Mac OS X 10.15.7 (19H2)
    Report Version:        12
    Bridge OS Version:     4.6 (17P6610)
    Anonymous UUID:        74F4E9BC-B2A2-9EB5-9BC5-1AEF25358764
    
    Sleep/Wake UUID:       C2118001-D5E1-4A0E-AF23-4B5DBB19B3CF
    
    Time Awake Since Boot: 260000 seconds
    Time Since Wake:       5000 seconds
    
    System Integrity Protection: enabled
    
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Exception Note:        EXC_CORPSE_NOTIFY
    
    Application Specific Information:
    abort() called
    Slicer(28579,0x11068ddc0) malloc: *** error for object 0x7fed508293e8: pointer being freed was not allocated
     
    
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib        	0x00007fff6f35e33a __pthread_kill + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41ae60 pthread_kill + 430
    2   libsystem_c.dylib             	0x00007fff6f2e5808 abort + 120
    3   libsystem_malloc.dylib        	0x00007fff6f3db50b malloc_vreport + 548
    4   libsystem_malloc.dylib        	0x00007fff6f3de40f malloc_report + 151
    5   libstdc++.6.dylib             	0x00007fff6e5111c9 std::string::assign(std::string const&) + 111
    6   _SimpleITK.cpython-36m-darwin.so	0x000000015b201fd3 0x153e61000 + 121245651
    7   _SimpleITK.cpython-36m-darwin.so	0x000000015b201d2b 0x153e61000 + 121244971
    8   _SimpleITK.cpython-36m-darwin.so	0x000000015b201786 0x153e61000 + 121243526
    9   _SimpleITK.cpython-36m-darwin.so	0x00000001547e7f4d 0x153e61000 + 9989965
    10  _SimpleITK.cpython-36m-darwin.so	0x00000001547e740a 0x153e61000 + 9987082
    11  _SimpleITK.cpython-36m-darwin.so	0x0000000154881920 0x153e61000 + 10619168
    12  dyld                          	0x00000001105de1d3 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 535
    13  dyld                          	0x00000001105de5de ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 40
    14  dyld                          	0x00000001105d8ffb ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, char const*, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 493
    15  dyld                          	0x00000001105d70b4 ImageLoader::processInitializers(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 188
    16  dyld                          	0x00000001105d7154 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 82
    17  dyld                          	0x00000001105c8ef2 dyld::runInitializers(ImageLoader*) + 82
    18  dyld                          	0x00000001105d2e8f dlopen_internal + 609
    19  libdyld.dylib                 	0x00007fff6f201d8a dlopen + 171
    20  libpython3.6m.dylib           	0x0000000113bd4cc9 _PyImport_FindSharedFuncptr + 297
    21  libpython3.6m.dylib           	0x0000000113c1c19f _PyImport_LoadDynamicModuleWithSpec + 511
    22  libpython3.6m.dylib           	0x0000000113c1bcd2 _imp_create_dynamic + 290
    23  libpython3.6m.dylib           	0x0000000113b6e2a6 PyCFunction_Call + 214
    24  libpython3.6m.dylib           	0x0000000113befd3b _PyEval_EvalFrameDefault + 25099
    25  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    26  libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    27  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    28  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    29  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    30  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    31  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    32  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    33  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    34  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    35  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    36  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    37  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    38  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    39  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    40  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    41  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    42  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    43  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    44  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    45  libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    46  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    47  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    48  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    49  libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    50  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    51  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    52  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    53  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    54  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    55  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    56  libpython3.6m.dylib           	0x0000000113be9aa0 PyEval_EvalCode + 48
    57  libpython3.6m.dylib           	0x0000000113be71d7 builtin_exec + 567
    58  libpython3.6m.dylib           	0x0000000113b6e2a6 PyCFunction_Call + 214
    59  libpython3.6m.dylib           	0x0000000113befd3b _PyEval_EvalFrameDefault + 25099
    60  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    61  libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    62  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    63  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    64  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    65  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    66  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    67  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    68  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    69  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    70  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    71  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    72  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    73  libpython3.6m.dylib           	0x0000000113bf4507 _PyFunction_FastCallDict + 951
    74  libpython3.6m.dylib           	0x0000000113b2b45f _PyObject_FastCallDict + 191
    75  libpython3.6m.dylib           	0x0000000113b2cb5f _PyObject_CallMethodIdObjArgs + 767
    76  libpython3.6m.dylib           	0x0000000113c1ad43 PyImport_ImportModuleLevelObject + 1251
    77  libpython3.6m.dylib           	0x0000000113bee625 _PyEval_EvalFrameDefault + 19189
    78  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    79  libpython3.6m.dylib           	0x0000000113be9aa0 PyEval_EvalCode + 48
    80  libpython3.6m.dylib           	0x0000000113be71d7 builtin_exec + 567
    81  libpython3.6m.dylib           	0x0000000113b6e2a6 PyCFunction_Call + 214
    82  libpython3.6m.dylib           	0x0000000113befd3b _PyEval_EvalFrameDefault + 25099
    83  libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    84  libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    85  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    86  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    87  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    88  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    89  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    90  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    91  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    92  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    93  libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    94  libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    95  libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    96  libpython3.6m.dylib           	0x0000000113bf4507 _PyFunction_FastCallDict + 951
    97  libpython3.6m.dylib           	0x0000000113b2b45f _PyObject_FastCallDict + 191
    98  libpython3.6m.dylib           	0x0000000113b2cb5f _PyObject_CallMethodIdObjArgs + 767
    99  libpython3.6m.dylib           	0x0000000113c1ad43 PyImport_ImportModuleLevelObject + 1251
    100 libpython3.6m.dylib           	0x0000000113bee625 _PyEval_EvalFrameDefault + 19189
    101 libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    102 libpython3.6m.dylib           	0x0000000113be9aa0 PyEval_EvalCode + 48
    103 libpython3.6m.dylib           	0x0000000113be71d7 builtin_exec + 567
    104 libpython3.6m.dylib           	0x0000000113b6e2a6 PyCFunction_Call + 214
    105 libpython3.6m.dylib           	0x0000000113befd3b _PyEval_EvalFrameDefault + 25099
    106 libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    107 libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    108 libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    109 libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    110 libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    111 libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    112 libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    113 libpython3.6m.dylib           	0x0000000113bf4059 fast_function + 569
    114 libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    115 libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    116 libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    117 libpython3.6m.dylib           	0x0000000113bf3fbb fast_function + 411
    118 libpython3.6m.dylib           	0x0000000113bf2c49 call_function + 553
    119 libpython3.6m.dylib           	0x0000000113befb40 _PyEval_EvalFrameDefault + 24592
    120 libpython3.6m.dylib           	0x0000000113bf3831 _PyEval_EvalCodeWithName + 2833
    121 libpython3.6m.dylib           	0x0000000113be9aa0 PyEval_EvalCode + 48
    122 libpython3.6m.dylib           	0x0000000113c4079d PyRun_StringFlags + 141
    123 libqSlicerBaseQTCore.dylib    	0x0000000103ac8af5 qSlicerScriptedUtils::loadSourceAsModule(QString const&, QString const&, _object*, _object*) + 309
    124 libqSlicerBaseQTGUI.dylib     	0x00000001031d2b4d qSlicerScriptedLoadableModule::setPythonSource(QString const&) + 573
    125 libqSlicerBaseQTGUI.dylib     	0x00000001031ca382 ctkFactoryScriptedItem::instanciator() + 418
    126 libqSlicerBaseQTGUI.dylib     	0x00000001031cbc21 ctkAbstractFactory<qSlicerAbstractCoreModule>::instantiate(QString const&) + 193
    127 libqSlicerBaseQTCore.dylib    	0x0000000103a644c9 qSlicerAbstractModuleFactoryManager::instantiateModule(QString const&) + 57
    128 libqSlicerBaseQTCore.dylib    	0x0000000103a6422b qSlicerAbstractModuleFactoryManager::instantiateModules() + 235
    129                               	0x0000000102e1b0e3 int qSlicerApplicationHelper::postInitializeApplication<qSlicerAppMainWindow>(qSlicerApplication&, QScopedPointer<QSplashScreen, QScopedPointerDeleter<QSplashScreen> >&, QScopedPointer<qSlicerAppMainWindow, QScopedPointerDeleter<qSlicerAppMainWindow> >&) + 2851
    130                               	0x0000000102e1a2d0 main + 144
    131 libdyld.dylib                 	0x00007fff6f216cc9 start + 1
    
    Thread 1:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 2:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 3:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 4:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 5:
    0   libsystem_kernel.dylib        	0x00007fff6f35a756 __semwait_signal + 10
    1   libsystem_c.dylib             	0x00007fff6f2ddeea nanosleep + 196
    2   libsystem_c.dylib             	0x00007fff6f2ddde4 usleep + 53
    3   libSlicerBaseLogic.dylib      	0x000000010de16500 vtkSlicerApplicationLogic::ProcessProcessingTasks() + 320
    4   libSlicerBaseLogic.dylib      	0x000000010de16136 vtkSlicerApplicationLogic::ProcessingThreaderCallback(void*) + 38
    5   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    6   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 6:
    0   libsystem_kernel.dylib        	0x00007fff6f35a756 __semwait_signal + 10
    1   libsystem_c.dylib             	0x00007fff6f2ddeea nanosleep + 196
    2   libsystem_c.dylib             	0x00007fff6f2ddde4 usleep + 53
    3   libSlicerBaseLogic.dylib      	0x000000010de16680 vtkSlicerApplicationLogic::ProcessNetworkingTasks() + 320
    4   libSlicerBaseLogic.dylib      	0x000000010de16206 vtkSlicerApplicationLogic::NetworkingThreaderCallback(void*) + 38
    5   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    6   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 7:: Qt bearer thread
    0   libsystem_kernel.dylib        	0x00007fff6f35e3d6 poll + 10
    1   org.qt-project.QtCore         	0x0000000104a64fe0 qt_safe_poll(pollfd*, unsigned int, timespec const*) + 608
    2   org.qt-project.QtCore         	0x0000000104a667e1 QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 849
    3   org.qt-project.QtCore         	0x00000001049fe88f QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 431
    4   org.qt-project.QtCore         	0x000000010482b793 QThread::exec() + 131
    5   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    6   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    7   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 8:: ctkFDHandler
    0   libsystem_kernel.dylib        	0x00007fff6f35881e read + 10
    1   libCTKCore.0.1.dylib          	0x000000010fd76c21 ctkFDHandler::run() + 113
    2   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 9:: ctkFDHandler
    0   libsystem_kernel.dylib        	0x00007fff6f35881e read + 10
    1   libCTKCore.0.1.dylib          	0x000000010fd76c21 ctkFDHandler::run() + 113
    2   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 10:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 11:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 12:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 13:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 14:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 15:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 16:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 17:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 18:
    0   libsystem_pthread.dylib       	0x00007fff6f416b68 start_wqthread + 0
    
    Thread 19:: com.apple.NSEventThread
    0   libsystem_kernel.dylib        	0x00007fff6f357dfa mach_msg_trap + 10
    1   libsystem_kernel.dylib        	0x00007fff6f358170 mach_msg + 60
    2   com.apple.CoreFoundation      	0x00007fff351a6ef5 __CFRunLoopServiceMachPort + 247
    3   com.apple.CoreFoundation      	0x00007fff351a59c2 __CFRunLoopRun + 1319
    4   com.apple.CoreFoundation      	0x00007fff351a4e3e CFRunLoopRunSpecific + 462
    5   com.apple.AppKit              	0x00007fff325b8954 _NSEventThread + 132
    6   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    7   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 20:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 21:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 22:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 23:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 24:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 25:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 26:
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   libopenblas.0.dylib           	0x000000013e8b327b blas_thread_server + 507
    3   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    4   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 27:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 28:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 29:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 30:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 31:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 32:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 33:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 34:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 35:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 36:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 37:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 38:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 39:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 40:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 41:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 42:: Thread (pooled)
    0   libsystem_kernel.dylib        	0x00007fff6f35a882 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       	0x00007fff6f41b425 _pthread_cond_wait + 698
    2   org.qt-project.QtCore         	0x0000000104834c7f 0x10480a000 + 175231
    3   org.qt-project.QtCore         	0x000000010483494e 0x10480a000 + 174414
    4   org.qt-project.QtCore         	0x000000010483486d QWaitCondition::wait(QMutex*, QDeadlineTimer) + 93
    5   org.qt-project.QtCore         	0x0000000104830e5d 0x10480a000 + 159325
    6   org.qt-project.QtCore         	0x000000010482c7a9 0x10480a000 + 141225
    7   libsystem_pthread.dylib       	0x00007fff6f41b109 _pthread_start + 148
    8   libsystem_pthread.dylib       	0x00007fff6f416b8b thread_start + 15
    
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000011068ddc0  rcx: 0x00007ffeece0d0f8  rdx: 0x0000000000000000
      rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x00007ffeece0d120  rsp: 0x00007ffeece0d0f8
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000011068ddc0  r11: 0x0000000000000246
      r12: 0x0000000000000307  r13: 0x0000000000000050  r14: 0x0000000000000006  r15: 0x0000000000000016
      rip: 0x00007fff6f35e33a  rfl: 0x0000000000000246  cr2: 0x00000001368f4000
      
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    
    
    Binary Images:
           0x102de2000 -        0x102e1effb + (??? - 4.13.0-2020-11-11) <93245227-0F64-3921-BC46-F47DEB658532> /Applications/Slicer_4.13_11_12.app/Contents/MacOS/Slicer
           0x102e24000 -        0x102e25ff7 +libITKSmoothing-5.1.1.dylib (0) <BD1CB53B-2772-3D43-A971-7DE7D1AC1A2F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKSmoothing-5.1.1.dylib
           0x102e2a000 -        0x102eefffb +libqSlicerApp.dylib (0) <7B97ECB4-CF3E-3817-B468-10AE7360A5EE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerApp.dylib
           0x102ef8000 -        0x102efafff +libITKVNLInstantiation-5.1.1.dylib (0) <1221D624-3269-3C6A-8DB4-71AAA6EA5514> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKVNLInstantiation-5.1.1.dylib
           0x102efe000 -        0x102f8effb +libqSlicerBaseQTApp.dylib (0) <9152ABB2-664D-3A4D-990B-2BA60400008F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerBaseQTApp.dylib
           0x102fa9000 -        0x10301aff3 +libqSlicerModulesCore.dylib (0) <A42F31A4-D161-3DAE-A6B9-A5CCC4308969> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerModulesCore.dylib
           0x10302b000 -        0x1030deff3 +libqSlicerBaseQTCLI.dylib (0) <33942052-80C6-326C-B50F-C3270322DA06> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerBaseQTCLI.dylib
           0x10310d000 -        0x10310eff7 +libitkvcl-5.1.1.dylib (0) <3195C810-FE1E-3546-B6B4-C59BF5ED4AD1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkvcl-5.1.1.dylib
           0x103113000 -        0x103313ff7 +libqSlicerBaseQTGUI.dylib (0) <B3FB9027-94C3-301E-B8BF-04A0A7DC12A5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerBaseQTGUI.dylib
           0x10339b000 -        0x10339fffb +libITKRegionGrowing-5.1.1.dylib (0) <187ED7C4-A78D-327E-AE65-D048971B8AD3> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKRegionGrowing-5.1.1.dylib
           0x1033a2000 -        0x103579fff +libqMRMLWidgets.dylib (0) <BAE8D244-4EF3-3521-98D1-1587A5ADAB55> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqMRMLWidgets.dylib
           0x10364b000 -        0x10364cffb +libitkgdcmuuid-5.1.1.dylib (0) <A38E7C04-CCA3-31F4-9D8F-9645DE79DB3D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmuuid-5.1.1.dylib
           0x10364f000 -        0x103668ff3 +libCTKQtTesting.0.1.dylib (0) <D84AF970-8FF0-307E-9A54-7D9F74DBA23E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKQtTesting.0.1.dylib
           0x103675000 -        0x1036c7ff3 +libCTKVisualizationVTKWidgets.0.1.dylib (0) <F26B958A-0992-33DC-B96A-46BF09F7DE1D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKVisualizationVTKWidgets.0.1.dylib
           0x103711000 -        0x10371dff7 +libCTKScriptingPythonWidgets.0.1.dylib (0) <35EA98C6-EF49-39D9-A87B-15E42246F7A5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKScriptingPythonWidgets.0.1.dylib
           0x10372b000 -        0x10378eff7 +libCTKDICOMWidgets.0.1.dylib (0) <4C327E9A-560C-3FBD-A9D1-826707592B72> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKDICOMWidgets.0.1.dylib
           0x1037c5000 -        0x1037c9ff3 +libitkNetlibSlatec-5.1.1.dylib (0) <561A71AD-2ACA-38A3-BD27-043D2BB7B05D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkNetlibSlatec-5.1.1.dylib
           0x1037cc000 -        0x1038e2fff +libCTKWidgets.0.1.dylib (0) <2B2BDAFA-CE95-3862-A369-675E621D544D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKWidgets.0.1.dylib
           0x1039bb000 -        0x1039fbffb +libQtTesting.dylib (0) <156D9D70-E1D5-3BE8-8074-A8253F9926CD> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libQtTesting.dylib
           0x103a29000 -        0x103b3bfff +libqSlicerBaseQTCore.dylib (0) <713F3321-1B38-3279-8FEE-1ED53FD177CB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerBaseQTCore.dylib
           0x103b8a000 -        0x103c04fe7 +org.qt-project.QtMultimedia (5.15 - 5.15.1) <1837D0AD-DADA-35ED-B186-CA4B1688CCC1> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtMultimedia.framework/Versions/5/QtMultimedia
           0x103c59000 -        0x10409ffff +org.qt-project.QtWidgets (5.15 - 5.15.1) <0E55C983-CDCD-363A-95B3-13A2D857D999> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
           0x104206000 -        0x1046eeff3 +org.qt-project.QtGui (5.15 - 5.15.1) <0CB5AA76-B550-36E8-98D1-025FA9EE0147> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
           0x10480a000 -        0x104d79727 +org.qt-project.QtCore (5.15 - 5.15.1) <A8D9E499-21E6-3822-BA3C-A85882E01B12> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
           0x104e43000 -        0x104e77ffb +org.qt-project.QtXml (5.15 - 5.15.1) <FF0D928E-F0CF-3AE7-9251-20DC16FB3E00> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtXml.framework/Versions/5/QtXml
           0x104e89000 -        0x10518eff7 +org.qt-project.QtXmlPatterns (5.15 - 5.15.1) <867F0486-4D67-3845-83DC-55E8D6287E4E> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtXmlPatterns.framework/Versions/5/QtXmlPatterns
           0x1051dd000 -        0x105211ff7 +org.qt-project.QtSvg (5.15 - 5.15.1) <B681B523-D87F-3E19-933C-48A1FC8A30A2> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtSvg.framework/Versions/5/QtSvg
           0x10522f000 -        0x105262ff3 +org.qt-project.QtWebEngine (5.15 - 5.15.1) <603F3C84-2FF3-3586-A208-23A0D5E0637A> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtWebEngine.framework/Versions/5/QtWebEngine
           0x1052a0000 -        0x1052c4ff7 +org.qt-project.QtWebEngineWidgets (5.15 - 5.15.1) <9837CB4B-3D89-3BC9-B9E5-5DA84F19B6BB> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtWebEngineWidgets.framework/Versions/5/QtWebEngineWidgets
           0x1052f1000 -        0x10531cff7 +org.qt-project.QtPrintSupport (5.15 - 5.15.1) <0850C343-9B29-3F21-85D3-99788C3BC2CB> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport
           0x10533f000 -        0x10cbd5fe7 +org.qt-project.Qt.QtWebEngineCore (5.15 - 5.15.1) <3603AA86-387C-3ABC-BC4B-15DC9359227E> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/5/QtWebEngineCore
           0x10d3f1000 -        0x10d457ff3 +org.qt-project.QtPositioning (5.15 - 5.15.1) <29534D27-0999-3383-B2A7-660F64B18F0D> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtPositioning.framework/Versions/5/QtPositioning
           0x10d477000 -        0x10d7bbffb +org.qt-project.QtQuick (5.15 - 5.15.1) <E694C21E-C7C1-32FF-B954-088264899A2A> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtQuick.framework/Versions/5/QtQuick
           0x10d8f2000 -        0x10d94aff3 +org.qt-project.QtQmlModels (5.15 - 5.15.1) <ED38C4D9-7F50-395A-B733-BE3A0F4B120D> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtQmlModels.framework/Versions/5/QtQmlModels
           0x10d96c000 -        0x10d985ff3 +org.qt-project.QtWebChannel (5.15 - 5.15.1) <DC898502-CD66-368C-96F6-3AC9A296D82F> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtWebChannel.framework/Versions/5/QtWebChannel
           0x10d994000 -        0x10dcedff7 +org.qt-project.QtQml (5.15 - 5.15.1) <14EF2A8D-DEA9-3A11-88D9-9A290C39FE3B> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtQml.framework/Versions/5/QtQml
           0x10dd9a000 -        0x10ddd5fff +org.qt-project.QtTest (5.15 - 5.15.1) <3094BC77-545F-36DA-9F14-4DDB2F3E00B5> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtTest.framework/Versions/5/QtTest
           0x10ddec000 -        0x10ddedff3 +_locale.so (0) <52C0E792-0A67-3ACB-82CF-0DEEE4E2FCEB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_locale.so
           0x10ddf0000 -        0x10de56ff7 +libSlicerBaseLogic.dylib (0) <AB00FD62-71CD-3B43-954C-F940FFF7CD03> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libSlicerBaseLogic.dylib
           0x10de77000 -        0x10de78ff7 +_heapq.so (0) <90D43FD8-054D-3C19-B7DF-8C00F991BB42> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_heapq.so
           0x10de7c000 -        0x10dee6ff3 +libMRMLDisplayableManager.dylib (0) <27FB5FC1-65B7-3E63-AECF-886BFB5D196A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLDisplayableManager.dylib
           0x10df2d000 -        0x10df8aff3 +libMRMLLogic.dylib (0) <048B12B9-9AB9-318B-9E6B-C0F85AFBA26B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLLogic.dylib
           0x10dfae000 -        0x10dfafff7 +vtkCommonKitPython.so (0) <D7FBBC9C-1E20-3624-AF87-8CFF9045952F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkCommonKitPython.so
           0x10dfb3000 -        0x10e032ff7 +libRemoteIO.dylib (0) <F3427DFA-45CF-35C0-BF3C-064C6202AB8C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libRemoteIO.dylib
           0x10e045000 -        0x10e047ff7 +vtkImagingKitPython.so (0) <8B7E7A92-00F7-3A7D-913A-990C8A4127CC> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkImagingKitPython.so
           0x10e04a000 -        0x10e0a8ffb +libssl.1.1.dylib (0) <8AB4F07D-F1CA-365B-8943-2C66FD1E9BAB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libssl.1.1.dylib
           0x10e0d3000 -        0x10e2d3c1b +libcrypto.1.1.dylib (0) <A7E58C25-2F48-38C8-AD42-01A27A1E7331> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libcrypto.1.1.dylib
           0x10e364000 -        0x10e369fff +libCTKImageProcessingITKCore.0.1.dylib (0) <33CFDD0A-1CB4-372E-BA79-BCE565F929D1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKImageProcessingITKCore.0.1.dylib
           0x10e370000 -        0x10e38bffb +libCTKVisualizationVTKCore.0.1.dylib (0) <24F3A9FB-B5C5-307F-B944-6D8ACF96F3D2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKVisualizationVTKCore.0.1.dylib
           0x10e3a7000 -        0x10e42bfff +libCTKDICOMCore.0.1.dylib (0) <C61112F1-A8DF-31B8-B138-3DDD8868F87A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKDICOMCore.0.1.dylib
           0x10e45b000 -        0x10e475fff +libi2d.15.dylib (0) <BF934213-E568-3C26-85FA-E50A2FFB9420> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libi2d.15.dylib
           0x10e47e000 -        0x10e481ffb +libITKTransform-5.1.1.dylib (0) <B7B14D63-EDE2-3034-8B14-BB8ED1B2D565> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKTransform-5.1.1.dylib
           0x10e485000 -        0x10e4aefff +libdcmjpeg.15.dylib (0) <90E2BE91-DA99-3DCC-B11C-BB5788A3632F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmjpeg.15.dylib
           0x10e4c6000 -        0x10e4f4ff3 +libijg8.15.dylib (0) <C8645D18-CA05-3EFE-B92D-941457EA645B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libijg8.15.dylib
           0x10e4fc000 -        0x10e529fff +libijg12.15.dylib (0) <87953533-C5CD-34C0-A4F3-90ED9BADEAFE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libijg12.15.dylib
           0x10e530000 -        0x10e532ff7 +vtkWrappingKitPython.so (0) <FBB4A654-139C-3FC4-85EF-39D992598ADB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkWrappingKitPython.so
           0x10e535000 -        0x10e563ff3 +libijg16.15.dylib (0) <E779BFB5-740F-35E2-BFC4-7823589D2E2B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libijg16.15.dylib
           0x10e56a000 -        0x10e56dff7 +vtkFiltersKitPython.so (0) <AD099F99-FE6A-32DA-81BF-F60C09021C59> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkFiltersKitPython.so
           0x10e570000 -        0x10e57ffff +libdcmjpls.15.dylib (0) <0B15F719-685F-3F7C-9854-4E1CCA1CB57F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmjpls.15.dylib
           0x10e58d000 -        0x10e5beff7 +libcharls.15.dylib (0) <ED58E2C8-73C0-32C2-BE9E-C9210F1B37A0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libcharls.15.dylib
           0x10e5dc000 -        0x10e6a3ff7 +libcmr.15.dylib (0) <223399AF-B61B-36CA-AF73-719B445E6E37> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libcmr.15.dylib
           0x10e6dc000 -        0x10e6f9fff +libdcmwlm.15.dylib (0) <3493D5C0-C46B-3BE4-A9FF-116E007DAD4D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmwlm.15.dylib
           0x10e70a000 -        0x10e7efff3 +libdcmpstat.15.dylib (0) <CD78564C-4E34-3E76-A208-1980271E6697> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmpstat.15.dylib
           0x10e82f000 -        0x10e833ff7 +libdcmtls.15.dylib (0) <35AC0BC0-6CBD-3B5A-8A12-01811C716091> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmtls.15.dylib
           0x10e83c000 -        0x10e8d5ff3 +libdcmsr.15.dylib (0) <7AB0EB9E-AC27-30DA-88F8-4A62DA0260A8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmsr.15.dylib
           0x10e92f000 -        0x10e9c3ffb +libdcmimage.15.dylib (0) <A99044EA-610E-3E83-BAEC-2D29D0B20F2B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmimage.15.dylib
           0x10e9e5000 -        0x10e9e9fff +libvtkGUISupportQtSQL-8.2.1.dylib (0) <44412D36-A639-3E3B-A6D9-B2C31D41B70E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkGUISupportQtSQL-8.2.1.dylib
           0x10e9ec000 -        0x10e9edfff +libdcmdsig.15.dylib (0) <09952265-1FF6-34AE-8085-E74A1000801F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmdsig.15.dylib
           0x10e9f7000 -        0x10ea38ffb +libdcmqrdb.15.dylib (0) <3BE3A0D9-1D9D-3231-8DF7-933636AEBE33> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmqrdb.15.dylib
           0x10ea4d000 -        0x10eb10fff +libdcmnet.15.dylib (0) <2B22866A-CDFD-325D-A6AA-28DAE1C65189> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmnet.15.dylib
           0x10eb47000 -        0x10eb49ff7 +vtkPythonInterpreterPython.so (0) <92B086A5-2B8E-3449-947B-62ACCFCAED16> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkPythonInterpreterPython.so
           0x10eb4c000 -        0x10f086fff +libdcmrt.15.dylib (0) <58E1DA3D-10CF-30AE-B3B9-6BAAE3CB2C7F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmrt.15.dylib
           0x10f2d0000 -        0x10f4caffb +libdcmimgle.15.dylib (0) <375D00BE-EE0E-383D-8E5C-800438F19C9D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmimgle.15.dylib
           0x10f507000 -        0x10f525ff7 +libdcmseg.15.dylib (0) <669A179B-2FFB-3825-9C87-D136F0C19025> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmseg.15.dylib
           0x10f534000 -        0x10f55bff7 +libdcmtract.15.dylib (0) <8373E274-3543-3206-A8A9-7741608B443D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmtract.15.dylib
           0x10f56e000 -        0x10f58effb +libdcmpmap.15.dylib (0) <7499518D-6DCB-352A-BDD3-FA547216D123> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmpmap.15.dylib
           0x10f5ac000 -        0x10f5e0fff +libdcmfg.15.dylib (0) <0FC3212E-3E37-310E-B001-AE404AC5F352> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmfg.15.dylib
           0x10f5fb000 -        0x10f680ffb +libdcmiod.15.dylib (0) <66B6A75E-C91E-3592-8E9D-FABAB2D498D5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmiod.15.dylib
           0x10f6bd000 -        0x10f7f8ff3 +libdcmdata.15.dylib (0) <FB6F8BCF-26ED-3FBB-A8D1-0ADEC69604F7> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libdcmdata.15.dylib
           0x10f8c7000 -        0x10f904ffb +liboflog.15.dylib (0) <C5B8A794-BE82-3636-BA60-AC8465CDDFB4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/liboflog.15.dylib
           0x10f93a000 -        0x10f967ff7 +libofstd.15.dylib (0) <1B31472D-B8CD-3A8A-85CE-A9BC7FD76821> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libofstd.15.dylib
           0x10f983000 -        0x10faabff7 +org.qt-project.QtNetwork (5.15 - 5.15.1) <0FCF9109-B2B2-3A92-9F17-BBB0E965B5A8> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork
           0x10faf7000 -        0x10fcb1fff +org.qt-project.QtScript (5.15 - 5.15.1) <3CDAB805-EE05-38D1-84F3-13E09EC975DA> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtScript.framework/Versions/5/QtScript
           0x10fd01000 -        0x10fd35ff3 +libModuleDescriptionParser.dylib (0) <B65272B2-F005-3152-80FD-B404A31CE358> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libModuleDescriptionParser.dylib
           0x10fd47000 -        0x10fd50ffb +libCTKScriptingPythonCore.0.1.dylib (0) <7CD52E35-4264-398A-A4E9-B8F76937A701> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKScriptingPythonCore.0.1.dylib
           0x10fd57000 -        0x10fd5aff7 +vtkRemoteKitPython.so (0) <8F21650E-6E6A-364B-BD6F-D17226334EE5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkRemoteKitPython.so
           0x10fd5d000 -        0x10fd9efff +libCTKCore.0.1.dylib (0) <437FB90D-3D08-3A32-B51E-C9AC3765DF0E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libCTKCore.0.1.dylib
           0x10fdcb000 -        0x10fdf7ff3 +libMRMLCLI.dylib (0) <0605FE75-6C23-3582-95EC-1F089357DB24> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLCLI.dylib
           0x10fe04000 -        0x110149fff +libMRMLCore.dylib (0) <03619E2D-50ED-305F-99D0-980284D85999> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLCore.dylib
           0x1102b1000 -        0x11036affb +libarchive.17.dylib (0) <BD841B18-7D81-3167-8990-5981BAD57705> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libarchive.17.dylib
           0x110382000 -        0x1103efff3 +libvtkAddon.dylib (0) <477D9C7D-A5C4-319A-8B8F-6458D3D0BC5B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkAddon.dylib
           0x11040f000 -        0x110414ffb +libITKLabelMap-5.1.1.dylib (0) <5FD99076-D031-389A-B201-2F951A8EF970> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKLabelMap-5.1.1.dylib
           0x110417000 -        0x110426ffb +libITKIOGE-5.1.1.dylib (0) <EE6AB605-2D0F-32F9-ADA5-CE95DAB16A0F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOGE-5.1.1.dylib
           0x110434000 -        0x110440ff7 +libITKIOIPL-5.1.1.dylib (0) <65E08BFE-CC92-3D9A-983A-DEC780931C10> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOIPL-5.1.1.dylib
           0x11044b000 -        0x110450fff +libITKVTK-5.1.1.dylib (0) <B0A8EDA6-8703-3DB6-8391-95C1DE85B5A1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKVTK-5.1.1.dylib
           0x110458000 -        0x11045dff3 +libITKDeprecated-5.1.1.dylib (0) <F1E5950D-AA8F-3EDD-9103-171408709AB8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKDeprecated-5.1.1.dylib
           0x110462000 -        0x11048afff +libITKIOSpatialObjects-5.1.1.dylib (0) <581C85D9-928A-3F17-B1D9-DD73F6A5AB91> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOSpatialObjects-5.1.1.dylib
           0x1104a2000 -        0x1104adff7 +libITKFactoryRegistration.dylib (0) <467A16AC-4DCF-3ECC-9A67-95301BBD91B4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKFactoryRegistration.dylib
           0x1104b0000 -        0x1104d8ffb +libITKSpatialObjects-5.1.1.dylib (0) <15A9EEBD-4511-34DE-BBA8-AFECE0A350D4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKSpatialObjects-5.1.1.dylib
           0x1104f0000 -        0x1104f6ffb +libITKMesh-5.1.1.dylib (0) <450EE8A7-F0FA-3C4E-8899-DAF3FA78C8C2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKMesh-5.1.1.dylib
           0x1104f9000 -        0x11050eff3 +libITKStatistics-5.1.1.dylib (0) <043E3EFB-8EC7-3367-83C9-0C9222A5C80D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKStatistics-5.1.1.dylib
           0x11051b000 -        0x110523ff3 +libITKPath-5.1.1.dylib (0) <FD4FE4DA-E710-3090-B65A-0BA5DE3E3131> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKPath-5.1.1.dylib
           0x11052c000 -        0x11054dfff +libITKIOGDCM-5.1.1.dylib (0) <B38610CE-8C32-37C3-8C8C-DDBB96A71349> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOGDCM-5.1.1.dylib
           0x110564000 -        0x11056effb +libITKIOJPEG-5.1.1.dylib (0) <6D9C6B8A-14C8-35CD-8563-54930F761EDD> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOJPEG-5.1.1.dylib
           0x110578000 -        0x110584ffb +libITKIOBMP-5.1.1.dylib (0) <FBD10DBF-9FF7-32E1-92C4-EB1A2561ABF9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOBMP-5.1.1.dylib
           0x11058f000 -        0x110597fff +libITKIOLSM-5.1.1.dylib (0) <80B48C30-1EC4-3253-8C26-A7E0522D2059> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOLSM-5.1.1.dylib
           0x1105a1000 -        0x1105acffb +libITKIOPNG-5.1.1.dylib (0) <2ACFD1EE-1BCD-387C-9AC5-335673EDAF33> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOPNG-5.1.1.dylib
           0x1105b6000 -        0x1105b9ff7 +libvtkWrapping-8.2.1.dylib (0) <69432603-459C-36A1-8332-5938F30BC119> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkWrapping-8.2.1.dylib
           0x1105c3000 -        0x110654f47  dyld (750.6) <1D318D60-C9B0-3511-BE9C-82AFD2EF930D> /usr/lib/dyld
           0x1106c8000 -        0x110f88ff3 +libPythonQt.dylib (0) <88B0FAE8-CC6C-31B5-A695-DDEB9097427A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libPythonQt.dylib
           0x111a96000 -        0x112972ff7 +libvtkITK.dylib (0) <71AA6111-B893-33A8-B6A7-E17C12ECF057> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkITK.dylib
           0x1130cb000 -        0x113204ff3 +libvtkSegmentationCore.dylib (0) <7C33B60E-AD2C-3F1C-A06C-175597163C64> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkSegmentationCore.dylib
           0x113240000 -        0x11325cfff +libITKIOTIFF-5.1.1.dylib (0) <4034092C-D1FB-394B-A371-4453D5F3FEC2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOTIFF-5.1.1.dylib
           0x11326b000 -        0x113281ff7 +libITKIOVTK-5.1.1.dylib (0) <23AD0812-ED34-3ABC-B6CD-E2F2A53BF1EA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOVTK-5.1.1.dylib
           0x11328d000 -        0x113299ff7 +libITKIOStimulate-5.1.1.dylib (0) <FA978C6A-E3A0-30C8-AA8D-ED0B1B24FA28> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOStimulate-5.1.1.dylib
           0x1132a4000 -        0x1132aeffb +libITKIOBioRad-5.1.1.dylib (0) <429D924B-73DB-328B-80A4-70EA724D220C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOBioRad-5.1.1.dylib
           0x1132b9000 -        0x1132caffb +libITKIOMeta-5.1.1.dylib (0) <7FEBF7B6-3A0F-3EB0-AC65-C8F2AD1F0B5A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeta-5.1.1.dylib
           0x1132dd000 -        0x113370fff +libITKMetaIO-5.1.1.dylib (0) <ED479019-6F7A-388C-A2C0-0FD58C8FC0EE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKMetaIO-5.1.1.dylib
           0x113393000 -        0x1133a4ffb +libITKIOMRC-5.1.1.dylib (0) <FED859BB-0CB7-30E2-85E6-5255A9BE8169> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMRC-5.1.1.dylib
           0x1133b1000 -        0x1133caffb +libITKIONIFTI-5.1.1.dylib (0) <B8820892-C86C-3576-83A4-6B54248CB98A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIONIFTI-5.1.1.dylib
           0x1133d5000 -        0x1133e7fff +libITKIONRRD-5.1.1.dylib (0) <DF60332C-BA3A-3446-858A-5F78445C9011> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIONRRD-5.1.1.dylib
           0x1133f4000 -        0x113411ff7 +libITKIOGIPL-5.1.1.dylib (0) <5A7C10BF-7F1F-39BB-9495-D7766B8473E6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOGIPL-5.1.1.dylib
           0x11341d000 -        0x113430ff3 +libITKIOTransformHDF5-5.1.1.dylib (0) <D3753E15-B57D-38A6-B445-956F77A37890> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOTransformHDF5-5.1.1.dylib
           0x113441000 -        0x113455ff3 +libITKIOTransformInsightLegacy-5.1.1.dylib (0) <3162FEBB-4276-3671-9DC4-77BE4C083D58> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOTransformInsightLegacy-5.1.1.dylib
           0x113465000 -        0x113472ffb +libITKIOTransformMatlab-5.1.1.dylib (0) <3D2690C8-0CCF-33F6-8A41-108B34076434> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOTransformMatlab-5.1.1.dylib
           0x11347f000 -        0x1134aaff7 +libITKIOTransformBase-5.1.1.dylib (0) <9536AA5D-7D41-30D6-AEF5-A2D1E95D55F1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOTransformBase-5.1.1.dylib
           0x1134c3000 -        0x11379dfff +libITKTransformFactory-5.1.1.dylib (0) <50FC483A-DF40-3B7D-B84A-BA1E8FDE28D9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKTransformFactory-5.1.1.dylib
           0x113951000 -        0x113971fff +libitkMGHIO-5.1.1.dylib (0) <7BEA847F-8087-3D5C-8532-6D12E0E21308> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkMGHIO-5.1.1.dylib
           0x11397e000 -        0x113993ffb +libITKIOMINC-5.1.1.dylib (0) <6FAA3535-DBF7-3F32-AA49-A126B717A6AE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMINC-5.1.1.dylib
           0x1139a1000 -        0x1139ccffb +libITKIODCMTK-5.1.1.dylib (0) <8C2A9DA8-60F2-3425-8F85-6763D0682136> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIODCMTK-5.1.1.dylib
           0x1139e0000 -        0x113a2affb +libvtkTeem.dylib (0) <FD936E71-7C1F-3E6E-82A6-8B707EACEEDE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkTeem.dylib
           0x113a43000 -        0x113a55fff +libvtkRenderingQt-8.2.1.dylib (0) <8D9C1558-659B-31E3-91F2-8F25F8FDEF96> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRenderingQt-8.2.1.dylib
           0x113a64000 -        0x113a69ff3 +libvtkRemote-8.2.1.dylib (0) <2A08868B-1F78-3388-BE5B-91116A0906F6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRemote-8.2.1.dylib
           0x113a72000 -        0x113abeffb +libvtkFiltersFlowPaths-8.2.1.dylib (0) <87F4215E-9629-3149-AC0B-76CFAAB897E0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkFiltersFlowPaths-8.2.1.dylib
           0x113ae8000 -        0x113aefff3 +libvtkPythonInterpreter-8.2.1.dylib (0) <4AC54178-E982-3FBA-9731-E8ACB45B5F41> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkPythonInterpreter-8.2.1.dylib
           0x113af8000 -        0x113cedff3 +libpython3.6m.dylib (0) <F4D0D6A9-BC21-32D8-8E5B-9ABC1A54CDD2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/libpython3.6m.dylib
           0x113e3d000 -        0x113e62ff3 +libvtkWrappingPython36Core-8.2.1.dylib (0) <05363C20-8FAE-3287-A250-25E3D1239215> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkWrappingPython36Core-8.2.1.dylib
           0x113e77000 -        0x113e81ff3 +libvtkGUISupportQtOpenGL-8.2.1.dylib (0) <E6B4E004-96C5-3A6C-9B45-9169006133EC> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkGUISupportQtOpenGL-8.2.1.dylib
           0x113e89000 -        0x113ebefff +org.qt-project.QtOpenGL (5.15 - 5.15.1) <04957AD6-5E16-3E20-99CE-5FE0D3689163> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtOpenGL.framework/Versions/5/QtOpenGL
           0x113edf000 -        0x113f00ff7 +org.qt-project.QtSql (5.15 - 5.15.1) <3E637B42-5CF0-3480-9010-BF6B5FF863AF> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtSql.framework/Versions/5/QtSql
           0x113f13000 -        0x113f23ff3 +libvtkGeovisCore-8.2.1.dylib (0) <AD62DCE0-9DE7-3497-82BB-9F35DA398BEA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkGeovisCore-8.2.1.dylib
           0x113f31000 -        0x113f7aff7 +libvtkproj-8.2.1.dylib (0) <D0ED6102-5500-34C5-8A37-EEF1E0368607> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkproj-8.2.1.dylib
           0x113f8f000 -        0x113f9aff3 +libvtkIOExportOpenGL2-8.2.1.dylib (0) <557249F3-73CC-32A7-9A5B-9E0055FBE41B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOExportOpenGL2-8.2.1.dylib
           0x113fa2000 -        0x113fb5ffb +libvtkIOExportPDF-8.2.1.dylib (0) <612D21F1-D9DD-310F-928D-50B80645DC73> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOExportPDF-8.2.1.dylib
           0x113fc2000 -        0x114013fff +libvtkIOExport-8.2.1.dylib (0) <7D1A27CB-D17C-3DB1-B618-8CC3DCF53CB6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOExport-8.2.1.dylib
           0x114039000 -        0x114049ffb +libvtkRenderingGL2PSOpenGL2-8.2.1.dylib (0) <21F6B3C5-401D-3E1B-8F39-DE462FEDA592> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRenderingGL2PSOpenGL2-8.2.1.dylib
           0x114053000 -        0x11406bffb +libvtkgl2ps-8.2.1.dylib (0) <2DC7079E-999E-3071-84E8-128C17E91683> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkgl2ps-8.2.1.dylib
           0x11406f000 -        0x11411bfff +libvtklibharu-8.2.1.dylib (0) <C7DA7F05-EF26-3D45-BC31-ECA9FA9EE1A0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtklibharu-8.2.1.dylib
           0x114130000 -        0x114168ffb +libvtkIOImport-8.2.1.dylib (0) <4A145616-12E8-35D5-AFA0-01BA9ACE7573> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOImport-8.2.1.dylib
           0x11417b000 -        0x1141b9fff +libvtkIOInfovis-8.2.1.dylib (0) <E82D3962-A9F5-3FFA-9EC9-5BB3E249586E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOInfovis-8.2.1.dylib
           0x1141e0000 -        0x11431dff7 +libvtklibxml2-8.2.1.dylib (0) <C4C5B8AC-4118-333E-A4A2-BAF5E6E0484F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtklibxml2-8.2.1.dylib
           0x114350000 -        0x1143a0fff +libvtkIOMINC-8.2.1.dylib (0) <3299AA37-15B6-3B6F-8EE3-B179D05CC0F4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOMINC-8.2.1.dylib
           0x1143bf000 -        0x1144defff +libvtkParallel-8.2.1.dylib (0) <6E59815A-8A50-3B21-817F-08CAB45A1979> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkParallel-8.2.1.dylib
           0x114589000 -        0x1145b6ff7 +libvtkjsoncpp-8.2.1.dylib (0) <8181A1DD-95C1-3CDB-9519-0024AFE18308> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkjsoncpp-8.2.1.dylib
           0x1145ca000 -        0x1145d3fff +libvtkIOTecplotTable-8.2.1.dylib (0) <B8662893-28EA-3CB0-AD7C-46FB63AD4A42> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOTecplotTable-8.2.1.dylib
           0x1145dc000 -        0x1145ecffb +libvtkTestingRendering-8.2.1.dylib (0) <0CB11F7C-5BA4-351D-87D1-E7FAE89EB049> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkTestingRendering-8.2.1.dylib
           0x1145fa000 -        0x114611ffb +libvtkViewsQt-8.2.1.dylib (0) <46261878-A95F-3BE2-80CE-AA6EBC78574D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkViewsQt-8.2.1.dylib
           0x114625000 -        0x114650ff3 +libvtkGUISupportQt-8.2.1.dylib (0) <8425A1F4-4DD7-3F62-842F-02E135A8C6DA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkGUISupportQt-8.2.1.dylib
           0x114685000 -        0x11484dff7 +libvtkOpenGL-8.2.1.dylib (0) <AC90277C-161D-358A-AB99-36B23C143405> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkOpenGL-8.2.1.dylib
           0x114912000 -        0x11494fff7 +libvtkDomainsChemistry-8.2.1.dylib (0) <CEF9A118-4E00-32AE-B4B3-64861FF4811E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkDomainsChemistry-8.2.1.dylib
           0x114973000 -        0x1149e9fff +libvtkglew-8.2.1.dylib (0) <D194DA51-64FA-323B-AE38-E4B8F99B9BCA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkglew-8.2.1.dylib
           0x114a29000 -        0x114a80ffb +libvtkViewsInfovis-8.2.1.dylib (0) <5F30D675-63B8-34B5-8BE0-26929345DFCF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkViewsInfovis-8.2.1.dylib
           0x114ac9000 -        0x114bb4ff7 +libvtkChartsCore-8.2.1.dylib (0) <F2892F12-9C0E-3A0A-AD99-0F7E0E6BE210> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkChartsCore-8.2.1.dylib
           0x114bfa000 -        0x114c3afff +libvtkInfovisLayout-8.2.1.dylib (0) <68138D2B-9437-3756-ABEB-B4A8FFAFB896> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkInfovisLayout-8.2.1.dylib
           0x114c66000 -        0x114cdbfff +libvtkInfovisCore-8.2.1.dylib (0) <014EFD51-81EE-3399-869C-900BBB13D057> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkInfovisCore-8.2.1.dylib
           0x114d1d000 -        0x114d2eff3 +libvtkViews-8.2.1.dylib (0) <343E91D0-D6B2-3BC8-A5FE-8CD569342BB1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkViews-8.2.1.dylib
           0x114d43000 -        0x114e68ff7 +libvtkInteraction-8.2.1.dylib (0) <64144B6B-F63E-3FF5-9A56-C593540B7076> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkInteraction-8.2.1.dylib
           0x114f42000 -        0x114fedff3 +libvtkFiltersHybrid-8.2.1.dylib (0) <789F3D55-3729-310B-8089-D351EA6F72EE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkFiltersHybrid-8.2.1.dylib
           0x115024000 -        0x11507cff3 +libvtkImagingHybrid-8.2.1.dylib (0) <A229191E-E709-304A-8D34-264E43D2DB6C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkImagingHybrid-8.2.1.dylib
           0x11509a000 -        0x115581ffb +libvtkRendering-8.2.1.dylib (0) <2D253C3D-7560-341F-9103-26F15BD28CD4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRendering-8.2.1.dylib
           0x11591a000 -        0x11599bffb +libvtkfreetype-8.2.1.dylib (0) <621D7FD0-D7D1-33C1-AEEA-6865BF4CD436> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkfreetype-8.2.1.dylib
           0x1159ae000 -        0x115ec7ff7 +libvtkIO-8.2.1.dylib (0) <86B428EB-7129-39CE-B8B3-5CA04D31F6E3> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIO-8.2.1.dylib
           0x11602e000 -        0x116040ff3 +libvtkDICOMParser-8.2.1.dylib (0) <D496F846-A8F5-3FEC-939C-53B0EC645E04> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkDICOMParser-8.2.1.dylib
           0x11604b000 -        0x116055ff3 +libvtkdoubleconversion-8.2.1.dylib (0) <557EED03-3077-3548-A099-7461C8CF7C5B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkdoubleconversion-8.2.1.dylib
           0x116059000 -        0x11606dff7 +libvtklz4-8.2.1.dylib (0) <DDD150F2-AFAE-328A-9CE9-0BA3FE4874BE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtklz4-8.2.1.dylib
           0x116072000 -        0x116094ff7 +libvtklzma-8.2.1.dylib (0) <91A080F1-E0BC-3E41-8884-8423A3C24966> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtklzma-8.2.1.dylib
           0x11609b000 -        0x1160bdff3 +libvtkexpat-8.2.1.dylib (0) <C137FB61-3AC6-3375-9759-530CA718CEEB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkexpat-8.2.1.dylib
           0x1160c4000 -        0x116156fff +libvtkmetaio-8.2.1.dylib (0) <70C535E9-B461-36D7-A33B-B6E3F848BC2B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkmetaio-8.2.1.dylib
           0x11617c000 -        0x1161d1ff7 +libvtkjpeg-8.2.1.dylib (0) <F300EDD4-3DEC-3164-AB00-E79BF8F63545> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkjpeg-8.2.1.dylib
           0x1161d9000 -        0x116219fff +libvtkpng-8.2.1.dylib (0) <5D23AC88-78E6-30E5-B2D5-2B700DEC3ED8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkpng-8.2.1.dylib
           0x116224000 -        0x116299ff3 +libvtktiff-8.2.1.dylib (0) <06C76D66-231E-3C39-8033-B00D5E47D896> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtktiff-8.2.1.dylib
           0x1162a8000 -        0x1163c1ffb +libvtksqlite-8.2.1.dylib (0) <F1EFE0EA-EDCB-3735-9CC8-B9DE2EB053F2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtksqlite-8.2.1.dylib
           0x1163d4000 -        0x11642bff7 +libvtkexodusII-8.2.1.dylib (0) <07ED04F9-BF47-3DDF-BFFB-B860D5A66065> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkexodusII-8.2.1.dylib
           0x116438000 -        0x116470ff3 +libvtktheora-8.2.1.dylib (0) <1B91704A-CF87-348F-9861-93BE23080CF3> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtktheora-8.2.1.dylib
           0x116476000 -        0x11647aff3 +libvtkogg-8.2.1.dylib (0) <3FF87F8F-CE61-3663-87D6-B96A7B43B9E9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkogg-8.2.1.dylib
           0x11647e000 -        0x116490ff7 +libvtknetcdfcpp-8.2.1.dylib (0) <1ABD4474-5725-3234-A021-4883E5932909> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtknetcdfcpp-8.2.1.dylib
           0x11649f000 -        0x11655cff7 +libvtkNetCDF-8.2.1.dylib (0) <60456F9C-46CD-36A2-A06B-00BD94BA9CB0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkNetCDF-8.2.1.dylib
           0x116580000 -        0x116885ff7 +libvtkhdf5-8.2.1.dylib (0) <08F2A514-A3AA-3EE9-A39D-435E8E8DA6EB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkhdf5-8.2.1.dylib
           0x1168d9000 -        0x1168f2ff3 +libvtkhdf5_hl-8.2.1.dylib (0) <89E22FCB-AB06-32FC-8264-D46ED8A51763> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkhdf5_hl-8.2.1.dylib
           0x1168fc000 -        0x1171b0ff7 +libvtkFilters-8.2.1.dylib (0) <524C8292-CF3D-3AB7-87B1-CC9611F953B1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkFilters-8.2.1.dylib
           0x1173eb000 -        0x11740eff3 +libvtkverdict-8.2.1.dylib (0) <447EBF31-1EC7-3CC5-805B-915194382C0F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkverdict-8.2.1.dylib
           0x117418000 -        0x1177acfff +libvtkImaging-8.2.1.dylib (0) <DDB0BD9C-10D9-36C7-AA4F-BC7238A2C9C6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkImaging-8.2.1.dylib
           0x117861000 -        0x117894fff +libvtksys-8.2.1.dylib (0) <F6784B2B-0665-32F6-9B65-2D6CDBE24911> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtksys-8.2.1.dylib
           0x1178af000 -        0x117f19ffb +libvtkCommon-8.2.1.dylib (0) <5CF3DF50-B05F-352D-A6CB-48EB43EABA1D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkCommon-8.2.1.dylib
           0x1181b8000 -        0x118480ff7 +libteem.1.dylib (0) <D6C0EA0C-5476-3DC6-B6A7-3B7C0D3FB758> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libteem.1.dylib
           0x1184ef000 -        0x118503ff7 +libITKIOXML-5.1.1.dylib (0) <BA9C9FBF-C615-373E-9B1D-472411789F31> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOXML-5.1.1.dylib
           0x118512000 -        0x118533ffb +libITKIOImageBase-5.1.1.dylib (0) <E9C8AF3C-1E3C-3257-8499-CBB96DDC0322> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOImageBase-5.1.1.dylib
           0x118546000 -        0x1185d8ffb +libITKCommon-5.1.1.dylib (0) <2FC0883C-8725-37A0-ABFF-31E426997FA6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKCommon-5.1.1.dylib
           0x118674000 -        0x1186a8fff +libitksys-5.1.1.dylib (0) <0AFAEEC7-C1AF-32AE-8DDD-DCC2BC61ADFA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitksys-5.1.1.dylib
           0x1186c4000 -        0x118758ffb +libitkvnl_algo-5.1.1.dylib (0) <72AA5906-1E22-3F59-A5A0-D6354E47C72D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkvnl_algo-5.1.1.dylib
           0x1187b5000 -        0x118d68ff3 +libitkvnl-5.1.1.dylib (0) <46EC352D-B67E-31AA-9AE3-D281A519BC4A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkvnl-5.1.1.dylib
           0x119105000 -        0x1191ecfff +libitkv3p_netlib-5.1.1.dylib (0) <01568004-EFEB-357B-83CE-58924844DC5F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkv3p_netlib-5.1.1.dylib
           0x1191fb000 -        0x11921affb +libITKEXPAT-5.1.1.dylib (0) <EFC5BF80-AE41-3D9A-B098-0713AB04BD0C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKEXPAT-5.1.1.dylib
           0x119253000 -        0x11925fffb +org.qt-project.QtQuickWidgets (5.15 - 5.15.1) <5C34CE89-D4A2-3FFC-B8A0-812847F869B2> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtQuickWidgets.framework/Versions/5/QtQuickWidgets
           0x11926b000 -        0x119275ff3 +libitkdouble-conversion-5.1.1.dylib (0) <A5EDDF1D-3E70-3A0B-9D4C-0C958A3D0858> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkdouble-conversion-5.1.1.dylib
           0x119279000 -        0x1192b9fff +libitkjpeg-5.1.1.dylib (0) <89AD4FB1-DAAD-3D1B-8D28-F7C3059FC86D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkjpeg-5.1.1.dylib
           0x1192c0000 -        0x119412ff7 +libitkgdcmMSFF-5.1.1.dylib (0) <EFA63603-7D94-3783-BE0F-21BDCA80C295> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmMSFF-5.1.1.dylib
           0x11946c000 -        0x1194d2fff +libitkgdcmDICT-5.1.1.dylib (0) <4A62AEF0-14E0-3292-B4B7-88E89F3FA543> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmDICT-5.1.1.dylib
           0x1195fc000 -        0x119606fff +libitkgdcmIOD-5.1.1.dylib (0) <16D5B761-A97C-3D94-A13C-DAA59D286253> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmIOD-5.1.1.dylib
           0x11960e000 -        0x1196b1ff7 +libitkgdcmDSED-5.1.1.dylib (0) <C2D64F55-AC1D-3DC6-84EA-87068E32FB1E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmDSED-5.1.1.dylib
           0x1196da000 -        0x1196e5ff7 +libitkgdcmCommon-5.1.1.dylib (0) <8E8926F0-690A-3A4A-B3F5-C8EEAC58EA66> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmCommon-5.1.1.dylib
           0x1196f2000 -        0x119721fff +libitkgdcmjpeg8-5.1.1.dylib (0) <F19BA0ED-154C-3F48-A889-2F0B6001CE4A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmjpeg8-5.1.1.dylib
           0x119728000 -        0x119756ff3 +libitkgdcmjpeg12-5.1.1.dylib (0) <4CC9C2F7-011C-3364-9AB0-C2B5CF452654> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmjpeg12-5.1.1.dylib
           0x11975d000 -        0x11978bff3 +libitkgdcmjpeg16-5.1.1.dylib (0) <448C6A63-7574-3A4C-B18F-2FE51E03F650> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmjpeg16-5.1.1.dylib
           0x119792000 -        0x1197dbff3 +libitkgdcmopenjp2-5.1.1.dylib (0) <6A05860C-4CE9-31A0-95B2-1236E420656C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmopenjp2-5.1.1.dylib
           0x1197e4000 -        0x119817ffb +libitkgdcmcharls-5.1.1.dylib (0) <158BF494-6E50-38BB-8C57-630828D8A20C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkgdcmcharls-5.1.1.dylib
           0x119831000 -        0x11989ffff +libitktiff-5.1.1.dylib (0) <5C9D5F6C-8EF8-3022-86F8-B0CB37D5B88E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitktiff-5.1.1.dylib
           0x1198ad000 -        0x1198eefff +libitkpng-5.1.1.dylib (0) <6D1BACB7-2315-3E68-94E9-B67B46FAF651> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkpng-5.1.1.dylib
           0x1198f8000 -        0x119916ff3 +libITKniftiio-5.1.1.dylib (0) <48903349-361C-3F11-8601-5B1E61FBAB5F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKniftiio-5.1.1.dylib
           0x11991b000 -        0x11992efff +libITKznz-5.1.1.dylib (0) <5C6A3418-2B6D-39E7-99D2-B4E467512CAA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKznz-5.1.1.dylib
           0x119932000 -        0x11996bff7 +libITKNrrdIO-5.1.1.dylib (0) <87AB7188-5758-33EC-A81C-A2ECBF8C0168> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKNrrdIO-5.1.1.dylib
           0x11997b000 -        0x1199c1ffb +libitkhdf5_cpp.1.dylib (0) <5AAB0C68-48F9-3C11-B1BA-6240CFB5AD61> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkhdf5_cpp.1.dylib
           0x1199f0000 -        0x119cf8ff7 +libitkhdf5.1.dylib (0) <E38C2887-6D73-3A4C-A447-15F5E5F9993A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkhdf5.1.dylib
           0x119d4c000 -        0x119da7fff +libitkminc2-5.1.1.dylib (0) <2B83CB3C-3777-362E-9241-1F93C5F01258> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkminc2-5.1.1.dylib
           0x11b9f3000 -        0x11bb61fff +libqcocoa.dylib (0) <CF4DB3D2-6247-3993-BE80-A6DAAF79CAFA> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/platforms/libqcocoa.dylib
           0x11bbb0000 -        0x11bc0ffff +org.qt-project.QtDBus (5.15 - 5.15.1) <3013C548-64D8-3915-BFED-ABD4B3BC682D> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtDBus.framework/Versions/5/QtDBus
           0x11d00d000 -        0x11d1cfff7  com.apple.AMDRadeonX6000GLDriver (3.10.18 - 3.1.0) <2B13C9BF-D708-32EB-AC55-7771E32BEC99> /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
           0x11da73000 -        0x11da7afff +libqgif.dylib (0) <63BCACAB-A333-3082-B023-C4584B453047> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqgif.dylib
           0x11da7e000 -        0x11da85ffb +libqicns.dylib (0) <487605F4-1010-386A-ADCA-EF2C2145C0BD> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqicns.dylib
           0x11da8a000 -        0x11da8ffff +libqico.dylib (0) <4F80B578-330B-3F93-A393-86A323120594> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqico.dylib
           0x11da94000 -        0x11daf8ffb +libqjpeg.dylib (0) <60CB1EA3-DC55-3D90-9BBC-71D96B1D5699> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqjpeg.dylib
           0x11dafe000 -        0x11db04ffb +libqmacheif.dylib (0) <45E146F7-F22D-322B-BEE6-DCDDB8B3FB1D> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqmacheif.dylib
           0x11db09000 -        0x11db0efff +libqmacjp2.dylib (0) <AB78F412-50D4-3AB3-8400-9FC3C39F2343> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqmacjp2.dylib
           0x11db13000 -        0x11db18ffb +libqpdf.dylib (0) <B19DCAA0-054B-347C-A1BF-87157D514701> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqpdf.dylib
           0x11db1c000 -        0x11e10afe3 +org.qt-project.QtPdf (5.15 - 5.15.1) <04D9775A-1169-37CB-8B9E-E22D1AC03398> /Applications/Slicer_4.13_11_12.app/Contents/Frameworks/QtPdf.framework/Versions/5/QtPdf
           0x11e145000 -        0x11e14afff +libqsvg.dylib (0) <6E455175-F85A-37D8-B396-2CAAA9811A42> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqsvg.dylib
           0x11e14f000 -        0x11e153ff3 +libqtga.dylib (0) <F78078EB-5F3E-3C5A-9301-CD8FE3AD9AF2> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqtga.dylib
           0x11e157000 -        0x11e1bdffb +libqtiff.dylib (0) <ECD94AE9-EE98-3F4F-AEDB-AA9B054AE46F> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqtiff.dylib
           0x11e1c5000 -        0x11e1c9ff3 +libqwbmp.dylib (0) <42F85FDF-3A0E-3FFA-899C-E0DAABDA059D> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqwbmp.dylib
           0x11e1cd000 -        0x11e263ff3 +libqwebp.dylib (0) <3C3ED878-0B80-3337-B28D-AC0C5A39B24F> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/imageformats/libqwebp.dylib
           0x11e27c000 -        0x11e29fffb +libMRMLIDIOPlugin.dylib (0) <3829A87C-5A51-3D5A-98E2-C48347D03906> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/ITKFactories/libMRMLIDIOPlugin.dylib
           0x11e2a2000 -        0x11e2d0fff +libMRMLIDIO.dylib (0) <4565A36F-95B0-3FEA-90E8-ECC93FB754EF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLIDIO.dylib
           0x11e4dd000 -        0x11e4e0ffb +_functools.so (0) <16C85B06-4500-387A-8B16-3086A5427924> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_functools.so
           0x11e526000 -        0x11e52affb +_operator.so (0) <204F5A24-E59B-30C6-8FF9-60B427DE3918> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_operator.so
           0x11e531000 -        0x11e538ffb +itertools.so (0) <385440EB-D3DD-3DF4-BBC2-B7C50EBCD685> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/itertools.so
           0x11e705000 -        0x11e712ff7 +CTKQtTestingPythonQt.so (0) <65CD1AD3-4730-3F9A-9143-640397CF0196> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKQtTestingPythonQt.so
           0x11e717000 -        0x11e72cffb +CTKVisualizationVTKWidgetsPythonQt.so (0) <B4CE3CE7-1E52-32A7-839C-DBB7809E644F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKVisualizationVTKWidgetsPythonQt.so
           0x11e746000 -        0x11e750ff7 +CTKVisualizationVTKCorePythonQt.so (0) <0823DC9E-2612-36BE-950F-F900571F2E74> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKVisualizationVTKCorePythonQt.so
           0x11e755000 -        0x11e759fff +CTKScriptingPythonWidgetsPythonQt.so (0) <7305D464-B992-35D3-BEA3-0FE8FB32AE00> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKScriptingPythonWidgetsPythonQt.so
           0x11e75d000 -        0x11e761ff7 +CTKImageProcessingITKCorePythonQt.so (0) <EDDF9A85-4BB6-30F9-AE3C-3D7ABFF90C6B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKImageProcessingITKCorePythonQt.so
           0x11e764000 -        0x11e774fff +CTKDICOMWidgetsPythonQt.so (0) <301A8777-3C5E-39BE-ACD8-091FC44C3362> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKDICOMWidgetsPythonQt.so
           0x11e783000 -        0x11e78ffff +CTKDICOMCorePythonQt.so (0) <4225DB9C-7B4C-3A3A-AF1E-E7C6F41FA850> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKDICOMCorePythonQt.so
           0x11e799000 -        0x11e7bdffb +CTKWidgetsPythonQt.so (0) <3FF06F9A-3ED9-3EC7-8111-8F31EE4CD0E8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKWidgetsPythonQt.so
           0x11e80c000 -        0x11e811ff7 +CTKCorePythonQt.so (0) <36B4FCF9-20C1-378E-B4A6-9C54EC0A72A8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/CTKCorePythonQt.so
           0x11e81b000 -        0x11ee63ffb +libvtkCommonKitPython36D-8.2.1.dylib (0) <6D6796C5-2254-312F-A59A-D6A7D37B9193> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkCommonKitPython36D-8.2.1.dylib
           0x11f316000 -        0x11f710ff7 +libvtkFiltersKitPython36D-8.2.1.dylib (0) <3D8ADB21-2784-309F-8512-86229EE45A24> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkFiltersKitPython36D-8.2.1.dylib
           0x11f88e000 -        0x11f959ff7 +libvtkImagingKitPython36D-8.2.1.dylib (0) <90660B86-2D7C-3C8B-AE2B-6BF82FB818EE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkImagingKitPython36D-8.2.1.dylib
           0x11fb34000 -        0x11fb3cff3 +libvtkRemoteKitPython36D-8.2.1.dylib (0) <85824AD2-CC59-3943-84D8-6AF99E7C7CA2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRemoteKitPython36D-8.2.1.dylib
           0x11fb81000 -        0x11fb87ff7 +vtkRenderingKitPython.so (0) <99818400-BA67-3BF5-B648-ACBB19331B20> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkRenderingKitPython.so
           0x11fb8a000 -        0x11fef0ffb +libvtkRenderingKitPython36D-8.2.1.dylib (0) <8E2385CF-D90C-3452-9958-8DCA8EE9D976> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRenderingKitPython36D-8.2.1.dylib
           0x120044000 -        0x1201e6ff3 +libvtkIOKitPython36D-8.2.1.dylib (0) <7A20C3EE-707B-393A-B77E-041951864EF4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOKitPython36D-8.2.1.dylib
           0x1203a6000 -        0x1203abff7 +vtkIOKitPython.so (0) <D21ACC70-81C7-3411-936D-6A933BD97610> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOKitPython.so
           0x12046e000 -        0x120476ff7 +vtkOpenGLKitPython.so (0) <50968DEA-2B2E-314F-81EC-8EE0044626C4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkOpenGLKitPython.so
           0x120479000 -        0x120561ff3 +libvtkOpenGLKitPython36D-8.2.1.dylib (0) <69B90151-A635-30EF-B309-A195CF6D1093> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkOpenGLKitPython36D-8.2.1.dylib
           0x1205d5000 -        0x1205f3ffb +libvtkDomainsChemistryPython36D-8.2.1.dylib (0) <8DC9BF9F-B56A-3BAF-A6AD-7602C4344F35> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkDomainsChemistryPython36D-8.2.1.dylib
           0x120642000 -        0x120649ff7 +vtkParallelKitPython.so (0) <6CB5A360-ADE1-3117-A672-F0DE882A9EE0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkParallelKitPython.so
           0x12064c000 -        0x1206ffff3 +libvtkParallelKitPython36D-8.2.1.dylib (0) <D7B8C7DF-66B1-33BB-A117-AD054A4150B6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkParallelKitPython36D-8.2.1.dylib
           0x120790000 -        0x120793ff7 +libvtkWrappingKitPython36D-8.2.1.dylib (0) <915D8ECC-6F50-3EC1-BF4D-2C0681EDD51A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkWrappingKitPython36D-8.2.1.dylib
           0x120797000 -        0x12079fff7 +vtkInteractionKitPython.so (0) <F4F2D88A-0E74-371A-AC21-540E95B04B8B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkInteractionKitPython.so
           0x1207a2000 -        0x120975ffb +libvtkInteractionKitPython36D-8.2.1.dylib (0) <10E26A1D-2643-3FA3-AA92-54993155513D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkInteractionKitPython36D-8.2.1.dylib
           0x120a52000 -        0x120a9affb +libvtkFiltersHybridPython36D-8.2.1.dylib (0) <B9DA6AEB-CF5B-3C89-8188-49E03DAE7BBA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkFiltersHybridPython36D-8.2.1.dylib
           0x120ab5000 -        0x120ae7ff7 +libvtkImagingHybridPython36D-8.2.1.dylib (0) <356578B4-6733-3E5C-AC11-62AEE45BC779> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkImagingHybridPython36D-8.2.1.dylib
           0x120b78000 -        0x120b80ff7 +vtkViewsKitPython.so (0) <D5A197A0-76AD-3A07-B2F6-6E086962E417> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkViewsKitPython.so
           0x120b83000 -        0x120ba2ffb +libvtkViewsKitPython36D-8.2.1.dylib (0) <EF4D6324-42E3-378E-BCBA-7D0B6A63C9E8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkViewsKitPython36D-8.2.1.dylib
           0x120baf000 -        0x120bb2ff7 +vtkInfovisCorePython.so (0) <9F9E3354-43B9-39D4-BFCC-BD0B8A65A1A8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkInfovisCorePython.so
           0x120bb5000 -        0x120bf9ffb +libvtkInfovisCorePython36D-8.2.1.dylib (0) <C9FCB0AB-F32F-3037-BF1C-7F920117E992> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkInfovisCorePython36D-8.2.1.dylib
           0x120c57000 -        0x120c5eff7 +vtkChartsCorePython.so (0) <2802C274-04B1-3D32-BFAC-DC15E681560F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkChartsCorePython.so
           0x120c61000 -        0x120cd9ff7 +libvtkChartsCorePython36D-8.2.1.dylib (0) <C6EE6257-C732-3204-B1CD-9984FBB5AD13> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkChartsCorePython36D-8.2.1.dylib
           0x120d57000 -        0x120d5eff7 +vtkDomainsChemistryPython.so (0) <E7B26474-4AE4-337E-86CF-F04D2CE940C2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkDomainsChemistryPython.so
           0x120d61000 -        0x120d66ff7 +vtkFiltersFlowPathsPython.so (0) <015ACD5F-A0DB-3A16-8307-B7BCFA2F4663> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkFiltersFlowPathsPython.so
           0x120d69000 -        0x120dabff7 +libvtkFiltersFlowPathsPython36D-8.2.1.dylib (0) <D8D9BF4B-B8AA-3A1E-BA12-DFDF751CF367> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkFiltersFlowPathsPython36D-8.2.1.dylib
           0x120dc7000 -        0x120dceff7 +vtkFiltersHybridPython.so (0) <B5C5465D-18D0-3642-A6C9-2E0F54B6CA3E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkFiltersHybridPython.so
           0x120dd1000 -        0x120dd7ff7 +libvtkPythonInterpreterPython36D-8.2.1.dylib (0) <27BB6AD8-550F-3623-9BE9-5C12129D6D9B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkPythonInterpreterPython36D-8.2.1.dylib
           0x120ddc000 -        0x120de1ff7 +vtkImagingHybridPython.so (0) <45A8073E-14F5-3939-A2E6-D91D7C2FED3E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkImagingHybridPython.so
           0x120e24000 -        0x120e2bff7 +vtkInfovisLayoutPython.so (0) <B9C660E6-6797-3536-BEC0-F79C3D8C4D47> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkInfovisLayoutPython.so
           0x120e2e000 -        0x120e7cffb +libvtkInfovisLayoutPython36D-8.2.1.dylib (0) <F5CFD22A-9B54-3691-B07E-7507A307EB3C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkInfovisLayoutPython36D-8.2.1.dylib
           0x120ea0000 -        0x120eaaff7 +vtkGeovisCorePython.so (0) <71A6AD28-2AA0-349E-9C7E-932F5AD12798> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkGeovisCorePython.so
           0x120ead000 -        0x120ec1ff3 +libvtkGeovisCorePython36D-8.2.1.dylib (0) <67CD9A70-47BB-3F07-819A-61EBF1635B75> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkGeovisCorePython36D-8.2.1.dylib
           0x120ec9000 -        0x120ed1ff7 +vtkRenderingGL2PSOpenGL2Python.so (0) <E81F67A3-7C26-307B-B43B-C3916C70BC54> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkRenderingGL2PSOpenGL2Python.so
           0x120ed4000 -        0x120ee0ffb +libvtkRenderingGL2PSOpenGL2Python36D-8.2.1.dylib (0) <DFF4AABD-7A26-36E1-8A11-7315A490F718> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRenderingGL2PSOpenGL2Python36D-8.2.1.dylib
           0x120ee5000 -        0x120eeeff7 +vtkIOExportPython.so (0) <7E765104-C06F-3A37-85D5-F1006C47FE1A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOExportPython.so
           0x120ef1000 -        0x120f28fff +libvtkIOExportPython36D-8.2.1.dylib (0) <79C8407D-EFDB-3022-90FB-A187179E1F4E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOExportPython36D-8.2.1.dylib
           0x120f7f000 -        0x120f89ff7 +vtkIOExportOpenGL2Python.so (0) <9B14C450-0A15-33D8-9DDB-1391353A8CD9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOExportOpenGL2Python.so
           0x120f8c000 -        0x120f97ff3 +libvtkIOExportOpenGL2Python36D-8.2.1.dylib (0) <780EFF28-CE24-3841-907B-2C9850F9FD98> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOExportOpenGL2Python36D-8.2.1.dylib
           0x120f9b000 -        0x120fa5ff7 +vtkIOExportPDFPython.so (0) <56F3EF06-3254-3C71-8002-7CC284255147> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOExportPDFPython.so
           0x120fa8000 -        0x120fbbff7 +libvtkIOExportPDFPython36D-8.2.1.dylib (0) <4BE51BD3-728E-3B73-B3E4-4968E8EB1094> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOExportPDFPython36D-8.2.1.dylib
           0x120fc3000 -        0x120fcaff7 +vtkIOImportPython.so (0) <49456A3F-8A76-37B8-94E3-E933A14A5332> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOImportPython.so
           0x120fcd000 -        0x120fd9ff3 +libvtkIOImportPython36D-8.2.1.dylib (0) <5F3E0595-E517-3F87-918B-A9D14DE69C75> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOImportPython36D-8.2.1.dylib
           0x120fde000 -        0x120fe4ff7 +vtkIOInfovisPython.so (0) <832E1434-3D04-3C65-A435-C2D8A8BA4452> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOInfovisPython.so
           0x120fe7000 -        0x12100bffb +libvtkIOInfovisPython36D-8.2.1.dylib (0) <1B662A8B-28D5-3573-8E96-A41A537C4EE1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOInfovisPython36D-8.2.1.dylib
           0x12101a000 -        0x121021ff7 +vtkIOMINCPython.so (0) <ADDA8617-83A8-33BE-9D87-9A150DA5833C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOMINCPython.so
           0x121024000 -        0x121041ff3 +libvtkIOMINCPython36D-8.2.1.dylib (0) <9B3A8119-DB70-3817-A75F-C67704751A9F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOMINCPython36D-8.2.1.dylib
           0x12104d000 -        0x121052ff7 +vtkIOTecplotTablePython.so (0) <4DB93EE2-9EC7-3427-933E-9E1061EEE570> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkIOTecplotTablePython.so
           0x121055000 -        0x12105effb +libvtkIOTecplotTablePython36D-8.2.1.dylib (0) <AEF73213-0C55-32D6-882B-C83BD1ACAAB3> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkIOTecplotTablePython36D-8.2.1.dylib
           0x121062000 -        0x121069ff7 +vtkRenderingQtPython.so (0) <83D021A5-F67E-3601-819B-D83493087209> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkRenderingQtPython.so
           0x12106c000 -        0x12107aff7 +libvtkRenderingQtPython36D-8.2.1.dylib (0) <785FB885-4EE0-3A68-91B2-3F320129B9C0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkRenderingQtPython36D-8.2.1.dylib
           0x121081000 -        0x121088ff7 +vtkTestingRenderingPython.so (0) <3B9D7419-C9A0-3888-9FB6-72349E669D6B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkTestingRenderingPython.so
           0x12108b000 -        0x121098ffb +libvtkTestingRenderingPython36D-8.2.1.dylib (0) <94974E36-2B9D-3398-8CFE-854419BD8CBA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkTestingRenderingPython36D-8.2.1.dylib
           0x12109e000 -        0x1210a9ff7 +vtkViewsInfovisPython.so (0) <3E1F04B7-9F74-3A23-9DF1-1804BB3571A4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkViewsInfovisPython.so
           0x1210ac000 -        0x121118ffb +libvtkViewsInfovisPython36D-8.2.1.dylib (0) <42136498-FB97-33B7-8ED7-FDCF5BA97AC3> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkViewsInfovisPython36D-8.2.1.dylib
           0x12118f000 -        0x1211bbff7 +MRMLCLIPython.so (0) <C6AF6D76-C876-37D0-8889-E6674AE982ED> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/MRMLCLIPython.so
           0x1211be000 -        0x1211f4ff7 +libMRMLCLIPythonD.dylib (0) <724B5C42-3CCE-30C1-9BDA-83B53AC29D56> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLCLIPythonD.dylib
           0x1211fd000 -        0x1213afffb +libMRMLCorePythonD.dylib (0) <129B3426-C9EB-3F5E-AEED-911278614ABE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLCorePythonD.dylib
           0x121484000 -        0x1214afff7 +MRMLCorePython.so (0) <ED63008B-D940-3559-A371-65228807D839> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/MRMLCorePython.so
           0x121532000 -        0x12155fff7 +MRMLDisplayableManagerPython.so (0) <98B3C691-5585-3648-989D-80AF0BE5AFFA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/MRMLDisplayableManagerPython.so
           0x121562000 -        0x1215bcff7 +libMRMLDisplayableManagerPythonD.dylib (0) <CCCA0A02-1036-358C-B3C4-6B29608933C7> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLDisplayableManagerPythonD.dylib
           0x1215df000 -        0x121627ffb +libMRMLLogicPythonD.dylib (0) <5B28A353-2DB4-3D63-A17B-17C398D37EBB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libMRMLLogicPythonD.dylib
           0x12167a000 -        0x1216a6ff7 +MRMLLogicPython.so (0) <8E6224FA-4950-339F-BE66-2B098A3415BB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/MRMLLogicPython.so
           0x1216a9000 -        0x1216c6ff7 +vtkAddonPython.so (0) <8FDFAF7F-2E27-3FC7-A957-E06AE294B6D5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkAddonPython.so
           0x1216c9000 -        0x1216feff7 +libvtkAddonPythonD.dylib (0) <E9D972E5-7FDB-3045-8CE5-BFDB3CCC0D99> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkAddonPythonD.dylib
           0x12170f000 -        0x12172bff7 +vtkSegmentationCorePython.so (0) <33750C7E-06B8-3468-95F8-559DC6F781A7> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkSegmentationCorePython.so
           0x12172e000 -        0x12177cff7 +libvtkSegmentationCorePythonD.dylib (0) <FBC7C216-97CB-3EE6-B3C4-354BD2A6D3B0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkSegmentationCorePythonD.dylib
           0x12179a000 -        0x1217e1ff7 +qMRMLWidgetsPythonQt.so (0) <CD028220-AD00-32DF-A798-EB16AD2A862E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qMRMLWidgetsPythonQt.so
           0x121824000 -        0x121852ff7 +SlicerBaseLogicPython.so (0) <04445DBE-575B-3305-9477-53D13BD261D5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/SlicerBaseLogicPython.so
           0x121855000 -        0x12189afff +libSlicerBaseLogicPythonD.dylib (0) <99E92644-7B80-3D09-A3F5-5B53DBBA2F75> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libSlicerBaseLogicPythonD.dylib
           0x1218eb000 -        0x121923ff3 +qSlicerBaseQTCorePythonQt.so (0) <269A14F4-980D-3F15-A7F6-ACF6D4A0FB23> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qSlicerBaseQTCorePythonQt.so
           0x12192f000 -        0x121974ff7 +qSlicerBaseQTGUIPythonQt.so (0) <B2391965-758E-386B-97B8-2D54B577162C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qSlicerBaseQTGUIPythonQt.so
           0x12199a000 -        0x1219d3ffb +qSlicerBaseQTAppPythonQt.so (0) <23AD66A6-0EA0-3601-8A58-F9723D8075A5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qSlicerBaseQTAppPythonQt.so
           0x1219da000 -        0x121a1aff7 +qSlicerBaseQTCLIPython.so (0) <A99410C5-F7EB-37A0-8FC8-C0D1BF279DFF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qSlicerBaseQTCLIPython.so
           0x121a1d000 -        0x121a60ff3 +libqSlicerBaseQTCLIPythonD.dylib (0) <E28CFA34-1E03-3905-A1A8-1A03C1F0EB4A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libqSlicerBaseQTCLIPythonD.dylib
           0x121a65000 -        0x121a9dff3 +qSlicerBaseQTCLIPythonQt.so (0) <800974D4-6646-36AF-8CC3-D77A8A41B59A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qSlicerBaseQTCLIPythonQt.so
           0x12201b000 -        0x12201fff7 +_struct.so (0) <46113CF0-B343-3D25-AFFF-E162D8CA5AFA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_struct.so
           0x122028000 -        0x12202bff3 +select.so (0) <C74C9ED9-7FAC-38E6-88AE-7578C49E1DBB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/select.so
           0x122031000 -        0x122037fff +math.so (0) <1E809877-D4E7-3C59-94D4-DEE0AA1E09C2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/math.so
           0x135a51000 -        0x135a88ff3 +libqSlicerBaseQTGUIStylePlugins.so (0) <A499B4EC-D044-3E31-AAA3-85BCFBB7242B> /Applications/Slicer_4.13_11_12.app/Contents/lib/QtPlugins/styles/libqSlicerBaseQTGUIStylePlugins.so
           0x13600c000 -        0x13600dffb +libITKColormap-5.1.1.dylib (0) <DEB5AC5F-54A6-366A-AE4D-6000E896985D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKColormap-5.1.1.dylib
           0x136010000 -        0x136015ff3 +libITKConvolution-5.1.1.dylib (0) <F8B33C1A-8A61-363C-B0CC-4AE51E9D19D8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKConvolution-5.1.1.dylib
           0x136018000 -        0x136019ff3 +libITKDenoising-5.1.1.dylib (0) <BEF4983F-0743-3BB2-A223-2FC8CACA4E29> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKDenoising-5.1.1.dylib
           0x1368da000 -        0x1368e3fff +libITKIOCSV-5.1.1.dylib (0) <19D192C9-F484-3B23-9180-8B3BB16FBDF1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOCSV-5.1.1.dylib
           0x1368ec000 -        0x1368f1ff3 +libITKRegistrationMethodsv4-5.1.1.dylib (0) <7FE5E268-2D61-3CEC-940D-0083113D23A6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKRegistrationMethodsv4-5.1.1.dylib
           0x136a3a000 -        0x136a3d047  libobjc-trampolines.dylib (787.1) <88F9B648-C455-36F8-BBB9-7D1A9F57D073> /usr/lib/libobjc-trampolines.dylib
           0x136c63000 -        0x136d05ff7 +libqSlicerAnnotationsModule.dylib (0) <158F792F-B80D-36B9-8196-B54D69760665> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerAnnotationsModule.dylib
           0x136d26000 -        0x136d7efff +libvtkSlicerAnnotationsModuleMRMLDisplayableManager.dylib (0) <9097FC28-A0D8-3AB3-842B-17E15C4EB2E2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerAnnotationsModuleMRMLDisplayableManager.dylib
           0x136d95000 -        0x136e0dff7 +libqSlicerAnnotationsModuleWidgets.dylib (0) <4066CB57-6872-3310-8667-B0EF8011CC51> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerAnnotationsModuleWidgets.dylib
           0x136e21000 -        0x136e6effb +libvtkSlicerAnnotationsModuleVTKWidgets.dylib (0) <480BE556-67F6-3B72-A63D-3BED2CAA71DC> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerAnnotationsModuleVTKWidgets.dylib
           0x136e8a000 -        0x136edefff +libvtkSlicerAnnotationsModuleLogic.dylib (0) <61CF3C65-9DCB-393B-9BD3-3138E12F5AEE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerAnnotationsModuleLogic.dylib
           0x136eeb000 -        0x136f53ffb +libvtkSlicerAnnotationsModuleMRML.dylib (0) <00F90AE6-09A7-3C83-8669-B6541D15059F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerAnnotationsModuleMRML.dylib
           0x136f88000 -        0x136ff5ff7 +libqSlicerCamerasModule.dylib (0) <CD8DD635-9BF5-3B34-9F8E-C090A7E227B4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerCamerasModule.dylib
           0x136fff000 -        0x137036ff7 +libvtkSlicerCamerasModuleLogic.dylib (0) <6ADF257A-3F6A-304B-AF94-BC59B818CCA5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerCamerasModuleLogic.dylib
           0x13703b000 -        0x1370adfff +libqSlicerColorsModule.dylib (0) <74A2A001-9D2C-343F-8F30-D26B3574C14B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerColorsModule.dylib
           0x1370bc000 -        0x1370f6ffb +libvtkSlicerColorsModuleVTKWidgets.dylib (0) <F1426A2E-9435-3181-B930-6D3DB4688BD9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerColorsModuleVTKWidgets.dylib
           0x1370ff000 -        0x137138ff7 +libvtkSlicerColorsModuleLogic.dylib (0) <C19626C4-F90A-30BF-BABF-D29E3DB8ADB2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerColorsModuleLogic.dylib
           0x13713e000 -        0x1371c5ff3 +libqSlicerCropVolumeModule.dylib (0) <4300EBDC-E9F8-3E33-B73E-EF8BAF5C1C72> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerCropVolumeModule.dylib
           0x1371d4000 -        0x137223ffb +libvtkSlicerCropVolumeModuleLogic.dylib (0) <729E0CF9-5A50-362E-857C-725D59B06894> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerCropVolumeModuleLogic.dylib
           0x13722d000 -        0x13727dffb +libvtkSlicerVolumesModuleLogic.dylib (0) <A554CFDC-0B04-3F29-944A-3DA123357F2A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerVolumesModuleLogic.dylib
           0x137289000 -        0x1372c8fff +libvtkSlicerCropVolumeModuleMRML.dylib (0) <9C37B3C1-0818-3280-94BE-9FA7047E564E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerCropVolumeModuleMRML.dylib
           0x1372cf000 -        0x1372ebff3 +libITKDICOMParser-5.1.1.dylib (0) <32307980-DA54-3B06-BC69-83B3EF49D850> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKDICOMParser-5.1.1.dylib
           0x1372fb000 -        0x137316fff +libITKIOBruker-5.1.1.dylib (0) <6EE77772-3B92-3538-87C4-6E4B890349B8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOBruker-5.1.1.dylib
           0x137328000 -        0x13734efff +libITKIOHDF5-5.1.1.dylib (0) <67BE4D1A-9182-3244-8B38-CF469891BBA9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOHDF5-5.1.1.dylib
           0x137369000 -        0x13737cffb +libITKIOJPEG2000-5.1.1.dylib (0) <314783DB-9627-318B-9F59-F99BC461004B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOJPEG2000-5.1.1.dylib
           0x137387000 -        0x1373a5fff +libITKOptimizersv4-5.1.1.dylib (0) <8C28F90B-9162-3A8E-BCFE-7B6886932976> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKOptimizersv4-5.1.1.dylib
           0x1373ba000 -        0x1373bffff +libitklbfgs-5.1.1.dylib (0) <19B7F7A1-847B-3559-B151-0C9774EE031E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitklbfgs-5.1.1.dylib
           0x1373c2000 -        0x1373dfff3 +libITKReview-5.1.1.dylib (0) <530B07F4-6337-3AFC-85C9-054AD2541293> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKReview-5.1.1.dylib
           0x1373ec000 -        0x1373edffb +libITKFastMarching-5.1.1.dylib (0) <BCD3F130-109D-3797-818E-3D86661FFAFB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKFastMarching-5.1.1.dylib
           0x1373f0000 -        0x1373f6fff +libITKPolynomials-5.1.1.dylib (0) <F7690E77-D6A2-3E83-B998-20003D225B00> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKPolynomials-5.1.1.dylib
           0x1373fc000 -        0x137401ffb +libITKBiasCorrection-5.1.1.dylib (0) <935622BF-2109-350D-8945-D8A7D6530DA6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKBiasCorrection-5.1.1.dylib
           0x137405000 -        0x137408ff3 +libITKFFT-5.1.1.dylib (0) <9D0ABA9F-AB67-3F25-89AD-82ACBEEB2227> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKFFT-5.1.1.dylib
           0x13740b000 -        0x137410ff7 +libITKDeformableMesh-5.1.1.dylib (0) <097997F2-B237-32EF-A31F-AAD424126A41> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKDeformableMesh-5.1.1.dylib
           0x137413000 -        0x137414ffb +libITKDiffusionTensorImage-5.1.1.dylib (0) <52F9553D-7778-3B16-907C-FDA1156532D7> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKDiffusionTensorImage-5.1.1.dylib
           0x137417000 -        0x13741cff3 +libITKPDEDeformableRegistration-5.1.1.dylib (0) <582B3DF4-E804-3CDD-B7D2-EF7671021AC9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKPDEDeformableRegistration-5.1.1.dylib
           0x13741f000 -        0x137462ff3 +libITKOptimizers-5.1.1.dylib (0) <877452FD-FE9C-3B9F-8BD5-3E5FD6C7AEE2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKOptimizers-5.1.1.dylib
           0x137483000 -        0x1374aaff7 +libitkopenjpeg-5.1.1.dylib (0) <17E50317-139F-30C0-A435-CA38F8E4944D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkopenjpeg-5.1.1.dylib
           0x1374b2000 -        0x1374baff7 +libITKIOSiemens-5.1.1.dylib (0) <80A17CCB-2D99-3165-870E-4AB2E6096CEF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOSiemens-5.1.1.dylib
           0x1374c3000 -        0x1374ceff3 +libITKKLMRegionGrowing-5.1.1.dylib (0) <100317F9-44D1-351E-81DA-8E4AB101ACEB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKKLMRegionGrowing-5.1.1.dylib
           0x1374d6000 -        0x1374daffb +libITKMarkovRandomFieldsClassifiers-5.1.1.dylib (0) <F4AC4493-31AA-3314-BF70-FCE738174822> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKMarkovRandomFieldsClassifiers-5.1.1.dylib
           0x1374dd000 -        0x1374e1fff +libITKQuadEdgeMeshFiltering-5.1.1.dylib (0) <8280AB10-FC91-38AD-BA52-59BBDCCEF00A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKQuadEdgeMeshFiltering-5.1.1.dylib
           0x1374e4000 -        0x1374eaffb +libITKWatersheds-5.1.1.dylib (0) <50C6A766-534B-3FDD-B47F-C2EEF4E20FAF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKWatersheds-5.1.1.dylib
           0x1374ef000 -        0x137623ffb +libITKTestKernel-5.1.1.dylib (0) <A2A1C4F6-310D-30B4-958E-26FBF1A1D546> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKTestKernel-5.1.1.dylib
           0x1376b0000 -        0x1376c0fff +libITKIOMeshBYU-5.1.1.dylib (0) <DAEDC399-DE0D-3E0D-A67B-7682E86C33E3> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshBYU-5.1.1.dylib
           0x1376cb000 -        0x1376e6ff3 +libITKIOMeshFreeSurfer-5.1.1.dylib (0) <4F0D30EE-4F40-3266-961C-F2B72FD17C9F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshFreeSurfer-5.1.1.dylib
           0x1376f4000 -        0x13770dff7 +libITKIOMeshGifti-5.1.1.dylib (0) <36039342-7B12-3BEA-988F-BED97E4582B7> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshGifti-5.1.1.dylib
           0x137719000 -        0x13773ffff +libITKgiftiio-5.1.1.dylib (0) <782B595E-A0F0-33E4-81F3-B5DE7DAC6E7C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKgiftiio-5.1.1.dylib
           0x137745000 -        0x137759fff +libITKIOMeshOBJ-5.1.1.dylib (0) <DB72EC98-1857-3C9D-9913-8ECA656FD778> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshOBJ-5.1.1.dylib
           0x137766000 -        0x13777cff7 +libITKIOMeshOFF-5.1.1.dylib (0) <AF5BE233-0BBC-3182-B36D-8CBBFE3DDF75> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshOFF-5.1.1.dylib
           0x137789000 -        0x137838ff7 +libITKIOMeshVTK-5.1.1.dylib (0) <0EDE98AE-D574-3923-9646-B8E1291728F4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshVTK-5.1.1.dylib
           0x137850000 -        0x137859ffb +libITKIOMeshBase-5.1.1.dylib (0) <B9423F0B-CEF9-3CD2-BE5D-D0A73D84844F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKIOMeshBase-5.1.1.dylib
           0x137862000 -        0x137866ff7 +libITKQuadEdgeMesh-5.1.1.dylib (0) <F314EC78-B4EC-3EC8-9987-F536D8EC8314> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKQuadEdgeMesh-5.1.1.dylib
           0x13786a000 -        0x137877ff3 +libITKVideoIO-5.1.1.dylib (0) <1EAE5634-DCD3-321D-8226-5A099DF39AAD> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKVideoIO-5.1.1.dylib
           0x137882000 -        0x137890ff7 +libITKVideoCore-5.1.1.dylib (0) <A94B43B9-571C-3848-9ED3-C4A09FE3C3FB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKVideoCore-5.1.1.dylib
           0x13789c000 -        0x137904ff3 +libITKVtkGlue-5.1.1.dylib (0) <E958DD69-54F7-33CA-B2B6-7D83FEC0EBA0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKVtkGlue-5.1.1.dylib
           0x13795a000 -        0x137964ff3 +libitkSimpleITKFilters-5.1.1.dylib (0) <6681470C-0EEA-3071-9B68-3752E69F5B8C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libitkSimpleITKFilters-5.1.1.dylib
           0x137968000 -        0x13796cff3 +libITKImageFeature-5.1.1.dylib (0) <F74BC381-3F1D-31C7-AE80-A338435ABD8D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libITKImageFeature-5.1.1.dylib
           0x13796f000 -        0x1379f6ff7 +libvtkSlicerMarkupsModuleMRML.dylib (0) <C0459684-01F8-3B3C-A98D-723D402BB19D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMarkupsModuleMRML.dylib
           0x137a30000 -        0x137abbff3 +libqSlicerDataModule.dylib (0) <04E78B31-05F8-395D-8A7E-A9B51E243AAF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDataModule.dylib
           0x137ad1000 -        0x137b18ff3 +libvtkSlicerDataModuleLogic.dylib (0) <659224F0-32C7-38DC-A976-AD2992232B97> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDataModuleLogic.dylib
           0x137b1e000 -        0x137bdcffb +libqSlicerSubjectHierarchyModuleWidgets.dylib (0) <2B81BE68-0CBC-3A89-AF35-5049B29D4FEB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSubjectHierarchyModuleWidgets.dylib
           0x137c15000 -        0x137c51ff3 +libvtkSlicerSubjectHierarchyModuleLogic.dylib (0) <CC2C3282-37D3-3653-8322-707DCDE2180F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSubjectHierarchyModuleLogic.dylib
           0x137c58000 -        0x137cdefff +libqSlicerTerminologiesModuleWidgets.dylib (0) <22E19CEF-8C9D-3B0C-B87B-795C8062A7E8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTerminologiesModuleWidgets.dylib
           0x137cf3000 -        0x137d62ffb +libvtkSlicerTerminologiesModuleLogic.dylib (0) <A5575E5C-A4D1-3913-BF88-726C28B29703> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTerminologiesModuleLogic.dylib
           0x137d72000 -        0x137df0fff +libqSlicerDataStoreModule.dylib (0) <CACFFC64-9BF6-3AFC-9882-3B49AC74021A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDataStoreModule.dylib
           0x137df9000 -        0x137e7bfff +libqSlicerDataStoreModuleWidgets.dylib (0) <B106E864-68F5-3C50-B972-2532B8B0C911> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDataStoreModuleWidgets.dylib
           0x137e89000 -        0x137ed1ff3 +libvtkSlicerDataStoreModuleLogic.dylib (0) <4FC40038-6DC4-3F8B-9F3B-59B0B8DEC812> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDataStoreModuleLogic.dylib
           0x137ed7000 -        0x137f51ff7 +libqSlicerDoubleArraysModule.dylib (0) <1BC61779-B32D-3B57-99B6-1377C6924E7A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDoubleArraysModule.dylib
           0x137f57000 -        0x137f9efff +libvtkSlicerDoubleArraysModuleLogic.dylib (0) <3C2B707C-E907-3970-889B-8C97B1A3CD89> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDoubleArraysModuleLogic.dylib
           0x137fa3000 -        0x138029ff3 +libqSlicerDynamicModelerModule.dylib (0) <FBFE0E06-FEB2-3791-B96D-821A833C4E6F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDynamicModelerModule.dylib
           0x13803a000 -        0x1380b4ff7 +libqSlicerDynamicModelerSubjectHierarchyPlugins.dylib (0) <DB1D23E7-1459-3B8D-8BCD-620E6D0530C4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDynamicModelerSubjectHierarchyPlugins.dylib
           0x1380bb000 -        0x13813cffb +libqSlicerMarkupsModuleWidgets.dylib (0) <48EE4693-C1E2-3FD0-B919-276A5F146DA6> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerMarkupsModuleWidgets.dylib
           0x138152000 -        0x1381a4ffb +libvtkSlicerDynamicModelerModuleLogic.dylib (0) <04101DCC-EBD7-3B94-BCEA-122E4E243861> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDynamicModelerModuleLogic.dylib
           0x1381b6000 -        0x1381deff7 +libvtkSlicerDynamicModelerModuleMRML.dylib (0) <848DE217-D58A-3C6E-A455-428115AB7C52> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDynamicModelerModuleMRML.dylib
           0x1381e4000 -        0x138228fff +libvtkSlicerMarkupsModuleLogic.dylib (0) <E5438ED9-D2E9-35B9-AEE2-BF754466CDF8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMarkupsModuleLogic.dylib
           0x138233000 -        0x1382defff +libqSlicerMarkupsModule.dylib (0) <9660AB5F-7777-3E1E-8401-FB92E04918CC> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerMarkupsModule.dylib
           0x1382fc000 -        0x13833cfff +libvtkSlicerMarkupsModuleMRMLDisplayableManager.dylib (0) <A564C2BD-8689-3F25-9A8E-C0B001262960> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMarkupsModuleMRMLDisplayableManager.dylib
           0x138348000 -        0x1383bafff +libqSlicerMarkupsSubjectHierarchyPlugins.dylib (0) <935FB934-A3EA-39AF-BB06-C8E5F737F630> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerMarkupsSubjectHierarchyPlugins.dylib
           0x1383c2000 -        0x13842dffb +libvtkSlicerMarkupsModuleVTKWidgets.dylib (0) <513C92DC-C8EB-343C-AE8E-1101594E1E1C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMarkupsModuleVTKWidgets.dylib
           0x138457000 -        0x1384e3ff3 +libqSlicerModelsModule.dylib (0) <117AF496-406A-3A6B-A0DF-3D2EEBC0CFD9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerModelsModule.dylib
           0x1384f4000 -        0x13856affb +libqSlicerModelsModuleWidgets.dylib (0) <8D64FDAE-4377-3466-B1D2-1196318D3D2C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerModelsModuleWidgets.dylib
           0x138576000 -        0x1385c1ffb +libvtkSlicerModelsModuleLogic.dylib (0) <8912FD54-5EF4-3E60-ABC3-02BF116F0B21> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerModelsModuleLogic.dylib
           0x1385c9000 -        0x138636ff3 +libqSlicerModelsSubjectHierarchyPlugins.dylib (0) <978D9C68-4E34-35EE-AE95-17D9DE786A31> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerModelsSubjectHierarchyPlugins.dylib
           0x13863d000 -        0x1386b7ff7 +libqSlicerMultiVolumeExplorerModule.dylib (0) <330B92B1-F0C8-3F7B-B6AB-1D3A2A05D0C0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerMultiVolumeExplorerModule.dylib
           0x1386bd000 -        0x138722ffb +libvtkSlicerMultiVolumeExplorerModuleLogic.dylib (0) <D471BC28-A175-38CF-BD83-845AB079F7C8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMultiVolumeExplorerModuleLogic.dylib
           0x13873e000 -        0x13876aff3 +libvtkSlicerMultiVolumeExplorerModuleMRML.dylib (0) <82123382-715B-339D-9D9E-3A78C0CD717E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMultiVolumeExplorerModuleMRML.dylib
           0x13877d000 -        0x1387fdfff +libqSlicerPlotsModule.dylib (0) <916BB97D-F1E7-306A-9467-8A853635846E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlotsModule.dylib
           0x138808000 -        0x138883ff3 +libqSlicerPlotsSubjectHierarchyPlugins.dylib (0) <411EDAE2-6597-34ED-9B15-4A45230CA068> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlotsSubjectHierarchyPlugins.dylib
           0x138889000 -        0x13890fff7 +libqSlicerPlotsModuleWidgets.dylib (0) <477D0CA7-06C0-3154-BD7E-3FAED1AB678B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlotsModuleWidgets.dylib
           0x13891c000 -        0x138963ff7 +libvtkSlicerPlotsModuleLogic.dylib (0) <0911B07E-8A0D-399B-AA43-7A58B64E0BB5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPlotsModuleLogic.dylib
           0x138968000 -        0x1389eaff7 +libqSlicerReformatModule.dylib (0) <3B6BBED4-6F28-373B-B0C0-723AA776D676> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerReformatModule.dylib
           0x1389f8000 -        0x138a3fff3 +libvtkSlicerReformatModuleLogic.dylib (0) <42D6E257-B3CF-3FA1-A990-E54AE1596B08> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerReformatModuleLogic.dylib
           0x138a44000 -        0x138abcfff +libqSlicerSceneViewsModule.dylib (0) <DB22F642-A1A9-3FA3-832D-5A033CA935AB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSceneViewsModule.dylib
           0x138acb000 -        0x138b05ff7 +libvtkSlicerSceneViewsModuleLogic.dylib (0) <6E88BD3E-BD19-3411-A980-3988852F3513> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSceneViewsModuleLogic.dylib
           0x138b0b000 -        0x138b76ffb +libqSlicerSceneViewsSubjectHierarchyPlugins.dylib (0) <05E09051-91DA-36E5-AF66-04F47D97908E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSceneViewsSubjectHierarchyPlugins.dylib
           0x138b7c000 -        0x138c0affb +libqSlicerSegmentationsModule.dylib (0) <7FE46AA7-1B0A-37CF-8210-FBA32376EB1D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSegmentationsModule.dylib
           0x138c2b000 -        0x138cfcff3 +libqSlicerSegmentationsModuleWidgets.dylib (0) <C8E4C9D3-9808-350B-B59A-427E5DC9E893> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSegmentationsModuleWidgets.dylib
           0x138d39000 -        0x138db7fff +libqSlicerSegmentationsSubjectHierarchyPlugins.dylib (0) <0AE58636-B619-34E6-A5F2-7611527C970C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSegmentationsSubjectHierarchyPlugins.dylib
           0x138dc4000 -        0x138e5fff7 +libqSlicerSegmentationsEditorEffects.dylib (0) <12F8CAB9-EBB4-3AAD-BEC5-F0BB7C6A6E27> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSegmentationsEditorEffects.dylib
           0x138e82000 -        0x138ecfff3 +libvtkSlicerSegmentationsModuleMRMLDisplayableManager.dylib (0) <2D5401EF-16A8-3FFE-9052-BB471CDC8E5F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSegmentationsModuleMRMLDisplayableManager.dylib
           0x138ee3000 -        0x138fd6ffb +libvtkSlicerSegmentationsModuleLogic.dylib (0) <7B4821A2-C423-3CDC-9137-8DAED89AD990> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSegmentationsModuleLogic.dylib
           0x139002000 -        0x13903dff7 +libvtkSlicerSegmentationsModuleMRML.dylib (0) <17E84F96-99C5-3150-9B9A-BA1E7DE65A4C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSegmentationsModuleMRML.dylib
           0x139045000 -        0x1390dbff7 +libqSlicerSequencesModule.dylib (0) <973C3B84-C900-33D8-BCAB-24109BFE4FA1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSequencesModule.dylib
           0x1390f4000 -        0x139177fff +libqSlicerSequencesModuleWidgets.dylib (0) <0AE6017B-DFD0-3476-AFAE-E0DB04BF15E0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSequencesModuleWidgets.dylib
           0x139183000 -        0x1391d1ffb +libvtkSlicerSequencesModuleLogic.dylib (0) <16946F20-5A03-345C-92DB-FC7AE89B0C58> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSequencesModuleLogic.dylib
           0x1391db000 -        0x139237ff3 +libvtkSlicerSequencesModuleMRML.dylib (0) <4019C2CF-5F33-3768-9786-CFD2E9A947B4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSequencesModuleMRML.dylib
           0x13924c000 -        0x1392bbff3 +libqSlicerSubjectHierarchyModule.dylib (0) <8F656166-916A-3173-9135-E440AFAA788F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSubjectHierarchyModule.dylib
           0x1392c7000 -        0x13934bffb +libqSlicerTablesModule.dylib (0) <BADAD0F5-3E7A-3BD6-9984-D7734637B4D9> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTablesModule.dylib
           0x139359000 -        0x1393d3ff7 +libqSlicerTablesSubjectHierarchyPlugins.dylib (0) <EA49C342-F148-3729-9455-EEC1F6D18485> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTablesSubjectHierarchyPlugins.dylib
           0x1393d9000 -        0x13945bff7 +libqSlicerTablesModuleWidgets.dylib (0) <5D8F5E86-10D1-3DFC-B9F6-CAEC6B5F5C45> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTablesModuleWidgets.dylib
           0x139464000 -        0x1394acffb +libvtkSlicerTablesModuleLogic.dylib (0) <C3266C2A-BA77-369A-A691-A484024A8F02> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTablesModuleLogic.dylib
           0x1394b1000 -        0x13951dff3 +libqSlicerTerminologiesModule.dylib (0) <36DC8C1E-40C0-30AF-AD41-F65E02E8748A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTerminologiesModule.dylib
           0x139527000 -        0x139597ffb +libqSlicerTextsModule.dylib (0) <681C908A-DD99-37C9-B754-792066A58972> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTextsModule.dylib
           0x1395a2000 -        0x13960dffb +libqSlicerTextsModuleWidgets.dylib (0) <2939B242-92A4-3D94-AE4D-5D99F53370E1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTextsModuleWidgets.dylib
           0x139615000 -        0x13964cff7 +libvtkSlicerTextsModuleLogic.dylib (0) <1E8EA707-8F36-337D-9F24-927A69A6FDED> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTextsModuleLogic.dylib
           0x139650000 -        0x1396bcfff +libqSlicerTextsSubjectHierarchyPlugins.dylib (0) <2630DA2D-C4FE-3EC4-95FF-BD32AE9737C5> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTextsSubjectHierarchyPlugins.dylib
           0x1396c4000 -        0x13973eff7 +libqSlicerTransformsModule.dylib (0) <825E7884-48F7-3ADC-9AD9-D4DBB16E4956> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTransformsModule.dylib
           0x13974e000 -        0x139790ffb +libvtkSlicerTransformsModuleMRMLDisplayableManager.dylib (0) <AFA6039D-3F09-3D9D-8EE7-325910AC73E8> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTransformsModuleMRMLDisplayableManager.dylib
           0x1397a0000 -        0x1397e2ff3 +libvtkSlicerTransformsModuleLogic.dylib (0) <E0681ADE-9F2D-300A-94DA-742BB0DF1020> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTransformsModuleLogic.dylib
           0x1397ec000 -        0x139868fff +libqSlicerTransformsModuleWidgets.dylib (0) <B95B2854-02F8-3C6D-ABE5-7E0271C39940> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTransformsModuleWidgets.dylib
           0x139875000 -        0x1398e2ff3 +libqSlicerTransformsSubjectHierarchyPlugins.dylib (0) <7C0CDAF6-35AC-330D-9606-DAA84095874B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTransformsSubjectHierarchyPlugins.dylib
           0x1398e9000 -        0x139958ff7 +libqSlicerUnitsModule.dylib (0) <DDDB9FC6-8566-3A22-A74E-E54D68B6CF7D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerUnitsModule.dylib
           0x139962000 -        0x1399d2ff7 +libqSlicerUnitsModuleWidgets.dylib (0) <1AF45894-D938-3442-95CC-24FC36215639> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerUnitsModuleWidgets.dylib
           0x1399db000 -        0x139a15ffb +libvtkSlicerUnitsModuleLogic.dylib (0) <BE634753-49E3-3315-A694-E7B1ABDAEDA4> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerUnitsModuleLogic.dylib
           0x139a1a000 -        0x139a9aff7 +libqSlicerViewControllersModule.dylib (0) <D9C490A6-2E86-3CA0-BA68-AC3C6C1525F1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerViewControllersModule.dylib
           0x139aa8000 -        0x139aefffb +libvtkSlicerViewControllersModuleLogic.dylib (0) <01025DDB-50EB-3B97-A0D4-8259F4B625F0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerViewControllersModuleLogic.dylib
           0x139af4000 -        0x139bbfff7 +libqSlicerVolumeRenderingModule.dylib (0) <EC456D70-C702-31F1-BD29-A9E046BD3A1E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumeRenderingModule.dylib
           0x139bcd000 -        0x139c1efff +libvtkSlicerVolumeRenderingModuleMRMLDisplayableManager.dylib (0) <9053DFCE-C9CA-3948-B677-724E3832D6AB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerVolumeRenderingModuleMRMLDisplayableManager.dylib
           0x139c2b000 -        0x139cbcff3 +libqSlicerVolumeRenderingModuleWidgets.dylib (0) <2BB6E04A-A610-3F92-BEFA-1FF37D28D5AF> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumeRenderingModuleWidgets.dylib
           0x139cdc000 -        0x139d58fff +libqSlicerVolumeRenderingSubjectHierarchyPlugins.dylib (0) <7ED966FF-3D01-3F4B-8795-E78BE3D8C331> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumeRenderingSubjectHierarchyPlugins.dylib
           0x139d5f000 -        0x139db0ff7 +libvtkSlicerVolumeRenderingModuleLogic.dylib (0) <F08AFB87-5D0C-3E5A-91DF-AC334C92EA07> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerVolumeRenderingModuleLogic.dylib
           0x139dbb000 -        0x139e11ffb +libvtkSlicerVolumeRenderingModuleMRML.dylib (0) <128F794C-8562-3C87-9D9D-FB5CC6E0913F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerVolumeRenderingModuleMRML.dylib
           0x139e2c000 -        0x139e53ff3 +libjsoncpp.0.dylib (0) <3B4784CC-5EEB-353C-8BB9-D3015A0F1CCB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libjsoncpp.0.dylib
           0x139e66000 -        0x139effff3 +libqSlicerVolumesModule.dylib (0) <8242FC7B-595A-34BF-8BB7-29543B8C29EE> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumesModule.dylib
           0x139f10000 -        0x139fa1fff +libqSlicerVolumesModuleWidgets.dylib (0) <FD8745DA-32CB-3BE3-B0B5-00E97062B8BC> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumesModuleWidgets.dylib
           0x139fb5000 -        0x13a029ff7 +libqSlicerVolumesSubjectHierarchyPlugins.dylib (0) <71E78610-3B88-337A-9213-66E654CEAA53> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumesSubjectHierarchyPlugins.dylib
           0x13a034000 -        0x13a0a9ffb +libqSlicerWelcomeModule.dylib (0) <E28B1D2F-48D4-3D6A-B03A-06A47CB80C36> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libqSlicerWelcomeModule.dylib
           0x13a0b5000 -        0x13a13ffff +libqSlicerMarkupsToModelModule.dylib (0) <6824B5FE-41CD-3C06-88B3-DD0DB2B494E4> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/MarkupsToModel/lib/Slicer-4.13/qt-loadable-modules/libqSlicerMarkupsToModelModule.dylib
           0x13a14d000 -        0x13a19cffb +libvtkSlicerMarkupsToModelModuleLogic.dylib (0) <3C593826-C0A6-3AC1-B9CC-031A3B5F5476> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/MarkupsToModel/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMarkupsToModelModuleLogic.dylib
           0x13a1a5000 -        0x13a1eaff7 +libvtkSlicerMarkupsToModelModuleMRML.dylib (0) <09B84520-0B20-35F6-B735-7B9A5DA685A3> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/MarkupsToModel/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerMarkupsToModelModuleMRML.dylib
           0x13a1f5000 -        0x13a278ff7 +libqSlicerSkeletalRepresentationInitializerModule.dylib (0) <68F9A3DC-3420-33B0-A232-A129629622A6> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SkeletalRepresentation/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSkeletalRepresentationInitializerModule.dylib
           0x13a283000 -        0x13a301fff +libqSlicerSkeletalRepresentationInitializerModuleWidgets.dylib (0) <65DCF440-0569-324F-93A2-EB1BA8A93850> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SkeletalRepresentation/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSkeletalRepresentationInitializerModuleWidgets.dylib
           0x13a307000 -        0x13a369fff +libvtkSlicerSkeletalRepresentationInitializerModuleLogic.dylib (0) <1AFCD06D-9BBC-381A-851A-A6E1DE74985F> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SkeletalRepresentation/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSkeletalRepresentationInitializerModuleLogic.dylib
           0x13a37d000 -        0x13a3fcfff +libqSlicerGeUsMovieReaderModule.dylib (0) <1E543673-70CE-3F05-90CA-E179964B7552> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerHeart/lib/Slicer-4.13/qt-loadable-modules/libqSlicerGeUsMovieReaderModule.dylib
           0x13a401000 -        0x13a44eff7 +libvtkSlicerGeUsMovieReaderModuleLogic.dylib (0) <5352BE3D-751A-38C1-90B8-A2E4F2DFCFB8> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerHeart/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerGeUsMovieReaderModuleLogic.dylib
           0x13a457000 -        0x13a4c4ffb +libqSlicerKretzFileReaderModule.dylib (0) <9B64E1A0-42A3-32BE-B948-23679DB626CF> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerHeart/lib/Slicer-4.13/qt-loadable-modules/libqSlicerKretzFileReaderModule.dylib
           0x13a4d2000 -        0x13a50efff +libvtkSlicerKretzFileReaderLogic.dylib (0) <4856FAC5-4F5F-3FC9-9C83-AC6606A0E6EA> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerHeart/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerKretzFileReaderLogic.dylib
           0x13a515000 -        0x13a595ff7 +libqSlicerBreachWarningModule.dylib (0) <D73158A5-462B-35C8-A75C-0511F402284A> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerBreachWarningModule.dylib
           0x13a5a2000 -        0x13a5efff3 +libvtkSlicerBreachWarningModuleLogic.dylib (0) <830486CB-2640-3650-978F-BD0D3AD139BE> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerBreachWarningModuleLogic.dylib
           0x13a5f6000 -        0x13a642ff3 +libvtkSlicerBreachWarningModuleMRML.dylib (0) <BF345FE8-2E78-3221-8F60-1DB4C8A0BD4C> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerBreachWarningModuleMRML.dylib
           0x13a64b000 -        0x13a6cdfff +libqSlicerCollectPointsModule.dylib (0) <7307FA2D-64D9-36F9-806E-6B85F05D83BB> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerCollectPointsModule.dylib
           0x13a6da000 -        0x13a725ffb +libvtkSlicerCollectPointsModuleLogic.dylib (0) <AAB23934-8DF8-3C70-A95B-82E5155E922E> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerCollectPointsModuleLogic.dylib
           0x13a72e000 -        0x13a758ff7 +libvtkSlicerCollectPointsModuleMRML.dylib (0) <DFE6FED0-699A-34D4-A23F-F1C1A43B117D> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerCollectPointsModuleMRML.dylib
           0x13a761000 -        0x13a7e0ffb +libqSlicerCreateModelsModule.dylib (0) <9790C7E6-B446-3A77-A571-A6F4CC793651> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerCreateModelsModule.dylib
           0x13a7ea000 -        0x13a833ffb +libvtkSlicerCreateModelsModuleLogic.dylib (0) <0BA3CDD5-1668-3DF5-B41F-6D741CA5219C> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerCreateModelsModuleLogic.dylib
           0x13a838000 -        0x13a8bcffb +libqSlicerFiducialRegistrationWizardModule.dylib (0) <198F2889-0542-31D9-A138-CEA4886925C1> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerFiducialRegistrationWizardModule.dylib
           0x13a8cc000 -        0x13a949ff7 +libqSlicerFiducialRegistrationWizardModuleWidgets.dylib (0) <B7795505-150C-3315-BAF5-67CBFC3DFE33> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerFiducialRegistrationWizardModuleWidgets.dylib
           0x13a951000 -        0x13a9b0ffb +libvtkSlicerFiducialRegistrationWizardModuleLogic.dylib (0) <840EECC1-1ACB-3F3B-95BD-DC6EDC81FE71> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerFiducialRegistrationWizardModuleLogic.dylib
           0x13a9bf000 -        0x13aa00fff +libvtkSlicerFiducialRegistrationWizardModuleMRML.dylib (0) <D4B82540-6AB2-322E-B60B-DEC3E97A9A23> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerFiducialRegistrationWizardModuleMRML.dylib
           0x13aa0a000 -        0x13aa8bfff +libqSlicerPathExplorerModule.dylib (0) <09750380-0564-3DB1-8F5A-72D2AC264D6D> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPathExplorerModule.dylib
           0x13aa97000 -        0x13ab15ff7 +libqSlicerPathExplorerModuleWidgets.dylib (0) <012162D5-A15D-3FCC-92EB-A20EC698EC75> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPathExplorerModuleWidgets.dylib
           0x13ab20000 -        0x13ab9aff3 +libqSlicerPathExplorerSubjectHierarchyPlugins.dylib (0) <38DEB625-5191-3249-94AC-1FD2549DD649> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPathExplorerSubjectHierarchyPlugins.dylib
           0x13aba0000 -        0x13abe8ff7 +libvtkSlicerPathExplorerModuleLogic.dylib (0) <16120480-799D-3517-B38F-9EA4FF028AD4> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPathExplorerModuleLogic.dylib
           0x13abee000 -        0x13ac36ff7 +libvtkSlicerPathExplorerModuleMRML.dylib (0) <8D62F2C1-EEF8-32B5-A09C-9CB6C2951FD3> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPathExplorerModuleMRML.dylib
           0x13ac42000 -        0x13acc4ffb +libqSlicerPivotCalibrationModule.dylib (0) <4D847C78-35F8-32EA-AB96-4D7F28254D3B> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPivotCalibrationModule.dylib
           0x13acd2000 -        0x13ad1dfff +libvtkSlicerPivotCalibrationModuleLogic.dylib (0) <BD9CBFC4-5313-3224-8A6D-1EDECDB8E796> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPivotCalibrationModuleLogic.dylib
           0x13ad24000 -        0x13ad9cff3 +libqSlicerTransformProcessorModule.dylib (0) <A0983AF9-AC9B-3028-8FDD-9A8029E1255E> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerTransformProcessorModule.dylib
           0x13adac000 -        0x13adedff7 +libvtkSlicerTransformProcessorModuleLogic.dylib (0) <B559455D-E664-35B8-8875-9132873D0455> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTransformProcessorModuleLogic.dylib
           0x13adf8000 -        0x13ae25ff3 +libvtkSlicerTransformProcessorModuleMRML.dylib (0) <7E2352B6-1DCC-32E0-B99D-46D941A25D36> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerTransformProcessorModuleMRML.dylib
           0x13ae2e000 -        0x13aea9ff3 +libqSlicerUltrasoundSnapshotsModule.dylib (0) <B83CCFF0-E989-3D6B-B38C-9822273A0338> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerUltrasoundSnapshotsModule.dylib
           0x13aeb3000 -        0x13aefdffb +libvtkSlicerUltrasoundSnapshotsModuleLogic.dylib (0) <CF31C9AE-180B-31CB-96E2-E7F38AD5F317> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerUltrasoundSnapshotsModuleLogic.dylib
           0x13af05000 -        0x13af83ff7 +libqSlicerVolumeResliceDriverModule.dylib (0) <3E34313F-44B5-353A-8F66-8E31C030D5F0> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumeResliceDriverModule.dylib
           0x13af8e000 -        0x13b00aff7 +libqSlicerVolumeResliceDriverModuleWidgets.dylib (0) <67EC6316-707F-3347-BE1D-46BDFC73A893> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVolumeResliceDriverModuleWidgets.dylib
           0x13b014000 -        0x13b061fff +libvtkSlicerVolumeResliceDriverModuleLogic.dylib (0) <760EB8C8-EF2A-30E5-A245-C29F20334508> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerVolumeResliceDriverModuleLogic.dylib
           0x13b06b000 -        0x13b0eeff7 +libqSlicerWatchdogModule.dylib (0) <63A379B5-E369-3C56-9D9B-22607982DDFE> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerWatchdogModule.dylib
           0x13b0fe000 -        0x13b149ffb +libvtkSlicerWatchdogModuleMRMLDisplayableManager.dylib (0) <D3116BC4-CA01-34A9-9D3C-87B843ABB6A6> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerWatchdogModuleMRMLDisplayableManager.dylib
           0x13b153000 -        0x13b19bff3 +libvtkSlicerWatchdogModuleLogic.dylib (0) <124FA082-E970-391F-A6BF-C83ED6C0D5B9> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerWatchdogModuleLogic.dylib
           0x13b1a1000 -        0x13b1e7ff3 +libvtkSlicerWatchdogModuleMRML.dylib (0) <18DA9753-74C5-3A8D-A150-32CB3E60ED0A> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerIGT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerWatchdogModuleMRML.dylib
           0x13b1f7000 -        0x13b28eff7 +libqSlicerJupyterKernelModule.dylib (0) <A05BBCDE-E0EE-3B4B-8B86-0D8E143945BB> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerJupyter/lib/Slicer-4.13/qt-loadable-modules/libqSlicerJupyterKernelModule.dylib
           0x13b2a5000 -        0x13b2ecff3 +libvtkSlicerJupyterKernelModuleLogic.dylib (0) <0C20E81B-2348-3199-B486-7724A4B290AB> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerJupyter/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerJupyterKernelModuleLogic.dylib
           0x13b2f0000 -        0x13b39effb +libxeus-python.0.dylib (0) <E99D6A4B-C3ED-3965-A797-0D05FD2E7BD8> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerJupyter/lib/Slicer-4.13/libxeus-python.0.dylib
           0x13b3e3000 -        0x13b443fff +libxeus.1.dylib (0) <52E1A474-0E3A-3E45-B79F-86297C034A1C> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerJupyter/lib/Slicer-4.13/libxeus.1.dylib
           0x13b47e000 -        0x13b4f1ff7 +libzmq.5.dylib (0) <15814B8D-82C0-30C0-8368-EFD4364A8E22> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerJupyter/lib/Slicer-4.13/libzmq.5.dylib
           0x13b532000 -        0x13b5b4ffb +libqSlicerBeamsModule.dylib (0) <EB2C9E02-E609-3216-84C6-F27EAB617BAE> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerBeamsModule.dylib
           0x13b5bf000 -        0x13b64dff7 +libqSlicerBeamsModuleWidgets.dylib (0) <827B6E4F-5920-3363-9FB0-E6A3F9C352FD> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerBeamsModuleWidgets.dylib
           0x13b65d000 -        0x13b6cbff3 +libqSlicerBeamsSubjectHierarchyPlugins.dylib (0) <D40A213B-DCBC-3E19-A73E-24FE341FFCCB> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerBeamsSubjectHierarchyPlugins.dylib
           0x13b6d2000 -        0x13b72cff7 +libvtkSlicerBeamsModuleLogic.dylib (0) <0AD7A927-6455-3083-BFE0-22CA00CDC561> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerBeamsModuleLogic.dylib
           0x13b738000 -        0x13b78dfff +libvtkSlicerBeamsModuleMRML.dylib (0) <8149FC81-9903-3EE7-AFF9-4386228E1602> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerBeamsModuleMRML.dylib
           0x13b7a0000 -        0x13b835ff3 +libvtkSlicerRtCommon.dylib (0) <3868E1F7-9153-396A-8F71-AB8FA710D94F> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerRtCommon.dylib
           0x13b84d000 -        0x13b8ceff7 +libqSlicerDicomRtImportExportModule.dylib (0) <DADB155F-E1DD-3E38-A617-4DDA7A8DC765> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDicomRtImportExportModule.dylib
           0x13b8d7000 -        0x13bb4fffb +libvtkSlicerDicomRtImportExportModuleLogic.dylib (0) <350A4656-F8FA-3779-BD3B-C0A69201C12B> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDicomRtImportExportModuleLogic.dylib
           0x13bc86000 -        0x13bcd5ff3 +libvtkSlicerDicomRtImportExportConversionRules.dylib (0) <2607265E-82C7-30B3-92A0-A0F6AC2C32A1> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDicomRtImportExportConversionRules.dylib
           0x13bce3000 -        0x13bd34fff +libvtkSlicerIsodoseModuleLogic.dylib (0) <105954F7-BDB0-3C21-9294-47FC8A9C5B61> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerIsodoseModuleLogic.dylib
           0x13bd40000 -        0x13bdb1ff7 +libqSlicerDicomRtImportExportSubjectHierarchyPlugins.dylib (0) <102095A9-155B-36A4-80CA-0FEC9961CDFA> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDicomRtImportExportSubjectHierarchyPlugins.dylib
           0x13bdba000 -        0x13bdf3ffb +libvtkSlicerDICOMLibModuleLogic.dylib (0) <43BBC3E9-88E4-39C8-B683-6AC33D969B04> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDICOMLibModuleLogic.dylib
           0x13bdf9000 -        0x13c0f8ff7 +libvtkPlmCommon.dylib (0) <9D2BA32B-9FBD-3157-8BD4-BB70B07EE414> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkPlmCommon.dylib
           0x13c269000 -        0x13c2a6ff3 +libvtkSlicerPlanarImageModuleLogic.dylib (0) <01DC594C-5A41-32A9-B70B-4C0BD1C885DC> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPlanarImageModuleLogic.dylib
           0x13c2af000 -        0x13c334ff7 +libqSlicerDicomSroImportExportModule.dylib (0) <93855785-E774-31EE-8166-B73406BEA0D8> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDicomSroImportExportModule.dylib
           0x13c33d000 -        0x13c396ff7 +libvtkSlicerDicomSroImportExportModuleLogic.dylib (0) <D8C70E70-8F81-3D00-B8F6-0A3D5021D6CA> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDicomSroImportExportModuleLogic.dylib
           0x13c3a0000 -        0x13c423ff3 +libqSlicerDoseAccumulationModule.dylib (0) <A5412B99-8081-3A6E-B86E-35DB8E6674FB> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDoseAccumulationModule.dylib
           0x13c432000 -        0x13c483ff7 +libvtkSlicerDoseAccumulationModuleLogic.dylib (0) <64A5A635-B41F-3BA7-894C-FB6A2622F3A2> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDoseAccumulationModuleLogic.dylib
           0x13c48f000 -        0x13c517ff7 +libqSlicerDoseComparisonModule.dylib (0) <70A9BEB3-C6B0-3ED7-B562-B780A4889ABD> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDoseComparisonModule.dylib
           0x13c525000 -        0x13c5a1ff7 +libqSlicerDoseComparisonSubjectHierarchyPlugins.dylib (0) <7552A0D4-6AF5-3D01-9413-0F4B624E9132> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDoseComparisonSubjectHierarchyPlugins.dylib
           0x13c5a7000 -        0x13c6b0ffb +libvtkSlicerDoseComparisonModuleLogic.dylib (0) <6F49813A-0862-3E67-86B9-E330A2B46981> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDoseComparisonModuleLogic.dylib
           0x13c737000 -        0x13c7c2fff +libqSlicerDoseVolumeHistogramModule.dylib (0) <DD578282-F077-343D-AA66-18DF6E35C020> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDoseVolumeHistogramModule.dylib
           0x13c7d2000 -        0x13c84efff +libqSlicerDoseVolumeHistogramSubjectHierarchyPlugins.dylib (0) <8712D99A-52F0-3EAA-B2BC-3134C2E8F698> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDoseVolumeHistogramSubjectHierarchyPlugins.dylib
           0x13c854000 -        0x13c8bafff +libvtkSlicerDoseVolumeHistogramModuleLogic.dylib (0) <49E91D0A-AFC0-3CAC-8528-15B5B67FAC95> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDoseVolumeHistogramModuleLogic.dylib
           0x13c8cd000 -        0x13c90bff3 +libvtkSlicerDoseVolumeHistogramModuleMRML.dylib (0) <DA9CA040-C899-397C-ADA6-BCD880182B65> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDoseVolumeHistogramModuleMRML.dylib
           0x13c914000 -        0x13c982fff +libqSlicerDosxyzNrc3dDoseFileReaderModule.dylib (0) <806963B6-29D0-3E11-8215-5E3542576963> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDosxyzNrc3dDoseFileReaderModule.dylib
           0x13c990000 -        0x13c9cbff7 +libvtkSlicerDosxyzNrc3dDoseFileReaderLogic.dylib (0) <8BAEFE4A-225C-3355-AA9A-17D4720BEFE2> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDosxyzNrc3dDoseFileReaderLogic.dylib
           0x13c9d2000 -        0x13ca57ffb +libqSlicerDrrImageComputationModule.dylib (0) <1EDBE062-0772-31E0-8E66-AE7CDA619A1F> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDrrImageComputationModule.dylib
           0x13ca64000 -        0x13cae7ff7 +libqSlicerDrrImageComputationModuleWidgets.dylib (0) <C86862A1-33C6-376E-BE8C-BF62FBDDED80> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerDrrImageComputationModuleWidgets.dylib
           0x13caf1000 -        0x13cb48ff3 +libvtkSlicerDrrImageComputationModuleLogic.dylib (0) <83D50AC6-E49B-3D59-BB08-E0D734210404> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDrrImageComputationModuleLogic.dylib
           0x13cb54000 -        0x13cb96ffb +libvtkSlicerDrrImageComputationModuleMRML.dylib (0) <58FB1A89-B87E-3180-8227-20B8550413E3> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerDrrImageComputationModuleMRML.dylib
           0x13cba0000 -        0x13cc2fff7 +libqSlicerExternalBeamPlanningModule.dylib (0) <FD9E5002-33B4-370A-93C1-8027A09DCC9A> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerExternalBeamPlanningModule.dylib
           0x13cc3f000 -        0x13cc8bffb +libvtkSlicerExternalBeamPlanningModuleLogic.dylib (0) <A15CD838-53F0-3544-96C8-D844B95AAD17> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerExternalBeamPlanningModuleLogic.dylib
           0x13cc91000 -        0x13cd1eff7 +libqSlicerExternalBeamPlanningModuleWidgets.dylib (0) <FCB4849F-E917-3305-8412-428E29F41AC9> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerExternalBeamPlanningModuleWidgets.dylib
           0x13cd2c000 -        0x13cdb0fff +libqSlicerIsodoseModule.dylib (0) <463C338F-585D-3FCF-B22E-A2D2752F9E00> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerIsodoseModule.dylib
           0x13cdbf000 -        0x13cdf9ff3 +libvtkSlicerIsodoseModuleWidgets.dylib (0) <74E6F045-F698-3EE0-AAE7-AA4EBFD5C874> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerIsodoseModuleWidgets.dylib
           0x13ce02000 -        0x13ce7dfff +libqSlicerIsodoseSubjectHierarchyPlugins.dylib (0) <A45767BE-7025-3362-BC17-A003A6866C16> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerIsodoseSubjectHierarchyPlugins.dylib
           0x13ce83000 -        0x13ceeefff +libqSlicerPlanarImageModule.dylib (0) <2A274546-96B9-34DB-9975-688ACE5D559A> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlanarImageModule.dylib
           0x13cef6000 -        0x13cf71fff +libqSlicerPlastimatchPyModule.dylib (0) <B1BDAE05-DAB4-3B18-9BD6-1D2611CD5A47> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlastimatchPyModule.dylib
           0x13cf79000 -        0x13d4bbfff +libvtkSlicerPlastimatchPyModuleLogic.dylib (0) <E5BD57B2-4EFB-3CD9-B7D1-E979D20D86C3> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPlastimatchPyModuleLogic.dylib
           0x13d754000 -        0x13d7d2ff7 +libqSlicerPlmProtonDoseEngineModule.dylib (0) <DD39DED4-980F-3AF9-BE11-62CAE0D0D01B> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlmProtonDoseEngineModule.dylib
           0x13d7da000 -        0x13d821fff +libvtkSlicerPlmProtonDoseEngineModuleLogic.dylib (0) <DC967727-6A72-370D-A30C-A17D6E1E2ED7> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerPlmProtonDoseEngineModuleLogic.dylib
           0x13d826000 -        0x13daccffb +libqSlicerPlmProtonDoseEngineDoseEngines.dylib (0) <11C81FD1-C514-3BA9-AD5F-BE4D2553F57A> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerPlmProtonDoseEngineDoseEngines.dylib
           0x13dbfc000 -        0x13dc84ff3 +libqSlicerRoomsEyeViewModule.dylib (0) <27CCCA2E-8B41-365C-B064-363D7B7091E1> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerRoomsEyeViewModule.dylib
           0x13dc93000 -        0x13dcf1fff +libvtkSlicerRoomsEyeViewModuleLogic.dylib (0) <4156562C-4E91-3A92-92E7-F0F1B68B9CD3> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerRoomsEyeViewModuleLogic.dylib
           0x13dd00000 -        0x13dd83ff3 +libqSlicerSegmentComparisonModule.dylib (0) <BB2C0E52-0D37-33C6-AB2D-5BB5919876A3> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerSegmentComparisonModule.dylib
           0x13dd90000 -        0x13dee3ffb +libvtkSlicerSegmentComparisonModuleLogic.dylib (0) <D137DC97-6C08-3E88-8B6C-1571749F3277> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerSegmentComparisonModuleLogic.dylib
           0x13dfa3000 -        0x13e010ff7 +libqSlicerVffFileReaderModule.dylib (0) <E8EC74DE-995D-33B1-B867-678E894294A6> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libqSlicerVffFileReaderModule.dylib
           0x13e01d000 -        0x13e061ff7 +libvtkSlicerVffFileReaderLogic.dylib (0) <AE6AEB85-DF85-39AF-BC8F-43555C121839> /Applications/Slicer_4.13_11_12.app/Contents/Extensions-29470/SlicerRT/lib/Slicer-4.13/qt-loadable-modules/libvtkSlicerVffFileReaderLogic.dylib
           0x13e0eb000 -        0x13e465fe7 +_multiarray_umath.cpython-36m-darwin.so (0) <50757024-A856-3628-A2E6-BE4C010D648A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/core/_multiarray_umath.cpython-36m-darwin.so
           0x13e57a000 -        0x141fd19bf +libopenblas.0.dylib (0) <07E4ABF0-E967-375A-90D9-1C54B8AF2F58> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/.dylibs/libopenblas.0.dylib
           0x1421fd000 -        0x142314ff7 +libgfortran.3.dylib (0) <9ABE5EDE-AD43-391A-9E54-866711FAC32A> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/.dylibs/libgfortran.3.dylib
           0x142378000 -        0x1423aefff +libquadmath.0.dylib (0) <7FFA409F-FB04-3B64-BE9A-3E3A494C975E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/.dylibs/libquadmath.0.dylib
           0x1423bd000 -        0x1423d2ff7 +libgcc_s.1.dylib (0) <7C6D7CB7-82DB-3290-8181-07646FEA1F80> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/.dylibs/libgcc_s.1.dylib
           0x15059d000 -        0x1505aaff3 +_multiarray_tests.cpython-36m-darwin.so (0) <EFFA7895-EC4C-388C-896B-3F39893BA3AB> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/core/_multiarray_tests.cpython-36m-darwin.so
           0x1505bb000 -        0x1505cdfff +_ctypes.so (0) <6AEF4147-D122-3688-B09B-E7F3559FF105> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_ctypes.so
           0x15061e000 -        0x15061fffb +lapack_lite.cpython-36m-darwin.so (0) <18D154F3-1412-32DF-952B-33B2518720C2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-darwin.so
           0x150623000 -        0x15063cffb +_umath_linalg.cpython-36m-darwin.so (0) <2E09EF37-8B73-38A8-B633-EE3351DC8EA1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-darwin.so
           0x15070b000 -        0x15071fffb +zlib.so (0) <68D05BF6-A213-31C9-BA51-D3C7B55EA510> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/zlib.so
           0x150725000 -        0x150738fff +_bz2.so (0) <5AA0971C-AF4C-36E4-81D4-B09167D2B38D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_bz2.so
           0x15073e000 -        0x15075eff3 +_lzma.so (0) <E5899224-4150-3B63-A722-E58324661599> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_lzma.so
           0x1507a7000 -        0x1507a8ffb +grp.so (0) <215BC5E3-D876-39E2-AA4B-387CDD82D427> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/grp.so
           0x1507ab000 -        0x1507e6ff7 +_decimal.so (0) <49E6768B-F891-3EA4-9404-0726BC80848E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_decimal.so
           0x150805000 -        0x150816fff +_pocketfft_internal.cpython-36m-darwin.so (0) <69079C77-2F67-37C4-9560-38BC41A959A2> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/fft/_pocketfft_internal.cpython-36m-darwin.so
           0x15089a000 -        0x15090aff7 +mtrand.cpython-36m-darwin.so (0) <18CFC2D2-5707-32E6-8BB8-9E9649620002> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-darwin.so
           0x15095e000 -        0x15097eff7 +bit_generator.cpython-36m-darwin.so (0) <EDE96829-1573-32FC-9147-7E99EBE26E6C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/bit_generator.cpython-36m-darwin.so
           0x150999000 -        0x1509d0ff7 +_common.cpython-36m-darwin.so (0) <1966E73F-FA4B-3BC4-8368-F2228F344C91> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_common.cpython-36m-darwin.so
           0x1509e7000 -        0x1509efff7 +binascii.so (0) <3DE64376-5040-3030-868A-2DF1BE58BA1C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/binascii.so
           0x1509f3000 -        0x1509f6fff +_hashlib.so (0) <047C1E07-03C9-3645-80C4-CE13FEBA4704> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_hashlib.so
           0x1509fb000 -        0x150a03ffb +_blake2.so (0) <BC0E94A4-06DD-360A-A19E-53B197C03D82> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_blake2.so
           0x150a08000 -        0x150a19ffb +_sha3.so (0) <BBB11EBF-7A7B-385B-AAEB-FBBF7B4C8158> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_sha3.so
           0x150a5f000 -        0x150a60ffb +_bisect.so (0) <F67F48EF-DBE2-3561-9204-3B4C0F24FB0B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_bisect.so
           0x150a63000 -        0x150a64ff3 +_random.so (0) <2927CED6-7778-3759-95ED-1600089E1438> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_random.so
           0x150a68000 -        0x150abdfff +_bounded_integers.cpython-36m-darwin.so (0) <69397A5B-59D5-364F-8871-0758E0863D42> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_bounded_integers.cpython-36m-darwin.so
           0x150ade000 -        0x150aecff3 +_mt19937.cpython-36m-darwin.so (0) <9E272290-97DB-3D42-AB36-3E6FD1E91834> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_mt19937.cpython-36m-darwin.so
           0x150af8000 -        0x150b04ffb +_philox.cpython-36m-darwin.so (0) <32DFE12E-98CF-3DC8-9E88-05F268030E0E> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_philox.cpython-36m-darwin.so
           0x150b0f000 -        0x150b19ffb +_pcg64.cpython-36m-darwin.so (0) <CC4907BC-76B3-3E02-8F9E-C320440E20E0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_pcg64.cpython-36m-darwin.so
           0x150b23000 -        0x150b2affb +_sfc64.cpython-36m-darwin.so (0) <C0D26D7E-9B0D-3F8A-A813-2B40B0F0B140> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_sfc64.cpython-36m-darwin.so
           0x150b32000 -        0x150bbcffb +_generator.cpython-36m-darwin.so (0) <A1CBE851-03EF-3D88-BBB6-C3BB5DE537AA> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/numpy/random/_generator.cpython-36m-darwin.so
           0x152dd5000 -        0x152ddcfff +_json.so (0) <6EDCF85B-9DE5-3512-872E-4598366963C0> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_json.so
           0x153161000 -        0x153169ff3 +_elementtree.so (0) <0A84C3C6-57E2-3514-B52B-592554998003> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/_elementtree.so
           0x153173000 -        0x1531a0ffb +pyexpat.so (0) <455E62B5-D5A4-3A47-A93F-71A546107D6C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/lib-dynload/pyexpat.so
           0x1531f3000 -        0x153250ffb +_imaging.cpython-36m-darwin.so (0) <A360F517-88DB-3A61-B8D1-3F5FD9EA1786> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/_imaging.cpython-36m-darwin.so
           0x153279000 -        0x1532b1ff3 +libjpeg.9.dylib (0) <A21D37F5-39AE-31A6-A1E6-84CE883F3D7F> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/libjpeg.9.dylib
           0x1532c1000 -        0x153337ffb +libopenjp2.2.3.1.dylib (0) <070B3635-9516-3171-8E04-6F645281C96B> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/libopenjp2.2.3.1.dylib
           0x153342000 -        0x15335dff7 +libz.1.2.11.dylib (0) <8F57D771-E0DD-3DA4-8241-A90A4B0AE451> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/libz.1.2.11.dylib
           0x153361000 -        0x1533f0fff +libtiff.5.dylib (0) <DE18E216-5168-3869-9376-D3240A470E69> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/libtiff.5.dylib
           0x153402000 -        0x15342bff7 +libxcb.1.1.0.dylib (0) <5EF280A8-5FC6-34C1-82A1-E84D594ACA94> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/libxcb.1.1.0.dylib
           0x15343d000 -        0x15346effb +liblzma.5.dylib (0) <40849847-E5EE-37D8-9141-CFD1BF39A83C> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/liblzma.5.dylib
           0x153476000 -        0x153477fff +libXau.6.dylib (0) <F40D7B27-9464-30FC-AC72-204164AFEE8D> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/PIL/.dylibs/libXau.6.dylib
           0x1534ba000 -        0x1534e2ff7 +vtkITKPython.so (0) <0AA068B2-B0EF-399F-9DD5-1F6E1F675253> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkITKPython.so
           0x1534e5000 -        0x153552ff7 +libvtkITKPythonD.dylib (0) <6A253E1F-B0FE-337E-AF1E-A744F74B6501> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkITKPythonD.dylib
           0x1535c2000 -        0x1535e0ff7 +vtkTeemPython.so (0) <B0115521-9961-3F86-B137-CF19A25CAD98> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/vtkTeemPython.so
           0x1535e3000 -        0x153614ff7 +libvtkTeemPythonD.dylib (0) <C9FA9384-C0A7-3CB7-BF1C-C33E584AAB90> /Applications/Slicer_4.13_11_12.app/Contents/lib/Slicer-4.13/libvtkTeemPythonD.dylib
           0x153e61000 -        0x15e0a4fff +_SimpleITK.cpython-36m-darwin.so (???) <D25EC4F2-AD7D-3B9C-B7AB-42BED7F537F1> /Applications/Slicer_4.13_11_12.app/Contents/lib/Python/lib/python3.6/site-packages/SimpleITK/_SimpleITK.cpython-36m-darwin.so
        0x7fff28215000 -     0x7fff28462ff8  com.apple.RawCamera.bundle (9.02.0 - 1350.29) <59F81722-039E-33F5-A20E-936E997575A3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff2889f000 -     0x7fff288d5fff  ATIRadeonX6000SCLib.dylib (3.10.18) <66751D9A-0645-3703-9C6B-F255474C65FB> /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/ATIRadeonX6000SCLib.dylib
        0x7fff288d6000 -     0x7fff28b4bffc  com.apple.AMDRadeonX6000MTLDriver (3.10.18 - 3.1.0) <5C46039F-77EE-3CEA-B204-989E9154B397> /System/Library/Extensions/AMDRadeonX6000MTLDriver.bundle/Contents/MacOS/AMDRadeonX6000MTLDriver
        0x7fff29aa4000 -     0x7fff2a421fff  libSC.dylib (3.10.18) <3C722BC2-E988-3A2F-9C25-38D091AAE559> /System/Library/Extensions/AMDShared.bundle/Contents/PlugIns/libSC.dylib
        0x7fff2cb1b000 -     0x7fff2db22fff  com.apple.driver.AppleIntelKBLGraphicsGLDriver (14.7.8 - 14.0.7) <D4A619C9-D507-33B1-B23E-4AB9C31C0B64> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
        0x7fff2db23000 -     0x7fff2df22ff1  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.7.8 - 14.0.7) <9A7BE6D5-C4B5-32CC-8956-AD5893F903D2> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
        0x7fff309bd000 -     0x7fff309c1ffb  com.apple.agl (3.3.3 - AGL-3.3.3) <204E20A9-AEA9-3F9F-AE23-EECE3AFFFC54> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
        0x7fff309c2000 -     0x7fff30bbdff8  com.apple.avfoundation (2.0 - 1855.3) <0837D912-3783-35D6-A94A-E474E18600CF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff30bbe000 -     0x7fff30c8affe  com.apple.audio.AVFAudio (1.0 - 415.75) <CAC3CA5F-FCF6-37EB-8F1A-090340E2C38E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
        0x7fff30daa000 -     0x7fff30daafff  com.apple.Accelerate (1.11 - Accelerate 1.11) <4F9977AE-DBDB-3A16-A536-AC1F9938DCDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff30dab000 -     0x7fff30dc1fef  libCGInterfaces.dylib (524.2.1) <8FD09D09-BB19-36C5-ADE9-4F22DA235AEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
        0x7fff30dc2000 -     0x7fff31418fff  com.apple.vImage (8.1 - 524.2.1) <EA6F5FF2-7A1B-35D5-A5A3-D2B3386ECB75> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
        0x7fff31419000 -     0x7fff31680ff7  libBLAS.dylib (1303.60.1) <C6C2D42F-7456-3DBF-8BE2-9AA06EFC78FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
        0x7fff31681000 -     0x7fff31b54fef  libBNNS.dylib (144.100.2) <99C61C48-B14C-3DA6-8C31-6BF72DA0A3A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
        0x7fff31b55000 -     0x7fff31ef0fff  libLAPACK.dylib (1303.60.1) <5E3E3867-50C3-3E6A-9A2E-007CE77A4641> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
        0x7fff31ef1000 -     0x7fff31f06fec  libLinearAlgebra.dylib (1303.60.1) <3D433800-0099-33E0-8C81-15F83247B2C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
        0x7fff31f07000 -     0x7fff31f0cff3  libQuadrature.dylib (7) <371F36A7-B12F-363E-8955-F24F7C2048F6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
        0x7fff31f0d000 -     0x7fff31f7dfff  libSparse.dylib (103) <B8A10D0C-4577-343D-B310-A3E81265D107> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
        0x7fff31f7e000 -     0x7fff31f90fef  libSparseBLAS.dylib (1303.60.1) <B147FEF6-A0DB-3830-BF06-45BEC58DB576> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
        0x7fff31f91000 -     0x7fff32168fd7  libvDSP.dylib (735.140.1) <D63DC0A5-B8B4-3562-A574-E73BC3B57407> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
        0x7fff32169000 -     0x7fff3222bfef  libvMisc.dylib (735.140.1) <3601FDE3-B142-398D-987D-8151A51F0A96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
        0x7fff3222c000 -     0x7fff3222cfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <F6C5613D-2284-342B-9160-9731F78B4DE5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff3222d000 -     0x7fff3228cff0  com.apple.Accounts (113 - 113) <E2438070-30AB-3B89-AE63-1E485B92D108> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff323d6000 -     0x7fff33196ff2  com.apple.AppKit (6.9 - 1894.60.100) <A64D10A6-FE17-39CE-9392-6615BE54E10E> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff331e6000 -     0x7fff331e6fff  com.apple.ApplicationServices (48 - 50) <C23D2740-FAF6-3BD6-9E48-56F54D752864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff331e7000 -     0x7fff33252fff  com.apple.ApplicationServices.ATS (377 - 493.0.4.1) <87EA5DE1-506A-39FD-88BE-D8A3416C9012> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
        0x7fff332eb000 -     0x7fff33329ff0  libFontRegistry.dylib (274.0.5.1) <F3461C05-0370-359B-9F03-5C1C1F7763EC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff33384000 -     0x7fff333b3fff  com.apple.ATSUI (1.0 - 1) <5F513967-DDD7-3F22-AD14-8A38ABD9F2D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
        0x7fff333b4000 -     0x7fff333b8ffb  com.apple.ColorSyncLegacy (4.13.0 - 1) <72EE68DB-F069-37F5-AA2A-40D5FCF139F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
        0x7fff33452000 -     0x7fff334a9ffa  com.apple.HIServices (1.22 - 676) <14DF4D42-E24D-3EBD-9A9D-93124D8D6AA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
        0x7fff334aa000 -     0x7fff334b8fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <01B8B6B3-E2C3-3607-B34A-8283A7E0E924> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff334b9000 -     0x7fff334feffa  com.apple.print.framework.PrintCore (15.4 - 516.2) <437BCF12-48D2-3770-8BC9-567718FB1BCA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
        0x7fff334ff000 -     0x7fff33509ff7  com.apple.QD (4.0 - 413) <27A36D07-B5E9-32E6-87B6-3127F260F48D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
        0x7fff3350a000 -     0x7fff33517ffc  com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <75344F8F-32CA-3558-B4E6-F56D498250E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff33518000 -     0x7fff335f9ffa  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <8CFA0620-5E43-3C4D-A75B-981C0961C2DE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff335fb000 -     0x7fff335fbfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <C8F9CC56-F7CF-3E77-B6FC-BD8E1D19FA92> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff33992000 -     0x7fff33d21ffa  com.apple.CFNetwork (1128.0.1 - 1128.0.1) <07F9CA9C-B954-3EA0-A710-3122BFF9F057> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff33d9d000 -     0x7fff33d9dfff  com.apple.Carbon (160 - 162) <97E334B3-7FAE-3239-9E89-5A546BC26ADE> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff33d9e000 -     0x7fff33da1ff3  com.apple.CommonPanels (1.2.6 - 101) <9F6E13D9-374B-386F-8E15-FDD6CE967859> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
        0x7fff33da2000 -     0x7fff34096ff3  com.apple.HIToolbox (2.1.1 - 994.6) <EAF2DAC3-66B1-30BF-AF10-72DDA90D1044> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
        0x7fff34097000 -     0x7fff3409aff3  com.apple.help (1.3.8 - 71) <36483951-6F3E-3F7E-8A5B-191C2357EF17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
        0x7fff3409b000 -     0x7fff340a0ff7  com.apple.ImageCapture (9.0 - 1600.65) <1A1F320E-3E85-3F3D-8AE0-B238C4E92D40> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
        0x7fff340a1000 -     0x7fff340a1fff  com.apple.ink.framework (10.15 - 227) <284507AE-EF47-3ABC-86A4-669243DB1D33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
        0x7fff340a2000 -     0x7fff340bcffa  com.apple.openscripting (1.7 - 185.1) <B6E28747-5FC7-3461-8A71-864A969ED022> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
        0x7fff340dd000 -     0x7fff340ddfff  com.apple.print.framework.Print (15 - 271) <0D9FB08F-EA87-3BE7-821B-C61BA5601050> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
        0x7fff340de000 -     0x7fff340e0ff7  com.apple.securityhi (9.0 - 55008) <390C6FAA-99BF-3924-9180-9EAE41D9C6BE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
        0x7fff340e1000 -     0x7fff340e7fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <9614A01E-8303-3422-A3BA-6CE27540E09A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
        0x7fff340e8000 -     0x7fff34280ffa  com.apple.cloudkit.CloudKit (867 - 867) <1B851180-FC00-357F-B6C1-BB0EA7D6D5CA> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff34281000 -     0x7fff34281fff  com.apple.Cocoa (6.11 - 23) <2192EE61-8CA8-3639-B7D3-0D68F200C9EF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff3428f000 -     0x7fff34385fff  com.apple.ColorSync (4.13.0 - 3394.9) <A126406C-DA38-3FFE-8B25-BB9859EFD159> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
        0x7fff34670000 -     0x7fff34b79ffb  com.apple.audio.CoreAudio (5.0 - 5.0) <9DA02E7A-56A0-3FFF-94C2-1795BA761F07> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff34bcc000 -     0x7fff34c04fff  com.apple.CoreBluetooth (1.0 - 1) <23DBB313-A082-3C08-8E1F-2D31EE4247EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff34c05000 -     0x7fff34feffe8  com.apple.CoreData (120 - 977.3) <49AE61CA-C91E-31FE-9BD0-1AACFFB5181E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff34ff0000 -     0x7fff35122ff6  com.apple.CoreDisplay (1.0 - 186.6.15) <213D7011-8180-3CF4-9BE7-FB8F75DCDB95> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
        0x7fff35123000 -     0x7fff355a2feb  com.apple.CoreFoundation (6.9 - 1677.104) <C0D70026-EDBE-3CBD-B317-367CF4F1C92F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff355a4000 -     0x7fff35c19ff8  com.apple.CoreGraphics (2.0 - 1355.22) <4A3CDE7B-4578-3058-966A-3D1DC095A935> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff35c27000 -     0x7fff35f82ff0  com.apple.CoreImage (15.0.0 - 940.9) <69361069-01AB-342E-862B-73A74271A765> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
        0x7fff35f83000 -     0x7fff35fecff0  com.apple.corelocation (2394.0.22 - 2394.0.22) <75966124-2FB7-33C3-BE49-3DD5F327F911> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff35fed000 -     0x7fff3603dff6  com.apple.audio.midi.CoreMIDI (1.10 - 88) <017B0334-8AC4-304B-A5E2-C82C51BE1917> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
        0x7fff36040000 -     0x7fff36342ff2  com.apple.CoreML (1.0 - 1) <FD17F9EB-1930-314C-B6B4-2A2E643AC771> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
        0x7fff36343000 -     0x7fff3641effc  com.apple.CoreMedia (1.0 - 2625.9) <A3FF3AFC-8C1C-36E5-9179-66D8F075EE35> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff3641f000 -     0x7fff36481ffe  com.apple.CoreMediaIO (1000.0 - 5125.6) <F8C046C7-4DA4-3987-A7CB-BAD12F0D2D22> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff3650b000 -     0x7fff3650bfff  com.apple.CoreServices (1069.24 - 1069.24) <AA140158-E909-34C2-B2F5-20EBC93E0056> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff3650c000 -     0x7fff36591fff  com.apple.AE (838.1 - 838.1) <2E5FD5AE-8A7F-353F-9BD1-0241F3586181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
        0x7fff36592000 -     0x7fff36873ff7  com.apple.CoreServices.CarbonCore (1217 - 1217) <BE379206-99FA-30CD-8391-2708473A633F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
        0x7fff36874000 -     0x7fff368c1ffd  com.apple.DictionaryServices (1.2 - 323.6) <26B70C82-25BC-353A-858F-945B14C803A2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
        0x7fff368c2000 -     0x7fff368caff7  com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) <FC84DB48-A3CE-30F7-A918-B3587731ACC7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
        0x7fff368cb000 -     0x7fff36b05ff6  com.apple.LaunchServices (1069.24 - 1069.24) <9A5359D9-9148-3B18-B868-56A9DA5FB60C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
        0x7fff36b06000 -     0x7fff36b9eff1  com.apple.Metadata (10.7.0 - 2076.7) <0973F7E5-D58C-3574-A3CE-4F12CAC2D4C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
        0x7fff36b9f000 -     0x7fff36bccfff  com.apple.CoreServices.OSServices (1069.24 - 1069.24) <0E4F48AD-402C-3E9D-9CA9-6DD9479B28F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
        0x7fff36bcd000 -     0x7fff36c34fff  com.apple.SearchKit (1.4.1 - 1.4.1) <2C5E1D85-E8B1-3DC5-91B9-E3EDB48E9369> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
        0x7fff36c35000 -     0x7fff36c59ff5  com.apple.coreservices.SharedFileList (131.4 - 131.4) <02DE0D56-E371-3EF5-9BC1-FA435451B412> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
        0x7fff36eb6000 -     0x7fff36f7dffc  com.apple.CoreTelephony (113 - 7560.1) <31D93EB1-0A20-3383-9680-090E441F25D8> /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony
        0x7fff36f7e000 -     0x7fff37135ffc  com.apple.CoreText (643.1.5.1 - 643.1.5.1) <A88F052A-C840-3E6C-9BF8-FFFED34C0667> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff37136000 -     0x7fff3717affb  com.apple.CoreVideo (1.8 - 344.3) <5314E70D-325F-3E98-99FC-00FDF520747E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff3717b000 -     0x7fff37208ffc  com.apple.framework.CoreWLAN (13.0 - 1601.2) <6223BFD5-D451-3DE9-90F6-F609AC0B0027> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff373d0000 -     0x7fff3747aff0  com.apple.DiscRecording (9.0.3 - 9030.4.5) <BCF3AFB0-6E1A-3F28-A575-1FD2D74E7C19> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff3749f000 -     0x7fff374a5fff  com.apple.DiskArbitration (2.7 - 2.7) <0BBBB6A6-604D-368B-9943-50B8CE75D51D> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff3769a000 -     0x7fff377c8ff6  com.apple.FileProvider (304.1 - 304.1) <E8BB1D4B-05D6-386C-865C-F8C750CEC308> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
        0x7fff377dd000 -     0x7fff377dfff3  com.apple.ForceFeedback (1.0.6 - 1.0.6) <9B324178-4FAA-3686-9E01-634607F38493> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
        0x7fff377e0000 -     0x7fff37ba5fff  com.apple.Foundation (6.9 - 1677.104) <7C69F845-F651-3193-8262-5938010EC67D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff37c12000 -     0x7fff37c62ff7  com.apple.GSS (4.0 - 2.0) <2F3A67E6-D42A-3CF0-9041-A42C22D46F95> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff37c63000 -     0x7fff37c8bff4  com.apple.GameController (1.0 - 1) <2B7F0994-4B32-3B08-B58A-3FA5A5E65AF4> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
        0x7fff37d9f000 -     0x7fff37eb3ff3  com.apple.Bluetooth (7.0.6 - 7.0.6f7) <CF9CEFBA-97AC-3474-93AF-863C2C74C645> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff37f19000 -     0x7fff37fbdff3  com.apple.framework.IOKit (2.0.2 - 1726.140.1) <14223387-6F81-3976-8605-4BC2F253A93E> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff37fbf000 -     0x7fff37fd0ffb  com.apple.IOSurface (269.11 - 269.11) <BCD744D4-E17E-3C2E-B69C-F69C789892E9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff37fee000 -     0x7fff3804eff5  com.apple.ImageCaptureCore (1.0 - 1600.65) <281CE141-B350-30E2-B345-FC7E7DF1AA3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff3804f000 -     0x7fff381abffe  com.apple.ImageIO.framework (3.3.0 - 1976.11.1) <5DBAD721-B70E-396C-922C-A2742E6815D6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff381ac000 -     0x7fff381affff  libGIF.dylib (1976.11.1) <1A04BEC5-95CF-3EA4-8FA6-FE19679331F3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff381b0000 -     0x7fff38269fe7  libJP2.dylib (1976.11.1) <686B045D-5627-3DEE-B018-72068B7136D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff3826a000 -     0x7fff3828dfe3  libJPEG.dylib (1976.11.1) <13EAEDD3-D4CF-3B2C-B7A4-FB000A71D982> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff3850c000 -     0x7fff38526fef  libPng.dylib (1976.11.1) <031068A2-29E2-3BE0-93CC-76D154976A51> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff38527000 -     0x7fff38528fff  libRadiance.dylib (1976.11.1) <6B5A0402-F511-39ED-933A-C361005107B1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff38529000 -     0x7fff3856ffff  libTIFF.dylib (1976.11.1) <1F089EF9-3DCE-3B49-9B2B-28B9AC3252D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff38588000 -     0x7fff38a17ff8  com.apple.Intents (1.0 - 1) <B2884C7F-0D08-3E3C-91A3-7FB755BB5CB1> /System/Library/Frameworks/Intents.framework/Versions/A/Intents
        0x7fff38a1a000 -     0x7fff39abaff1  com.apple.JavaScriptCore (15609 - 15609.4.1) <18766B97-AB12-331C-984C-F1C7C9363E8B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff39ad1000 -     0x7fff39ae3ff3  com.apple.Kerberos (3.0 - 1) <03BB492B-016E-37BF-B020-39C2CF7487FE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff39ae4000 -     0x7fff39ae4fff  libHeimdalProxy.dylib (77) <0A2905EE-9533-3345-AF9B-AAC71513BDFD> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
        0x7fff39c2f000 -     0x7fff39c51ffc  com.apple.CoreAuthentication.SharedUtils (1.0 - 693.140.3) <A3F9CE45-4F7A-3F5D-865C-6EB9B6C3B3B4> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
        0x7fff39c52000 -     0x7fff39c68ff2  com.apple.LocalAuthentication (1.0 - 693.140.3) <5D391FD1-391B-390A-BBC1-62A537C8DAFE> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
        0x7fff39e76000 -     0x7fff39e80ffb  com.apple.MediaAccessibility (1.0 - 125.1) <98065EA1-3484-3A5A-B05C-D2FABED8CEA4> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
        0x7fff39e94000 -     0x7fff39f4bff7  com.apple.MediaPlayer (1.0 - 1.0) <FE739C02-1000-36C8-9FAD-26FF3D8240CB> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer
        0x7fff39f4c000 -     0x7fff3a699ff2  com.apple.MediaToolbox (1.0 - 2625.9) <3A848992-9182-382A-BF7D-5CB9707BE27B> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff3a69b000 -     0x7fff3a765fff  com.apple.Metal (212.8 - 212.8) <98C944D6-62C8-355E-90F8-C1CA2429EF24> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
        0x7fff3a767000 -     0x7fff3a781ff5  com.apple.MetalKit (141.2 - 141.2) <FAACD940-5CF2-300A-83F3-86ABA7FDC531> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
        0x7fff3a782000 -     0x7fff3a7bfff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <7EBAC15D-7837-395D-B405-1E29F7DA68FA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
        0x7fff3a7c0000 -     0x7fff3a84afe2  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <B424FE0C-6E90-3BFA-A6E7-DD86C735AE90> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
        0x7fff3a84b000 -     0x7fff3a870ff4  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <02006D92-E2AB-3892-A96B-37F6520C19BA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
        0x7fff3a871000 -     0x7fff3a886ffb  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <CAA5A368-DB71-34F6-AEF9-27A8BC298F53> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
        0x7fff3a887000 -     0x7fff3a9e5ffc  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <05612E06-50CB-318F-9F8E-EF4D49FAB3B0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
        0x7fff3a9e6000 -     0x7fff3aa35ff4  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B0B591F8-6875-351E-867F-8EB3CD38CD52> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
        0x7fff3aa36000 -     0x7fff3aa37ff5  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <F2921F9A-3041-3495-878D-64134267B847> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
        0x7fff3bac6000 -     0x7fff3bad2ffe  com.apple.NetFS (6.0 - 4.0) <4415F027-D36D-3B9C-96BA-AD22B44A4722> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff3bad3000 -     0x7fff3bc2aff3  com.apple.Network (1.0 - 1) <4A0F3B93-4D23-3E74-9A3D-AD19E9C0E59E> /System/Library/Frameworks/Network.framework/Versions/A/Network
        0x7fff3bc2b000 -     0x7fff3be8bffa  com.apple.NetworkExtension (1.0 - 1) <3ED35C5A-B170-373E-8277-D4198E408810> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
        0x7fff3e653000 -     0x7fff3e65bff7  libcldcpuengine.dylib (2.14) <D20EF7DF-8508-3707-A9B3-B7D8190971F5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
        0x7fff3e65c000 -     0x7fff3e6b4fff  com.apple.opencl (3.5 - 3.5) <293FE223-9186-320B-81A4-EC8104C38357> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff3e6b5000 -     0x7fff3e6d1fff  com.apple.CFOpenDirectory (10.15 - 220.40.1) <7E6C88EB-3DD9-32B0-81FC-179552834FA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
        0x7fff3e6d2000 -     0x7fff3e6ddffd  com.apple.OpenDirectory (10.15 - 220.40.1) <4A92D8D8-A9E5-3A9C-942F-28576F6BCDF5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff3f043000 -     0x7fff3f045fff  libCVMSPluginSupport.dylib (17.10.22) <2B6C3C16-3F5F-36A8-8070-2A862B90328B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
        0x7fff3f046000 -     0x7fff3f04bfff  libCoreFSCache.dylib (176.15) <E9A20E72-B17F-33D6-8894-41934A10B822> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
        0x7fff3f04c000 -     0x7fff3f050fff  libCoreVMClient.dylib (176.15) <018A48BA-1326-3847-8FB5-A7C99322EB87> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff3f051000 -     0x7fff3f059ff7  libGFXShared.dylib (17.10.22) <AB47B927-65E3-3924-88BE-0A5BE7906785> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff3f05a000 -     0x7fff3f064fff  libGL.dylib (17.10.22) <FB5E6A75-398E-38EF-8CB2-59F5BFE3034C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff3f065000 -     0x7fff3f099ff7  libGLImage.dylib (17.10.22) <9A3FE633-61B8-3CC7-8183-62960109401A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff3f09a000 -     0x7fff3f22eff7  libGLProgrammability.dylib (17.10.22) <85815C4E-3376-33DF-9FBB-6512142AB61B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
        0x7fff3f22f000 -     0x7fff3f26bfff  libGLU.dylib (17.10.22) <D8B4D804-7323-30BC-871C-B7236FFC2FE3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff3fca7000 -     0x7fff3fcb6ff7  com.apple.opengl (17.10.22 - 17.10.22) <D3C57A32-6BD0-3228-B1C4-0F42A6128A6C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff3fcb7000 -     0x7fff3fe30fff  GLEngine (17.10.22) <B902FF53-A960-3137-99BD-1F9774F9586C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
        0x7fff3fe31000 -     0x7fff3fe59fff  GLRendererFloat (17.10.22) <F3D43FBE-7871-3260-B7C9-9BE260F081CD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
        0x7fff3fe68000 -     0x7fff3ff5bff5  com.apple.PDFKit (1.0 - 845.4.1) <A58B3E4C-6B27-32A7-AC6E-35BCB5A45944> /System/Library/Frameworks/PDFKit.framework/Versions/A/PDFKit
        0x7fff3ff5c000 -     0x7fff40073ff9  com.apple.PencilKit (1.0 - 1) <95301D00-CE35-3F53-BAE1-6E6217706702> /System/Library/Frameworks/PencilKit.framework/Versions/A/PencilKit
        0x7fff40314000 -     0x7fff4031aff6  com.apple.PushKit (1.0 - 1) <AD547A25-1A0B-3FA6-8676-82C37F267A4A> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
        0x7fff4043b000 -     0x7fff40681ff7  com.apple.imageKit (3.0 - 1081) <5F086EE2-5745-3E28-B292-1DE5E0652E36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
        0x7fff40682000 -     0x7fff40b41fff  com.apple.QuartzComposer (5.1 - 378) <9C10ADF7-94B0-3779-AD44-5AF6394A32AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
        0x7fff40b42000 -     0x7fff40b67ffc  com.apple.quartzfilters (1.10.0 - Tag) <876E8B28-9500-34C6-B297-EA404D89C903> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
        0x7fff40b68000 -     0x7fff40c72ff7  com.apple.QuickLookUIFramework (5.0 - 906.3) <7128FB8C-83B0-3250-BF86-E8A1772CF1F5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
        0x7fff40c73000 -     0x7fff40c73fff  com.apple.quartzframework (1.5 - 23) <48F3D0F9-323E-34E5-8F63-CF541F2B7B0E> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff40c74000 -     0x7fff40ef7ffb  com.apple.QuartzCore (1.11 - 841.4) <FE927B0E-BD49-32CC-8A55-90F553C86C15> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff40ef8000 -     0x7fff40f51ff5  com.apple.QuickLookFramework (5.0 - 906.3) <959CE934-B541-3172-846F-4D1709353526> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff40f52000 -     0x7fff40f87ffc  com.apple.QuickLookThumbnailing (1.0 - 1) <9CCB50D8-AA39-3744-93FB-7B5B65467AB3> /System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
        0x7fff41458000 -     0x7fff41472ff8  com.apple.SafariServices.framework (15610 - 15610.1.28.1.9) <AB93F2E5-1C7E-33AE-902E-51A06FADA48E> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
        0x7fff41a7a000 -     0x7fff41dc3ff1  com.apple.security (7.0 - 59306.140.5) <B6F8368F-2395-379B-B768-71C53BB1B903> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff41dc4000 -     0x7fff41e4cffb  com.apple.securityfoundation (6.0 - 55236.60.1) <7C69DF47-4017-3DF2-B55B-712B481654CB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff41e7b000 -     0x7fff41e7fff8  com.apple.xpc.ServiceManagement (1.0 - 1) <2C62956C-F2D4-3EB0-86C7-EAA06331621A> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff42b2b000 -     0x7fff42ba5ff7  com.apple.SystemConfiguration (1.19 - 1.19) <84F9B3BB-F7AF-3B7C-8CD0-D3C22D19619F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff42e25000 -     0x7fff431a8ff4  com.apple.VideoToolbox (1.0 - 2625.9) <6CF18E28-A7A8-3952-8171-7E4FF4FB37FA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff46b15000 -     0x7fff46bdafe7  com.apple.APFS (1412.141.1 - 1412.141.1) <C86A3423-E61C-335A-9D17-0B3CE5BB6467> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
        0x7fff47cef000 -     0x7fff47cf0ff1  com.apple.AggregateDictionary (1.0 - 1) <95A291F5-B69F-3C37-9483-C3B2EBF52AC1> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
        0x7fff4813e000 -     0x7fff48289ff5  com.apple.AnnotationKit (1.0 - 325.9) <9BB0EDB6-3808-30FC-B0ED-764DE5AAB893> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
        0x7fff4828a000 -     0x7fff482a7ff4  com.apple.AppContainer (4.0 - 448.100.6) <87CEE13C-8585-3EFB-92CD-0852DFF0921B> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
        0x7fff482fc000 -     0x7fff4830aff7  com.apple.AppSandbox (4.0 - 448.100.6) <0F49AA04-3400-349A-9096-6D4D7ED61027> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff48786000 -     0x7fff487aaffb  com.apple.framework.Apple80211 (13.0 - 1610.1) <D94E03E8-4C38-3B2F-8DF4-473ACC5A7D71> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff48a68000 -     0x7fff48a77fd7  com.apple.AppleFSCompression (119.100.1 - 1.0) <466ABD77-2E52-36D1-8E39-77AE2CC61611> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
        0x7fff48b76000 -     0x7fff48b81ff7  com.apple.AppleIDAuthSupport (1.0 - 1) <74F6CD9C-27A7-39C7-A7EB-47E60D2517EB> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
        0x7fff48bc3000 -     0x7fff48c0bff7  com.apple.AppleJPEG (1.0 - 1) <6DE30A07-C627-319B-A0DE-EB7A832BEB88> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff48fce000 -     0x7fff48ff4ffb  com.apple.aps.framework (4.0 - 4.0) <3ED300B6-43E3-31DC-B3C6-6A0FF41A2595> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
        0x7fff48ff5000 -     0x7fff48ff9ff7  com.apple.AppleSRP (5.0 - 1) <70C25EA9-F7A7-366C-97C6-EEE7845FFCC3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff48ffa000 -     0x7fff4901cfff  com.apple.applesauce (1.0 - 16.25) <68E0364C-AEA7-3654-A030-136BF3CD92F3> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
        0x7fff490db000 -     0x7fff490defff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <67255151-F989-39F0-BC87-0C0BDAE70730> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
        0x7fff490df000 -     0x7fff4912fff7  com.apple.AppleVAFramework (6.1.2 - 6.1.2) <8E18983B-AF92-3853-8251-A6577A55AC15> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff49178000 -     0x7fff49187ff9  com.apple.AssertionServices (1.0 - 223.140.2) <48AD21CA-B81D-380E-A04F-90C48FDA5203> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
        0x7fff496ca000 -     0x7fff49ac5ff8  com.apple.audio.AudioResourceArbitration (1.0 - 1) <2BD68521-C19C-3D67-B5EB-DE3E9A4DAF0A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
        0x7fff49d1b000 -     0x7fff49f5bfe0  com.apple.audio.AudioToolboxCore (1.0 - 1104.93) <5B539F50-93E8-3F73-9E4C-678C85D0488F> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
        0x7fff49f5f000 -     0x7fff4a07bfff  com.apple.AuthKit (1.0 - 1) <DC1A27C5-0172-3C72-9B24-06996D0B6207> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
        0x7fff4a238000 -     0x7fff4a241ff7  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <A6877DAD-8F47-363C-983A-DC8DDE83B7B5> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
        0x7fff4a242000 -     0x7fff4a2e3ff5  com.apple.backup.framework (1.11.6 - 1298.6.2) <C4BC12A3-4D01-377F-A1DB-7E1490831CF2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff4a2e4000 -     0x7fff4a370ff6  com.apple.BaseBoard (466.3 - 466.3) <10D0F3BB-E8F3-365E-8528-6AC996A9B0E7> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
        0x7fff4a472000 -     0x7fff4a4aeff7  com.apple.bom (14.0 - 219.2) <79CBE5E7-054F-377B-9566-A86A9F120CF1> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff4a5cc000 -     0x7fff4a603ff5  com.apple.C2 (1.3 - 495) <4A7E2A63-E19A-3936-92F5-03F2FD602172> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
        0x7fff4b02e000 -     0x7fff4b07dfff  com.apple.ChunkingLibrary (307 - 307) <5B09C30D-FD2B-3E98-8B64-C5EF470FC13C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff4bf29000 -     0x7fff4bf39ffb  com.apple.CommonAuth (4.0 - 2.0) <CF67FF34-4238-3ECA-B4A4-EA04F18A0D36> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff4bf4d000 -     0x7fff4bf64fff  com.apple.commonutilities (8.0 - 900) <F4C97244-E5D8-3F7D-8D94-4B6841C5A4EC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
        0x7fff4c66b000 -     0x7fff4ca40fc8  com.apple.CoreAUC (283.0.0 - 283.0.0) <4341271C-D270-3F9F-8464-31A20D15158D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff4ca41000 -     0x7fff4ca6eff7  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <C3CFDC68-C7D9-3C44-9E7C-801D45575C10> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff4ca91000 -     0x7fff4cab2ff4  com.apple.analyticsd (1.0 - 1) <95A87174-A616-3F80-B17A-1FA7E3DB7C09> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
        0x7fff4cbbb000 -     0x7fff4cc31ff7  com.apple.corebrightness (1.0 - 1) <692194CE-AF03-30D2-B1B8-7C0D2103A2B4> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
        0x7fff4cdbd000 -     0x7fff4cdc8ff7  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <BB7D67B1-2102-3D71-9BB6-AEB8C6A6EBB2> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff4cdc9000 -     0x7fff4cfd4ff1  com.apple.CoreDuet (1.0 - 1) <F899F217-FC31-3140-A0EB-92EAD22EEF71> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff4cfd5000 -     0x7fff4d022ff3  com.apple.coreduetcontext (1.0 - 1) <72341E86-6921-35FE-89CA-7B04725ECC0F> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext
        0x7fff4d023000 -     0x7fff4d033ffe  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <5E31B761-4B30-39A8-9084-97ECFD268B6F> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
        0x7fff4d036000 -     0x7fff4d038fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <6D0113DB-61D8-3A21-95CB-9E30D8F929F9> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
        0x7fff4d049000 -     0x7fff4d059ff3  com.apple.CoreEmoji (1.0 - 107.1) <7C2B3259-083B-31B8-BCDB-1BA360529936> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
        0x7fff4d20f000 -     0x7fff4d35cfff  com.apple.CoreHandwriting (161 - 1.2) <21DAD964-51A7-3F38-9C91-EF46C0CFF12D> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
        0x7fff4d699000 -     0x7fff4d703ff0  com.apple.CoreNLP (1.0 - 213) <E70E2505-8078-324E-BAE1-01A2DA980E2C> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
        0x7fff4d9c6000 -     0x7fff4da4effe  com.apple.CorePDF (4.0 - 518.4.1) <8F94505C-96C2-3694-BEC7-F3B5581A7AB9> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff4db31000 -     0x7fff4db39ff8  com.apple.CorePhoneNumbers (1.0 - 1) <E4DAD514-0B3B-3E0B-8AEA-39B320FAAF03> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
        0x7fff4e526000 -     0x7fff4e549fff  com.apple.CoreSVG (1.0 - 129.3) <F38189F9-C8F9-3D62-9D5F-3F520FB81724> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
        0x7fff4e54a000 -     0x7fff4e57dfff  com.apple.CoreServicesInternal (446.7 - 446.7) <65F53A22-6B61-382C-AAC2-B2C53F8FFB44> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
        0x7fff4e57e000 -     0x7fff4e5acffd  com.apple.CSStore (1069.24 - 1069.24) <C2D67667-FA0B-3DB6-AA34-6999EE4346A0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
        0x7fff4ead1000 -     0x7fff4eb67ff7  com.apple.CoreSymbolication (11.4 - 64535.33.2) <0B3BF87A-7F95-3D79-B4F8-421D6FAC4A6C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
        0x7fff4ebff000 -     0x7fff4ed2bff6  com.apple.coreui (2.1 - 609.4) <788818B7-7EBC-316D-9464-D12E365E3791> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff4ed2c000 -     0x7fff4eee5ffa  com.apple.CoreUtils (6.2.4 - 624.7) <A74A1C65-6695-3F57-B703-0DEDE13E66C1> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff4f01f000 -     0x7fff4f032ff1  com.apple.CrashReporterSupport (10.13 - 15016) <ADF138F0-0274-3BA2-A1D2-48B91577FE53> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
        0x7fff4f0eb000 -     0x7fff4f0fdff8  com.apple.framework.DFRFoundation (1.0 - 252.50.1) <8162057E-E856-3451-9160-04AEDDECFFA4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
        0x7fff4f0fe000 -     0x7fff4f103fff  com.apple.DSExternalDisplay (3.1 - 380) <31ECB5FD-7660-33DB-BC5B-2B2A2AA7C686> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
        0x7fff4f18d000 -     0x7fff4f207ff0  com.apple.datadetectorscore (8.0 - 659) <B1534796-1000-3520-A641-A97A4AC5D39B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
        0x7fff4f253000 -     0x7fff4f290ff8  com.apple.DebugSymbols (194 - 194) <040AE30B-CF2C-3798-A289-0929B8CAB10D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff4f291000 -     0x7fff4f419ff6  com.apple.desktopservices (1.14.5 - 1281.5.3) <BFA7D5B5-20EE-38E3-B8A7-96CE1F9BB48A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
        0x7fff4f791000 -     0x7fff4f864ff1  com.apple.DiskManagement (13.0 - 1648.140.2) <640DBACE-B6EC-3C72-9F73-F484E891534E> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
        0x7fff4f865000 -     0x7fff4f869ff1  com.apple.DisplayServicesFW (3.1 - 380) <4D71ADB3-B29D-3D20-B6DE-9E94061F86AC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff4f8c3000 -     0x7fff4f8e7ff7  com.apple.DuetActivityScheduler (1.0 - 1) <188C6793-A94C-3B49-A9F4-AF8A348C7E62> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler
        0x7fff4f911000 -     0x7fff4f946ff7  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <D3F76E01-2F9F-33E1-B5C9-CAC6E01724C2> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
        0x7fff4f947000 -     0x7fff4f94bff9  com.apple.EFILogin (2.0 - 2) <3BFE697B-469F-38F4-B380-4A4F4A37C836> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff50495000 -     0x7fff50affff9  com.apple.vision.EspressoFramework (1.0 - 188.4) <70B1521B-1B24-3DA4-A41B-E727CF140F1F> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
        0x7fff50dda000 -     0x7fff511f5ff1  com.apple.vision.FaceCore (4.3.0 - 4.3.0) <5D32F65D-2CD7-3204-975C-F4C9256E505F> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff51894000 -     0x7fff519cbff4  libFontParser.dylib (277.2.6.1) <9E9E2EAA-3273-360E-A01B-EB986ECB7BCF> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
        0x7fff519cc000 -     0x7fff51a00fff  libTrueTypeScaler.dylib (277.2.6.1) <F8A27F0F-44B3-3A1E-8B75-2DFD4A90E1D4> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
        0x7fff51a65000 -     0x7fff51a75ff6  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <1605B441-08E0-332D-B7D8-0E13F37B54E7> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
        0x7fff54f56000 -     0x7fff54f57fff  libmetal_timestamp.dylib (902.14.11) <C29C7125-A894-3718-8E1D-249C53BCC0B8> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
        0x7fff56605000 -     0x7fff56610ff7  libGPUSupportMercury.dylib (17.10.22) <398D9635-B9CB-3BBB-A1E4-D1D1270D3F99> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
        0x7fff56611000 -     0x7fff56617fff  com.apple.GPUWrangler (5.2.6 - 5.2.6) <487F2E7A-A5FF-3C36-A8E9-B85D98618116> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
        0x7fff56936000 -     0x7fff5695cff1  com.apple.GenerationalStorage (2.0 - 314) <54483E50-20BB-3AF8-900F-992320C109B0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
        0x7fff56975000 -     0x7fff5795eff1  com.apple.GeoServices (1.0 - 1624.26.4.26.9) <F735575F-7DEF-3202-9151-589BEB162596> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff57a8a000 -     0x7fff57a98ffb  com.apple.GraphVisualizer (1.0 - 100.1) <507D5812-9CB4-3C94-938C-59ED2B370818> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
        0x7fff57b01000 -     0x7fff57b0eff9  com.apple.HID (1.0 - 1) <932CFF6F-71D1-3BBC-A784-559E0380D377> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID
        0x7fff57c37000 -     0x7fff57cf5ff4  com.apple.Heimdal (4.0 - 2.0) <B86FE9DB-71BB-3B6E-A4AE-2B0B44570A7F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff59e71000 -     0x7fff59e7affe  com.apple.IOAccelMemoryInfo (1.0 - 1) <50DDA9C2-BDDF-33D4-9BA9-A161E99F1EAD> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
        0x7fff59e7b000 -     0x7fff59e83ff5  com.apple.IOAccelerator (438.7.3 - 438.7.3) <06E3E70B-C0D0-39A2-96B7-12ED6A0EBEE7> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
        0x7fff59e90000 -     0x7fff59ea7fff  com.apple.IOPresentment (47.10 - 37) <32F1B3BC-4644-3982-AAB2-8EB5D5FF0161> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
        0x7fff5a22f000 -     0x7fff5a27aff1  com.apple.IconServices (438.3 - 438.3) <0DADB4C3-46FF-3FDB-8A86-51E2067FC7F4> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
        0x7fff5a417000 -     0x7fff5a425fff  com.apple.IntentsFoundation (1.0 - 1) <1BC7D355-E136-391A-8215-6982742645DD> /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation
        0x7fff5a438000 -     0x7fff5a43fff9  com.apple.InternationalSupport (1.0 - 45.4) <8D8D4A7D-FD35-36B8-A456-7C93030EDAB3> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
        0x7fff5a6cc000 -     0x7fff5a6ebffd  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <6F655A32-F963-3A7E-B475-E460F4AC7D99> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
        0x7fff5a820000 -     0x7fff5a8eeffd  com.apple.LanguageModeling (1.0 - 215.1) <C456087D-5B3A-390E-A665-862FA284C59C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
        0x7fff5a8ef000 -     0x7fff5a937fff  com.apple.Lexicon-framework (1.0 - 72) <41F208B9-8255-3EC7-9673-FE0925D071D3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
        0x7fff5a93e000 -     0x7fff5a943ff3  com.apple.LinguisticData (1.0 - 353.18) <3B92F249-4602-325F-984B-D2DE61EEE4E1> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
        0x7fff5a96a000 -     0x7fff5a98effe  com.apple.locationsupport (2394.0.22 - 2394.0.22) <CA6C86FD-051A-31BB-B3AF-3D02D6FD94B6> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
        0x7fff5b1dc000 -     0x7fff5b1dffff  com.apple.Mangrove (1.0 - 25) <482F300F-9B70-351F-A4DF-B440EEF7368D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff5b39d000 -     0x7fff5b3c3ffc  com.apple.MarkupUI (1.0 - 325.9) <A596E8D7-6DBD-3F01-89AD-B296C9D3B61E> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
        0x7fff5b448000 -     0x7fff5b4d2ff8  com.apple.MediaExperience (1.0 - 1) <0203AF27-AB5E-32FA-B529-AB7F29EEB887> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
        0x7fff5b4d3000 -     0x7fff5b506fff  com.apple.MediaKit (16 - 923) <09FEE738-41E4-3A9C-AF1E-1DD00C56339D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff5b5cb000 -     0x7fff5b961ff9  com.apple.MediaRemote (1.0 - 1) <A0FF8D18-8BD3-3497-A53E-53CA3A072D5B> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote
        0x7fff5b962000 -     0x7fff5b99effc  com.apple.MediaServices (1.0 - 1) <EA82F76E-BF9B-37C3-9C8F-BEBC7D87D0CE> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices
        0x7fff5bcac000 -     0x7fff5bcf8fff  com.apple.spotlight.metadata.utilities (1.0 - 2076.7) <0237323B-EC78-3FBF-9FC7-5A1FE2B5CE25> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
        0x7fff5bcf9000 -     0x7fff5bdcaffa  com.apple.gpusw.MetalTools (1.0 - 1) <99876E08-37D7-3828-8796-56D90C9AFBDB> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
        0x7fff5be28000 -     0x7fff5be41ff4  com.apple.MobileAssets (1.0 - 619.120.1) <07E116E6-7EBC-39F2-B5B4-31BAB6BAF852> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
        0x7fff5bffe000 -     0x7fff5c01cfff  com.apple.MobileKeyBag (2.0 - 1.0) <D5FA7041-297F-3ADC-8C7A-6EAAAB82EB68> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
        0x7fff5c0e8000 -     0x7fff5c27effd  com.apple.Montreal (1.0 - 121.1) <E7881020-FCA6-3DFC-B0EB-9E539F80E821> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
        0x7fff5c27f000 -     0x7fff5c2afff7  com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <6794E1C8-9627-33DF-84F4-FDD02C97F383> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
        0x7fff5c7af000 -     0x7fff5c7b9fff  com.apple.NetAuth (6.2 - 6.2) <B0C03C41-87A3-352B-B130-96E1A6F94B47> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff5c87b000 -     0x7fff5c897ff0  com.apple.network.statistics.framework (1.2 - 1) <B2F29251-A67A-36A9-B1E8-8652C59BADA1> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
        0x7fff5d1cf000 -     0x7fff5d21affb  com.apple.OTSVG (1.0 - 643.1.5.1) <001E5E8C-1DC0-3A6E-BDE4-1B7887E47F76> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
        0x7fff5e437000 -     0x7fff5e442ff2  com.apple.PerformanceAnalysis (1.243.2 - 243.2) <B47C00E5-ECC2-313D-93D4-DBDF562C48EF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
        0x7fff5e443000 -     0x7fff5e46bffb  com.apple.persistentconnection (1.0 - 1.0) <5B2D87A8-2641-3F6D-ACEA-96B00F85AAB5> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
        0x7fff5fee6000 -     0x7fff5ff16ff7  com.apple.pluginkit.framework (1.0 - 1) <EFBD7FE7-02CC-3E30-999D-B036F252F805> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff5ff41000 -     0x7fff5ff54ffc  com.apple.PowerLog (1.0 - 1) <FAD6E2DC-8C9D-38A0-9CB1-75F48473A3E2> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
        0x7fff60dd0000 -     0x7fff60e2aff6  com.apple.ProtectedCloudStorage (1.0 - 1) <6F271388-3817-336D-9B96-08C7AAC4BA39> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
        0x7fff60e2b000 -     0x7fff60e44ffb  com.apple.ProtocolBuffer (1 - 274.24.9.16.3) <5A020941-C43C-303E-8DE8-230FC6A84DBC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
        0x7fff60f56000 -     0x7fff60f59ff4  com.apple.QuickLookNonBaseSystem (1.0 - 1) <8563CD18-DCFE-3868-912F-053FC8C34B9C> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
        0x7fff60f5a000 -     0x7fff60f7dff0  com.apple.quicklook.QuickLookSupport (1.0 - 1) <AFB0DFCC-6580-30E5-8984-831985F37A2C> /System/Library/PrivateFrameworks/QuickLookSupport.framework/Versions/A/QuickLookSupport
        0x7fff60fc4000 -     0x7fff6103dff3  com.apple.Rapport (1.9.5 - 195.2) <AF01D899-3BF9-3586-860A-D95A837101DF> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport
        0x7fff612a4000 -     0x7fff612cdff1  com.apple.RemoteViewServices (2.0 - 148) <D3AAC2BE-3423-3F18-9654-E35F1DD8DDB3> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
        0x7fff61432000 -     0x7fff6146dff0  com.apple.RunningBoardServices (1.0 - 223.140.2) <96BB04BD-D6E0-3D70-8F36-89B46DA1DA30> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
        0x7fff62d4e000 -     0x7fff62d51ff5  com.apple.SecCodeWrapper (4.0 - 448.100.6) <C4BF691D-A09E-37E8-A6CC-1145B79B8722> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
        0x7fff62ec4000 -     0x7fff62febfff  com.apple.Sharing (1526.37 - 1526.37) <CBDA0ADD-F1E7-3B06-9118-C5E183F0D3D6> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff63063000 -     0x7fff63083ff5  com.apple.sidecar-core (1.0 - 209.40.4) <469E5222-A5C7-3B09-B617-EDB6E9E46B93> /System/Library/PrivateFrameworks/SidecarCore.framework/Versions/A/SidecarCore
        0x7fff63084000 -     0x7fff63096ff0  com.apple.sidecar-ui (1.0 - 209.40.4) <5CA517E3-4B92-30B1-96EF-77A7A2FBBEE4> /System/Library/PrivateFrameworks/SidecarUI.framework/Versions/A/SidecarUI
        0x7fff64400000 -     0x7fff646f6ff7  com.apple.SkyLight (1.600.0 - 451.4) <A24929C3-95E6-35A7-9654-46FF3F4D1E80> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
        0x7fff64f43000 -     0x7fff64f51ffb  com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <4D6CAC2A-151B-3BBE-BDB7-E2BE72128691> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
        0x7fff6562d000 -     0x7fff6566eff9  com.apple.StreamingZip (1.0 - 1) <72CA32F8-4C96-3264-A655-623329EB3A28> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
        0x7fff65785000 -     0x7fff6578eff7  com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.1) <14929A5D-C369-3B46-844B-CD29A3D1A015> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
        0x7fff65a45000 -     0x7fff65a55ff3  com.apple.TCC (1.0 - 1) <017AB27D-6821-303A-8FD2-6DAC795CC7AA> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff65f7a000 -     0x7fff66040ff0  com.apple.TextureIO (3.10.9 - 3.10.9) <EEDAB753-329A-396A-8119-5BEDF7DB5A56> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
        0x7fff66210000 -     0x7fff66468ff0  com.apple.UIFoundation (1.0 - 662) <EC55B9E5-7E62-380A-9AB1-FC7BEF663653> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
        0x7fff664ff000 -     0x7fff66505ffe  com.apple.URLFormatting (119 - 119.18) <7F99D166-86DC-3F77-A34A-2DA7183D7160> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
        0x7fff670de000 -     0x7fff670feffc  com.apple.UserManagement (1.0 - 1) <9F00880E-6EA6-3684-B208-455E14EC07C8> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
        0x7fff67eaa000 -     0x7fff67f94ff8  com.apple.ViewBridge (464.1 - 464.1) <25CE39DF-2052-3873-9113-DB52B385C4BB> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff6813a000 -     0x7fff6813bfff  com.apple.WatchdogClient.framework (1.0 - 67.120.2) <FFA17DA1-F6DD-34D3-A708-1F73C8BA7EA7> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
        0x7fff68d6b000 -     0x7fff68d6effa  com.apple.dt.XCTTargetBootstrap (1.0 - 16091) <D459D628-58C5-39A6-B7E8-B691CBEECEC1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
        0x7fff68de8000 -     0x7fff68df6ff5  com.apple.audio.caulk (1.0 - 32.3) <06D695EA-E2BC-31E4-9816-9C12542BA744> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
        0x7fff69138000 -     0x7fff6913aff3  com.apple.loginsupport (1.0 - 1) <12F77885-27DC-3837-9CE9-A25EBA75F833> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
        0x7fff6913b000 -     0x7fff6914effd  com.apple.login (3.0 - 3.0) <C68367BA-2225-31DD-B2D8-16AC0A44421F> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff69180000 -     0x7fff6918cffd  com.apple.perfdata (1.0 - 51.100.6) <21760CFD-62FF-3466-B3AD-191D02411DA0> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
        0x7fff6bc11000 -     0x7fff6bc1dff9  libAudioStatistics.dylib (1104.93) <42CAC6A2-BCC3-391B-B1C1-D0AC69E99CF4> /usr/lib/libAudioStatistics.dylib
        0x7fff6bc1e000 -     0x7fff6bc51ffa  libAudioToolboxUtility.dylib (1104.93) <A7249C4C-6C0A-3C14-BA27-DC966F6CC6A0> /usr/lib/libAudioToolboxUtility.dylib
        0x7fff6bc58000 -     0x7fff6bc8cfff  libCRFSuite.dylib (48) <5E5DE3CB-30DD-34DC-AEF8-FE8536A85E96> /usr/lib/libCRFSuite.dylib
        0x7fff6bc8f000 -     0x7fff6bc99fff  libChineseTokenizer.dylib (34) <7F0DA183-1796-315A-B44A-2C234C7C50BE> /usr/lib/libChineseTokenizer.dylib
        0x7fff6bc9a000 -     0x7fff6bd22fff  libCoreStorage.dylib (551) <A457B0FE-D77F-30AA-99A4-70F6A98DFE59> /usr/lib/libCoreStorage.dylib
        0x7fff6bd25000 -     0x7fff6bd27ff7  libDiagnosticMessagesClient.dylib (112) <C94F3B7B-1854-38EB-9778-834501C53B3F> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff6bd6d000 -     0x7fff6bf24ffb  libFosl_dynamic.dylib (100.4) <737573B2-190A-3BA1-8220-807AD0A2CE5E> /usr/lib/libFosl_dynamic.dylib
        0x7fff6bf4b000 -     0x7fff6bf51ff3  libIOReport.dylib (54) <75D177C4-BAD7-3285-B8E1-3019F49B3178> /usr/lib/libIOReport.dylib
        0x7fff6c033000 -     0x7fff6c03afff  libMatch.1.dylib (36) <5C6F3971-9D9E-3630-BDB6-60BFC5A665E0> /usr/lib/libMatch.1.dylib
        0x7fff6c069000 -     0x7fff6c089ff7  libMobileGestalt.dylib (826.140.5) <2BE94E6A-FA61-312F-84A1-F764D71B7E39> /usr/lib/libMobileGestalt.dylib
        0x7fff6c109000 -     0x7fff6c1e6ff7  libSMC.dylib (20) <5C9C17F2-1E6F-3A19-A440-86F74D82284F> /usr/lib/libSMC.dylib
        0x7fff6c1fb000 -     0x7fff6c1fcfff  libSystem.B.dylib (1281.100.1) <0A6C8BA1-30FD-3D10-83FD-FF29E221AFFE> /usr/lib/libSystem.B.dylib
        0x7fff6c1fd000 -     0x7fff6c288ff7  libTelephonyUtilDynamic.dylib (5017.1) <174030B2-E35F-3F17-A9EF-DF8631F30CCF> /usr/lib/libTelephonyUtilDynamic.dylib
        0x7fff6c289000 -     0x7fff6c28afff  libThaiTokenizer.dylib (3) <4F4ADE99-0D09-3223-B7C0-C407AB6DE8DC> /usr/lib/libThaiTokenizer.dylib
        0x7fff6c2a2000 -     0x7fff6c2b8fff  libapple_nghttp2.dylib (1.39.2) <07FEC48A-87CF-32A3-8194-FA70B361713A> /usr/lib/libapple_nghttp2.dylib
        0x7fff6c2ed000 -     0x7fff6c35fff7  libarchive.2.dylib (72.140.1) <AC311FBA-F2DD-3595-AA76-769F912942B8> /usr/lib/libarchive.2.dylib
        0x7fff6c360000 -     0x7fff6c3f9fe5  libate.dylib (3.0.1) <76EA60FB-748C-313F-8951-B076540BEA97> /usr/lib/libate.dylib
        0x7fff6c3fd000 -     0x7fff6c3fdff3  libauto.dylib (187) <B6124448-7690-34AE-8939-ED84AAC630CE> /usr/lib/libauto.dylib
        0x7fff6c4c3000 -     0x7fff6c4d3ffb  libbsm.0.dylib (60.100.1) <00BFFB9A-2FFE-3C24-896A-251BC61917FD> /usr/lib/libbsm.0.dylib
        0x7fff6c4d4000 -     0x7fff6c4e0fff  libbz2.1.0.dylib (44) <14CC4988-B6D4-3879-AFC2-9A0DDC6388DE> /usr/lib/libbz2.1.0.dylib
        0x7fff6c4e1000 -     0x7fff6c533fff  libc++.1.dylib (902.1) <59A8239F-C28A-3B59-B8FA-11340DC85EDC> /usr/lib/libc++.1.dylib
        0x7fff6c534000 -     0x7fff6c549ffb  libc++abi.dylib (902) <E692F14F-C65E-303B-9921-BB7E97D77855> /usr/lib/libc++abi.dylib
        0x7fff6c54a000 -     0x7fff6c54afff  libcharset.1.dylib (59) <72447768-9244-39AB-8E79-2FA14EC0AD33> /usr/lib/libcharset.1.dylib
        0x7fff6c54b000 -     0x7fff6c55cfff  libcmph.dylib (8) <E72A20DB-2E86-378D-A237-EB9A1370F989> /usr/lib/libcmph.dylib
        0x7fff6c55d000 -     0x7fff6c574fd7  libcompression.dylib (87) <64C91066-586D-38C0-A2F3-3E60A940F859> /usr/lib/libcompression.dylib
        0x7fff6c84e000 -     0x7fff6c864ff7  libcoretls.dylib (167) <770A5B96-936E-34E3-B006-B1CEC299B5A5> /usr/lib/libcoretls.dylib
        0x7fff6c865000 -     0x7fff6c866fff  libcoretls_cfhelpers.dylib (167) <940BF370-FD0C-30A8-AA05-FF48DA44FA4C> /usr/lib/libcoretls_cfhelpers.dylib
        0x7fff6ce10000 -     0x7fff6ce1bfff  libcsfde.dylib (551) <CEE22AEF-4E77-36B1-B007-00303819965F> /usr/lib/libcsfde.dylib
        0x7fff6ce23000 -     0x7fff6ce82ff7  libcups.2.dylib (483.6) <C88D78FE-D238-376C-B16A-39270E39A79D> /usr/lib/libcups.2.dylib
        0x7fff6cf8c000 -     0x7fff6cf8cfff  libenergytrace.dylib (21) <162DFCC0-8F48-3DD0-914F-FA8653E27B26> /usr/lib/libenergytrace.dylib
        0x7fff6cf8d000 -     0x7fff6cfa5fff  libexpat.1.dylib (19.60.2) <FED7C38B-92D8-342D-AED7-871B12D1F7E7> /usr/lib/libexpat.1.dylib
        0x7fff6cfb3000 -     0x7fff6cfb5fff  libfakelink.dylib (149.1) <36146CB2-E6A5-37BB-9EE8-1B4034D8F3AD> /usr/lib/libfakelink.dylib
        0x7fff6cfc4000 -     0x7fff6cfc9fff  libgermantok.dylib (24) <D2AE5AC0-EDCE-3216-B8C9-CF59292A545F> /usr/lib/libgermantok.dylib
        0x7fff6cfca000 -     0x7fff6cfd3ff7  libheimdal-asn1.dylib (564.140.1) <0AC6FB62-2B0F-3E93-A931-E4DC4B1D757A> /usr/lib/libheimdal-asn1.dylib
        0x7fff6cfd4000 -     0x7fff6d0c4fff  libiconv.2.dylib (59) <18311A67-E4EF-3CC7-95B3-C0EDEE3A282F> /usr/lib/libiconv.2.dylib
        0x7fff6d0c5000 -     0x7fff6d31cfff  libicucore.A.dylib (64260.0.1) <8AC2CB07-E7E0-340D-A849-186FA1F27251> /usr/lib/libicucore.A.dylib
        0x7fff6d336000 -     0x7fff6d337fff  liblangid.dylib (133) <30CFC08C-EF36-3CF5-8AEA-C1CB070306B7> /usr/lib/liblangid.dylib
        0x7fff6d338000 -     0x7fff6d350ff3  liblzma.5.dylib (16) <C131EF18-2CDD-3271-8A30-A8760D4FE166> /usr/lib/liblzma.5.dylib
        0x7fff6d368000 -     0x7fff6d40fff7  libmecab.dylib (883.11) <0D5BFD01-D4A7-3C8D-AA69-C329C1A69792> /usr/lib/libmecab.dylib
        0x7fff6d410000 -     0x7fff6d672ff1  libmecabra.dylib (883.11) <E31DE74D-1B88-377F-ACD3-D789D29C3AE7> /usr/lib/libmecabra.dylib
        0x7fff6d9df000 -     0x7fff6da0efff  libncurses.5.4.dylib (57) <995DFEEA-40F3-377F-B73D-D02AC59D591F> /usr/lib/libncurses.5.4.dylib
        0x7fff6db3e000 -     0x7fff6dfbaff5  libnetwork.dylib (1880.120.4) <BA294A54-F309-398D-B308-F97032AFF555> /usr/lib/libnetwork.dylib
        0x7fff6dfbb000 -     0x7fff6dfd2fff  libnetworkextension.dylib (1095.140.2) <D0E8454C-33A9-3F96-B3A0-EDB12C32283A> /usr/lib/libnetworkextension.dylib
        0x7fff6e05b000 -     0x7fff6e08efde  libobjc.A.dylib (787.1) <6DF81160-5E7F-3E31-AA1E-C875E3B98AF6> /usr/lib/libobjc.A.dylib
        0x7fff6e0a1000 -     0x7fff6e0a5fff  libpam.2.dylib (25.100.1) <0502F395-8EE6-3D2A-9239-06FD5622E19E> /usr/lib/libpam.2.dylib
        0x7fff6e0a8000 -     0x7fff6e0deff7  libpcap.A.dylib (89.120.1) <A76EC076-A8EA-354C-B95F-7AB1EAFBCC65> /usr/lib/libpcap.A.dylib
        0x7fff6e11e000 -     0x7fff6e12cff9  libperfcheck.dylib (37.100.2) <9D9C4879-8A80-34C4-B0D2-BE341FD6D321> /usr/lib/libperfcheck.dylib
        0x7fff6e12d000 -     0x7fff6e130ff3  libpmenergy.dylib (214.120.1) <B33FB1C8-EACB-39C5-9B71-283EAB72E7E2> /usr/lib/libpmenergy.dylib
        0x7fff6e131000 -     0x7fff6e133fff  libpmsample.dylib (214.120.1) <F12D8EE0-9284-3E57-AE73-414266E11586> /usr/lib/libpmsample.dylib
        0x7fff6e162000 -     0x7fff6e17afff  libresolv.9.dylib (67.40.1) <C57EDFEF-D36A-310B-8D14-8C68A625B1E8> /usr/lib/libresolv.9.dylib
        0x7fff6e17c000 -     0x7fff6e1c0ff7  libsandbox.1.dylib (1217.141.2) <E8BA5E84-66AF-3995-8F8E-DDC93B0A88E1> /usr/lib/libsandbox.1.dylib
        0x7fff6e1d4000 -     0x7fff6e1d5ff7  libspindump.dylib (281.3) <AE8C1AE9-5CBC-332F-BBE8-370A2A19FED6> /usr/lib/libspindump.dylib
        0x7fff6e1d6000 -     0x7fff6e3c0ff7  libsqlite3.dylib (308.5) <35A2BD9F-4E33-30DE-A994-4AB585AC3AFE> /usr/lib/libsqlite3.dylib
        0x7fff6e4e4000 -     0x7fff6e52eff7  libstdc++.6.dylib (104.1) <1AD78D98-D287-3A49-AFBB-4999CB334D2B> /usr/lib/libstdc++.6.dylib
        0x7fff6e5b6000 -     0x7fff6e610ff8  libusrtcp.dylib (1880.120.4) <05346A91-737C-33D0-B21B-F040950DFB28> /usr/lib/libusrtcp.dylib
        0x7fff6e611000 -     0x7fff6e614ffb  libutil.dylib (57) <F01467F6-23A7-37EE-A170-33CE1577B41D> /usr/lib/libutil.dylib
        0x7fff6e615000 -     0x7fff6e622ff7  libxar.1.dylib (425.2) <EE964412-9E25-30B3-BCC0-CCEFBCC8094B> /usr/lib/libxar.1.dylib
        0x7fff6e628000 -     0x7fff6e70afff  libxml2.2.dylib (33.5) <A579D158-2E09-316C-872E-DD9D93401B2F> /usr/lib/libxml2.2.dylib
        0x7fff6e70e000 -     0x7fff6e736fff  libxslt.1.dylib (16.9) <34A45627-DA5B-37D2-9609-65B425E0010A> /usr/lib/libxslt.1.dylib
        0x7fff6e737000 -     0x7fff6e749ff3  libz.1.dylib (76) <793D9643-CD83-3AAC-8B96-88D548FAB620> /usr/lib/libz.1.dylib
        0x7fff6eff8000 -     0x7fff6effdff3  libcache.dylib (83) <AF488D13-9E89-35E0-B078-BE37CC5B8586> /usr/lib/system/libcache.dylib
        0x7fff6effe000 -     0x7fff6f009fff  libcommonCrypto.dylib (60165.120.1) <C7912BE5-993E-3581-B2A0-6AABDC8C5562> /usr/lib/system/libcommonCrypto.dylib
        0x7fff6f00a000 -     0x7fff6f011fff  libcompiler_rt.dylib (101.2) <49B8F644-5705-3F16-BBE0-6FFF9B17C36E> /usr/lib/system/libcompiler_rt.dylib
        0x7fff6f012000 -     0x7fff6f01bff7  libcopyfile.dylib (166.40.1) <3C481225-21E7-370A-A30E-0CCFDD64A92C> /usr/lib/system/libcopyfile.dylib
        0x7fff6f01c000 -     0x7fff6f0aefdb  libcorecrypto.dylib (866.140.1) <60567BF8-80FA-359A-B2F3-A3BAEFB288FD> /usr/lib/system/libcorecrypto.dylib
        0x7fff6f1bb000 -     0x7fff6f1fbff0  libdispatch.dylib (1173.100.2) <CD9C059C-91D9-30E8-8926-5B9CD0D5D4F5> /usr/lib/system/libdispatch.dylib
        0x7fff6f1fc000 -     0x7fff6f232fff  libdyld.dylib (750.6) <789A18C2-8AC7-3C88-813D-CD674376585D> /usr/lib/system/libdyld.dylib
        0x7fff6f233000 -     0x7fff6f233ffb  libkeymgr.dylib (30) <DB3337BE-01CA-3425-BD0C-87774FC0CDC0> /usr/lib/system/libkeymgr.dylib
        0x7fff6f234000 -     0x7fff6f240ff3  libkxld.dylib (6153.141.2) <EE8ECB4B-2EDB-3440-BBC1-6BDDDF5F1BCE> /usr/lib/system/libkxld.dylib
        0x7fff6f241000 -     0x7fff6f241ff7  liblaunch.dylib (1738.140.1) <AFBCBDD3-0B55-3ECD-8E04-A73A3A57356B> /usr/lib/system/liblaunch.dylib
        0x7fff6f242000 -     0x7fff6f247ff7  libmacho.dylib (959.0.1) <AA613A9C-961A-3B67-B696-4622FA59FC4E> /usr/lib/system/libmacho.dylib
        0x7fff6f248000 -     0x7fff6f24aff3  libquarantine.dylib (110.40.3) <F234E51D-FD0B-3EE4-B679-AE3EE9C536C3> /usr/lib/system/libquarantine.dylib
        0x7fff6f24b000 -     0x7fff6f24cff7  libremovefile.dylib (48) <7C7EFC79-BD24-33EF-B073-06AED234593E> /usr/lib/system/libremovefile.dylib
        0x7fff6f24d000 -     0x7fff6f264ff3  libsystem_asl.dylib (377.60.2) <1563EE02-0657-3B78-99BE-A947C24122EF> /usr/lib/system/libsystem_asl.dylib
        0x7fff6f265000 -     0x7fff6f265ff7  libsystem_blocks.dylib (74) <0D53847E-AF5F-3ACF-B51F-A15DEA4DEC58> /usr/lib/system/libsystem_blocks.dylib
        0x7fff6f266000 -     0x7fff6f2edfff  libsystem_c.dylib (1353.100.2) <BBDED5E6-A646-3EED-B33A-91E4331EA063> /usr/lib/system/libsystem_c.dylib
        0x7fff6f2ee000 -     0x7fff6f2f1ffb  libsystem_configuration.dylib (1061.141.1) <0EE84C33-64FD-372B-974A-AF7A136F2068> /usr/lib/system/libsystem_configuration.dylib
        0x7fff6f2f2000 -     0x7fff6f2f5fff  libsystem_coreservices.dylib (114) <A199156E-058D-3ABB-BCE9-4B9F20DCED0F> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff6f2f6000 -     0x7fff6f2fefff  libsystem_darwin.dylib (1353.100.2) <5B12B5DB-3F30-37C1-8ECC-49A66B1F2864> /usr/lib/system/libsystem_darwin.dylib
        0x7fff6f2ff000 -     0x7fff6f306fff  libsystem_dnssd.dylib (1096.100.3) <EBB4C2C2-E031-3094-B40A-E67BF261D295> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff6f307000 -     0x7fff6f308ffb  libsystem_featureflags.dylib (17) <29FD922A-EC2C-3F25-BCCC-B58D716E60EC> /usr/lib/system/libsystem_featureflags.dylib
        0x7fff6f309000 -     0x7fff6f356ff7  libsystem_info.dylib (538) <8A321605-5480-330B-AF9E-64E65DE61747> /usr/lib/system/libsystem_info.dylib
        0x7fff6f357000 -     0x7fff6f383ff7  libsystem_kernel.dylib (6153.141.2) <A576A1CF-7726-3146-B04B-A26E1CDB9757> /usr/lib/system/libsystem_kernel.dylib
        0x7fff6f384000 -     0x7fff6f3cbfff  libsystem_m.dylib (3178) <00F331F1-0D09-39B3-8736-1FE90E64E903> /usr/lib/system/libsystem_m.dylib
        0x7fff6f3cc000 -     0x7fff6f3f3fff  libsystem_malloc.dylib (283.100.6) <8549294E-4C53-36EB-99F3-584A7393D8D5> /usr/lib/system/libsystem_malloc.dylib
        0x7fff6f3f4000 -     0x7fff6f401ffb  libsystem_networkextension.dylib (1095.140.2) <F06C65C5-2CBE-313C-96E1-A09240F9FE57> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff6f402000 -     0x7fff6f40bff7  libsystem_notify.dylib (241.100.2) <FA22F928-D91B-3AA5-96BB-3186AC0FB264> /usr/lib/system/libsystem_notify.dylib
        0x7fff6f40c000 -     0x7fff6f414fef  libsystem_platform.dylib (220.100.1) <009A7C1F-313A-318E-B9F2-30F4C06FEA5C> /usr/lib/system/libsystem_platform.dylib
        0x7fff6f415000 -     0x7fff6f41ffff  libsystem_pthread.dylib (416.100.3) <62CB1A98-0B8F-31E7-A02B-A1139927F61D> /usr/lib/system/libsystem_pthread.dylib
        0x7fff6f420000 -     0x7fff6f424ff3  libsystem_sandbox.dylib (1217.141.2) <051C4018-4345-3034-AC98-6DE42FB8273B> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff6f425000 -     0x7fff6f427fff  libsystem_secinit.dylib (62.100.2) <F80872AA-E1FD-3D7E-8729-467656EC6561> /usr/lib/system/libsystem_secinit.dylib
        0x7fff6f428000 -     0x7fff6f42fffb  libsystem_symptoms.dylib (1238.120.1) <5820A2AF-CE72-3AB3-ABCC-273A3419FB55> /usr/lib/system/libsystem_symptoms.dylib
        0x7fff6f430000 -     0x7fff6f446ff2  libsystem_trace.dylib (1147.120) <04B47629-847B-3D74-8ABE-C05EF9DEEFE4> /usr/lib/system/libsystem_trace.dylib
        0x7fff6f448000 -     0x7fff6f44dff7  libunwind.dylib (35.4) <42B7B509-BAFE-365B-893A-72414C92F5BF> /usr/lib/system/libunwind.dylib
        0x7fff6f44e000 -     0x7fff6f483ffe  libxpc.dylib (1738.140.1) <3E243A41-030F-38E3-9FD2-7B38C66C35B1> /usr/lib/system/libxpc.dylib
    
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        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: 38340012
        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=4.2G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=4.2G(100%)
     
                                      VIRTUAL   REGION 
    REGION TYPE                          SIZE    COUNT (non-coalesced) 
    ===========                       =======  ======= 
    Accelerate framework                 384K        3 
    Activity Tracing                     256K        1 
    CG backing stores                   2072K        4 
    CoreGraphics                           8K        1 
    CoreImage                             32K        4 
    Foundation                             4K        1 
    JS JIT generated code              128.0M        1 
    JS JIT generated code (reserved)     1.9G        1         reserved VM address space (unallocated)
    JS VM Gigacage                       256K        1 
    JS VM Isolated Heap (reserved)      4160K        1         reserved VM address space (unallocated)
    Kernel Alloc Once                      8K        1 
    MALLOC                             379.3M       71 
    MALLOC guard page                     48K        9 
    MALLOC_MEDIUM (reserved)             1.2G       10         reserved VM address space (unallocated)
    MALLOC_NANO (reserved)             384.0M        1         reserved VM address space (unallocated)
    STACK GUARD                         56.2M       43 
    Stack                               29.3M       43 
    VM_ALLOCATE                        129.4M      155 
    VM_ALLOCATE (reserved)             160.0M        3         reserved VM address space (unallocated)
    WebKit Malloc                       1184K        3 
    __DATA                              97.2M     1064 
    __DATA_CONST                          80K        2 
    __FONT_DATA                            4K        1 
    __GLSLBUILTINS                      5176K        1 
    __LINKEDIT                         478.0M      615 
    __OBJC_RO                           32.3M        1 
    __OBJC_RW                           1908K        2 
    __TEXT                             964.2M      982 
    __UNICODE                            564K        1 
    mapped file                        373.6M       30 
    shared memory                        656K       19 
    ===========                       =======  ======= 
    TOTAL                                6.2G     3075 
    TOTAL, minus reserved VM space       2.6G     3075 
    
    Model: MacBookPro16,1, BootROM 1037.147.4.0.0 (iBridge: 17.16.16610.0.0,0), 8 processors, 8-Core Intel Core i9, 2.4 GHz, 64 GB, SMC 
    Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin
    Graphics: kHW_AMDRadeonPro5500MItem, AMD Radeon Pro 5500M, spdisplays_pcie_device, 8 GB
    Memory Module: BANK 0/ChannelA-DIMM0, 32 GB, DDR4, 2667 MHz, Micron, -
    Memory Module: BANK 2/ChannelB-DIMM0, 32 GB, DDR4, 2667 MHz, Micron, -
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Apr  7 2020 13:09:12 version 9.30.357.41.32.5.49 FWID 01-617711e7
    Bluetooth: Version 7.0.6f7, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    USB Device: USB 3.1 Bus
    USB Device: USB2.0 Hub
    USB Device: Apple T2 Bus
    USB Device: Composite Device
    USB Device: Touch Bar Backlight
    USB Device: Touch Bar Display
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Headset
    USB Device: Ambient Light Sensor
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Apple T2 Controller
    Thunderbolt Bus: MacBook Pro, Apple Inc., 55.3
    Thunderbolt Bus: MacBook Pro, Apple Inc., 55.3
    

    Expected behavior

    After installation, it should work and not cause 3D Slicer to crash

    Actual behavior

    After shutting down Slicer and trying to restart it, it crashes right away not even opening the main window.

    bug 
    opened by che85 25
  • Is there a convenient way to plot a slice from a patient volume?

    Is there a convenient way to plot a slice from a patient volume?

    Is there any convenient way to display for example nth-slice of subject image of subjects_dataset[0] ?

    I want to visualize slices as I apply tranforms to them, the only thing I came up with is converting the the 3D Tensor back to .nii image and from that plotting the slice.

    Can you suggest any convenient method ?

    Thankyou and much appreciated.

    Faraz

    opened by farazahmeds 25
  • 118 resample to target spacing

    118 resample to target spacing

    In the resampling transform, I have added the possibility to resample all images to a common voxelgrid as discussed in issue #118

    It's the first time I have been working directly on a package, so if you have any comments on the code I'm glad to get some feedback ;)

    opened by nwschurink 25
  • Added support for HDF5 Dataset as Image including lazy loading of patches

    Added support for HDF5 Dataset as Image including lazy loading of patches

    Will be able to use HDF5 datasets instead of path or tensor for creation of Image. The dataset can either be in (CxHxWxD) or even (HxWxD) format. If its the later, then the data will be expended for channel dim. With the lazypatch parameter, will be able to enable or disable lazy loading of patches (only the patched portion of the volume will be loaded in the memory from the HDF5 Dataset).

    • [x] I have read the CONTRIBUTING docs and have a developer setup (especially important are pre-commitand pytest)
    • [x] Non-breaking change (would not break existing functionality)
    • [ ] Breaking change (would cause existing functionality to change)
    • [x] Tests added or modified to cover the changes
    • [x] Integration tests passed locally by running pytest
    • [x] In-line docstrings updated
    • [ ] Documentation updated, tested running make html inside the docs/ folder
    • [x] This pull request is ready to be reviewed
    • [ ] If the PR is ready and there are multiple commits, I have squashed them and force-pushed
    opened by soumickmj 24
  • Adding CropOrPad

    Adding CropOrPad

    Hello,

    This time, I am making a cleaner PR for my CropOrPad implementation allowing to either use the center of the volume or the center of a given mask. This comes from the issue : #104

    I hope this helps.

    opened by GReguig 23
  • Fix copying of subclasses of Subject

    Fix copying of subclasses of Subject

    Fixes #694 .

    Description Adds support (and tests) for copying subclasses.

    Tests seem to be cleaner than #718 . Approach is almost the same!

    Checklist

    • [x] I have read the CONTRIBUTING docs and have a developer setup (especially important are pre-commitand pytest)
    • [x] Non-breaking change (would not break existing functionality)
    • [ ] Breaking change (would cause existing functionality to change)
    • [x] Tests added or modified to cover the changes
    • [ ] Integration tests passed locally by running pytest
    • [ ] In-line docstrings updated
    • [ ] Documentation updated, tested running make html inside the docs/ folder
    • [x] This pull request is ready to be reviewed
    • [x] If the PR is ready and there are multiple commits, I have squashed them and force-pushed
    opened by justusschock 22
  • Error when trying to GET torchio.Subject from torchio.SubjectDataset with multiple images with different spatial size

    Error when trying to GET torchio.Subject from torchio.SubjectDataset with multiple images with different spatial size

    I am trying to construct torchio.SubjectDataset where each torchio.Subject has multiple images (different sequences). Potential problem is, all these images are DIFFERENT spatial sizes.

    In order to bring them to same spatial size I've included CropOrPadtransformation. But, when I try to GET one subject from the dataset, I am getting following error:

    ---------------------------------------------------------------------------
    RuntimeError                              Traceback (most recent call last)
    <ipython-input-79-1b7789238bcb> in <module>
    ----> 1 subj = dataset.train_set[0]
          2 #help(tio.Subject)
          3 subj.__dict__
    
    /opt/conda/lib/python3.7/site-packages/torchio/data/dataset.py in __getitem__(self, index)
         83         # Apply transform (this is usually the bottleneck)
         84         if self._transform is not None:
    ---> 85             subject = self._transform(subject)
         86         return subject
         87 
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/transform.py in __call__(self, data)
        124             subject = copy.copy(subject)
        125         with np.errstate(all='raise', under='ignore'):
    --> 126             transformed = self.apply_transform(subject)
        127         if self.keep is not None:
        128             for name, image in images_to_keep.items():
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/augmentation/composition.py in apply_transform(self, subject)
         45     def apply_transform(self, subject: Subject) -> Subject:
         46         for transform in self.transforms:
    ---> 47             subject = transform(subject)
         48         return subject
         49 
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/transform.py in __call__(self, data)
        124             subject = copy.copy(subject)
        125         with np.errstate(all='raise', under='ignore'):
    --> 126             transformed = self.apply_transform(subject)
        127         if self.keep is not None:
        128             for name, image in images_to_keep.items():
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/augmentation/composition.py in apply_transform(self, subject)
         45     def apply_transform(self, subject: Subject) -> Subject:
         46         for transform in self.transforms:
    ---> 47             subject = transform(subject)
         48         return subject
         49 
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/transform.py in __call__(self, data)
        124             subject = copy.copy(subject)
        125         with np.errstate(all='raise', under='ignore'):
    --> 126             transformed = self.apply_transform(subject)
        127         if self.keep is not None:
        128             for name, image in images_to_keep.items():
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/preprocessing/spatial/crop_or_pad.py in apply_transform(self, subject)
        238 
        239     def apply_transform(self, subject: Subject) -> Subject:
    --> 240         padding_params, cropping_params = self.compute_crop_or_pad(subject)
        241         padding_kwargs = {'padding_mode': self.padding_mode}
        242         if padding_params is not None:
    
    /opt/conda/lib/python3.7/site-packages/torchio/transforms/preprocessing/spatial/crop_or_pad.py in _compute_center_crop_or_pad(self, subject)
        157             subject: Subject,
        158             ) -> Tuple[Optional[TypeSixBounds], Optional[TypeSixBounds]]:
    --> 159         source_shape = subject.spatial_shape
        160         # The parent class turns the 3-element shape tuple (w, h, d)
        161         # into a 6-element bounds tuple (w, w, h, h, d, d)
    
    /opt/conda/lib/python3.7/site-packages/torchio/data/subject.py in spatial_shape(self)
        116             (181, 217, 181)
        117         """
    --> 118         self.check_consistent_spatial_shape()
        119         return self.get_first_image().spatial_shape
        120 
    
    /opt/conda/lib/python3.7/site-packages/torchio/data/subject.py in check_consistent_spatial_shape(self)
        294 
        295     def check_consistent_spatial_shape(self) -> None:
    --> 296         self.check_consistent_attribute('spatial_shape')
        297 
        298     def check_consistent_orientation(self) -> None:
    
    /opt/conda/lib/python3.7/site-packages/torchio/data/subject.py in check_consistent_attribute(self, attribute, relative_tolerance, absolute_tolerance, message)
        282                         }),
        283                     )
    --> 284                     raise RuntimeError(message)
        285         except TypeError:
        286             # fallback for non-numeric values
    
    RuntimeError: More than one value for "spatial_shape" found in subject images:
    {'T1w': (416, 512, 36), 'T2w': (448, 512, 36)}
    

    In summary, when it tries to apply CropOrPad transformation, it fails on following code block:

    /opt/conda/lib/python3.7/site-packages/torchio/data/subject.py in check_consistent_spatial_shape(self)
        294 
        295     def check_consistent_spatial_shape(self) -> None:
    --> 296         self.check_consistent_attribute('spatial_shape')
        297 
        298     def check_consistent_orientation(self) -> None:
    

    How do I turn off check_consistent_attribute('spatial_shape')? Because in the end all subjects WILL BE same size. But this breaks things before CropOrPadis applied.

    NOTE: Dataset is created SUCCESSFULLY, it is only when I try to GET one of its Subjects, and when transformations are being applied that code fails.

    opened by cepa995 22
  • Add pythonic slicing support to torchio.Image

    Add pythonic slicing support to torchio.Image

    🚀 Feature

    Allow torchio.Image to be sliced like numpy arrays

    image = torchio.Image(...)
    print(image.spatial_shape) # -> (100, 100, 100)
    
    crop = image[10:20, :, ::2] # returns a new ScalarImage where the affine matrix and data have been modified accordingly
    print(crop.spatial_shape) # -> (10, 100, 50)
    
    # image['data'] or image['affine'] would still work
    

    Motivation

    More pythonic cropping.

    Easier subsampling and flipping.

    Alternatives

    An alternative would be to use torchio.transforms.Crop but it does not support subsampling at regular intervals and flipping (eg. ::2 or ::-1).

    Additional context

    The __getitem__ method of torchio.Image could look like this:

    def __getitem__(self, item):
        if isinstance(item, str):
            if item in (DATA, AFFINE):
                if item not in self:
                    self.load()
            return super().__getitem__(item)
        else:
            check_validity(item) # do some checks
            if not self._loaded:
                 self.load()
            if not isinstance(item, tuple):
                item = (item,)
            new_data = self.data[(slice(None), *item)] # add the channel dim
            new_affine = modify_affine(self.affine, item) # I have a working implementation for this
            new_image = type(self)(tensor=new_data, affine=new_affine)
            return new_image
    
    enhancement 
    opened by marius-sm 0
  • Add support for Python 3.11

    Add support for Python 3.11

    Description Adding support for Python 3.11.

    Checklist

    • [x] I have read the CONTRIBUTING docs and have a developer setup (especially important are pre-commitand pytest)
    • [x] Non-breaking change (would not break existing functionality)
    • [ ] Breaking change (would cause existing functionality to change)
    • [ ] Tests added or modified to cover the changes
    • [ ] Integration tests passed locally by running pytest
    • [ ] In-line docstrings updated
    • [ ] Documentation updated, tested running make html inside the docs/ folder
    • [ ] This pull request is ready to be reviewed
    • [ ] If the PR is ready and there are multiple commits, I have squashed them and force-pushed
    opened by fepegar 1
  • Aggregator smaller model outputs  - Ready to be reviewed

    Aggregator smaller model outputs - Ready to be reviewed

    This is to reference #{1001}.

    I have described the issue and planned fix in detail I believe, this is a draft PR to ask for some help

    I have made most changes I believe, but this is a broken draft to show you my idea, let me know if the assertions are insufficient or if argument/attribute names are not clear

    The bit I'm confused with is the subject padding, the subject is now forced to be padded and the padding is set to be at least the difference between input and output. and the final aggregator output tensor isn't padded

    So say I have an input tensor with shape (128.128.128) , with a patch_size of (64,64,64) and a model output size of (60,60,60)

    The patch_difference is set to be (4,4,4) and overlap is made to be at least equal to this, when the subject is padded in the GridSampler does that mean it's shape is now (136,136,136)?

    Description https://github.com/fepegar/torchio/issues/1001

    Checklist

    • [x] I have read the CONTRIBUTING docs and have a developer setup (especially important are pre-commitand pytest)
    • [x] Non-breaking change (would not break existing functionality)
    • [ ] Breaking change (would cause existing functionality to change)
    • [x] Tests added or modified to cover the changes
    • [x] Integration tests passed locally by running pytest
    • [x] In-line docstrings updated
    • [x] Documentation updated, tested running make html inside the docs/ folder
    • [x] This pull request is ready to be reviewed
    • [x] If the PR is ready and there are multiple commits, I have squashed them and force-pushed
    opened by wahabk 3
  • GridAggregator does not support smaller output than input

    GridAggregator does not support smaller output than input

    Is there an existing issue for this?

    • [X] I have searched the existing issues

    Bug summary

    tio.inference.GridSampler and GridAggregator do not allow the model output to be smaller than the input.

    I was going to submit this as a feature request before making a PR, however, I realised that tio actually supports this depending on patch_overlap and overlap_mode so I believe this should be a bug.

    Code for reproduction

    # This is not a MWE but a test named `test_inference_smaller.py`
    
    from torch.utils.data import DataLoader
    from torchio import DATA
    from torchio import LOCATION
    from torchio.data.inference import GridAggregator
    from torchio.data.inference import GridSampler
    
    from ...utils import TorchioTestCase
    
    
    class TestInference(TorchioTestCase):
        """Tests for `inference` module."""
        def test_inference_no_padding(self):
            self.try_inference(None)
    
        def test_inference_padding(self):
            self.try_inference(3)
    
        def try_inference(self, padding_mode):
            for mode in ["crop", "average", "hann"]:
                for n in 17, 27:
                    patch_size = 10, 15, n
                    patch_overlap = 0, 0, 0 # <------------- this is important and different from the usual test
                    batch_size = 6
    
                    grid_sampler = GridSampler(
                        self.sample_subject,
                        patch_size,
                        patch_overlap,
                        padding_mode=padding_mode,
                    )
                    aggregator = GridAggregator(grid_sampler, overlap_mode=mode)
                    patch_loader = DataLoader(grid_sampler, batch_size=batch_size)
                    for patches_batch in patch_loader:
                        input_tensor = patches_batch['t1'][DATA]
                        locations = patches_batch[LOCATION]
                        logits = model(input_tensor)  # some model
                        outputs = logits
                        # 
                        i_ini, j_ini, k_ini = 1, 1, 1
                        i_fin, j_fin, k_fin = patch_size[0]-1, patch_size[1]-1, patch_size[2]-1
                        outputs = outputs[
                            :,
                            :,
                            i_ini:i_fin,
                            j_ini:j_fin,
                            k_ini:k_fin,
                        ]
                        aggregator.add_batch(outputs, locations)
    
                    output = aggregator.get_output_tensor()
                    assert (output == -5).all()
                    assert output.shape == self.sample_subject.t1.shape
    
    
    def model(tensor):
        tensor[:] = -5
        return tensor
    

    Actual outcome

    This raises a RuntimeError if patch_overlap is smaller than the difference between input and output, and the overlap mode is anything but crop

    Below is the output of running pytest tests/data/inference/test_inference_smaller.py

    Error messages

    ==================================================================================================== FAILURES =====================================================================================================
    _____________________________________________________________________________________ TestInference.test_inference_no_padding _____________________________________________________________________________________
    
    self = <tests.data.inference.test_inference_smaller.TestInference testMethod=test_inference_no_padding>
    
        def test_inference_no_padding(self):
    >       self.try_inference(None)
    
    test_inference_smaller.py:13: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    test_inference_smaller.py:47: in try_inference
        aggregator.add_batch(outputs, locations)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    
    self = <torchio.data.inference.aggregator.GridAggregator object at 0x7f8353643bb0>
    batch_tensor = tensor([[[[[-5, -5, -5,  ..., -5, -5, -5],
               [-5, -5, -5,  ..., -5, -5, -5],
               [-5, -5, -5,  ..., -5..., -5, -5],
               [-5, -5, -5,  ..., -5, -5, -5],
               [-5, -5, -5,  ..., -5, -5, -5]]]]], dtype=torch.int32)
    locations = array([[ 0,  0,  0, 10, 15, 17],
           [ 0,  0, 13, 10, 15, 30],
           [ 0,  5,  0, 10, 20, 17],
           [ 0,  5, 13, 10, 20, 30]])
    
        def add_batch(
                self,
                batch_tensor: torch.Tensor,
                locations: torch.Tensor,
        ) -> None:
            """Add batch processed by a CNN to the output prediction volume.
        
            Args:
                batch_tensor: 5D tensor, typically the output of a convolutional
                    neural network, e.g. ``batch['image'][torchio.DATA]``.
                locations: 2D tensor with shape :math:`(B, 6)` representing the
                    patch indices in the original image. They are typically
                    extracted using ``batch[torchio.LOCATION]``.
            """
            batch = batch_tensor.cpu()
            locations = locations.cpu().numpy()
            patch_sizes = locations[:, 3:] - locations[:, :3]
            # There should be only one patch size
            assert len(np.unique(patch_sizes, axis=0)) == 1
            input_spatial_shape = tuple(batch.shape[-3:])
            target_spatial_shape = tuple(patch_sizes[0])
            if input_spatial_shape != target_spatial_shape:
                message = (
                    f'The shape of the input batch, {input_spatial_shape},'
                    ' does not match the shape of the target location,'
                    f' which is {target_spatial_shape}'
                )
    >           raise RuntimeError(message)
    E           RuntimeError: The shape of the input batch, (8, 13, 15), does not match the shape of the target location, which is (10, 15, 17)
    
    ../../../src/torchio/data/inference/aggregator.py:153: RuntimeError
    ______________________________________________________________________________________ TestInference.test_inference_padding _______________________________________________________________________________________
    
    self = <tests.data.inference.test_inference_smaller.TestInference testMethod=test_inference_padding>
    
        def test_inference_padding(self):
    >       self.try_inference(3)
    
    test_inference_smaller.py:16: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    test_inference_smaller.py:47: in try_inference
        aggregator.add_batch(outputs, locations)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    
    self = <torchio.data.inference.aggregator.GridAggregator object at 0x7f835149ca90>
    batch_tensor = tensor([[[[[-5, -5, -5,  ..., -5, -5, -5],
               [-5, -5, -5,  ..., -5, -5, -5],
               [-5, -5, -5,  ..., -5..., -5, -5],
               [-5, -5, -5,  ..., -5, -5, -5],
               [-5, -5, -5,  ..., -5, -5, -5]]]]], dtype=torch.int32)
    locations = array([[ 0,  0,  0, 10, 15, 17],
           [ 0,  0, 13, 10, 15, 30],
           [ 0,  5,  0, 10, 20, 17],
           [ 0,  5, 13, 10, 20, 30]])
    
        def add_batch(
                self,
                batch_tensor: torch.Tensor,
                locations: torch.Tensor,
        ) -> None:
            """Add batch processed by a CNN to the output prediction volume.
        
            Args:
                batch_tensor: 5D tensor, typically the output of a convolutional
                    neural network, e.g. ``batch['image'][torchio.DATA]``.
                locations: 2D tensor with shape :math:`(B, 6)` representing the
                    patch indices in the original image. They are typically
                    extracted using ``batch[torchio.LOCATION]``.
            """
            batch = batch_tensor.cpu()
            locations = locations.cpu().numpy()
            patch_sizes = locations[:, 3:] - locations[:, :3]
            # There should be only one patch size
            assert len(np.unique(patch_sizes, axis=0)) == 1
            input_spatial_shape = tuple(batch.shape[-3:])
            target_spatial_shape = tuple(patch_sizes[0])
            if input_spatial_shape != target_spatial_shape:
                message = (
                    f'The shape of the input batch, {input_spatial_shape},'
                    ' does not match the shape of the target location,'
                    f' which is {target_spatial_shape}'
                )
    >           raise RuntimeError(message)
    E           RuntimeError: The shape of the input batch, (8, 13, 15), does not match the shape of the target location, which is (10, 15, 17)
    
    ../../../src/torchio/data/inference/aggregator.py:153: RuntimeError
    ================================================================================================ warnings summary =================================================================================================
    test_inference_smaller.py: 16 warnings
      /home/wahab/miniconda3/envs/torchioenv/lib/python3.10/site-packages/SimpleITK/extra.py:183: DeprecationWarning: Converting `np.character` to a dtype is deprecated. The current result is `np.dtype(np.str_)` which is not strictly correct. Note that `np.character` is generally deprecated and 'S1' should be used.
        _np_sitk = {np.dtype(np.character): sitkUInt8,
    
    -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
    ============================================================================================= short test summary info =============================================================================================
    FAILED test_inference_smaller.py::TestInference::test_inference_no_padding - RuntimeError: The shape of the input batch, (8, 13, 15), does not match the shape of the target location, which is (10, 15, 17)
    FAILED test_inference_smaller.py::TestInference::test_inference_padding - RuntimeError: The shape of the input batch, (8, 13, 15), does not match the shape of the target location, which is (10, 15, 17)
    ========================================================================================= 2 failed, 16 warnings in 0.97s =========================================================================================
    

    Expected outcome

    I believe tio should be able to handle smaller outputs. My model predictions are terrible even with averaging or hann windowing. Unfortunately most popular model libraries (such as the great monai) only provide models with the same output size and input. But it is crucial in my application to let the model see a bigger input ROI than semantic label outputs - by padding convolutions, as this gives context for the prediction. The original unet paper uses padded convolutions for smaller outputs than inputs.

    I am going to make a PR tomorrow to add a fix for this, my planned changes are to only change the aggregator. This can be fixed with only changes to GridAggregator and the sampler can be left the same :

    • [x] Check if the aggregator input is smaller than the sampler output in `GridAggregator.add_batch()' before comparing it to the location patch size
    • [x] Create a variable in aggregator called patch_diffs which is the difference between input_spatial_shape and target_spatial_shape
    • [x] Change each dimension of self.patch_overlap to patch_diffs if it is smaller
    • [ ] ~Edit each location before cropping by adding half the diffs from i_ini etc and removing half the diffs from i_fin~
    • [x] Write a new unit test (Let me know if this can be improved)

    If you see an issue with this happening behind the scenes, should model_output_size be added as an argument to GridAggreator or GridSampler? Or should Aggregator raise a warning if it detects it behind the scenes?

    This is a bit confusing even in the code as the models output is the aggregators input, I've tried to be clear here, let me know if I havent.

    System info

    Platform:   Linux-5.4.0-131-generic-x86_64-with-glibc2.27
    TorchIO:    0.18.86
    PyTorch:    1.13.0+cu117
    SimpleITK:  2.2.0 (ITK 5.3)
    NumPy:      1.23.4
    Python:     3.10.8 (main, Nov  4 2022, 13:48:29) [GCC 11.2.0]
    
    bug 
    opened by wahabk 1
  • Implemented reversible RescaleIntensity transform

    Implemented reversible RescaleIntensity transform

    Fixes #993 .

    Description The RescaleIntensity Tranasform constitutes a min-max transformation, which is easily reversible. As a result, the class attribute self.invert_transform is added and the function rescale is touched slightly in order to revert the transformation. As it would be helpful for the user to have access to the class attribute self.in_min_max (and the respective in_min, in_max), the respective attributes are added.

    Known Issues

    I checked the reversibility of the transform. If the resulting torch.Tensor after applying transform and transform.inverse() to a random input vector, a difference between input and output tensor results. I assume this originates from rounding issues between int and float. If the output tensor is kept as a float, the difference is 6.2028e-07 per pixel (max: 3.8147e-06 min: 3.8147e-06) for a 4x64x64x64 tensor. If the output tensor is casted to int, the difference becomes 0.2465 (max: 1. min: 0.)

    in_tensor = torch.randint(256, (4, 64, 64, 64))
    
    transform = torchio.transforms.preprocessing.RescaleIntensity(out_min_max=(-1,1))
    
    transformed = transform(in_tensor)
    reverted = transform.inverse()(transformed)
    
    diff = a-reverted.int()  # or without casting to int
    
    mean_ = torch.mean(diff.float())
    max_ = torch.max(diff.float())
    min_ = torch.min(diff.float())
    

    Checklist

    • [x] I have read the CONTRIBUTING docs and have a developer setup (especially important are pre-commitand pytest)
    • [x] Non-breaking change (would not break existing functionality)
    • [ ] Breaking change (would cause existing functionality to change)
    • [ ] Tests added or modified to cover the changes
    • [x] Integration tests passed locally by running pytest
      • I had a lot of warnings (510 passed, 3846 warnings), which I assume are not originating from my Code (only minor changes) but most likely from other parts of the projects
    • [ ] In-line docstrings updated
    • [ ] Documentation updated, tested running make html inside the docs/ folder
    • [x] This pull request is ready to be reviewed
    • [ ] If the PR is ready and there are multiple commits, I have squashed them and force-pushed
    opened by nicoloesch 0
Releases(v0.18.0)
  • v0.18.0(Nov 29, 2020)

  • v0.17.42(Sep 23, 2020)

    TorchIO is a Python package containing a set of tools to efficiently read, preprocess, sample, augment, and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    Source code(tar.gz)
    Source code(zip)
  • v0.13.9(Mar 3, 2020)

    TorchIO is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    Source code(tar.gz)
    Source code(zip)
  • v0.12.9(Jan 28, 2020)

    TorchIO is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    Source code(tar.gz)
    Source code(zip)
  • v0.12.8(Jan 26, 2020)

    TorchIO is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain-specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    Source code(tar.gz)
    Source code(zip)
  • v0.11.2(Jan 15, 2020)

    TorchIO

    DOI PyPI version Build Status

    torchio is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    This package has been greatly inspired by NiftyNet.

    Credits

    If you like this repository, please click on Star!

    If you used this package for your research, please cite this repository using the information available on its Zenodo entry or use this BibTeX:

    @software{perez_garcia_fernando_2020_3598622,
      author       = {Pérez-García, Fernando},
      title        = {{fepegar/torchio: TorchIO: Tools for loading,
                       augmenting and writing 3D medical images on
                       PyTorch}},
      month        = jan,
      year         = 2020,
      publisher    = {Zenodo},
      doi          = {10.5281/zenodo.3598622},
      url          = {https://doi.org/10.5281/zenodo.3598622}
    }
    

    Index

    Installation

    This package is on the Python Package Index (PyPI). To install it, just run in a terminal the following command:

    $ pip install torchio
    

    Features

    Data handling

    ImagesDataset

    ImagesDataset is a reader of medical images that directly inherits from torch.utils.Dataset. It can be used with a torch.utils.DataLoader for efficient reading and data augmentation.

    It receives a list of subjects, where each subject is composed of a list of torchio.Image instances. The paths suffix must be .nii, .nii.gz or .nrrd.

    import torchio
    
    subject_a = [
        Image('t1', '~/Dropbox/MRI/t1.nrrd', torchio.INTENSITY),
        Image('label', '~/Dropbox/MRI/t1_seg.nii.gz', torchio.LABEL),
    ]
    subject_b = [
        Image('t1', '/tmp/colin27_t1_tal_lin.nii.gz', torchio.INTENSITY),
        Image('t2', '/tmp/colin27_t2_tal_lin.nii', torchio.INTENSITY),
        Image('label', '/tmp/colin27_seg1.nii.gz', torchio.LABEL),
    ]
    subjects_list = [subject_a, subject_b]
    subjects_dataset = torchio.ImagesDataset(subjects_list)
    subject_sample = subjects_dataset[0]
    

    Samplers

    torchio includes grid, uniform and label patch samplers. There is also an aggregator used for dense predictions. For more information about patch-based training, see NiftyNet docs.

    import torch
    import torchio
    
    CHANNELS_DIMENSION = 1
    patch_overlap = 4
    grid_sampler = torchio.inference.GridSampler(
        input_array,  # some NumPy array
        patch_size=128,
        patch_overlap=patch_overlap,
    )
    patch_loader = torch.utils.data.DataLoader(grid_sampler, batch_size=4)
    aggregator = torchio.inference.GridAggregator(
        input_array,
        patch_overlap=patch_overlap,
    )
    
    with torch.no_grad():
        for patches_batch in patch_loader:
            input_tensor = patches_batch['image']
            locations = patches_batch['location']
            logits = model(input_tensor)  # some torch.nn.Module
            labels = logits.argmax(dim=CHANNELS_DIMENSION, keepdim=True)
            outputs = labels
            aggregator.add_batch(outputs, locations)
    
    output_array = aggregator.output_array
    

    Queue

    A patches Queue (or buffer) can be used for randomized patch-based sampling during training. This interactive animation can be used to understand how the queue works.

    import torch
    import torchio
    
    patches_queue = torchio.Queue(
        subjects_dataset=subjects_dataset,  # instance of torchio.ImagesDataset
        queue_length=300,
        samples_per_volume=10,
        patch_size=96,
        sampler_class=torchio.sampler.ImageSampler,
        num_workers=4,
        shuffle_subjects=True,
        shuffle_patches=True,
    )
    patches_loader = DataLoader(patches_queue, batch_size=4)
    
    num_epochs = 20
    for epoch_index in range(num_epochs):
        for patches_batch in patches_loader:
            logits = model(patches_batch)  # model is some torch.nn.Module
    

    Transforms

    The transforms package should remind users of torchvision.transforms. They take as input the samples generated by an ImagesDataset.

    A transform can be quickly applied to an image file using the command-line tool torchio-transform:

    $ torchio-transform input.nii.gz RandomMotion output.nii.gz --kwargs "proportion_to_augment=1 num_transforms=4"
    

    Augmentation

    Intensity
    MRI k-space motion artifacts

    Magnetic resonance images suffer from motion artifacts when the subject moves during image acquisition. This transform follows Shaw et al., 2019 to simulate motion artifacts for data augmentation.

    MRI k-space motion artifacts

    MRI magnetic field inhomogeneity

    MRI magnetic field inhomogeneity creates slow frequency intensity variations. This transform is very similar to the one in NiftyNet.

    MRI bias field artifacts

    Gaussian noise

    Adds noise sampled from a normal distribution with mean 0 and standard deviation sampled from a uniform distribution in the range std_range. It is often used after ZNormalization, as the output of this transform has zero-mean.

    Random Gaussian noise

    Spatial
    B-spline dense elastic deformation

    Random elastic deformation

    Flip

    Reverse the order of elements in an image along the given axes.

    Affine transform

    Preprocessing

    Histogram standardization

    Implementation of New variants of a method of MRI scale standardization adapted from NiftyNet.

    Histogram standardization

    Z-normalization

    This transform first extracts the values with intensity greater than the mean, which is an approximation of the foreground voxels. Then the foreground mean is subtracted from the image and it is divided by the foreground standard deviation.

    Z-normalization

    Rescale

    Rescale intensity values in an image to a certain range.

    Resample

    Resample images to a new voxel spacing using nibabel.

    Pad

    Pad images, like in torchvision.transforms.Pad.

    Crop

    Crop images passing 1, 3, or 6 integers, as in Pad.

    Example

    This example shows the improvement in performance when multiple workers are used to load and preprocess the volumes using multiple workers.

    import time
    import multiprocessing as mp
    
    from tqdm import trange
    
    import torch.nn as nn
    from torch.utils.data import DataLoader
    from torchvision.transforms import Compose
    
    from torchio import ImagesDataset, Queue, DATA
    from torchio.sampler import ImageSampler
    from torchio.utils import create_dummy_dataset
    from torchio.transforms import (
        ZNormalization,
        RandomNoise,
        RandomFlip,
        RandomAffine,
    )
    
    
    # Define training and patches sampling parameters
    num_epochs = 4
    patch_size = 128
    queue_length = 400
    samples_per_volume = 10
    batch_size = 4
    
    class Network(nn.Module):
        def __init__(self):
            super().__init__()
            self.conv = nn.Conv3d(
                in_channels=1,
                out_channels=3,
                kernel_size=3,
            )
        def forward(self, x):
            return self.conv(x)
    
    model = Network()
    
    # Create a dummy dataset in the temporary directory, for this example
    subjects_list = create_dummy_dataset(
        num_images=100,
        size_range=(193, 229),
        force=False,
    )
    
    # Each element of subjects_list is a dictionary:
    # subject_images = [
    #     torchio.Image('one_image', path_to_one_image, torchio.INTENSITY),
    #     torchio.Image('another_image', path_to_another_image, torchio.INTENSITY),
    #     torchio.Image('a_label', path_to_a_label, torchio.LABEL),
    # ]
    
    # Define transforms for data normalization and augmentation
    transforms = (
        ZNormalization(),
        RandomNoise(std_range=(0, 0.25)),
        RandomAffine(scales=(0.9, 1.1), degrees=10),
        RandomFlip(axes=(0,)),
    )
    transform = Compose(transforms)
    subjects_dataset = ImagesDataset(subjects_list, transform)
    
    
    # Run a benchmark for different numbers of workers
    workers = range(mp.cpu_count() + 1)
    for num_workers in workers:
        print('Number of workers:', num_workers)
    
        # Define the dataset as a queue of patches
        queue_dataset = Queue(
            subjects_dataset,
            queue_length,
            samples_per_volume,
            patch_size,
            ImageSampler,
            num_workers=num_workers,
        )
        batch_loader = DataLoader(queue_dataset, batch_size=batch_size)
    
        start = time.time()
        for epoch_index in trange(num_epochs, leave=False):
            for batch in batch_loader:
                # The keys of batch have been defined in create_dummy_dataset()
                inputs = batch['one_modality'][DATA]
                targets = batch['segmentation'][DATA]
                logits = model(inputs)
        print('Time:', int(time.time() - start), 'seconds')
        print()
    

    Output:

    Number of workers: 0
    Time: 394 seconds
    
    Number of workers: 1
    Time: 372 seconds
    
    Number of workers: 2
    Time: 278 seconds
    
    Number of workers: 3
    Time: 259 seconds
    
    Number of workers: 4
    Time: 242 seconds
    

    Related projects

    See also

    Source code(tar.gz)
    Source code(zip)
  • v0.8.0(Jan 9, 2020)

    TorchIO

    PyPI version DOI

    torchio is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    This package has been greatly inspired by NiftyNet.

    Index

    Installation

    $ pip install torchio
    

    Features

    Data handling

    ImagesDataset

    ImagesDataset is a reader of medical images that directly inherits from torch.utils.Dataset. It can be used with a torch.utils.DataLoader for efficient reading and data augmentation.

    The paths suffix must be .nii, .nii.gz or .nrrd.

    import torchio
    
    subject_a = {
        't1': dict(path='~/Dropbox/MRI/t1.nii.gz', type=torchio.INTENSITY),
        'label': dict(path='~/Dropbox/MRI/t1_seg.nii.gz', type=torchio.LABEL),
    }
    subject_b = {
        't1': dict(path='/tmp/colin27_t1_tal_lin.nii.gz', type=torchio.INTENSITY),
        'label': dict(path='/tmp/colin27_seg1.nii.gz', type=torchio.LABEL),
    }
    paths_list = [subject_a, subject_b]
    subjects_dataset = torchio.ImagesDataset(paths_list)
    subject_sample = subjects_dataset[0]
    

    Samplers

    torchio includes grid, uniform and label patch samplers. There is also an aggregator used for dense predictions. The code for these is almost copy-pasted from NiftyNet.

    For more information about patch-based training, see NiftyNet docs.

    import torch
    import torchio
    
    CHANNELS_DIMENSION = 1
    patch_overlap = 4
    grid_sampler = torchio.inference.GridSampler(
        input_array,  # some NumPy array
        patch_size=128,
        patch_overlap=patch_overlap,
    )
    patch_loader = torch.utils.data.DataLoader(grid_sampler, batch_size=4)
    aggregator = torchio.inference.GridAggregator(
        input_array,
        patch_overlap=patch_overlap,
    )
    
    with torch.no_grad():
        for patches_batch in patch_loader:
            input_tensor = patches_batch['image']
            locations = patches_batch['location']
            logits = model(input_tensor)  # some torch.nn.Module
            labels = logits.argmax(dim=CHANNELS_DIMENSION, keepdim=True)
            outputs = labels
            aggregator.add_batch(outputs, locations)
    
    output_array = aggregator.output_array
    

    Queue

    A patches Queue (or buffer) can be used for randomized patch-based sampling during training. This interactive animation can be used to understand how the queue works.

    import torch
    import torchio
    
    patches_queue = torchio.Queue(
        subjects_dataset=subjects_dataset,
        queue_length=300,
        samples_per_volume=10,
        patch_size=96,
        sampler_class=torchio.sampler.ImageSampler,
        num_workers=4,
        shuffle_subjects=True,
        shuffle_patches=True,
    )
    patches_loader = DataLoader(patches_queue, batch_size=4)
    
    num_epochs = 20
    for epoch_index in range(num_epochs):
        for patches_batch in patches_loader:
            logits = model(patches_batch)  # model is some torch.nn.Module
    

    Transforms

    The transforms package should remind users of torchvision.transforms. They take as input the samples generated by an ImagesDataset.

    Intensity

    MRI k-space motion artifacts

    Magnetic resonance images suffer from motion artifacts when the subject moves during image acquisition. This transform follows Shaw et al., 2019 to simulate motion artifacts for data augmentation.

    MRI k-space motion artifacts

    MRI magnetic field inhomogeneity

    MRI magnetic field inhomogeneity creates slow frequency intensity variations. This transform is very similar to the one in NiftyNet.

    MRI bias field artifacts

    Gaussian noise

    Adds noise sampled from a normal distribution with mean 0 and standard deviation sampled from a uniform distribution in the range std_range. It is often used after ZNormalization, as the output of this transform has zero-mean.

    Random Gaussian noise

    Normalization
    Histogram standardization

    Implementation of New variants of a method of MRI scale standardization adapted from NiftyNet.

    Histogram standardization

    Z-normalization

    This transform first extracts the values with intensity greater than the mean, which is an approximation of the foreground voxels. Then the foreground mean is subtracted from the image and it is divided by the foreground standard deviation.

    Z-normalization

    Rescale

    Spatial

    Flip

    Reverse the order of elements in an image along the given axes.

    Affine transform
    B-spline dense elastic deformation

    Random elastic deformation

    Example

    This example shows the improvement in performance when multiple workers are used to load and preprocess the volumes using multiple workers.

    import time
    import multiprocessing as mp
    
    from tqdm import trange
    
    import torch.nn as nn
    from torch.utils.data import DataLoader
    from torchvision.transforms import Compose
    
    from torchio import ImagesDataset, Queue
    from torchio.sampler import ImageSampler
    from torchio.utils import create_dummy_dataset
    from torchio.transforms import (
        ZNormalization,
        RandomNoise,
        RandomFlip,
        RandomAffine,
    )
    
    
    # Define training and patches sampling parameters
    num_epochs = 4
    patch_size = 128
    queue_length = 400
    samples_per_volume = 10
    batch_size = 4
    
    class Network(nn.Module):
        def __init__(self):
            super().__init__()
            self.conv = nn.Conv3d(
                in_channels=1,
                out_channels=3,
                kernel_size=3,
            )
        def forward(self, x):
            return self.conv(x)
    
    model = Network()
    
    # Create a dummy dataset in the temporary directory, for this example
    subjects_list = create_dummy_dataset(
        num_images=100,
        size_range=(193, 229),
        force=False,
    )
    
    # Each element of subjects_list is a dictionary:
    # subject_images = [
    #     torchio.Image('one_image', path_to_one_image, torchio.INTENSITY),
    #     torchio.Image('another_image', path_to_another_image, torchio.INTENSITY),
    #     torchio.Image('a_label', path_to_a_label, torchio.LABEL),
    # ]
    
    # Define transforms for data normalization and augmentation
    transforms = (
        ZNormalization(),
        RandomNoise(std_range=(0, 0.25)),
        RandomAffine(scales=(0.9, 1.1), degrees=10),
        RandomFlip(axes=(0,)),
    )
    transform = Compose(transforms)
    subjects_dataset = ImagesDataset(subjects_list, transform)
    
    
    # Run a benchmark for different numbers of workers
    workers = range(mp.cpu_count() + 1)
    for num_workers in workers:
        print('Number of workers:', num_workers)
    
        # Define the dataset as a queue of patches
        queue_dataset = Queue(
            subjects_dataset,
            queue_length,
            samples_per_volume,
            patch_size,
            ImageSampler,
            num_workers=num_workers,
        )
        batch_loader = DataLoader(queue_dataset, batch_size=batch_size)
    
        start = time.time()
        for epoch_index in trange(num_epochs, leave=False):
            for batch in batch_loader:
                # The keys of batch have been defined in create_dummy_dataset()
                inputs = batch['one_modality']['data']
                targets = batch['segmentation']['data']
                logits = model(inputs)
        print('Time:', int(time.time() - start), 'seconds')
        print()
    

    Output:

    Number of workers: 0
    Time: 394 seconds
    
    Number of workers: 1
    Time: 372 seconds
    
    Number of workers: 2
    Time: 278 seconds
    
    Number of workers: 3
    Time: 259 seconds
    
    Number of workers: 4
    Time: 242 seconds
    
    Source code(tar.gz)
    Source code(zip)
  • v0.7.8(Jan 8, 2020)

    TorchIO

    PyPI version DOI

    torchio is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation and preprocessing. Transforms include typical computer vision operations such as random affine transformations and also domain specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    This package has been greatly inspired by NiftyNet.

    Index

    Installation

    $ pip install torchio
    

    Features

    Data handling

    ImagesDataset

    ImagesDataset is a reader of medical images that directly inherits from torch.utils.Dataset. It can be used with a torch.utils.DataLoader for efficient reading and data augmentation.

    The paths suffix must be .nii, .nii.gz or .nrrd.

    import torchio
    
    subject_a = {
        't1': dict(path='~/Dropbox/MRI/t1.nii.gz', type=torchio.INTENSITY),
        'label': dict(path='~/Dropbox/MRI/t1_seg.nii.gz', type=torchio.LABEL),
    }
    subject_b = {
        't1': dict(path='/tmp/colin27_t1_tal_lin.nii.gz', type=torchio.INTENSITY),
        'label': dict(path='/tmp/colin27_seg1.nii.gz', type=torchio.LABEL),
    }
    paths_list = [subject_a, subject_b]
    subjects_dataset = torchio.ImagesDataset(paths_list)
    subject_sample = subjects_dataset[0]
    

    Samplers

    torchio includes grid, uniform and label patch samplers. There is also an aggregator used for dense predictions. The code for these is almost copy-pasted from NiftyNet.

    For more information about patch-based training, see NiftyNet docs.

    import torch
    import torchio
    
    CHANNELS_DIMENSION = 1
    patch_overlap = 4
    grid_sampler = torchio.inference.GridSampler(
        input_array,  # some NumPy array
        patch_size=128,
        patch_overlap=patch_overlap,
    )
    patch_loader = torch.utils.data.DataLoader(grid_sampler, batch_size=4)
    aggregator = torchio.inference.GridAggregator(
        input_array,
        patch_overlap=patch_overlap,
    )
    
    with torch.no_grad():
        for patches_batch in patch_loader:
            input_tensor = patches_batch['image']
            locations = patches_batch['location']
            logits = model(input_tensor)  # some torch.nn.Module
            labels = logits.argmax(dim=CHANNELS_DIMENSION, keepdim=True)
            outputs = labels
            aggregator.add_batch(outputs, locations)
    
    output_array = aggregator.output_array
    

    Queue

    A patches Queue (or buffer) can be used for randomized patch-based sampling during training. This interactive animation can be used to understand how the queue works.

    import torch
    import torchio
    
    patches_queue = torchio.Queue(
        subjects_dataset=subjects_dataset,
        queue_length=300,
        samples_per_volume=10,
        patch_size=96,
        sampler_class=torchio.sampler.ImageSampler,
        num_workers=4,
        shuffle_subjects=True,
        shuffle_patches=True,
    )
    patches_loader = DataLoader(patches_queue, batch_size=4)
    
    num_epochs = 20
    for epoch_index in range(num_epochs):
        for patches_batch in patches_loader:
            logits = model(patches_batch)  # model is some torch.nn.Module
    

    Transforms

    The transforms package should remind users of torchvision.transforms. They take as input the samples generated by an ImagesDataset.

    Intensity

    MRI k-space motion artifacts

    Magnetic resonance images suffer from motion artifacts when the subject moves during image acquisition. This transform follows Shaw et al., 2019 to simulate motion artifacts for data augmentation.

    MRI k-space motion artifacts

    MRI magnetic field inhomogeneity

    MRI magnetic field inhomogeneity creates slow frequency intensity variations. This transform is very similar to the one in NiftyNet.

    MRI bias field artifacts

    Gaussian noise

    Adds noise sampled from a normal distribution with mean 0 and standard deviation sampled from a uniform distribution in the range std_range. It is often used after ZNormalization, as the output of this transform has zero-mean.

    Random Gaussian noise

    Normalization
    Histogram standardization

    Implementation of New variants of a method of MRI scale standardization adapted from NiftyNet.

    Histogram standardization

    Z-normalization
    Rescale

    Spatial

    Flip

    Reverse the order of elements in an image along the given axes.

    Affine transform
    B-spline dense elastic deformation

    Random elastic deformation

    Example

    This example shows the improvement in performance when multiple workers are used to load and preprocess the volumes using multiple workers.

    import time
    import multiprocessing as mp
    
    from torch.utils.data import DataLoader
    from torchvision.transforms import Compose
    
    from torchio import ImagesDataset, Queue
    from torchio.sampler import ImageSampler
    from torchio.utils import create_dummy_dataset
    from torchio.transforms import (
        ZNormalization,
        RandomNoise,
        RandomFlip,
        RandomAffine,
    )
    
    
    # Define training and patches sampling parameters
    num_epochs = 4
    patch_size = 128
    queue_length = 100
    samples_per_volume = 10
    batch_size = 4
    
    def model(batch, sleep_time=0.1):
        """Dummy function to simulate a forward pass through the network"""
        time.sleep(sleep_time)
        return batch
    
    # Create a dummy dataset in the temporary directory, for this example
    subjects_paths = create_dummy_dataset(
        num_images=100,
        size_range=(193, 229),
        force=False,
    )
    
    # Each element of subjects_paths is a dictionary:
    # subject = {
    #     'one_image': dict(path=path_to_one_image, type=torchio.INTENSITY),
    #     'another_image': dict(path=path_to_another_image, type=torchio.INTENSITY),
    #     'a_label': dict(path=path_to_a_label, type=torchio.LABEL),
    # }
    
    # Define transforms for data normalization and augmentation
    transforms = (
        ZNormalization(),
        RandomNoise(std_range=(0, 0.25)),
        RandomAffine(scales=(0.9, 1.1), degrees=10),
        RandomFlip(axes=(0,)),
    )
    transform = Compose(transforms)
    subjects_dataset = ImagesDataset(subjects_paths, transform)
    
    sample = subjects_dataset[0]
    
    # Run a benchmark for different numbers of workers
    workers = range(mp.cpu_count() + 1)
    for num_workers in workers:
        print('Number of workers:', num_workers)
    
        # Define the dataset as a queue of patches
        queue_dataset = Queue(
            subjects_dataset,
            queue_length,
            samples_per_volume,
            patch_size,
            ImageSampler,
            num_workers=num_workers,
        )
        batch_loader = DataLoader(queue_dataset, batch_size=batch_size)
    
        start = time.time()
        for epoch_index in range(num_epochs):
            for batch in batch_loader:
                logits = model(batch)
        print('Time:', int(time.time() - start), 'seconds')
        print()
    

    Output:

    Number of workers: 0
    Time: 394 seconds
    
    Number of workers: 1
    Time: 372 seconds
    
    Number of workers: 2
    Time: 278 seconds
    
    Number of workers: 3
    Time: 259 seconds
    
    Number of workers: 4
    Time: 242 seconds
    
    Source code(tar.gz)
    Source code(zip)
  • v0.7.0(Jan 6, 2020)

    TorchIO

    PyPI version

    torchio is a Python package containing a set of tools to efficiently read, sample and write 3D medical images in deep learning applications written in PyTorch, including intensity and spatial transforms for data augmentation. Transforms include typical computer vision operations such as random affine transformations and also domain specific ones such as simulation of intensity artifacts due to MRI magnetic field inhomogeneity or k-space motion artifacts.

    This package has been greatly inspired by NiftyNet.

    Index

    Installation

    $ pip install torchio
    

    Features

    Data handling

    ImagesDataset

    ImagesDataset is a reader of medical images that directly inherits from torch.utils.Dataset. It can be used with a torch.utils.DataLoader for efficient reading and data augmentation.

    The paths suffix must be .nii, .nii.gz or .nrrd.

    import torchio
    
    subject_a = {
        't1': dict(path='~/Dropbox/MRI/t1.nii.gz', type=torchio.INTENSITY),
        'label': dict(path='~/Dropbox/MRI/t1_seg.nii.gz', type=torchio.LABEL),
    }
    subject_b = {
        't1': dict(path='/tmp/colin27_t1_tal_lin.nii.gz', type=torchio.INTENSITY),
        'label': dict(path='/tmp/colin27_seg1.nii.gz', type=torchio.LABEL),
    }
    paths_list = [subject_a, subject_b]
    subjects_dataset = torchio.ImagesDataset(paths_list)
    subject_sample = subjects_dataset[0]
    

    Samplers

    torchio includes grid, uniform and label patch samplers. There is also an aggregator used for dense predictions. The code for these is almost copy-pasted from NiftyNet.

    For more information about patch-based training, see NiftyNet docs.

    import torch
    import torchio
    
    CHANNELS_DIMENSION = 1
    patch_overlap = 4
    grid_sampler = torchio.inference.GridSampler(
        input_array,  # some NumPy array
        patch_size=128,
        patch_overlap=patch_overlap,
    )
    patch_loader = torch.utils.data.DataLoader(grid_sampler, batch_size=4)
    aggregator = torchio.inference.GridAggregator(
        input_array,
        patch_overlap=patch_overlap,
    )
    
    with torch.no_grad():
        for patches_batch in patch_loader:
            input_tensor = patches_batch['image']
            locations = patches_batch['location']
            logits = model(input_tensor)  # some torch.nn.Module
            labels = logits.argmax(dim=CHANNELS_DIMENSION, keepdim=True)
            outputs = labels
            aggregator.add_batch(outputs, locations)
    
    output_array = aggregator.output_array
    

    Queue

    A patches Queue (or buffer) can be used for randomized patch-based sampling during training. This interactive animation can be used to understand how the queue works.

    import torch
    import torchio
    
    patches_queue = torchio.Queue(
        subjects_dataset=subjects_dataset,
        queue_length=300,
        samples_per_volume=10,
        patch_size=96,
        sampler_class=torchio.sampler.ImageSampler,
        num_workers=4,
        shuffle_subjects=True,
        shuffle_patches=True,
    )
    patches_loader = DataLoader(patches_queue, batch_size=4)
    
    num_epochs = 20
    for epoch_index in range(num_epochs):
        for patches_batch in patches_loader:
            logits = model(patches_batch)  # model is some torch.nn.Module
    

    Transforms

    The transforms package should remind users of torchvision.transforms. They take as input the samples generated by an ImagesDataset.

    Intensity

    MRI k-space motion artifacts

    Magnetic resonance images suffer from motion artifacts when the subject moves during image acquisition. This transform follows Shaw et al., 2019 to simulate motion artifacts for data augmentation.

    MRI k-space motion artifacts

    MRI magnetic field inhomogeneity

    MRI magnetic field inhomogeneity creates slow frequency intensity variations. This transform is very similar to the one in NiftyNet.

    MRI bias field artifacts

    Gaussian noise

    Adds noise sampled from a normal distribution with mean 0 and standard deviation sampled from a uniform distribution in the range std_range. It is often used after ZNormalization, as the output of this transform has zero-mean.

    Random Gaussian noise

    Normalization
    Histogram standardization

    Implementation of New variants of a method of MRI scale standardization adapted from NiftyNet.

    Histogram standardization

    Z-normalization
    Rescale

    Spatial

    Flip

    Reverse the order of elements in an image along the given axes.

    Affine transform
    B-spline dense elastic deformation

    Random elastic deformation

    Example

    This example shows the improvement in performance when multiple workers are used to load and preprocess the volumes using multiple workers.

    import time
    import multiprocessing as mp
    
    from torch.utils.data import DataLoader
    from torchvision.transforms import Compose
    
    from torchio import ImagesDataset, Queue
    from torchio.sampler import ImageSampler
    from torchio.utils import create_dummy_dataset
    from torchio.transforms import (
        ZNormalization,
        RandomNoise,
        RandomFlip,
        RandomAffine,
    )
    
    
    # Define training and patches sampling parameters
    num_epochs = 4
    patch_size = 128
    queue_length = 100
    samples_per_volume = 10
    batch_size = 4
    
    def model(batch, sleep_time=0.1):
        """Dummy function to simulate a forward pass through the network"""
        time.sleep(sleep_time)
        return batch
    
    # Create a dummy dataset in the temporary directory, for this example
    subjects_paths = create_dummy_dataset(
        num_images=100,
        size_range=(193, 229),
        force=False,
    )
    
    # Each element of subjects_paths is a dictionary:
    # subject = {
    #     'one_image': dict(path=path_to_one_image, type=torchio.INTENSITY),
    #     'another_image': dict(path=path_to_another_image, type=torchio.INTENSITY),
    #     'a_label': dict(path=path_to_a_label, type=torchio.LABEL),
    # }
    
    # Define transforms for data normalization and augmentation
    transforms = (
        ZNormalization(),
        RandomNoise(std_range=(0, 0.25)),
        RandomAffine(scales=(0.9, 1.1), degrees=10),
        RandomFlip(axes=(0,)),
    )
    transform = Compose(transforms)
    subjects_dataset = ImagesDataset(subjects_paths, transform)
    
    sample = subjects_dataset[0]
    
    # Run a benchmark for different numbers of workers
    workers = range(mp.cpu_count() + 1)
    for num_workers in workers:
        print('Number of workers:', num_workers)
    
        # Define the dataset as a queue of patches
        queue_dataset = Queue(
            subjects_dataset,
            queue_length,
            samples_per_volume,
            patch_size,
            ImageSampler,
            num_workers=num_workers,
        )
        batch_loader = DataLoader(queue_dataset, batch_size=batch_size)
    
        start = time.time()
        for epoch_index in range(num_epochs):
            for batch in batch_loader:
                logits = model(batch)
        print('Time:', int(time.time() - start), 'seconds')
        print()
    

    Output:

    Number of workers: 0
    Time: 394 seconds
    
    Number of workers: 1
    Time: 372 seconds
    
    Number of workers: 2
    Time: 278 seconds
    
    Number of workers: 3
    Time: 259 seconds
    
    Number of workers: 4
    Time: 242 seconds
    
    Source code(tar.gz)
    Source code(zip)
Owner
Fernando Pérez-García
PhD student in Medical Imaging at University College London and King's College London.
Fernando Pérez-García
Code accompanying "Learning What To Do by Simulating the Past", ICLR 2021.

Learning What To Do by Simulating the Past This repository contains code that implements the Deep Reward Learning by Simulating the Past (Deep RSLP) a

Center for Human-Compatible AI 24 Aug 07, 2021
Fast sparse deep learning on CPUs

SPARSEDNN **If you want to use this repo, please send me an email: [email pro

Ziheng Wang 44 Nov 30, 2022
TensorFlow tutorials and best practices.

Effective TensorFlow 2 Table of Contents Part I: TensorFlow 2 Fundamentals TensorFlow 2 Basics Broadcasting the good and the ugly Take advantage of th

Vahid Kazemi 8.7k Dec 31, 2022
Physical Anomalous Trajectory or Motion (PHANTOM) Dataset

Physical Anomalous Trajectory or Motion (PHANTOM) Dataset Description This dataset contains the six different classes as described in our paper[]. The

0 Dec 16, 2021
Fine-grained Control of Image Caption Generation with Abstract Scene Graphs

Faster R-CNN pretrained on VisualGenome This repository modifies maskrcnn-benchmark for object detection and attribute prediction on VisualGenome data

Shizhe Chen 7 Apr 20, 2021
Semantically Contrastive Learning for Low-light Image Enhancement

Semantically Contrastive Learning for Low-light Image Enhancement Here, we propose an effective semantically contrastive learning paradigm for Low-lig

48 Dec 16, 2022
This repository compare a selfie with images from identity documents and response if the selfie match.

aws-rekognition-facecompare This repository compare a selfie with images from identity documents and response if the selfie match. This code was made

1 Jan 27, 2022
Feedback is important: response-aware feedback mechanism for background based conversation

RFM The code for the paper: "Feedback is important: response-aware feedback mechanism for background based conversation." Requirements python 3.7 pyto

Jiatao Chen 2 Sep 29, 2022
A generalist algorithm for cell and nucleus segmentation.

Cellpose | A generalist algorithm for cell and nucleus segmentation. Cellpose was written by Carsen Stringer and Marius Pachitariu. To learn about Cel

MouseLand 733 Dec 29, 2022
A DCGAN to generate anime faces using custom mined dataset

Anime-Face-GAN-Keras A DCGAN to generate anime faces using custom dataset in Keras. Dataset The dataset is created by crawling anime database websites

Pavitrakumar P 190 Jan 03, 2023
Code for Learning to Segment The Tail (LST)

Learning to Segment the Tail [arXiv] In this repository, we release code for Learning to Segment The Tail (LST). The code is directly modified from th

47 Nov 07, 2022
[NeurIPS 2020] Blind Video Temporal Consistency via Deep Video Prior

pytorch-deep-video-prior (DVP) Official PyTorch implementation for NeurIPS 2020 paper: Blind Video Temporal Consistency via Deep Video Prior TensorFlo

Yazhou XING 90 Oct 19, 2022
Si Adek Keras is software VR dangerous object detection.

Si Adek Python Keras Sistem Informasi Deteksi Benda Berbahaya Keras Python. Version 1.0 Developed by Ananda Rauf Maududi. Developed date: 24 November

Ananda Rauf 1 Dec 21, 2021
Class-Attentive Diffusion Network for Semi-Supervised Classification [AAAI'21] (official implementation)

Class-Attentive Diffusion Network for Semi-Supervised Classification Official Implementation of AAAI 2021 paper Class-Attentive Diffusion Network for

Jongin Lim 7 Sep 20, 2022
Codes for our IJCAI21 paper: Dialogue Discourse-Aware Graph Model and Data Augmentation for Meeting Summarization

DDAMS This is the pytorch code for our IJCAI 2021 paper Dialogue Discourse-Aware Graph Model and Data Augmentation for Meeting Summarization [Arxiv Pr

xcfeng 55 Dec 27, 2022
Face and other object detection using OpenCV and ML Yolo

Object-and-Face-Detection-Using-Yolo- Opencv and YOLO object and face detection is implemented. You only look once (YOLO) is a state-of-the-art, real-

Happy N. Monday 3 Feb 15, 2022
Pyramid addon for OpenAPI3 validation of requests and responses.

Validate Pyramid views against an OpenAPI 3.0 document Peace of Mind The reason this package exists is to give you peace of mind when providing a REST

Pylons Project 79 Dec 30, 2022
Predicting the duration of arrival delays for commercial flights.

Flight Delay Prediction Our objective is to predict arrival delays of commercial flights. According to the US Department of Transportation, about 21%

Jordan Silke 1 Jan 11, 2022
An end-to-end regression problem of predicting the price of properties in Bangalore.

Bangalore-House-Price-Prediction An end-to-end regression problem of predicting the price of properties in Bangalore. Deployed in Heroku using Flask.

Shruti Balan 1 Nov 25, 2022
Python Single Object Tracking Evaluation

pysot-toolkit The purpose of this repo is to provide evaluation API of Current Single Object Tracking Dataset, including VOT2016 VOT2018 VOT2018-LT OT

348 Dec 22, 2022