Code Monkey home page Code Monkey logo

drakon_editor's Introduction

How to work on DRAKON Editor source code.

  1. Before submitting patch, make sure that unit tests run without error by running unittest/unittest.tcl.

    • There will be error messages and stack traces. It's okay. The bottom line must be "success".
  2. Add new unit tests if necessary.

  3. Add newly added .drn source files to unittest/regenerate.sh

  4. If you change the code generator:

    • Update unittest/regenerate_examples.sh
    • Run unittest/regenerate_examples.sh
  5. If you want to change DRAKON Editor source code:

    • First look for .drn file of source code you want to modify, modify it, generate code from it and commit .drn file and generated file.
    • If there is no .drn file, modify existing source code file.

DRAKON

DRAKON is is an algorithmic visual programming language developed within the Buran space project. Beside programming, DRAKON is also used in medicine, law, business processes and in other non-programming related fields. The rules of DRAKON are optimized to ensure easy understanding by human beings. In DRAKON clarity is above all. DRAKON is made as much ergonomic as possible, as much human readable as possible. DRAKON makes possible to create diagrams that are cognitively optimized for easy comprehension, making it a tool for intelligence augmentation.

Why to use DRAKON than other diagramming systems?

  • No line intersections. You will never find in DRAKON diagram two or more lines intersecting each other! Not seen in other diagramming systems!
  • Silhouette structure. It allows to break one diagram in to several logical parts. Not seen in other diagramming systems!
  • No slanting or curved lines. Only straight lines with right angles.
  • Icons are placed only on vertical lines.
  • Branching is done in a simple, visible and consistent way.
  • Each diagram has one entry and one exit.

Learn DRAKON:

DRAKON Editor

DRAKON Editor is a free open source tool for authoring DRAKON diagrams. It also supports state machine diagrams, entity-relationship and class diagrams.

  • DRAKON Editor runs on Windows, Mac and Linux.
  • The user interface of DRAKON Editor is extremely simple and straightforward.
  • Software developers can build real programs with DRAKON Editor. Source code can be generated in several programming languages, including Java, Processing.org, D, C#, C/C++ (with Qt support), Python, Tcl, Javascript, Lua, Erlang, AutoHotkey and Verilog.

Homepage: http://drakon-editor.sourceforge.net/

Documentation: http://drakon-editor.sourceforge.net/editor.html

How to use release version of DRAKON Editor

Installing Tcl and required packages:

DRAKON Editor needs Tcl 8.6 or higher to run:

  • Windows, Linux and Mac users can download Active Tcl here: http://www.activestate.com/activetcl/downloads
  • For OS X users: If you are having problems with sqlite while using DRAKON Edidor read this: #6 (comment)
  • Or Linux users can install the following packages:
    • tcl8.6
    • tk8.6
    • tcllib
    • libsqlite3-tcl
    • libtk-img

On Ubuntu:

sudo apt-get install tcl8.6 tk8.6 tcllib libsqlite3-tcl libtk-img

Installing and running DRAKON Editor:

  1. Download release version of DRAKON Editor from here: http://drakon-editor.sourceforge.net/editor.html#downloads

  2. Unzip archive.

  3. Run drakon_editor.tcl

How to use development version of DRAKON Editor

Warning! Development version of DRAKON Editor is not as stable as release version and is only for testing purposes.

See notes about Tcl instalation in How to use release version of DRAKON Editor section and after follow these steps:

  1. Click "Download ZIP" at current page.

  2. Unzip archive.

  3. Run drakon_editor.tcl

drakon_editor's People

Contributors

stepan-mitkin avatar vasil-sd avatar vasili111 avatar ylluminarious avatar

Stargazers

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

Watchers

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

drakon_editor's Issues

Feature request: edit in an external editor

Please add the ability to edit the code in an external editor. Since I prefer coding in Vim, it would be nice if I could double-click on some element and its code would be opened in my editor.

constructors in DRAKON will not accept initialization using colon notation

Looks like there is no way to implement in DRAKON that fancy entity initialization right after the constructor/method declaration using a colon after the declaration and a list with parameters to be initialized. DRAKON will allow the initialization of various entities only in the body of the constructor or in the DRAKON file description.
Moving the offending initializations section in the body of the constructor/method is not always working because it will be a "later time" initialization, after the derived object and all base components were already created with wrong values. If the entities of interest are "private" it will be impossible to change them now. The single working option is to avoid using DRAKON diagrams for this kind of initializations and place the C++ code into the file description section.
It will be very useful to allow the use of colon notation for initializing various entities in DRAKON diagrams, something like this:
public ctr : C_Horse(EO_aColor, TO_height),
C_Bird(EO_aColor, B_migrates),
VA_itsNumberBelievers(V_NumBelieve)
Instead of being forced to move all the constructor stuff from the diagram to file properties like this:
=== class ===
class C_Pegasus :public C_Horse, public C_Bird {
private:
long VA_itsNumberBelievers;
public:
/// this is the right way to initialize members inherited from the base class when the derived class
/// is created since RAKON diagram will not accept initializations with colon notion
C_Pegasus(E_COLOR EO_aColor, T_HANDS TO_height, bool B_migrates, long V_NumBelieve):
C_Horse(EO_aColor, TO_height),
C_Bird(EO_aColor, B_migrates),
VA_itsNumberBelievers(V_NumBelieve)
{ std::cout << std::endl << "default C_Pegasus :public C_Horse constructor called ... " << std::endl;
V_Number_Of_Objects_Constructed++;
std::cout << "... default C_Pegasus :public C_Horse constructor tasks finished" << std::endl;
}

final "return 0;" line while generating C++ code

At least with version 1.26 and at least the final return line from the main section must be without any TAB or blank space or DRAKON will insert two return instructions at the end. One line "return 0;" with some blanks in front of it and one line "return;" with no blanks in front. Note the extra line "return;" is returning void, even if the diagram has declared "return int".

OSX Install.

This is not really an issue, I wanted to share my experience trying to get the editor to run on OSX. Ultimately, I failed. Sorry for posting this here, I wasn't sure where else to go. In no particular order, the issues I encountered:

  • no obvious place/forum/mailinglist to ask questions, make comments ...
  • development and download seems split b/t here and sourceforge. Ideally migrate here entirely sourceforge is feeling more and more sketchy these days -> Move Downloads to Github
  • the install is everything but "batteries included", I tried first to install tcl/tk via macports but that led to a rat's nest of dependencies -> for OSX, perhaps it's possible to package an app bundle including a tcl interpreter (i.e. http://wiki.tcl.tk/12945)
  • I ultimately decided to use the ActiveState tcl distro as suggested
  • .. which unfortunately does not include Img
  • how to install Img is more or less undocumented and not obvious to users unfamiliar with it ->(include Img in the download if allowed by license...)
  • after installing Img, calling drakon_editor.tcl crashed with 'Segmentation Fault'

Drakkon looks very nice, I'd like to work with it, but after all that I'm afraid I lost interest... Let me know if you need any more details.

DRAKON abstract error

Update (20160801): I had to change my BASH script to account for the const version of pure virtual methods (previous version worked only if the method was not const).
14.R2-Week_Review.tar.gz
...
Using the qualifier "abstract" in the parameters icon of a DRAKON diagram will end with a fatal error if the pure virtual method has an implementation. Looks like DRAKON will correctly interpret and implement the abstract qualifier if the method has no body implemented, but for the version with implementation it will simply remove the method. Since the pure virtual methods with implementation are used to provide common functionality for all derived classes, the result of DRAKON conversion will be useless.
Attached is an example with this case I adapted from the "Sams Teach Yourself C++ in 21 Days", 5th edition, Second Week Review. I implemented a LOOKOUT tag "#pure_virtual" (instead of "abstract" in the parameters icon) for my BASH script that will check all DRAKON generated files and will fix the syntax to correctly implement the pure virtual request. Just extract the archive in a local directory and execute /…/14.R2-Week_Review/DRAKON/run.prj
I hope Stepan will squash this bug to avoid using BASH stuff.

Ошибка: invalid command name "<bad-db>"

Hello! I hope you are doing well.

I've been trying to run Drakon editor on a 2020 M1 MacBook and having some troubles going through it. I have used the x86_64 terminal and build Img package for Drakon for it to execute using wish and tcl version 8.6.13

When I got the editor version 1.31 from sourceforge linked on DrakonHub and ran it with everything above, whenever I try to create a diagram of any type or a folder, I'm greeted with this error message. Something about a <bad_db> command?

I verified that sqlite3 is also installed and the architectures match.

In my home directory, after I press the button to create a diagram, a new sqlite db is written,

~ λ file drakon_editor.settings
drakon_editor.settings: SQLite 3.x database, last written using SQLite version 3040000, file counter 2, database pages 4, cookie 0x2, schema 4, UTF-8, version-valid-for 2

By any chance anyone had an issue like this? I searched through this github and other forums, but seems to be a unique issue. If you have any advice, please let me know. Thanks!

Screenshot 2023-05-21 at 5 39 22 PM

no line intersection proof

The manual says:
"It has been mathematically proven that DRAKON can
express any possible algorithm without line intersections."

Where is the proof for this?

Drakon 2.0

remove this, found a more appropriate place to post discussion

1.27. Errors on open file and create new file

Version: 1.27(rus)

Create new file and open file:

invalid after png_start_read_image or png_read_update_info
invalid after png_start_read_image or png_read_update_info
while executing
"image create photo -data {
iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/gD+AP7rGN
SCAAAACXBIWXMAAA3WAAAN1gGQb3mcAAAACXZwQWcAAAAW..."
(in namespace eval "::tk::dialog::file" script line 8)
invoked from within
"namespace eval ::tk::dialog::file {
namespace import -force ::tk::msgcat::*
variable showHiddenBtn 0
variable showHiddenVar 1

# Creat..."
(file "/usr/share/tk8.6/tkfbox.tcl" line 20)
invoked from within

"source /usr/share/tk8.6/tkfbox.tcl"
(in namespace eval "::" script line 1)
invoked from within
"namespace eval :: $auto_index($name)"
(procedure "auto_load" line 13)
invoked from within
"auto_load $name [uplevel 1 {::namespace current}]"
(autoloading "::tk::dialog::file::")
(procedure "::unknown" line 22)
invoked from within
"::tk::dialog::file:: save {*}$args"
(procedure "tk_getSaveFile" line 5)
invoked from within
"tk_getSaveFile -parent $parent -defaultextension $extension -initialdir $dir "
(procedure "ds::requestspath" line 3)
invoked from within
"ds::requestspath main .drn .intro "
(procedure "ui::intro.create" line 2)
invoked from within
"ui::intro.create"
invoked from within
".intro.root.create invoke "
invoked from within
".intro.root.create instate !disabled { .intro.root.create invoke } "
invoked from within
".intro.root.create instate pressed { .intro.root.create state !pressed; .intro.root.create instate !disabled { .intro.root.create invoke } } "
(command bound to event)

ROSA Linux R8, x86_64,

rpm -qa | grep tcl
lib64tcl8.6_0-8.6.4-1-rosa2014.1.x86_64
tcl-8.6.4-1-rosa2014.1.x86_64
lib64dbtcl5.2-5.2.42-2-rosa2014.1.x86_64
lib64tcl-devel-8.6.4-1-rosa2014.1.x86_64
lib64qtclucene4-4.8.7-2-rosa2014.1.x86_64
tcl-sqlite3-3.7.7-4-rosa2014.1.x86_64
tcl-tcllib-1.16-1-rosa2014.1.noarch

rpm -qa | grep tkimg
tkimg-1.4-4-rosa2014.1.x86_64

rpm -qa | grep tk | grep 8.6
lib64tk8.6_0-8.6.4-1-rosa2014.1.x86_64
tk-8.6.4-1-rosa2014.1.x86_64

DRAKON missing functionality

DRAKON is the perfect design tool for me. There are only a few missing options on the diagram level. To implement for example:

  1. colon initialization
  2. conversion operator
  3. no explicit constructors
  4. polymorphism
    one has to open "File > File Description" and place there all the code associated with these option (there is a workaround for implementing polymorphism, by adding some blanks in front of the name).
    .
    While the DRAKON way will suffice for now to fully implement a C++ program, it is also true there is a terrible need for DRAKON to allow the missing functionality at diagram level. Only then I can have a neat, organized project without a tremendous amount of code hidden away in some properties.
    .
    For my immediate needs I implemented a BASH script that will parse all DRAKON generated files to identify a few LOOKOUT tags and implement necessary syntax correction to allow the missing functionality. All I have to do is to add in the icon parameters these LOOKOUT tags:
  5. #initializations: ...
  6. #conversion_operator type-id
  7. #no_explicit
    .
    While this approach works (at least with the test cases I built), it will be great if Stepan will add these options in DRAKON without my BASH script mambo-jumbo. Attached is an example, following Mr. Hong tutorial from http://www.bogotobogo.com/cplusplus/C11/5_C11_Move_Semantics_Rvalue_Reference.php
    .
    To test my case just extract the attached project and execute /…/00_move_semantics/DRAKON/run.prj to see the corrections and the program output. Looks like this:
    `These are all DRAKON diagram files from the current project directory:
    CB_Global.drn
    CB_MoveSemantics.drn
    main.drn

These are all DRAKON header and source generated files from the current project directory:
CB_Global.h
CB_MoveSemantics.h
main.h
CB_Global.cpp
CB_MoveSemantics.cpp
main.cpp

STEP1: fix the syntax for initializations with colon notation in DRAKON generated files if "#initializations:" LOOKOUT tag is identified ...
#initializations: syntax corrected in "CB_MoveSemantics.h" file on line 26 ... #initializations: VA_mLength(RLO_other.VA_mLength), PVA_mData(new int[RLO_other.VA_mLength]),
#initializations: syntax corrected in "CB_MoveSemantics.h" file on line 31 ... #initializations: VA_mLength(0), PVA_mData(NULL),
#initializations: syntax corrected in "CB_MoveSemantics.h" file on line 36 ... #initializations: VA_mLength(V_length), PVA_mData(new int[V_length]),
#initializations: syntax corrected in "CB_MoveSemantics.cpp" file on line 24 ... ) : VA_mLength(RLO_other.VA_mLength), PVA_mData(new int[RLO_other.VA_mLength]) {
#initializations: syntax corrected in "CB_MoveSemantics.cpp" file on line 37 ... ) : VA_mLength(0), PVA_mData(NULL) {
#initializations: syntax corrected in "CB_MoveSemantics.cpp" file on line 51 ... ) : VA_mLength(V_length), PVA_mData(new int[V_length]) {

STEP2: fix the syntax for conversion operator in DRAKON generated files if "#conversion_operator" LOOKOUT tag is identified ...
conversion operator syntax corrected in "CB_MoveSemantics.h" file on line 60 ... operator
conversion operator syntax corrected in "CB_MoveSemantics.h" file on line 61 ... unsigned int
conversion operator syntax corrected in "CB_MoveSemantics.cpp" file on line 129 ... CB_MoveSemantics::operator
conversion operator syntax corrected in "CB_MoveSemantics.cpp" file on line 130 ... unsigned int

STEP3: fix the syntax for the wrong "explicit" qualifier in DRAKON generated files if "#no_explicit" LOOKOUT tag is identified ...
syntax correction for wrong "explicit" qualifier in "CB_Global.h" file on line 194 ... CB_Global(
syntax correction for wrong "explicit" qualifier in "CB_MoveSemantics.h" file on line 31 ... CB_MoveSemantics(
syntax correction for wrong "explicit" qualifier in "CB_MoveSemantics.h" file on line 27 ... CB_MoveSemantics(
syntax correction for wrong "explicit" qualifier in "CB_Global.cpp" file on line 186 ... CB_Global::CB_Global(
syntax correction for wrong "explicit" qualifier in "CB_MoveSemantics.cpp" file on line 35 ... CB_MoveSemantics::CB_MoveSemantics(
syntax correction for wrong "explicit" qualifier in "CB_MoveSemantics.cpp" file on line 23 ... CB_MoveSemantics::CB_MoveSemantics(`
00_move_semantics.tar.gz

OpenBSD support

OpenBSD no longer ships libsqlite3 in the ports, I am trying to find a historical version on Yandex or the official source repository for the current official maintainer of libsqlite3 but haven't tracked it down. Has anyone worked toward getting a working DRAKON environment in OpenBSD recently, or already has it working with some setup instructions that can point in the right direction?

The only results in the English language search engines for the libsqlite3 are out-of-date as well.

Export to PNG on OSX

Hi,

First off, thanks for DRAKON. It is very impressive!

Just wanted to say that with a large graph, export to PNG on OSX doesn't seem to work properly. I end up with a mangled image.

generator of language C without "goto" and odd "else"

  1. For users which are not only using the Drakon schema but also are analysing generated source code , I propose to make for C language additional generator without operator "goto".
  2. For better source code I propose to delete "odd else generations":
    For example in code snippet:
    "if(i==1){x=1;}
    else{}"
    second string is odd.
    It is for all language generators, not only for clanguage generator

"File -> Global settings" crash on macOS 10.14 (Mojave)

After installing TCL/TK dependencies on Mojave and running the editor (git cloned repo and then ran via $ ./drakon_editor.tcl) and going to File -> Global settings..., the application crashes:

$ ./drakon_editor.tcl
2019-06-23 16:03:22.217 tclsh8.6[29227:7790508] -[__NSCFNumber windowNumber]: unrecognized selector sent to instance 0xa00007fdec7515ad
2019-06-23 16:03:22.219 tclsh8.6[29227:7790508] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber windowNumber]: unrecognized selector sent to instance 0xa00007fdec7515ad'
*** First throw call stack:
(
	0   CoreFoundation                      0x00007fff30086e39 __exceptionPreprocess + 256
	1   libobjc.A.dylib                     0x00007fff5ad6a3c6 objc_exception_throw + 48
	2   CoreFoundation                      0x00007fff3010153b -[NSObject(NSObject) __retain_OA] + 0
	3   CoreFoundation                      0x00007fff30028938 ___forwarding___ + 1478
	4   CoreFoundation                      0x00007fff300282e8 _CF_forwarding_prep_0 + 120
	5   AppKit                              0x00007fff2d800e33 -[NSApplication(NSEvent) _modalSession:sendEvent:] + 357
	6   libtk8.6.dylib                      0x000000010eae9e42 TkMacOSXEventsCheckProc + 270
	7   libtcl8.6.dylib                     0x0000000109f188ad Tcl_DoOneEvent + 300
	8   libtk8.6.dylib                      0x000000010ea3b9a3 Tk_MainLoop + 33
	9   libtcl8.6.dylib                     0x0000000109f1395b Tcl_MainEx + 1700
	10  tclsh8.6                            0x0000000109e56a3d main + 37
	11  libdyld.dylib                       0x00007fff5c52e3d5 start + 1
	12  ???                                 0x0000000000000002 0x0 + 2
)
libc++abi.dylib: terminating with uncaught exception of type NSException
[1]    29227 abort      ./drakon_editor.tcl

Crash report:

Process:               tclsh8.6 [29227]
Path:                  /usr/local/bin/tclsh8.6
Identifier:            tclsh8.6
Version:               8.6.9 (8.6.9)
Code Type:             X86-64 (Native)
Parent Process:        zsh [1683]
Responsible:           tclsh8.6 [29227]
User ID:               501

Date/Time:             2019-06-23 16:03:22.244 -0400
OS Version:            Mac OS X 10.14.6 (18G48f)
Report Version:        12
Anonymous UUID:        4AF66E7E-77B4-131D-0101-F6EC2E3B9BED


Time Awake Since Boot: 420000 seconds

System Integrity Protection: disabled

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:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber windowNumber]: unrecognized selector sent to instance 0xa00007fdec7515ad'
abort() called
terminating with uncaught exception of type NSException

Application Specific Backtrace 1:
0   CoreFoundation                      0x00007fff30086e39 __exceptionPreprocess + 256
1   libobjc.A.dylib                     0x00007fff5ad6a3c6 objc_exception_throw + 48
2   CoreFoundation                      0x00007fff3010153b -[NSObject(NSObject) __retain_OA] + 0
3   CoreFoundation                      0x00007fff30028938 ___forwarding___ + 1478
4   CoreFoundation                      0x00007fff300282e8 _CF_forwarding_prep_0 + 120
5   AppKit                              0x00007fff2d800e33 -[NSApplication(NSEvent) _modalSession:sendEvent:] + 357
6   libtk8.6.dylib                      0x000000010eae9e42 TkMacOSXEventsCheckProc + 270
7   libtcl8.6.dylib                     0x0000000109f188ad Tcl_DoOneEvent + 300
8   libtk8.6.dylib                      0x000000010ea3b9a3 Tk_MainLoop + 33
9   libtcl8.6.dylib                     0x0000000109f1395b Tcl_MainEx + 1700
10  tclsh8.6                            0x0000000109e56a3d main + 37
11  libdyld.dylib                       0x00007fff5c52e3d5 start + 1
12  ???                                 0x0000000000000002 0x0 + 2

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff5c6692c6 __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff5c724bf1 pthread_kill + 284
2   libsystem_c.dylib             	0x00007fff5c5d36a6 abort + 127
3   libc++abi.dylib               	0x00007fff597b9641 abort_message + 231
4   libc++abi.dylib               	0x00007fff597b97df default_terminate_handler() + 267
5   libobjc.A.dylib               	0x00007fff5ad6c77b _objc_terminate() + 97
6   libc++abi.dylib               	0x00007fff597c519e std::__terminate(void (*)()) + 8
7   libc++abi.dylib               	0x00007fff597c4f86 __cxxabiv1::failed_throw(__cxxabiv1::__cxa_exception*) + 27
8   libc++abi.dylib               	0x00007fff597b7f99 __cxa_throw + 113
9   libobjc.A.dylib               	0x00007fff5ad6a507 objc_exception_throw + 369
10  com.apple.CoreFoundation      	0x00007fff3010153b -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
11  com.apple.CoreFoundation      	0x00007fff30028938 ___forwarding___ + 1478
12  com.apple.CoreFoundation      	0x00007fff300282e8 _CF_forwarding_prep_0 + 120
13  com.apple.AppKit              	0x00007fff2d800e33 -[NSApplication(NSEvent) _modalSession:sendEvent:] + 357
14  libtk8.6.dylib                	0x000000010eae9e42 TkMacOSXEventsCheckProc + 270
15  libtcl8.6.dylib               	0x0000000109f188ad Tcl_DoOneEvent + 300
16  libtk8.6.dylib                	0x000000010ea3b9a3 Tk_MainLoop + 33
17  libtcl8.6.dylib               	0x0000000109f1395b Tcl_MainEx + 1700
18  tclsh8.6                      	0x0000000109e56a3d main + 37
19  libdyld.dylib                 	0x00007fff5c52e3d5 start + 1

Thread 1:
0   libsystem_pthread.dylib       	0x00007fff5c7213f0 start_wqthread + 0

Thread 2:
0   libsystem_kernel.dylib        	0x00007fff5c66a61a __select + 10
1   libtcl8.6.dylib               	0x0000000109f61051 NotifierThreadProc + 475
2   libsystem_pthread.dylib       	0x00007fff5c7222eb _pthread_body + 126
3   libsystem_pthread.dylib       	0x00007fff5c725249 _pthread_start + 66
4   libsystem_pthread.dylib       	0x00007fff5c72140d thread_start + 13

Thread 3:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff5c66322a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff5c66376c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2ffd0e6d __CFRunLoopServiceMachPort + 327
3   com.apple.CoreFoundation      	0x00007fff2ffd03da __CFRunLoopRun + 1619
4   com.apple.CoreFoundation      	0x00007fff2ffcfb35 CFRunLoopRunSpecific + 459
5   com.apple.AppKit              	0x00007fff2d5c337e _NSEventThread + 175
6   libsystem_pthread.dylib       	0x00007fff5c7222eb _pthread_body + 126
7   libsystem_pthread.dylib       	0x00007fff5c725249 _pthread_start + 66
8   libsystem_pthread.dylib       	0x00007fff5c72140d thread_start + 13

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

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

Thread 6:
0   libsystem_pthread.dylib       	0x00007fff5c7213f0 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff5c7213f0 start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib       	0x00007fff5c7213f0 start_wqthread + 0

Thread 9:: Dispatch queue: NSCGSDisableUpdates
0   libsystem_kernel.dylib        	0x00007fff5c66322a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff5c66376c mach_msg + 60
2   com.apple.SkyLight            	0x00007fff5573d249 CGSUpdateManager::enable_updates_common() + 577
3   com.apple.SkyLight            	0x00007fff5573d5e6 SLSReenableUpdateToken + 104
4   libdispatch.dylib             	0x00007fff5c4e05f8 _dispatch_call_block_and_release + 12
5   libdispatch.dylib             	0x00007fff5c4e163d _dispatch_client_callout + 8
6   libdispatch.dylib             	0x00007fff5c4e78e0 _dispatch_lane_serial_drain + 602
7   libdispatch.dylib             	0x00007fff5c4e8396 _dispatch_lane_invoke + 385
8   libdispatch.dylib             	0x00007fff5c4f06ed _dispatch_workloop_worker_thread + 598
9   libsystem_pthread.dylib       	0x00007fff5c721611 _pthread_wqthread + 421
10  libsystem_pthread.dylib       	0x00007fff5c7213fd start_wqthread + 13

Thread 10:
0   libsystem_pthread.dylib       	0x00007fff5c7213f0 start_wqthread + 0

Thread 11:
0   libsystem_pthread.dylib       	0x00007fff5c7213f0 start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00000001188495c0  rcx: 0x00007ffee5da81b8  rdx: 0x0000000000000000
  rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x00007ffee5da81f0  rsp: 0x00007ffee5da81b8
   r8: 0x00007ffee5da8080   r9: 0x00007ffee5da8250  r10: 0x0000000000000000  r11: 0x0000000000000206
  r12: 0x0000000000000307  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x000000000000002d
  rip: 0x00007fff5c6692c6  rfl: 0x0000000000000206  cr2: 0x00007fff92548188
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133


Binary Images:
       0x109e55000 -        0x109e56fff +tclsh8.6 (8.6.9 - 8.6.9) <335C13B0-25A2-3BDC-A259-4F8C4ECB46A2> /usr/local/bin/tclsh8.6
       0x109e5d000 -        0x109f80ff3 +libtcl8.6.dylib (8.6.9 - 8.6.9) <E148294A-B379-3E97-8D3C-26761E81A639> /usr/local/Cellar/tcl-tk/8.6.9/lib/libtcl8.6.dylib
       0x10ea26000 -        0x10eb17ff7 +libtk8.6.dylib (8.6.9 - 8.6.9) <28CFC7D3-6A92-37AE-BC4D-D0A39A0F1961> /usr/local/Cellar/tcl-tk/8.6.9/lib/libtk8.6.dylib
       0x10f2f9000 -        0x10f2fc047  libobjc-trampolines.dylib (756.2) <BB7525A0-AE52-371A-8428-827BAED9E35C> /usr/lib/libobjc-trampolines.dylib
       0x113d5a000 -        0x113d5cfff +libtkimgwindow1.4.9.dylib (0) <D48F2221-DFF0-333C-AF23-216B815C4BF2> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgwindow1.4.9.dylib
       0x113d5f000 -        0x113d62ffb +libtkimg1.4.9.dylib (0) <0E0F36C7-23FB-3431-B448-06EC90F7AB81> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimg1.4.9.dylib
       0x113d66000 -        0x113d69fff +libtkimgtga1.4.9.dylib (0) <DF66FA7C-0D7E-3A3C-B468-9A8B0F939A4B> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgtga1.4.9.dylib
       0x113d6c000 -        0x113d6fff3 +libtkimgico1.4.9.dylib (0) <EC18E6DD-3AE3-3521-92BB-826650F1ABC3> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgico1.4.9.dylib
       0x113d72000 -        0x113d74ffb +libtkimgpcx1.4.9.dylib (0) <0202E864-5A9E-3313-8FB6-5285AB5F8844> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgpcx1.4.9.dylib
       0x113d77000 -        0x113d7afff +libtkimgsgi1.4.9.dylib (0) <93562430-AF63-3B75-AB8E-7A043255615B> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgsgi1.4.9.dylib
       0x113d7d000 -        0x113d80ff7 +libtkimgsun1.4.9.dylib (0) <F7FCCE55-A1F7-3DC3-96D1-6D4BE42E6D00> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgsun1.4.9.dylib
       0x113d83000 -        0x113d84ffb +libtkimgxbm1.4.9.dylib (0) <F6B4A062-75B1-31D1-A881-567D90BC4F7F> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgxbm1.4.9.dylib
       0x113d87000 -        0x113d89ff3 +libtkimgxpm1.4.9.dylib (0) <6DE21883-AA87-3077-893F-27449AD54AD9> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgxpm1.4.9.dylib
       0x113d8c000 -        0x113d8effb +libtkimgps1.4.9.dylib (0) <92817155-0701-33CB-B797-AC30EC3C6530> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgps1.4.9.dylib
       0x113d91000 -        0x113d93ffb +libtkimgjpeg1.4.9.dylib (0) <56CC4327-2A34-3F75-85E3-8C3EE08D3227> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgjpeg1.4.9.dylib
       0x113d96000 -        0x113dc4ff7 +libjpegtcl9.2.0.dylib (0) <5ABBF31D-8183-3D52-AF48-9CEC3ADAC425> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libjpegtcl9.2.0.dylib
       0x113dcb000 -        0x113dcdfff +libtkimgpng1.4.9.dylib (0) <E02ACE60-C6C0-374F-B397-BEFAE8B45C94> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgpng1.4.9.dylib
       0x113dd0000 -        0x113df3ff7 +libpngtcl1.6.35.dylib (0) <3E4A8BDE-FF5B-3FEC-9A5F-317CEEDBBCAF> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libpngtcl1.6.35.dylib
       0x113dfb000 -        0x113e0cffb +libzlibtcl1.2.11.dylib (0) <85B81CF9-44B5-302C-8443-9CD9DFFBE664> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libzlibtcl1.2.11.dylib
       0x113e10000 -        0x113e19ffb +libtkimgtiff1.4.9.dylib (0) <EFBF8A3B-115C-3ECC-9F9A-9900E4046448> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgtiff1.4.9.dylib
       0x113e1d000 -        0x113e5dffb +libtifftcl3.9.7.dylib (0) <F0701E7F-17F7-3272-BA25-EB18B1767490> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtifftcl3.9.7.dylib
       0x113e67000 -        0x113e6aff7 +libtkimgbmp1.4.9.dylib (0) <C8D805D3-0952-3F63-A2B9-C36856839EC6> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgbmp1.4.9.dylib
       0x113e6d000 -        0x113e70ffb +libtkimgppm1.4.9.dylib (0) <F5F13D06-0DD2-3A00-96CD-E2A82A4A248B> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgppm1.4.9.dylib
       0x113e73000 -        0x113e76fff +libtkimggif1.4.9.dylib (0) <3FF3F1B5-7EBE-3855-9FE3-9ECDD5DBA06A> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimggif1.4.9.dylib
       0x113e79000 -        0x113e7dfff +libtkimgpixmap1.4.9.dylib (0) <454C9D91-4075-36EC-B0A8-7D0FFB938C18> /usr/local/Cellar/tcl-tk/8.6.9/lib/Img/libtkimgpixmap1.4.9.dylib
       0x113e80000 -        0x113f52ff7 +libsqlite3.25.3.dylib (0) <B84A1BCE-9092-3CF2-AA2C-046700B6ACFF> /usr/local/Cellar/tcl-tk/8.6.9/lib/sqlite3.25.3/libsqlite3.25.3.dylib
       0x1187a7000 -        0x11881170f  dyld (655.1.1) <DDF270B5-63D4-3CCD-8847-23F64BCB9ACA> /usr/lib/dyld
    0x7fff25c3b000 -     0x7fff25d34ff7  com.apple.AMDRadeonX5000MTLDriver (2.11.17 - 2.1.1) <1E138B9D-CB62-3483-82BB-01BCD4AB4A0D> /System/Library/Extensions/AMDRadeonX5000MTLDriver.bundle/Contents/MacOS/AMDRadeonX5000MTLDriver
    0x7fff2c18b000 -     0x7fff2c18bfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <B2A0C739-1D41-3452-9D00-8C01ADA5DD99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff2c18c000 -     0x7fff2c1a2fff  libCGInterfaces.dylib (506.22) <5CCB7F4C-B11F-39B4-AF43-173D8A839632> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff2c1a3000 -     0x7fff2ca97fcb  com.apple.vImage (8.1 - ???) <2905F53F-12C4-3583-A0A3-82607C5341CA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff2ca98000 -     0x7fff2cc3efeb  libBLAS.dylib (1243.200.4) <02059CCF-0B14-3BFA-9B74-B5685219682E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff2cc3f000 -     0x7fff2cc83ff7  libBNNS.dylib (38.250.1) <EE2AF1CA-2DAA-33E8-AFF3-4694C5D72DA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2cc84000 -     0x7fff2d03cff3  libLAPACK.dylib (1243.200.4) <2CD8E9C6-E489-38E1-8A08-42CBE87FAC77> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2d03d000 -     0x7fff2d052ffb  libLinearAlgebra.dylib (1243.200.4) <E7507B69-EF24-39D6-9B35-4A66E833C3F8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff2d053000 -     0x7fff2d058ff3  libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2d059000 -     0x7fff2d0d5ff3  libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff2d0d6000 -     0x7fff2d0e8ffb  libSparseBLAS.dylib (1243.200.4) <069BE0D3-FEDF-3848-81B7-B5D64F511EC6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2d0e9000 -     0x7fff2d289fef  libvDSP.dylib (671.250.4) <CA46FD92-D0CB-39B5-BD26-BEB3897D3154> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff2d28a000 -     0x7fff2d3fefdf  libvMisc.dylib (671.250.4) <A721BA6E-F69A-32EC-A0D4-4FE5D7CC2629> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2d3ff000 -     0x7fff2d3fffff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <A83C1419-E651-3924-8A6D-FF7321C8AB90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2d5a1000 -     0x7fff2e356ff7  com.apple.AppKit (6.9 - 1671.60.105) <8B68E7BB-812B-357A-92B9-920D20218699> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2e3a8000 -     0x7fff2e3a8fff  com.apple.ApplicationServices (50.1 - 50.1) <D4EF359D-383D-3A0C-B401-A40E8CCC149D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff2e3a9000 -     0x7fff2e414fff  com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2e4ad000 -     0x7fff2e5c4fff  libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff2e5c5000 -     0x7fff2e607fff  libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff2e661000 -     0x7fff2e693fff  libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff2e6f8000 -     0x7fff2e6fcff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <75FB05DC-6C28-3E83-8AD3-E9FEAEAD606C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2e797000 -     0x7fff2e7e9ff7  com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff2e7ea000 -     0x7fff2e7f9fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2e7fa000 -     0x7fff2e843ff7  com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2e844000 -     0x7fff2e87dff7  com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2e87e000 -     0x7fff2e88afff  com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2e88b000 -     0x7fff2eb02ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <DAAE6A04-4112-3CEC-BDCD-1D0256C1229A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2eb04000 -     0x7fff2eb04fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <8BDD17B0-C3B5-3F4D-A39F-E4FCAE31A16A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff2ee5d000 -     0x7fff2f1fefff  com.apple.CFNetwork (978.0.7 - 978.0.7) <B2133D0D-1399-3F17-80F0-313E3A241C89> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff2f213000 -     0x7fff2f213fff  com.apple.Carbon (158 - 158) <A92FDA05-FBBF-3049-B55A-1DCE351BB5C0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff2f214000 -     0x7fff2f217ffb  com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff2f218000 -     0x7fff2f50efff  com.apple.HIToolbox (2.1.1 - 918.6) <F3B502CD-91FA-3DDA-B39E-B2E7BFD86A8D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff2f50f000 -     0x7fff2f512ff3  com.apple.help (1.3.8 - 66) <A08517EB-8958-36C9-AEE0-1A8FEEACBE3F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff2f513000 -     0x7fff2f518ff7  com.apple.ImageCapture (9.0 - 1534.2) <DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff2f519000 -     0x7fff2f5aeff3  com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff2f5af000 -     0x7fff2f5c7ff7  com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff2f5e7000 -     0x7fff2f5e8ff7  com.apple.print.framework.Print (14.2 - 267.4) <A7A9D2A0-D4E0-35EF-A0F7-50521F707C33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff2f5e9000 -     0x7fff2f5ebff7  com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff2f5ec000 -     0x7fff2f5f2ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2f714000 -     0x7fff2f714fff  com.apple.Cocoa (6.11 - 23) <C09B50ED-76AE-3C65-A1E0-81A4FDC42FCB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff2f722000 -     0x7fff2f871ff7  com.apple.ColorSync (4.13.0 - 3345.6) <6D347974-3DC7-3A32-847A-A742208E8288> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2f9fd000 -     0x7fff2fa83fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <2A815F96-A0C0-34E2-A89B-82AE680344CE> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2fae7000 -     0x7fff2fb11ffb  com.apple.CoreBluetooth (1.0 - 1) <D95AC945-998D-3D89-B3A5-51D2465BD488> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff2fb12000 -     0x7fff2fea5ff3  com.apple.CoreData (120 - 866.6) <2408A361-E56E-30AD-B8CF-94305552E86C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff2fea6000 -     0x7fff2ff95fff  com.apple.CoreDisplay (101.3 - 110.12) <396CFAC8-1642-3D75-B5ED-A3FF38129B4C> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2ff96000 -     0x7fff303daff7  com.apple.CoreFoundation (6.9 - 1575.12) <2940291F-3EB3-3140-88E0-C97CAA2A5EBE> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff303dc000 -     0x7fff30a88fff  com.apple.CoreGraphics (2.0 - 1265.9) <DF678AF3-E2CF-33EF-B9A8-0FA11D918763> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff30a8a000 -     0x7fff30daafff  com.apple.CoreImage (14.4.0 - 750.0.140) <11026E39-D2FF-3CF6-8ACE-7BA293F9853E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff312bf000 -     0x7fff312bffff  com.apple.CoreServices (946 - 946) <41A3A027-8D06-3A98-9425-148384C9F944> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff312c0000 -     0x7fff3133cff7  com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff3133d000 -     0x7fff31614fff  com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) <52F5484E-94B1-37B7-B1AC-E210DF5721AE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff31615000 -     0x7fff3165dff7  com.apple.DictionaryServices (1.2 - 284.16.4) <746EB200-DC51-30AE-9CBC-608A7B4CC8DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff3165e000 -     0x7fff31666ffb  com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff31667000 -     0x7fff31817ff7  com.apple.LaunchServices (946 - 946) <C390AD1E-1314-320D-8106-24E54405B312> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff31818000 -     0x7fff318b6ff7  com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff318b7000 -     0x7fff31901ff7  com.apple.CoreServices.OSServices (946 - 946) <4832519A-E9CA-39D9-8AC3-96942318FA04> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff31902000 -     0x7fff31969ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff3196a000 -     0x7fff3198bff3  com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff31c96000 -     0x7fff31df8ff3  com.apple.CoreText (352.0 - 584.26.3.2) <59919B0C-CBD5-3877-8D6F-D6048F1E5F42> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff31df9000 -     0x7fff31e39ff3  com.apple.CoreVideo (1.8 - 281.4) <10CF8E52-07E3-382B-8091-2CEEEFFA69B4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff31e3a000 -     0x7fff31ec9fff  com.apple.framework.CoreWLAN (13.0 - 1375.2) <BF4B29F7-FBC8-3299-98E8-C3F8C04B7C92> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff32120000 -     0x7fff32125ffb  com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff322eb000 -     0x7fff32698fff  com.apple.Foundation (6.9 - 1575.12) <308820C2-6B47-31EB-85D4-D2ECA4182203> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff32707000 -     0x7fff32736ffb  com.apple.GSS (4.0 - 2.0) <E2B90D08-3857-3155-9FCC-07D778988EC9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff32836000 -     0x7fff32940fff  com.apple.Bluetooth (6.0.14 - 6.0.14d2) <927A9198-F787-3A7D-B9EE-B7973F4C28B6> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff329a3000 -     0x7fff32a32fff  com.apple.framework.IOKit (2.0.2 - 1483.260.4) <106F11F7-B126-3C6A-AAFF-DB531F4EFFBF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff32a34000 -     0x7fff32a43ffb  com.apple.IOSurface (255.6.1 - 255.6.1) <85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff32a97000 -     0x7fff32c25fff  com.apple.ImageIO.framework (3.3.0 - 1850.2) <EAA38DD6-8072-3E7C-AC9E-C84B8FD8B5F6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff32c26000 -     0x7fff32c2affb  libGIF.dylib (1850.2) <E3C2899B-B8F9-348F-85C9-5AB60CBDA918> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff32c2b000 -     0x7fff32d08ff7  libJP2.dylib (1850.2) <3D039F77-0A78-3937-A820-7B521E556F12> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff32d09000 -     0x7fff32d2efff  libJPEG.dylib (1850.2) <A0DDFC59-08D7-3A64-A79F-FBFF514FA415> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff32ff2000 -     0x7fff33018ff7  libPng.dylib (1850.2) <28481306-323B-3769-B147-4E911F3B921A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff33019000 -     0x7fff3301bffb  libRadiance.dylib (1850.2) <683CCBC4-89DC-322A-9406-075FDE41BE91> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff3301c000 -     0x7fff33069ffb  libTIFF.dylib (1850.2) <32DE59CE-C252-3D5A-85BC-82BC466DCCD3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff341e1000 -     0x7fff341fafff  com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff3503e000 -     0x7fff350e6ff7  com.apple.Metal (162.2 - 162.2) <70AE0DE5-A5C2-3D1F-9643-08B8CFEC2B65> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff35102000 -     0x7fff35121ff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <44CE8362-E972-3697-AD6F-15BC863BAEB8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff35122000 -     0x7fff3519efe7  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <EE8440DA-66DF-3923-ABBC-E0543211C069> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff3519f000 -     0x7fff351c6fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <E64450DF-2B96-331E-B7F4-666E00571C70> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff351c7000 -     0x7fff352f2ff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff352f3000 -     0x7fff3530dfff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff3530e000 -     0x7fff3530fff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff36106000 -     0x7fff36112ff7  com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff38bb0000 -     0x7fff38c07ff7  com.apple.opencl (2.15.3 - 2.15.3) <AFF3507A-3D52-351A-893F-1E45054E1F24> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff38c08000 -     0x7fff38c23ff7  com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff38c24000 -     0x7fff38c2fffb  com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff3957f000 -     0x7fff39581fff  libCVMSPluginSupport.dylib (17.7.3) <CD58E7A0-73F8-30FA-8FAD-40134CC12CF1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff39582000 -     0x7fff39587ff3  libCoreFSCache.dylib (166.2) <3C8D2E57-A596-3F07-8CD9-441745F01C77> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff39588000 -     0x7fff3958cfff  libCoreVMClient.dylib (166.2) <71C35111-5B89-3725-9C5A-68C690AFD324> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff3958d000 -     0x7fff39595ff7  libGFXShared.dylib (17.7.3) <63619576-7C07-37B3-9EFE-4CF9E75EC16D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff39596000 -     0x7fff395a1fff  libGL.dylib (17.7.3) <7BE3A89A-1F5D-341B-85E0-F11BFF6F85EC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff395a2000 -     0x7fff395dcfef  libGLImage.dylib (17.7.3) <41BFFF58-7EDC-38D9-9519-A1E53BFE082D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff39750000 -     0x7fff3978efff  libGLU.dylib (17.7.3) <05E37784-E190-301E-BC05-AA09B8591735> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff3a12b000 -     0x7fff3a13affb  com.apple.opengl (17.7.3 - 17.7.3) <525FCAB5-28FF-3618-ADC5-40BF9C4D01A1> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff3af3d000 -     0x7fff3b194ff7  com.apple.QuartzCore (1.11 - 701.12) <AED11139-3EFD-3A33-AE54-A19AA969B126> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff3b9c9000 -     0x7fff3bcc9ff7  com.apple.security (7.0 - 58286.270.2) <A93BDA13-4083-3847-8CE9-8BC1ADFDC0A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3bcca000 -     0x7fff3bd56fff  com.apple.securityfoundation (6.0 - 55185.260.1) <67380EA7-52F6-3038-9B4C-E4A971738FAC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff3bd88000 -     0x7fff3bd8cfff  com.apple.xpc.ServiceManagement (1.0 - 1) <FCF7BABA-DDDD-3770-8DAC-7069850203C2> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff3c125000 -     0x7fff3c192fff  com.apple.SystemConfiguration (1.17 - 1.17) <8BA1932C-A8AB-3EE2-B1D0-10EBEAA1F1E0> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff3f46f000 -     0x7fff3f514feb  com.apple.APFS (1.0 - 1) <2D22485D-552D-3CB6-9FE1-38547597918F> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff3ff27000 -     0x7fff3ff28ff7  com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff40529000 -     0x7fff40555ff7  com.apple.framework.Apple80211 (13.0 - 1380.2) <16F093EF-370B-3B90-8DB4-E94624431D15> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff4067d000 -     0x7fff4068cfc7  com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff40788000 -     0x7fff40793fff  com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff407d4000 -     0x7fff4081dff3  com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff40a71000 -     0x7fff40a93fff  com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff40bf2000 -     0x7fff40c06ffb  com.apple.AssertionServices (1.0 - 1) <456E507A-4561-3628-9FBE-173ACE7429D8> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff40fd4000 -     0x7fff410c0ff7  com.apple.AuthKit (1.0 - 1) <2765ABE9-54F2-3E45-8A93-1261E251B90D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff41282000 -     0x7fff4128afff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff4128b000 -     0x7fff41320fff  com.apple.backup.framework (1.10.5 - ???) <F26B6E93-E745-30BF-9DB3-DEA9C898E33D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff41321000 -     0x7fff4138eff3  com.apple.BaseBoard (360.28 - 360.28) <68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff42ff9000 -     0x7fff43002ffb  com.apple.CommonAuth (4.0 - 2.0) <93335CB6-ABEB-3EC7-A040-8A667F40D5F3> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff43cdb000 -     0x7fff43cecff7  com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff44296000 -     0x7fff442fcff7  com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff445a9000 -     0x7fff445b1ff7  com.apple.CorePhoneNumbers (1.0 - 1) <11F97C7E-C183-305F-8E6C-9B374F50E26B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff4472d000 -     0x7fff4475eff3  com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff44b25000 -     0x7fff44ba9fff  com.apple.CoreSymbolication (10.2 - 64490.25.1) <4992A3CD-CDA2-36A3-B5A4-8DE14E9D9A5E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff44c39000 -     0x7fff44d64ff7  com.apple.coreui (2.1 - 499.10) <A80F4B09-F940-346F-A9DF-4EFADD9220A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff44d65000 -     0x7fff44f05fff  com.apple.CoreUtils (5.9 - 590.16) <61B0A671-C628-3AC8-949A-65A8EBC66371> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff44f59000 -     0x7fff44fbcff7  com.apple.framework.CoreWiFi (13.0 - 1375.2) <CA4B835A-27AC-3FAB-9F44-E48548EA2442> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff44fbd000 -     0x7fff44fceff7  com.apple.CrashReporterSupport (10.13 - 938.25) <C7665EC7-9389-3717-B152-A59D7872C63C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff4505e000 -     0x7fff4506dfff  com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff4506e000 -     0x7fff45072ff7  com.apple.DSExternalDisplay (3.1 - 380) <787B9748-B120-3453-B8FE-61D9E363A9E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff450f3000 -     0x7fff45168ffb  com.apple.datadetectorscore (7.0 - 590.26) <94D1DBA4-460F-35C3-83CF-608D16342F74> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff451b4000 -     0x7fff451f1ff7  com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff451f2000 -     0x7fff4532dff7  com.apple.desktopservices (1.13.5 - ???) <4F9CB0FC-C292-34BE-AD24-8A909935BBA1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff46274000 -     0x7fff4668ffff  com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff49f43000 -     0x7fff49f44fff  libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff4b5e4000 -     0x7fff4b5e9fff  com.apple.GPUWrangler (3.50.10 - 3.50.10) <DE2A6B3B-1C2C-33E9-B0A6-26811D69A895> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff4c3f5000 -     0x7fff4c404fff  com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff4c568000 -     0x7fff4c5dcffb  com.apple.Heimdal (4.0 - 2.0) <D97FCF19-EAD6-3E2F-BE88-F817E45CAE96> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff4c5dd000 -     0x7fff4c60bfff  com.apple.HelpData (2.3 - 184.4) <22850610-29F8-3902-93A3-BBF403440185> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff4d8d4000 -     0x7fff4d8ddfff  com.apple.IOAccelMemoryInfo (1.0 - 1) <F9952B46-E0D5-3972-9F81-552DDA9DDE74> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff4d8de000 -     0x7fff4d8e5ffb  com.apple.IOAccelerator (404.12 - 404.12) <3EA5F6A7-5B26-3A45-9B03-737CE55F56FD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff4d8e9000 -     0x7fff4d901fff  com.apple.IOPresentment (1.0 - 42.6) <A295C932-E4FB-31FB-9A06-6E0186B1E7E2> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff4dca9000 -     0x7fff4dcd6ff7  com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff4df6a000 -     0x7fff4df7cff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <C534C172-E5CB-3831-B2ED-F0FED81F5931> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff4df97000 -     0x7fff4e072ff7  com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff4e073000 -     0x7fff4e0afff7  com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff4e0b6000 -     0x7fff4e0bbfff  com.apple.LinguisticData (1.0 - 238.25) <F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff4edb0000 -     0x7fff4edd8ff7  com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff4edd9000 -     0x7fff4ee66ff7  com.apple.gpusw.MetalTools (1.0 - 1) <77E725CC-4765-3A8B-836A-4F576C5E85B1> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff4f011000 -     0x7fff4f02cffb  com.apple.MobileKeyBag (2.0 - 1.0) <4B5E7278-E46A-3D12-A52A-10E0C024BF42> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff4f0b5000 -     0x7fff4f0dfffb  com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <42A23EC9-64A7-31C7-BF33-DF4412ED8A3F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff4f31b000 -     0x7fff4f325fff  com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff4fb86000 -     0x7fff4fbd7ff3  com.apple.OTSVG (1.0 - ???) <5BF1A9EB-2694-3267-9514-A4EB3BEF4081> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff50d67000 -     0x7fff50d76ff7  com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff52c08000 -     0x7fff52c26ff7  com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff52dbe000 -     0x7fff52e0efff  com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
    0x7fff52f6b000 -     0x7fff52f8dfff  com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff54797000 -     0x7fff548b5fff  com.apple.Sharing (1288.57.1 - 1288.57.1) <9BD4AEE0-DDF9-3BE8-80BD-8E521F8FF743> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff548b6000 -     0x7fff548d5ffb  com.apple.shortcut (2.16 - 101) <FA635B3A-8B45-3132-BB06-BD0398F03E12> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff556c5000 -     0x7fff55974ffb  com.apple.SkyLight (1.600.0 - 340.50) <ADD9CBEE-0180-34C1-888D-62BF278B1A71> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff56117000 -     0x7fff56123fff  com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff56874000 -     0x7fff568fffc7  com.apple.Symbolication (10.2 - 64490.38.1) <781BCA85-B025-36CC-ACAC-DEA35230A1B2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff56de7000 -     0x7fff56df3ffb  com.apple.TCC (1.0 - 1) <73CF6FA9-44CE-30C9-887F-235940976585> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff57059000 -     0x7fff57121ff3  com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff571de000 -     0x7fff57394ff7  com.apple.UIFoundation (1.0 - 551.1) <190C888C-7723-3C6B-928F-7BA563351255> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff58010000 -     0x7fff580e9fff  com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff588c1000 -     0x7fff588c4fff  com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff58cc5000 -     0x7fff58cc7ffb  com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff58f90000 -     0x7fff58fc4fff  libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
    0x7fff58fc7000 -     0x7fff58fd1ff7  libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
    0x7fff5905f000 -     0x7fff59060ffb  libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff59097000 -     0x7fff592eeff3  libFosl_dynamic.dylib (18.3.4) <883A9219-760C-3256-9A74-1AF224E7F275> /usr/lib/libFosl_dynamic.dylib
    0x7fff5933f000 -     0x7fff5935efff  libMobileGestalt.dylib (645.270.1) <37440C4F-E1E4-352A-92CF-05D841AE02D0> /usr/lib/libMobileGestalt.dylib
    0x7fff5935f000 -     0x7fff5935ffff  libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff5949f000 -     0x7fff594a0ffb  libSystem.B.dylib (1252.250.1) <B58F499F-C213-3253-97F3-A4DAF507AD3A> /usr/lib/libSystem.B.dylib
    0x7fff5951c000 -     0x7fff5951dfff  libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib
    0x7fff5952f000 -     0x7fff59545ffb  libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
    0x7fff59546000 -     0x7fff5956fffb  libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
    0x7fff59570000 -     0x7fff5966ffef  libate.dylib (1.13.8) <461F7EA4-05E2-3091-8905-473A63A75300> /usr/lib/libate.dylib
    0x7fff59673000 -     0x7fff59673ff3  libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
    0x7fff59743000 -     0x7fff59753ffb  libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib
    0x7fff59754000 -     0x7fff59761fff  libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
    0x7fff59762000 -     0x7fff597b5ff7  libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
    0x7fff597b6000 -     0x7fff597cbff7  libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
    0x7fff597cc000 -     0x7fff597ccff3  libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
    0x7fff597cd000 -     0x7fff597ddffb  libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
    0x7fff597de000 -     0x7fff597f6ffb  libcompression.dylib (52.250.2) <C7BE9843-9B19-33E0-A4A0-D48D0A999E86> /usr/lib/libcompression.dylib
    0x7fff59a6b000 -     0x7fff59a81fff  libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
    0x7fff59a82000 -     0x7fff59a83ff3  libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff59f2f000 -     0x7fff59f85ff7  libcups.2.dylib (462.10) <2AC7B8C3-0D25-3E0F-A34A-94658A06FF94> /usr/lib/libcups.2.dylib
    0x7fff5a0b9000 -     0x7fff5a0b9fff  libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
    0x7fff5a0eb000 -     0x7fff5a0f0ff7  libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib
    0x7fff5a0f1000 -     0x7fff5a0f6ff7  libheimdal-asn1.dylib (520.270.1) <73F60D6F-76F8-35EF-9C86-9A81225EE4BE> /usr/lib/libheimdal-asn1.dylib
    0x7fff5a121000 -     0x7fff5a211fff  libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
    0x7fff5a212000 -     0x7fff5a473fff  libicucore.A.dylib (62135.0.1) <B7B07D20-7FB3-3DED-BE6D-8D55BB832313> /usr/lib/libicucore.A.dylib
    0x7fff5a4c0000 -     0x7fff5a4c1fff  liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
    0x7fff5a4c2000 -     0x7fff5a4daff3  liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib
    0x7fff5a4f2000 -     0x7fff5a596ff7  libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib
    0x7fff5a597000 -     0x7fff5a79bfff  libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib
    0x7fff5a973000 -     0x7fff5acc4ff7  libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
    0x7fff5ad56000 -     0x7fff5b4defd7  libobjc.A.dylib (756.2) <20942D4E-CE6F-376A-8BCD-016F88E4BFD5> /usr/lib/libobjc.A.dylib
    0x7fff5b4f0000 -     0x7fff5b4f4ffb  libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
    0x7fff5b4f7000 -     0x7fff5b52cfff  libpcap.A.dylib (79.250.1) <C0893641-7DFF-3A33-BDAE-190FF54837E8> /usr/lib/libpcap.A.dylib
    0x7fff5b645000 -     0x7fff5b65dffb  libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
    0x7fff5b6b0000 -     0x7fff5b881ffb  libsqlite3.dylib (274.26) <E28DB56E-90D1-3A05-B79A-DC2FFCE8D117> /usr/lib/libsqlite3.dylib
    0x7fff5ba99000 -     0x7fff5ba9cff7  libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib
    0x7fff5ba9d000 -     0x7fff5baaafff  libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
    0x7fff5baaf000 -     0x7fff5bb91ff3  libxml2.2.dylib (32.10) <AA4E1B1F-0FDE-3274-9FA5-75446298D1AC> /usr/lib/libxml2.2.dylib
    0x7fff5bb92000 -     0x7fff5bbbaff3  libxslt.1.dylib (16.4) <38EF67A9-8D5D-3214-A424-A00FE1BB4364> /usr/lib/libxslt.1.dylib
    0x7fff5bbbb000 -     0x7fff5bbcdff7  libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib
    0x7fff5c3b1000 -     0x7fff5c3b5ff3  libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
    0x7fff5c3b6000 -     0x7fff5c3c0ff3  libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff5c3c1000 -     0x7fff5c3c8ff7  libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
    0x7fff5c3c9000 -     0x7fff5c3d2ff7  libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
    0x7fff5c3d3000 -     0x7fff5c457fc3  libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib
    0x7fff5c4de000 -     0x7fff5c517ff7  libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib
    0x7fff5c518000 -     0x7fff5c544ff7  libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
    0x7fff5c545000 -     0x7fff5c545ffb  libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
    0x7fff5c546000 -     0x7fff5c552ff3  libkxld.dylib (4903.270.37) <5167C4EE-F2F6-3526-90AA-9BFBF2312C50> /usr/lib/system/libkxld.dylib
    0x7fff5c553000 -     0x7fff5c553ff7  liblaunch.dylib (1336.261.2) <2B07E27E-D404-3E98-9D28-BCA641E5C479> /usr/lib/system/liblaunch.dylib
    0x7fff5c554000 -     0x7fff5c559fff  libmacho.dylib (927.0.3) <86B8F50C-C84C-3F10-9980-5D0C25F370C5> /usr/lib/system/libmacho.dylib
    0x7fff5c55a000 -     0x7fff5c55cffb  libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
    0x7fff5c55d000 -     0x7fff5c55eff7  libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
    0x7fff5c55f000 -     0x7fff5c576ff3  libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib
    0x7fff5c577000 -     0x7fff5c577ff7  libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib
    0x7fff5c578000 -     0x7fff5c5fffff  libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
    0x7fff5c600000 -     0x7fff5c603ffb  libsystem_configuration.dylib (963.260.1) <58041E0B-C75E-34D0-BE9F-2F729D6B7990> /usr/lib/system/libsystem_configuration.dylib
    0x7fff5c604000 -     0x7fff5c607ff7  libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff5c608000 -     0x7fff5c60efff  libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib
    0x7fff5c60f000 -     0x7fff5c615ff7  libsystem_dnssd.dylib (878.270.2) <E9A5ACCF-E35F-3909-AF0A-2A37CD217276> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff5c616000 -     0x7fff5c661ffb  libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib
    0x7fff5c662000 -     0x7fff5c68aff7  libsystem_kernel.dylib (4903.270.37) <D95E5ACD-77A5-3CA5-AC7A-BD51D775A97E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff5c68b000 -     0x7fff5c6d6ff7  libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib
    0x7fff5c6d7000 -     0x7fff5c701fff  libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib
    0x7fff5c702000 -     0x7fff5c70cff7  libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff5c70d000 -     0x7fff5c714fff  libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
    0x7fff5c715000 -     0x7fff5c71efef  libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib
    0x7fff5c71f000 -     0x7fff5c729ff7  libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff5c72a000 -     0x7fff5c72dff7  libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff5c72e000 -     0x7fff5c730ff3  libsystem_secinit.dylib (30.260.2) <EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE> /usr/lib/system/libsystem_secinit.dylib
    0x7fff5c731000 -     0x7fff5c738ff3  libsystem_symptoms.dylib (820.267.1) <9EE7F5BF-4968-3352-8AEB-0A779A2F789A> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff5c739000 -     0x7fff5c74efff  libsystem_trace.dylib (906.260.1) <FC761C3B-5434-3A52-912D-F1B15FAA8EB2> /usr/lib/system/libsystem_trace.dylib
    0x7fff5c750000 -     0x7fff5c755ffb  libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
    0x7fff5c756000 -     0x7fff5c785fff  libxpc.dylib (1336.261.2) <7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 1
    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: 566019
    thread_create: 0
    thread_set_state: 0

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

new DRAKON bug: operator()

Using operator() in any section of a DRAKON project (version 1.27 RC1) will generate an error:
In file included from /home/work/HOWTOs/HOWTO-programming/SAMS-projects/19/19.11-A_function_object/prj/inc/main.h:10:0, from main.cpp:5: /home/work/HOWTOs/HOWTO-programming/SAMS-projects/19/19.11-A_function_object/prj/inc/CTB_Print.h:12:13: error: expected type-specifier before ‘)’ token operator)(const T &RCT_t); ^ /home/work/HOWTOs/HOWTO-programming/SAMS-projects/19/19.11-A_function_object/prj/inc/CTB_Print.h:23:23: error: expected type-specifier before ‘)’ token CTB_Print<T>::operator)(const T &RCT_t) ^ main.cpp: In function ‘int main(int, char**)’: main.cpp:41:20: error: no match for call to ‘(CTB_Print<short unsigned int>) (T_USHORT&)’ { O_DoPrint(i);
The temporary fix is to insert a blank between the keyword "operator" and the (). In the attached example the issue can be reproduced by editing the CTB_Print.drn project and replacing "operator ()" with "operator()" in the project description. Just extract the project and execute the script "run.drk" from the DRAKON sub-directory.
19.11-A_function_object.tar.gz

Drakon for Embedded Systems

Hi

Is there anyway to program Arduino, ARM and other MCU with Drakon?
Please help and tell me on how to create one or any existing one

Hear from you soon!

God blesses!!!

Best regards,
Sanyaade

How to gen code for parallel icon?

Hi, I love the way Drakon editor create diagram and can gen the code. Does anyone can gen code for parallel icon yet (language is python) ? I try to gen and get: Elements of type 'parallel' are not supported by the verifier yet
Any plan to supported it in near future or refer some instruction docs to manual add it to the editor?

Many thank for your response!
Cheer :")

Конечный автомат для реализации на языке С

Всем доброго времени суток
Осваиваю Дракон и пытаюсь сделать для микроконтроллера STM32 простейший конечный автомат для обслуживания кнопки и двух светодиодов.
Но прежде попробовал породить код на основе вот такой дракон-схемы
Снимок экрана_2020-06-17_17-07-05
Снимок экрана_2020-06-17_17-06-06
Код ,порожденный редактором, выглядит вот так:
`$ cat 22qaa.c
/* Autogenerated with DRAKON Editor 1.33 */
#include "22qaa.h"

static void main(void);

static int t_State1_signal1(
state machine,
int msg
);

static int t_State1_signal2(
state machine,
int msg
);

static int t_State2_signal1(
state machine,
int msg
);

static int t_State2_signal2(
state machine,
int msg
);

#define T_STATE1 1
#define T_STATE2 2
typedef int (t_callback)(state machine, int msg);
t_callback t_signal1_methods[] = {
0,
t_State1_signal1,
t_State2_signal1
};
t_callback t_signal2_methods[] = {
0,
t_State1_signal2,
t_State2_signal2
};
int t_signal1(int
machine, state machine, int msg) {
t_callback fun;
int next;
if (machine == 0) return 0;
if (*machine <= 0 || *machine > 2) return 0;
fun = t_signal1_methods[*machine];
if (!fun) return 0;
next = fun(machine, msg);
machine = next;
return 1;
}
int t_signal2(int
machine, state machine, int msg) {
t_callback fun;
int next;
if (machine == 0) return 0;
if (*machine <= 0 || *machine > 2) return 0;
fun = t_signal2_methods[*machine];
if (!fun) return 0;
next = fun(machine, msg);
*machine = next;
return 1;
}
int make_t(void) { return 1; }

static void main(void) {
// item 6
test();

}

static int t_State1_signal1(
state machine,
int msg
) {
// item 42
a=3;
return T_STATE1;

}

static int t_State1_signal2(
state machine,
int msg
) {
// item 43
b=3;
return T_STATE1;

}

static int t_State2_signal1(
state machine,
int msg
) {
// item 44
c=3;
return T_STATE2;

}

static int t_State2_signal2(
state machine,
int msg
) {
// item 45
d=3;
return T_STATE2;

}
`

`$ cat 22qaa.h
/* Autogenerated with DRAKON Editor 1.33 */
#ifndef 22QAA_H48267
#define 22QAA_H48267

int make_t(void);
int t_signal1(int* machine, state machine, int msg);
int t_signal2(int* machine, state machine, int msg);

#endif
`
В руководстве State Machines in DRAKON Editor в абзаце State machines and DRAKON написано: 2. The text in the "Formal parameters" icon should start with "state machine".
Почему это "state machine" уходит в сишный код в качестве аргумента в typedef int (*t_callback)(state machine, int msg);?

DRAKON polymorphism and operator overloading

While officially DRAKON is not supporting function/method polymorfism (and for that reason operator overloading is not supported also as a diagram), there is a work-around way to implement standard polymorfism on DRAKON diagrams. The back-door is left open by DRAKON enforcing mechanism for unique names. While in a code sequence spaces are discarded, DRAKON will interpret one or two spaces as one or two independent characters. Hence, renaming a function with a blank or more in front of the name will force DRAKON to consider that function name as distinct; two or more functions with the "same" name are allowed now and the polymorphism can be implemented.
For operator overloading, one must place one or more blank spaces in between the "operator" keyword and the following operand.
Also, avoid using a blank or TAB in front of main return statement, DRAKON will place for some reason the return statement twice. This is an especially nasty bug, adding a double return statement. While in most of cases it is enough to avoid TAB or spaces, DRAKON will enforce adding a "return void" if no return is specified.
DRAKON will forbid using any conversion operator defined as a method or function diagram, since a conversion operator must be used without any "return" statement (DRAKON will force on your code the "return void" bonus line on any conversion operator function definition). In DRAKON, all conversion operators must be defined in the properties list as simple code lines.
The attached archive contains some DRAKON examples with true polymorphism and with operator overloading. The "run.prj" script will process the existing DRAKON diagrams all the way down to the executable. Associate and/or open this script in a terminal to see the program output.
examples.zip

Raspberry Pi4 - installation on Ubuntu 22.04 64 bit

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install curl
curl -L https://tarantool.io/DzjoUao/release/2/installer.sh | bash
sudo apt-get install tarantool

Note ERROR message: 'https://download.tarantool.org/tarantool/modules/ubuntu jammy InRelease' doesn't support architecture 'arm64'
That's why we need to build tarantool ourselves:

sudo apt-get -y install git build-essential cmake make zlib1g-dev libreadline-dev libncurses5-dev libssl-dev libunwind-dev libicu-dev python3 python3-yaml python3-six python3-gevent
cd
git clone https://github.com/tarantool/tarantool.git --recursive
cd tarantool
git submodule update --init --recursive
make clean
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
make
make test
sudo make install

sudo apt-get install tarantool
sudo apt-get install luarocks
sudo luarocks install luautf8
wget https://drakonhub.com/files/latest-build.zip
unzip latest-build.zip
sudo mv -f dewt /
sudo chown -R tarantool /dewt
cd /dewt/app
tarantoolctl rocks install http
sudo apt-get install expat // minimum 2.4 version required
sudo apt-get install libexpat1-dev
sudo apt-get install lua-expat-dev
sudo apt-get install lua-expat
sudo luarocks install luaexpat
cd /tmp
sudo git clone https://github.com/tarantool/mysql.git tarantool-mysql
cd tarantool-mysql
sudo cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
sudo make
sudo cp /dewt/app/onprem.lua /etc/tarantool/instances.available
cd /etc/tarantool/instances.enabled
sudo ln -s ../instances.available/onprem.lua
sudo tarantoolctl start onprem

Feature request: vim-like mouse-free control

Доброго времени суток! Во-первых хочу сказать спасибо вам, Степан, за ваш редактор. Периодически использовал его для объяcнения ребятам программ на Си в кружке робототехники ("Лига Роботов", Москва). Сейчас сам решил подучиться программированию, активный пользователь vim; Как вы наверное знаете, идеология vim такова - не отрывать руки от клавиатуры, мышь - зло. И при этом хочется часто переключаться между vim и вашим редактором (чтобы писать сложный код, параллельно объясняя его себе). Возникает вопрос: есть ли возможность создать "vim-skin" для drakon editor, в котором всё делалось бы через клавиатуру? Какие возможно предпринять шаги на этом пути? Еще раз спасибо.

Hello! First of all, i want to thank developer for his work. I periodically use drakon editor to demonstrate C code on my robotics classes for kids. Now i'm actively learning myself with heavy use of vim editor which philosophy is "mouse is evil". I want to use both - drakon editor (concept) AND vim (actual writing) in parallel without using mouse of course. My question is: is there a way to write some vim-skin for drakon editor for us vim-users? What are the steps? Thank you again.

Golang as an output language

I would like golang to be added.
Golang is a very simple language and so it might not be too hard to support it.

What do others feel about this ?

Ruby & Crystal Support

Has anyone worked towards Ruby support with DRAKON? Opal would also be a solid fit for integration in the browser since it generates JS from Ruby. Any thoughts?

With Ruby being solidly in the top 10 languages and continuing it's march upward, it's definitely worthwhile, arguably much more so than Go (17) and other interesting languages.

Crystal is another area that would be interesting in terms of adding support since it is so very similar to Ruby. Could the lexer definition here be of some help in defining the grammar for the generator?

no namespace or template support in DRAKON editor

Unfortunately DRAKON editor has no namespace or template support. One has to place all namespace or template related code in the file description section of a DRAKON diagram project. DRAKON really misses the target here.
It will be highly desirable to have namespace and template support in the DRAKON editor.

Easiest way to export graph

Hi,

What is the easiest way to export a graph database of the node ids?

for example
node1 -> node2
node2 -> node3
etc?

Thanks

DRAKON explicit conversion operator

As always, I hope Stepan will update DRAKON to include a few reamining issues I had to patch with a BASH script.
The latest problem I had is related to the explicit flavor of the conversion operator. I updated my example and BASH script to allow both normal and explicit versions.
To allow an explicit flavor of the conversion operator one must use the name "explicit operator" for the method and uncomment the line "#conversion_operator type-id" from the parameters icon.
Extract the archive in a local directory and execute: /.../00_template/DRAKON/run.prj
00_template.tar.gz

Windows/C generator, output is placed into the run location

V1.33 (git/master) and V1.31/sourceforge release
Windows 10
ActiveTCL 8.6.9
Generated C output is generated and written to the run folder where drakon_edit.tcl lives, rather than the folder where the <project_name>.drn is saved.
The files also have no proper name, they are called .c and <nothing.h>
Tried the same on Linux/Ubuntu and it works as it should, output is generated correctly in the correct location.

Missing 'Img' package from libtk-img from the ActiveTcl framework

Hello everybody,

today I followed the instructions to install the DRAKON editor on my Mac OS High Sierra 10.13.6; I downloaded the ActiveTcl 8.6 package distribution, which contains the following packages (link):

https://docs.activestate.com/activetcl/8.6/pkg/

Unfortunately, when CLI: $ tclsh ./drakon_editor.tcl I get the following warning:

can't find package Img
This script requires Img package.
Consider installing libtk-img.

I downloaded/installed the libtk-img following the instructions from:

https://salsa.debian.org/tcltk-team/libtk-img

still the CLI: $ ./drakon_editor.tcl pops the same warning (cannot detect Img package).

Suggestions are welcome, thank you in advance!

Unable to run on new Macbook running Mojave

I installed TCL via the PKG file from Activestate (linked from the github README).

When launching from iTerm2 I get this error. I've restarted iTerm2 as well to update any env vars etc. but to no avail.

Process: tclsh8.6 [13910]
Path: /usr/local/bin/tclsh8.6
Identifier: tclsh8.6
Version: 8.6.8 (8.6.8)
Code Type: X86-64 (Native)
Parent Process: zsh [13812]
Responsible: tclsh8.6 [13910]
User ID: 501

Date/Time: 2019-01-21 11:46:18.205 -0800
OS Version: Mac OS X 10.14.2 (18C54)
Report Version: 12
Bridge OS Version: 3.2 (16P2542)
Anonymous UUID: 9D758750-0B20-87E0-2CA1-4AB810C49D46

Time Awake Since Boot: 10000 seconds

System Integrity Protection: enabled

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

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY

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

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 Tcl 0x0000000107d63082 Dispatch + 260
1 Tcl 0x0000000107d5ff6b TclNRRunCallbacks + 80
2 Tcl 0x0000000107d611d0 TclEvalEx + 1992
3 Tcl 0x0000000107e01872 Tcl_FSEvalFileEx + 458
4 Tcl 0x0000000107e085c5 Tcl_MainEx + 1861
5 tclsh8.6 0x0000000107d47a3d main + 37
6 libdyld.dylib 0x00007fff5b0fded9 start + 1

Thread 1:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 2:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 3:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 4:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 5:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 6:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 7:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 8:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 9:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 10:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796

Thread 11:
0 libsystem_pthread.dylib 0x00007fff5b2f03f8 start_wqthread + 0
1 ??? 0x0000000000000903 0 + 2307

Thread 12:
0 libsystem_kernel.dylib 0x00007fff5b23e5aa __select + 10
1 Tcl 0x0000000107e567c7 NotifierThreadProc + 476
2 libsystem_pthread.dylib 0x00007fff5b2f1305 _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff5b2f426f _pthread_start + 70
4 libsystem_pthread.dylib 0x00007fff5b2f0415 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000003 rcx: 0x00007f7f12035a28 rdx: 0x0000000000000003
rdi: 0x0000000000000000 rsi: 0x00007f7f12027c10 rbp: 0x00007ffee7eb95e0 rsp: 0x00007ffee7eb9540
r8: 0x0000000000000000 r9: 0x00007f7f12035a28 r10: 0x0000000000000002 r11: 0x0000000000000207
r12: 0x0000000000000000 r13: 0x6168632064656e67 r14: 0x00007f7f12035a28 r15: 0x00007f7f12027c10
rip: 0x0000000107d63082 rfl: 0x0000000000010206 cr2: 0x0000000107e260b2

Logical CPU: 0
Error Code: 0x00000000
Trap Number: 13

Binary Images:
0x107d46000 - 0x107d47fff +tclsh8.6 (8.6.8 - 8.6.8) <63FC1DCF-FA30-3856-93DF-A8A5B8E18366> /usr/local/bin/tclsh8.6
0x107d4d000 - 0x107e7dfff +Tcl (8.6.8 - 8.6.8) <8161C669-3658-3C08-978B-3BBAC2E3899E> /Library/Frameworks/Tcl.framework/Versions/8.6/Tcl
0x10b1e3000 - 0x10b2d5fff +Tk (8.6.8 - 8.6.8) <50C4ACF1-1B39-3B7C-B895-31841CDA74A1> /Library/Frameworks/Tk.framework/Versions/8.6/Tk
0x10b7f6000 - 0x10b7f8fff +libtkimgwindow1.4.6.dylib (0) <20E6DD2C-0765-39FA-B1C3-7AB7AC6A80D0> /Library/Tcl//libtkimgwindow1.4.6.dylib
0x10b7fb000 - 0x10b7fcfff +libtkimg1.4.6.dylib (0) <4D1D0A08-2B27-30E0-AEC6-80EDE20B51F3> /Library/Tcl/
/libtkimg1.4.6.dylib
0x10d4e2000 - 0x10d4e5fff +libtkimgtga1.4.6.dylib (0) /Library/Tcl//libtkimgtga1.4.6.dylib
0x10d4e8000 - 0x10d4ebfff +libtkimgico1.4.6.dylib (0) <31DFD87B-ED00-3D0D-AB97-CA80CBBDA8D8> /Library/Tcl/
/libtkimgico1.4.6.dylib
0x10d4ee000 - 0x10d4f1ff3 +libtkimgpcx1.4.6.dylib (0) <67BF00BB-1795-3ACC-BABD-5A3ED218A1DF> /Library/Tcl//libtkimgpcx1.4.6.dylib
0x10d4f4000 - 0x10d4f7fff +libtkimgsgi1.4.6.dylib (0) /Library/Tcl/
/libtkimgsgi1.4.6.dylib
0x10d4fa000 - 0x10d4fdfff +libtkimgsun1.4.6.dylib (0) <65EC24D4-4B14-3227-9C6F-C7CC7BEF5B46> /Library/Tcl//libtkimgsun1.4.6.dylib
0x10d500000 - 0x10d502fff +libtkimgxbm1.4.6.dylib (0) /Library/Tcl/
/libtkimgxbm1.4.6.dylib
0x10d505000 - 0x10d508ff7 +libtkimgxpm1.4.6.dylib (0) /Library/Tcl//libtkimgxpm1.4.6.dylib
0x10d50b000 - 0x10d50dffb +libtkimgps1.4.6.dylib (0) <2FBBBBC6-9D93-3826-B68B-ABA24A3A5677> /Library/Tcl/
/libtkimgps1.4.6.dylib
0x10d510000 - 0x10d512fff +libtkimgjpeg1.4.6.dylib (0) <0407D491-E320-3504-A19F-65446DE9996D> /Library/Tcl//libtkimgjpeg1.4.6.dylib
0x10d515000 - 0x10d541ffb +libjpegtcl9.2.dylib (0) /Library/Tcl/
/libjpegtcl9.2.dylib
0x10d548000 - 0x10d54afff +libtkimgpng1.4.6.dylib (0) <69468D83-8451-3907-8F13-B40136F5A2BD> /Library/Tcl//libtkimgpng1.4.6.dylib
0x10d54d000 - 0x10d56ffff +libpngtcl1.6.21.dylib (0) <4C7C2162-93C2-3069-8C4E-F23F3DD0F5C9> /Library/Tcl/
/libpngtcl1.6.21.dylib
0x10d577000 - 0x10d586ff3 +libzlibtcl1.2.8.1.dylib (0) /Library/Tcl//libzlibtcl1.2.8.1.dylib
0x10d58a000 - 0x10d593fff +libtkimgtiff1.4.6.dylib (0) /Library/Tcl/
/libtkimgtiff1.4.6.dylib
0x10d597000 - 0x10d5d7fff +libtifftcl3.9.7.dylib (0) <90D1CB9A-39D9-3025-8842-4D8AA7CF12E7> /Library/Tcl//libtifftcl3.9.7.dylib
0x10d5e1000 - 0x10d5e4ffb +libtkimgbmp1.4.6.dylib (0) <1E3633E1-E89B-3C5C-B6C4-A939C6EF4327> /Library/Tcl/
/libtkimgbmp1.4.6.dylib
0x10d5e7000 - 0x10d5eafff +libtkimgppm1.4.6.dylib (0) /Library/Tcl//libtkimgppm1.4.6.dylib
0x10d5ed000 - 0x10d5f0ff7 +libtkimggif1.4.6.dylib (0) <53C5A193-8DF5-3786-9B52-EC465AD28E13> /Library/Tcl/
/libtkimggif1.4.6.dylib
0x10d5f3000 - 0x10d5f7fff +libtkimgpixmap1.4.6.dylib (0) /Library/Tcl/*/libtkimgpixmap1.4.6.dylib
0x10d5fa000 - 0x10d6d5ffb libtclsqlite3.dylib (274.20) <4F0F60DC-A841-3158-B154-6BB5EC3D86B6> /System/Library/Tcl/sqlite3/libtclsqlite3.dylib
0x115a79000 - 0x115af7a67 dyld (640.2) <289AB27E-F09F-3384-A14A-100431139559> /usr/lib/dyld
0x7fff23d1c000 - 0x7fff24095fff com.apple.RawCamera.bundle (8.11.0 - 1031.1.3) <15BB3751-9084-381A-8D25-5C60695C292A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff2a1b1000 - 0x7fff2a1b1fff com.apple.Accelerate (1.11 - Accelerate 1.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff2a1b2000 - 0x7fff2a1c8fef libCGInterfaces.dylib (506.19.1) <55B9EFFF-6719-381E-B7F3-C3AA07F5D78F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff2a1c9000 - 0x7fff2a869fe3 com.apple.vImage (8.1 - ???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff2a86a000 - 0x7fff2aae1fd7 libBLAS.dylib (1243.200.4) <0ADBEAE3-6636-33E5-AC9F-11C2249E19D3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff2aae2000 - 0x7fff2ab54fe7 libBNNS.dylib (38.200.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff2ab55000 - 0x7fff2aefbfff libLAPACK.dylib (1243.200.4) <45722A8A-5788-3C4C-ADD9-1812763FA635> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff2aefc000 - 0x7fff2af11ffb libLinearAlgebra.dylib (1243.200.4) <3923AB79-213E-32FD-AC87-8B1A1A832336> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff2af12000 - 0x7fff2af17ff3 libQuadrature.dylib (3.200.2) <4FBCAC0A-81A4-3C53-8458-27F3569C809D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff2af18000 - 0x7fff2af95ffb libSparse.dylib (79.200.5) <2D650C50-E87E-3F24-9BFA-C8EB6DE1A6E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff2af96000 - 0x7fff2afa9ffb libSparseBLAS.dylib (1243.200.4) <6F8C78BE-A0FD-3507-8A95-541AFC57F1EE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff2afaa000 - 0x7fff2b18eff3 libvDSP.dylib (671.220.1) <2F576522-08B1-3C65-8F00-3427E938ADDA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff2b18f000 - 0x7fff2b244ff3 libvMisc.dylib (671.220.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff2b245000 - 0x7fff2b245fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <221E4FEF-0431-3316-8281-22B6F8315A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff2b3f6000 - 0x7fff2c217ffb com.apple.AppKit (6.9 - 1671.20.108) <0C441020-D10E-3CE0-B320-527E50EADBEC> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff2c269000 - 0x7fff2c269fff com.apple.ApplicationServices (50.1 - 50.1) <50496459-FFDD-3A78-8D3D-A252BD9B9DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff2c26a000 - 0x7fff2c2d5ff7 com.apple.ApplicationServices.ATS (377 - 453.11) <4080F8BE-F2A2-3707-8754-436FBDB1DAF1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff2c36e000 - 0x7fff2c48dfff libFontParser.dylib (228.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff2c48e000 - 0x7fff2c4d9fff libFontRegistry.dylib (228.12) <1CC4D486-74F8-3459-BBA1-F68A36C5CAF8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff2c538000 - 0x7fff2c56bff7 libTrueTypeScaler.dylib (228.6) <760BF895-3D7A-36E2-B97C-6775C3615A1D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff2c5d5000 - 0x7fff2c5d9ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <4B1238CC-9B77-3AA5-8329-EE3C736F07EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff2c676000 - 0x7fff2c6c8ff3 com.apple.HIServices (1.22 - 627.14.2) <1F851BF9-AD29-3558-9EA5-AAD9BAAAC823> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff2c6c9000 - 0x7fff2c6d7ff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <5654723A-7B3B-391F-B9F7-0DE4D5940185> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff2c6d8000 - 0x7fff2c724fff com.apple.print.framework.PrintCore (14.2 - 503.8) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff2c725000 - 0x7fff2c760ff7 com.apple.QD (3.12 - 407.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff2c761000 - 0x7fff2c76dff7 com.apple.speech.synthesis.framework (8.1.0 - 8.1.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff2c76e000 - 0x7fff2ca0bfff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <5D484151-F269-3D98-B507-0544A6B950AC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff2ca0d000 - 0x7fff2ca0dfff com.apple.audio.units.AudioUnit (1.14 - 1.14) <91100E0A-C14D-3E6C-B095-0C4109AC6694> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff2cd71000 - 0x7fff2d132fff com.apple.CFNetwork (976 - 976) <10F464AD-6687-3012-A2AA-0453629CA968> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff2d147000 - 0x7fff2d147fff com.apple.Carbon (158 - 158) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff2d148000 - 0x7fff2d14bffb com.apple.CommonPanels (1.2.6 - 98) <775C94BE-EC00-315F-96E0-F0C1CD6EE3F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff2d14c000 - 0x7fff2d453ff7 com.apple.HIToolbox (2.1.1 - 917.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff2d454000 - 0x7fff2d457ffb com.apple.help (1.3.8 - 66) <0C6CC127-A860-30D2-8434-6CC3CAFFB030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff2d458000 - 0x7fff2d45dff7 com.apple.ImageCapture (9.0 - 1530.1) <72ABBF32-531B-3B04-926D-E14B8D9003A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff2d45e000 - 0x7fff2d4f2ff3 com.apple.ink.framework (10.9 - 225) <344AACCC-E997-3498-8B1D-2EFD3A889205> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff2d4f3000 - 0x7fff2d50dfff com.apple.openscripting (1.7 - 179) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff2d52e000 - 0x7fff2d52ffff com.apple.print.framework.Print (14.2 - 267.4) <618D290C-2EA0-3959-A2A8-FB7B61DA92DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff2d530000 - 0x7fff2d532ff7 com.apple.securityhi (9.0 - 55006) <2FE1EB07-F717-3E89-9662-8BA7C17C6AEC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff2d533000 - 0x7fff2d539ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff2d662000 - 0x7fff2d662fff com.apple.Cocoa (6.11 - 23) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff2d670000 - 0x7fff2d73cfff com.apple.ColorSync (4.13.0 - 3340) <2F45EB01-0C51-3D25-9836-18F99222E1C7> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff2d8d7000 - 0x7fff2d967fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E7EF105-B843-370D-884E-0A43E1A5800B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff2d9cd000 - 0x7fff2d9f8ff7 com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff2d9f9000 - 0x7fff2dd9afef com.apple.CoreData (120 - 866.1) <18CD58FD-513E-385B-B43C-08EEB909709C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff2dd9b000 - 0x7fff2de84ff7 com.apple.CoreDisplay (101.3 - 106.2) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff2de85000 - 0x7fff2e2d2ff7 com.apple.CoreFoundation (6.9 - 1561) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff2e2d4000 - 0x7fff2e961ff7 com.apple.CoreGraphics (2.0 - 1249.2) <3AC6DEB1-245B-3E3A-B5CF-791A37237775> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff2e963000 - 0x7fff2ec8cfff com.apple.CoreImage (14.2.0 - 720.0.130) <8C8BC619-7084-3F58-BBFC-4A97BD330787> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff2efdd000 - 0x7fff2f0deff7 com.apple.CoreMedia (1.0 - 2284.9) <4662B44E-F463-3FC8-A643-2195FF10A3E4> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff2f142000 - 0x7fff2f142fff com.apple.CoreServices (941 - 941) <950D3EAF-C98E-3BCB-8FD9-43EEA0E48988> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff2f143000 - 0x7fff2f1c1ffb com.apple.AE (771 - 771) <4B009524-699E-3891-98DD-E3B6BB433C8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff2f1c2000 - 0x7fff2f49aff7 com.apple.CoreServices.CarbonCore (1178.16 - 1178.16) <17FC2B9E-EB6C-3768-A2D0-6E086F2563D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff2f49b000 - 0x7fff2f4e5ff7 com.apple.DictionaryServices (1.2 - 284.16.3) <1DAC9153-FB5A-3798-8797-CBFEFF227F71> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff2f4e6000 - 0x7fff2f4eeffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8E1507EA-F0A8-3845-B32D-4FBC1381E89C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff2f4ef000 - 0x7fff2f6bafff com.apple.LaunchServices (941 - 941) <98B7E20E-5D0A-3A71-A019-346A145A1A5E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff2f6bb000 - 0x7fff2f75dfff com.apple.Metadata (10.7.0 - 1191.53) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff2f75e000 - 0x7fff2f7a9ff7 com.apple.CoreServices.OSServices (941 - 941) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff2f7aa000 - 0x7fff2f818ff7 com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff2f819000 - 0x7fff2f83dffb com.apple.coreservices.SharedFileList (71.27 - 71.27) <6389B59D-DDAC-3C97-A982-137B9B1FB734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff2fb85000 - 0x7fff2fceaffb com.apple.CoreText (352.0 - 584.26) <5F61037C-825D-37A4-9091-0047413CC213> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff2fceb000 - 0x7fff2fd28fff com.apple.CoreVideo (1.8 - 0.0) <34EC73F1-F0ED-32F5-B96E-7683B1F9A7A2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff2fd29000 - 0x7fff2fdbfffb com.apple.framework.CoreWLAN (13.0 - 1370.8) <32426190-3455-3049-8C09-0EC04D9C1279> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff3003c000 - 0x7fff30041fff com.apple.DiskArbitration (2.7 - 2.7) <97707A79-30E7-3D99-AA20-B992B0900BC4> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff3020a000 - 0x7fff305d8fff com.apple.Foundation (6.9 - 1561) <27FD022F-F0E3-3053-BADA-DF9BF856CA85> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff30649000 - 0x7fff30679ff3 com.apple.GSS (4.0 - 2.0) <86D07291-5DFC-30C2-9A18-5FCEDB0BE621> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff30793000 - 0x7fff3089dff3 com.apple.Bluetooth (6.0.9 - 6.0.9f2) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff308ff000 - 0x7fff30991ff7 com.apple.framework.IOKit (2.0.2 - 1483.230.1) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff30993000 - 0x7fff3099dff7 com.apple.IOSurface (255.1 - 255.1) <58826B1A-38E8-3C76-8FFC-76C9282DA893> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff309f4000 - 0x7fff30b92fff com.apple.ImageIO.framework (3.3.0 - 1822.1) <908907D5-5C29-32F7-ACD9-C6A6D51C4D15> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff30b93000 - 0x7fff30b97ffb libGIF.dylib (1822.1) <35E37B95-1962-3A25-9C9E-CADD161152B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff30b98000 - 0x7fff30c7dfe7 libJP2.dylib (1822.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff30c7e000 - 0x7fff30ca3ff7 libJPEG.dylib (1822.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff30f76000 - 0x7fff30f9cfe7 libPng.dylib (1822.1) <28FE6E2C-1A17-3A84-AAF3-76014DEADDD4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff30f9d000 - 0x7fff30f9fff7 libRadiance.dylib (1822.1) <687906E3-4EC2-3CE9-B7EA-34418239EE1B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff30fa0000 - 0x7fff30feeffb libTIFF.dylib (1822.1) <0A1C083B-CE2F-3A00-8E45-EB58DCA2FF34> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff32098000 - 0x7fff320b1fff com.apple.Kerberos (3.0 - 1) <5D1B0593-3C0E-32D5-AAE5-ABC22A98B639> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff3236f000 - 0x7fff32379fff com.apple.MediaAccessibility (1.0 - 114.4) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff32433000 - 0x7fff32ad1fff com.apple.MediaToolbox (1.0 - 2284.9) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff32ad3000 - 0x7fff32b66fff com.apple.Metal (158.5 - 158.5) <219312CC-0DE5-3E8D-9F62-393D0C35B0FD> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff32b83000 - 0x7fff32ba3ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <18281B14-0C6A-38F8-AB80-2D4BB0743C88> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff32ba4000 - 0x7fff32c22ff7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff32c23000 - 0x7fff32c4bfff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <116D6C1A-2FD7-3743-95A0-CDDA3D459529> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff32c4c000 - 0x7fff32d7eff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <88E80BEE-3D2B-328B-80D4-F4717BDB2E9F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff32d7f000 - 0x7fff32d9aff7 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff32d9b000 - 0x7fff32d9bff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <1BBA8BC8-49C6-3C9B-B985-7CE4373E3553> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff33f98000 - 0x7fff33fa4ffb com.apple.NetFS (6.0 - 4.0) <918DF6CD-2DB0-36A8-B869-5EF637A06C0D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff36a64000 - 0x7fff36abcfff com.apple.opencl (2.15.1 - 2.15.1) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff36abd000 - 0x7fff36ad9ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <2CB1F122-2FA0-347C-8454-9CE0FA150832> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff36ada000 - 0x7fff36ae6ffb com.apple.OpenDirectory (10.14 - 207.200.4) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff37449000 - 0x7fff3744bfff libCVMSPluginSupport.dylib (17.3.1) <4D6061EC-CFCD-3C0E-90E4-51644DC5F76A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff3744c000 - 0x7fff37451ff3 libCoreFSCache.dylib (163.20) <566DB80E-F1D6-3AEC-AF06-08955507AFEE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff37452000 - 0x7fff37456fff libCoreVMClient.dylib (163.20) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff37457000 - 0x7fff3745fffb libGFXShared.dylib (17.3.1) <902F535E-E411-3C3B-B980-0A7DB40EA5B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff37460000 - 0x7fff3746bfff libGL.dylib (17.3.1) <87F8CCDB-2D7D-3B01-AA6F-6C7A4B1CA11E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff3746c000 - 0x7fff374a6fef libGLImage.dylib (17.3.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff3761a000 - 0x7fff37657fff libGLU.dylib (17.3.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff38007000 - 0x7fff38016ff3 com.apple.opengl (17.3.1 - 17.3.1) <78BDC7C4-87AD-33CA-BFAC-A9CC5F605B5D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff38e72000 - 0x7fff390cbfff com.apple.QuartzCore (1.11 - 695.4) <6692906D-9EF7-3EA0-96D3-3766567AE7F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff3991f000 - 0x7fff39c47fff com.apple.security (7.0 - 58286.230.21) <5ADE179E-87D5-3B90-9172-D183D4665037> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff39c48000 - 0x7fff39cd7fff com.apple.securityfoundation (6.0 - 55185.200.14) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff39d09000 - 0x7fff39d0dff3 com.apple.xpc.ServiceManagement (1.0 - 1) <16FA4DAF-A0BE-34C0-B5F1-5C30BE3DCD2D> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff3a0ca000 - 0x7fff3a13aff3 com.apple.SystemConfiguration (1.17 - 1.17) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff3a141000 - 0x7fff3a208ffb Tcl (8.5.9 - 8.5.9) /System/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl
0x7fff3a39b000 - 0x7fff3a6fdfff com.apple.VideoToolbox (1.0 - 2284.9) <695514F0-08C8-3065-B9A2-DA3B43E6682F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff3d3a5000 - 0x7fff3d44aff7 com.apple.APFS (1.0 - 1) <5CA4B73F-3F5D-3289-9145-520FFDFD6813> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff3de94000 - 0x7fff3de95ff3 com.apple.AggregateDictionary (1.0 - 1) /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff3e492000 - 0x7fff3e4beff7 com.apple.framework.Apple80211 (13.0 - 1376.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff3e79a000 - 0x7fff3e7a9fcf com.apple.AppleFSCompression (96.200.3 - 1.0) <78D538DD-1D24-34FC-AFB3-10411494870D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff3e8a7000 - 0x7fff3e8b2fff com.apple.AppleIDAuthSupport (1.0 - 1) /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff3e8f3000 - 0x7fff3e93cff3 com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff3eb8f000 - 0x7fff3ebb7ff7 com.apple.applesauce (1.0 - ???) <58654BC0-9243-39D1-BC43-B7F2E37A3A44> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff3ec82000 - 0x7fff3ecd2fff com.apple.AppleVAFramework (5.0.44 - 5.0.44) <0338350C-F366-3C0D-B7C1-6E8FFAB92E98> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff3ed1d000 - 0x7fff3ed33ffb com.apple.AssertionServices (1.0 - 1) <3F767D20-FE14-35CF-A089-E0445375ECFB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff3f06f000 - 0x7fff3f312ff7 com.apple.AuthKit (1.0 - 1) <4FF8DA76-2250-39B9-B6A9-0E584C8B988F> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff3f4e3000 - 0x7fff3f4ecff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <05CF66F0-9650-3F75-9857-F8D186043866> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff3f4ed000 - 0x7fff3f58ffff com.apple.backup.framework (1.10.2 - ???) <7C865F13-12F9-3E38-A4A3-31516EA869B2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff3f590000 - 0x7fff3f601ffb com.apple.BaseBoard (360.24 - 360.24) <04AF4372-C5D3-3F0A-A688-68D888D6D138> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff411b5000 - 0x7fff411befff com.apple.CommonAuth (4.0 - 2.0) <090893E5-BB65-39DA-A174-EAB2C7191EFE> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff4167c000 - 0x7fff41a53fef com.apple.CoreAUC (273.0.0 - 273.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff41a54000 - 0x7fff41a85fff com.apple.CoreAVCHD (6.0.0 - 6000.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff41ece000 - 0x7fff41ee2fff com.apple.CoreEmoji (1.0 - 69.19.8) <26BC0F82-08C1-3EBD-9299-D3CC5091C467> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff424b8000 - 0x7fff4252aff7 com.apple.CoreNLP (1.0 - 130.15.22) /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff427f3000 - 0x7fff427fbffb com.apple.CorePhoneNumbers (1.0 - 1) <2D9AF545-ED3C-3EC1-887F-86922652EC57> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff4298a000 - 0x7fff429bbfff com.apple.CoreServicesInternal (357 - 357) <789E57F4-5A14-3220-93DF-1D4FEE315431> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff42d90000 - 0x7fff42e1eff7 com.apple.CoreSymbolication (10.1 - 64460.6) <133D09A5-39F7-301D-B019-B6685B80A2CB> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff42eae000 - 0x7fff42fdafff com.apple.coreui (2.1 - 498.46) <5EFE2CDC-897C-3A6B-A60B-4E0FB1D1ECA9> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff42fdb000 - 0x7fff43160fff com.apple.CoreUtils (5.7.4 - 574.17) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff431b7000 - 0x7fff4321affb com.apple.framework.CoreWiFi (13.0 - 1370.8) <818F8915-BA51-3145-9C40-C9B8D7BE2DBD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff4321b000 - 0x7fff4322cffb com.apple.CrashReporterSupport (10.13 - 938.23) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff432af000 - 0x7fff432beff3 com.apple.framework.DFRFoundation (1.0 - 211) /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff432bf000 - 0x7fff432c3ff7 com.apple.DSExternalDisplay (3.1 - 380) <76449D22-BA27-3FB1-AD25-A290936E6DEA> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff43346000 - 0x7fff433bdffb com.apple.datadetectorscore (7.0 - 590.24) <3A49EC90-2081-3031-8CAE-3A6D5F7BFA1E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff4340b000 - 0x7fff4344cfff com.apple.DebugSymbols (185 - 185) <64F5F9D6-401D-388B-82AD-A48B56413556> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff4344d000 - 0x7fff435a6ff7 com.apple.desktopservices (1.13.1 - ???) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff445e8000 - 0x7fff44a10fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <41218EB7-19C9-3813-A793-B0623387CADF> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff499dd000 - 0x7fff499e2ff7 com.apple.GPUWrangler (3.28.4 - 3.28.4) <14D6FE7D-38D7-3F6C-9BCE-A228D6697A08> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff4a84c000 - 0x7fff4a85bfff com.apple.GraphVisualizer (1.0 - 5) /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff4a9ac000 - 0x7fff4aa21fff com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff4be11000 - 0x7fff4be18ffb com.apple.IOAccelerator (404.2.2 - 404.2.2) <7421825E-13D4-3C74-932D-34E8A605C281> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff4be1c000 - 0x7fff4be35fff com.apple.IOPresentment (1.0 - 42.6) <87D19032-52DB-34A5-A554-23B3464EFC82> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff4c24a000 - 0x7fff4c279ff7 com.apple.IconServices (379 - 379) <694E17A6-471B-3C57-92D6-ECC4295FB859> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff4c519000 - 0x7fff4c52cfff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <02ECB210-513F-3BDE-8150-A828E901FA02> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff4c547000 - 0x7fff4c63efff com.apple.LanguageModeling (1.0 - 159.15.15) <34609F31-4DA1-3881-8947-85BEA7AFC938> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff4c63f000 - 0x7fff4c680ff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <07E008F3-E823-333B-8B41-A46024AB0561> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff4c687000 - 0x7fff4c68dff7 com.apple.LinguisticData (1.0 - 238.23.4) <37948616-56E6-3758-BEFE-28586FF99E12> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff4ceec000 - 0x7fff4ceeffff com.apple.Mangrove (1.0 - 25) <8DF73279-BCEB-38CE-AE83-571C1B3FF45B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff4d3ea000 - 0x7fff4d412ffb com.apple.spotlight.metadata.utilities (1.0 - 1191.53) <09C6DCF6-F87D-3D03-8BD5-FD1DCF90949F> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff4d413000 - 0x7fff4d4a5fff com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff4d4ba000 - 0x7fff4d4d3fff com.apple.MobileAssets (1.0 - 437.230.2) <73BF5743-F050-3393-AECE-298ADF3960F4> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff4d650000 - 0x7fff4d66bff3 com.apple.MobileKeyBag (2.0 - 1.0) <26347762-AF60-3412-A951-33BF85244D84> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff4d6f9000 - 0x7fff4d723ff7 com.apple.MultitouchSupport.framework (2410.5 - 2410.5) <3A712911-F672-3BB3-B62B-A2A7BADF3578> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff4d996000 - 0x7fff4d9a0fff com.apple.NetAuth (6.2 - 6.2) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff4e26d000 - 0x7fff4e2c3fff com.apple.OTSVG (1.0 - ???) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff4f42e000 - 0x7fff4f43dff3 com.apple.PerformanceAnalysis (1.217 - 217) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff513fc000 - 0x7fff5141aff7 com.apple.ProtocolBuffer (1 - 263.1) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff515c9000 - 0x7fff51621f0f com.apple.ROCKit (24 - 24) /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff51741000 - 0x7fff51764ffb com.apple.RemoteViewServices (2.0 - 128) <55D89BC9-0613-3910-B63E-9A146D35D91A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff530d9000 - 0x7fff531f7fff com.apple.Sharing (1214.18 - 1214.18) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff53fb1000 - 0x7fff54263ff3 com.apple.SkyLight (1.600.0 - 337.5) <52BC8AB1-3518-3E4C-B1B1-0A8A8067574F> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff54a34000 - 0x7fff54a41fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff55126000 - 0x7fff55165ff3 com.apple.StreamingZip (1.0 - 1) <251128E7-C343-3799-A31B-8B10CEC69F19> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff558a2000 - 0x7fff5592fff7 com.apple.Symbolication (10.1 - 64460.8) <7DDC5C90-947F-34FF-864D-5ED3C2B746A9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff55e38000 - 0x7fff55e45ffb com.apple.TCC (1.0 - 1) <81F88B91-49C1-36E7-8A39-C4BD654EE942> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff560b8000 - 0x7fff5617fff7 com.apple.TextureIO (3.8.4 - 3.8.1) <83CDF659-E5B3-381F-BDA1-FF0BFA17B5EE> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff56240000 - 0x7fff563fafff com.apple.UIFoundation (1.0 - 551) <65A80450-7A24-3366-B521-4D02C4DB5094> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff579f8000 - 0x7fff579fbfff com.apple.dt.XCTTargetBootstrap (1.0 - 1) <5F779D77-4AB1-3CCD-9AAF-101EC7E4905B> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff57e2c000 - 0x7fff57e2eff3 com.apple.loginsupport (1.0 - 1) <67BC49D6-320F-33ED-912E-16E5A342F385> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff580e9000 - 0x7fff58121fff libCRFSuite.dylib (41.15.4) <92752A96-D1CF-3CA1-837A-1E075AE4C642> /usr/lib/libCRFSuite.dylib
0x7fff58124000 - 0x7fff5812fff7 libChineseTokenizer.dylib (28.15.3) <55572692-4918-3C54-AD35-726E03EC47D5> /usr/lib/libChineseTokenizer.dylib
0x7fff581c0000 - 0x7fff581c1ff7 libDiagnosticMessagesClient.dylib (107) <15210AC0-61F9-3F9D-A159-A009F62EB537> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff581f8000 - 0x7fff583bbff7 libFosl_dynamic.dylib (18.3.2) /usr/lib/libFosl_dynamic.dylib
0x7fff58411000 - 0x7fff58430ff7 libMobileGestalt.dylib (645.220.9) /usr/lib/libMobileGestalt.dylib
0x7fff58431000 - 0x7fff58431fff libOpenScriptingUtil.dylib (179) <441A2E60-5D5C-3567-9B00-AA22E6EE5358> /usr/lib/libOpenScriptingUtil.dylib
0x7fff58572000 - 0x7fff58573ffb libSystem.B.dylib (1252.200.5) <25F4A1F5-6551-312F-B397-C8D45ACC530A> /usr/lib/libSystem.B.dylib
0x7fff585fd000 - 0x7fff585fefff libThaiTokenizer.dylib (2.15.1) /usr/lib/libThaiTokenizer.dylib
0x7fff58611000 - 0x7fff58627ffb libapple_nghttp2.dylib (1.24.1) <71C126C5-D869-3E67-9778-058FA7F3CA74> /usr/lib/libapple_nghttp2.dylib
0x7fff58628000 - 0x7fff58651ffb libarchive.2.dylib (54.200.3) <32B8634D-E465-3F6D-B254-A20D44504508> /usr/lib/libarchive.2.dylib
0x7fff58652000 - 0x7fff586d1fef libate.dylib (1.13.8) /usr/lib/libate.dylib
0x7fff586d5000 - 0x7fff586d5ff3 libauto.dylib (187) <003DEF68-0C59-3AFB-A7B7-A1B5ED301AF2> /usr/lib/libauto.dylib
0x7fff587ac000 - 0x7fff587bcff3 libbsm.0.dylib (39.200.18) <58A9ACEC-BF46-3A4E-86F5-3DD9AD7095B4> /usr/lib/libbsm.0.dylib
0x7fff587bd000 - 0x7fff587cbfff libbz2.1.0.dylib (38.200.3) <4DEC3797-087F-3C8D-815B-48E895813251> /usr/lib/libbz2.1.0.dylib
0x7fff587cc000 - 0x7fff58823ff7 libc++.1.dylib (400.9.4) /usr/lib/libc++.1.dylib
0x7fff58824000 - 0x7fff58839fff libc++abi.dylib (400.17) <446F4748-8A89-3D2E-AE1C-27EEBE93A8AB> /usr/lib/libc++abi.dylib
0x7fff5883a000 - 0x7fff5883aff3 libcharset.1.dylib (51.200.6) <43F7E100-F5D1-36AB-A26E-CF94196A19C0> /usr/lib/libcharset.1.dylib
0x7fff5883b000 - 0x7fff5884bffb libcmph.dylib (6.15.1) /usr/lib/libcmph.dylib
0x7fff5884c000 - 0x7fff58864ffb libcompression.dylib (52.200.13) <05A2A91B-D24D-39E8-A071-261CBC5BB158> /usr/lib/libcompression.dylib
0x7fff58b0f000 - 0x7fff58b25fff libcoretls.dylib (155.220.1) <1229F9EA-C070-3D03-9DC6-F548C59F9FD5> /usr/lib/libcoretls.dylib
0x7fff58b26000 - 0x7fff58b27ff3 libcoretls_cfhelpers.dylib (155.220.1) <33661841-3C3B-3608-86AC-C88D1CD6FE98> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff5919e000 - 0x7fff591f5ffb libcups.2.dylib (462.10) <29B6D106-A5F2-321D-8916-90F595545D88> /usr/lib/libcups.2.dylib
0x7fff5932d000 - 0x7fff5932dfff libenergytrace.dylib (17.200.1) /usr/lib/libenergytrace.dylib
0x7fff5935f000 - 0x7fff59364ff7 libgermantok.dylib (17.15.2) <9381B152-5CFD-3D23-A5A7-4D64EE55B85E> /usr/lib/libgermantok.dylib
0x7fff59365000 - 0x7fff5936aff7 libheimdal-asn1.dylib (520.220.2) /usr/lib/libheimdal-asn1.dylib
0x7fff59396000 - 0x7fff59487ff7 libiconv.2.dylib (51.200.6) <9FB95807-7C62-32B7-A19F-946D7FB7CCA6> /usr/lib/libiconv.2.dylib
0x7fff59488000 - 0x7fff596ebffb libicucore.A.dylib (62109.0.1) /usr/lib/libicucore.A.dylib
0x7fff59738000 - 0x7fff59739fff liblangid.dylib (128.15.1) <663D0A24-7260-31D1-9BFE-74D67B6F72F6> /usr/lib/liblangid.dylib
0x7fff5973a000 - 0x7fff59752fff liblzma.5.dylib (10.200.3) <9A52A949-0CB1-39B6-9244-D079FB609559> /usr/lib/liblzma.5.dylib
0x7fff5976a000 - 0x7fff5981afff libmecab.1.0.0.dylib (779.24.1) <590BC39C-2A3E-368B-9499-C808B84C4955> /usr/lib/libmecab.1.0.0.dylib
0x7fff5981b000 - 0x7fff59a58ff7 libmecabra.dylib (779.24.1) <22BFD5A8-EA42-3DC3-8910-F27DCFB1B631> /usr/lib/libmecabra.dylib
0x7fff59c30000 - 0x7fff59f88ffb libnetwork.dylib (1229.230.4) /usr/lib/libnetwork.dylib
0x7fff5a019000 - 0x7fff5a79ffe7 libobjc.A.dylib (750.1) <804715F4-F52D-34D0-8FEC-A25DC08513C3> /usr/lib/libobjc.A.dylib
0x7fff5a7b2000 - 0x7fff5a7b6ffb libpam.2.dylib (22.200.1) <85253002-89F2-3872-9C8A-1801303A2EBB> /usr/lib/libpam.2.dylib
0x7fff5a7b9000 - 0x7fff5a7efff7 libpcap.A.dylib (79.200.4) <6D25197A-2F7C-3147-A45A-F6F13E55909F> /usr/lib/libpcap.A.dylib
0x7fff5a909000 - 0x7fff5a921ffb libresolv.9.dylib (65.200.2) /usr/lib/libresolv.9.dylib
0x7fff5a973000 - 0x7fff5a974ff7 libspindump.dylib (267.1) <9DEA015B-410E-3D6E-A3EE-54E046092EA9> /usr/lib/libspindump.dylib
0x7fff5a975000 - 0x7fff5ab4cfe7 libsqlite3.dylib (274.20) <7B202039-5DDF-3140-808C-521E8F11394E> /usr/lib/libsqlite3.dylib
0x7fff5add9000 - 0x7fff5addcffb libutil.dylib (51.200.4) <10C5E165-0939-363A-9D13-7076F3B513EC> /usr/lib/libutil.dylib
0x7fff5addd000 - 0x7fff5adeafff libxar.1.dylib (404) <16E875B3-CF89-3059-87BB-36D301B32E7B> /usr/lib/libxar.1.dylib
0x7fff5adef000 - 0x7fff5aed2fff libxml2.2.dylib (32.8) <3E7875AC-3195-3800-AC48-8AA3B7BE51E4> /usr/lib/libxml2.2.dylib
0x7fff5aed3000 - 0x7fff5aefbff3 libxslt.1.dylib (16.1) /usr/lib/libxslt.1.dylib
0x7fff5aefc000 - 0x7fff5af0effb libz.1.dylib (70.200.4) <15F7B40A-424C-33BB-BF2C-7E8195128B78> /usr/lib/libz.1.dylib
0x7fff5af7f000 - 0x7fff5af83ff3 libcache.dylib (81) <704331AC-E43D-343A-8C24-39201142AF27> /usr/lib/system/libcache.dylib
0x7fff5af84000 - 0x7fff5af8eff3 libcommonCrypto.dylib (60118.220.1) <9C865644-EE9A-3662-AB77-7C8A5E561784> /usr/lib/system/libcommonCrypto.dylib
0x7fff5af8f000 - 0x7fff5af96fff libcompiler_rt.dylib (63.4) <817772E3-E836-3FFD-A39B-BDCD1C357221> /usr/lib/system/libcompiler_rt.dylib
0x7fff5af97000 - 0x7fff5afa0ff3 libcopyfile.dylib (146.200.3) <5C5C4F35-DAB7-3CF1-940F-F47192AB8289> /usr/lib/system/libcopyfile.dylib
0x7fff5afa1000 - 0x7fff5b025fdf libcorecrypto.dylib (602.230.1) /usr/lib/system/libcorecrypto.dylib
0x7fff5b0ac000 - 0x7fff5b0e6ff7 libdispatch.dylib (1008.220.2) <2FDB1401-5119-3DF0-91F5-F4E105F00CD7> /usr/lib/system/libdispatch.dylib
0x7fff5b0e7000 - 0x7fff5b116ff3 libdyld.dylib (640.2) <376E3F3A-6942-3B0E-AD5E-4B97E8255CF5> /usr/lib/system/libdyld.dylib
0x7fff5b117000 - 0x7fff5b117ffb libkeymgr.dylib (30) /usr/lib/system/libkeymgr.dylib
0x7fff5b118000 - 0x7fff5b124ff7 libkxld.dylib (4903.231.4) <7275D7AD-54CE-30BF-9459-18EA77E28ACC> /usr/lib/system/libkxld.dylib
0x7fff5b125000 - 0x7fff5b125ff7 liblaunch.dylib (1336.220.5) <8563299C-2493-3DBD-8E88-3FC673DB47DD> /usr/lib/system/liblaunch.dylib
0x7fff5b126000 - 0x7fff5b12bfff libmacho.dylib (921) <6ADB99F3-D142-3A0A-B3CE-031354766ACC> /usr/lib/system/libmacho.dylib
0x7fff5b12c000 - 0x7fff5b12effb libquarantine.dylib (86.220.1) <58524FD7-63C5-38E0-9D90-845A79551C14> /usr/lib/system/libquarantine.dylib
0x7fff5b12f000 - 0x7fff5b130ff3 libremovefile.dylib (45.200.2) /usr/lib/system/libremovefile.dylib
0x7fff5b131000 - 0x7fff5b148ff3 libsystem_asl.dylib (356.200.4) <33C62769-1242-3BC1-9459-13CBCDECC7FE> /usr/lib/system/libsystem_asl.dylib
0x7fff5b149000 - 0x7fff5b149fff libsystem_blocks.dylib (73) <152EDADF-7D94-35F2-89B7-E66DCD945BBA> /usr/lib/system/libsystem_blocks.dylib
0x7fff5b14a000 - 0x7fff5b1d2fff libsystem_c.dylib (1272.200.26) /usr/lib/system/libsystem_c.dylib
0x7fff5b1d3000 - 0x7fff5b1d6ff7 libsystem_configuration.dylib (963.200.27) <94898525-ECC8-3CC9-B312-CBEAAC305E32> /usr/lib/system/libsystem_configuration.dylib
0x7fff5b1d7000 - 0x7fff5b1daff7 libsystem_coreservices.dylib (66) <10818C17-70E1-328E-A3E3-C3EB81AEC590> /usr/lib/system/libsystem_coreservices.dylib
0x7fff5b1db000 - 0x7fff5b1e1ffb libsystem_darwin.dylib (1272.200.26) <07468CF7-982F-37C4-83D0-D5E602A683AA> /usr/lib/system/libsystem_darwin.dylib
0x7fff5b1e2000 - 0x7fff5b1e8ff7 libsystem_dnssd.dylib (878.230.2) /usr/lib/system/libsystem_dnssd.dylib
0x7fff5b1e9000 - 0x7fff5b235ff3 libsystem_info.dylib (517.200.9) <54B65F21-2E93-3579-9B72-6637A03245D9> /usr/lib/system/libsystem_info.dylib
0x7fff5b236000 - 0x7fff5b25eff7 libsystem_kernel.dylib (4903.231.4) /usr/lib/system/libsystem_kernel.dylib
0x7fff5b25f000 - 0x7fff5b2aaff7 libsystem_m.dylib (3158.200.7) /usr/lib/system/libsystem_m.dylib
0x7fff5b2ab000 - 0x7fff5b2cfff7 libsystem_malloc.dylib (166.220.1) <4777DC06-F9C6-356E-82AB-86A1C6D62F3A> /usr/lib/system/libsystem_malloc.dylib
0x7fff5b2d0000 - 0x7fff5b2dbff3 libsystem_networkextension.dylib (767.220.1) <74818C3D-9B68-3823-A737-6A4B782618F2> /usr/lib/system/libsystem_networkextension.dylib
0x7fff5b2dc000 - 0x7fff5b2e3fff libsystem_notify.dylib (172.200.21) <65B3061D-41D7-3485-B217-A861E05AD50B> /usr/lib/system/libsystem_notify.dylib
0x7fff5b2e4000 - 0x7fff5b2edfef libsystem_platform.dylib (177.200.16) <83DED753-51EC-3B8C-A98D-883A5184086B> /usr/lib/system/libsystem_platform.dylib
0x7fff5b2ee000 - 0x7fff5b2f8fff libsystem_pthread.dylib (330.230.1) /usr/lib/system/libsystem_pthread.dylib
0x7fff5b2f9000 - 0x7fff5b2fcff7 libsystem_sandbox.dylib (851.230.3) <4D0CB1CA-160C-3C29-BE5D-131D68D43B1B> /usr/lib/system/libsystem_sandbox.dylib
0x7fff5b2fd000 - 0x7fff5b2ffff3 libsystem_secinit.dylib (30.220.1) <5964B6D2-19D4-3CF9-BDBC-4EB1D42348F1> /usr/lib/system/libsystem_secinit.dylib
0x7fff5b300000 - 0x7fff5b307ff7 libsystem_symptoms.dylib (820.237.2) <487E1794-4C6E-3B1B-9C55-95B1A5FF9B90> /usr/lib/system/libsystem_symptoms.dylib
0x7fff5b308000 - 0x7fff5b31dff7 libsystem_trace.dylib (906.220.1) <4D4BA88A-FA32-379D-8860-33838723B35F> /usr/lib/system/libsystem_trace.dylib
0x7fff5b31f000 - 0x7fff5b324ffb libunwind.dylib (35.4) /usr/lib/system/libunwind.dylib
0x7fff5b325000 - 0x7fff5b355fff libxpc.dylib (1336.220.5) /usr/lib/system/libxpc.dylib

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

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

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 128K 2
Activity Tracing 256K 2
CG image 4100K 2
CoreUI image file 388K 5
Dispatch continuations 24.0M 2
Image IO 1024K 2
Kernel Alloc Once 8K 2
MALLOC 84.8M 22
MALLOC guard page 32K 9
STACK GUARD 56.0M 14
Stack 13.7M 14
VM_ALLOCATE 316K 5
__DATA 25.5M 272
__FONT_DATA 4K 2
__LINKEDIT 216.6M 28
__TEXT 172.6M 271
__UNICODE 564K 2
mapped file 49.3M 11
shared memory 2720K 12
=========== ======= =======
TOTAL 651.8M 660

Model: MacBookPro15,1, BootROM 220.230.16.0.0 (iBridge: 16.16.2542.0.0,0), 6 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC
Graphics: Intel UHD Graphics 630, Intel UHD Graphics 630, Built-In
Graphics: Radeon Pro 560X, Radeon Pro 560X, PCIe
Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1 8ATF1G64HZ-2G6E1
Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1 8ATF1G64HZ-2G6E1
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Sep 18 2018 16:24:57 version 9.130.86.7.32.6.21 FWID 01-83a3fe91
Bluetooth: Version 6.0.9f2, 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: USB 2.0 Hub
USB Device: USB Keyboard
USB Device: USB3.0 Hub
USB Device: Mass Storage Device
USB Device: iBridge Bus
USB Device: iBridge DFR brightness
USB Device: iBridge Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: iBridge ALS
USB Device: iBridge FaceTime HD Camera (Built-in)
USB Device: iBridge
Thunderbolt Bus: MacBook Pro, Apple Inc., 34.6
Thunderbolt Bus: MacBook Pro, Apple Inc., 34.6

Help appreciated: drakon on Macbook Air M1 (Apple Silicon)

anybody got it running? https://platform.activestate.com/mro2020/ActiveTcl-8.6 SEGFAULTs and the recipe from #18 (comment) fails with

$ git clone https://github.com/waddella/tkimg.git
$ TCLLIBPATH=tkimg/inst/Img-Darwin64 tclsh8.6 drakon_editor.tcl
dlopen(tkimg/inst/Img-Darwin64/libtkimgwindow1.4.6.dylib, 6): no suitable image found.  Did find:
	tkimg/inst/Img-Darwin64/libtkimgwindow1.4.6.dylib: mach-o, but wrong architecture
	tkimg/inst/Img-Darwin64/libtkimgwindow1.4.6.dylib: stat() failed with errno=25
This script requires Img package.
Consider installing libtk-img.

any idea?

templates with DRAKON

The best use of DRAKON editor for template function and classes is to "encapsulate" the whole template declaration and implementation of a function or class in a DRAKON project. This way one can freely use the DRAKON file in any other project, in any combination with other DRAKON files.
It is possible to place the content of the declaration code in the === h_header === section of the "file description" of a new template DRAKON project, and the content of the implementation in the === h_footer === section. Nothing needs to be placed in the === c_header === or the === c_footer === sections. This will encapsulate the whole template declaration and definition in a clean DRAKON project that can be used freely in any other place.
...
I tried to look into implementing real diagrams for template functions and classes. The "inline" keyword that DRAKON provides is otherwise very useful for implementing template functions. I could use a lookout tag "#template<" in order to send the result to a BASH script to make syntax corrections for correcting the result. This approach works well with simple template functions. It is getting much more complicated with multiple template levels inside template functions, or with template classes. My last hope is Stepan to look into this issue and implement template support for DRAKON diagrams.
...
Attached is an example with a template function and a template class. Just extract the project and run the "run.prj" script inside the DRAKON directory.
19.00-Template_function.tar.gz
19.02-Template_class_array_example.tar.gz

Using Drakon for Arduino

Hello All,

Good day to you all.

I started learning Drakon to use it in my teaching class with kids working/coding with Arduino.

I have not found on how to re-arrange the order of how the code will be be generated. for example

image

in the above I want the Setup() to be above and to be genrated first before the Loop().
I could not move the Setup() diagram above the Loop() diagram in order to have it code generated first.
The students will like to have the facility in their work. Many thanks!

God blesses!!!

Best regards,
Sanyaade

1.27 Error while trying to export to PNG (or to PDF)

Hi,

I got a large diagram and I want to save it as a png file.
I got an error "Expected integer but go "3405.333333333333", here the traceback :

expected integer but got "3405.333333333333"
expected integer but got "3405.333333333333"
    while executing
"incr cy $line_height"
    (procedure "hl::render_text" line 132)
    invoked from within
"hl::render_text $surface $coords $text $font $fill $anchor "
    (procedure "add_prim_to_canvas" line 6)
    invoked from within
"add_prim_to_canvas $surface $type $coords $text $fore $fill "center" "
    (procedure "add_to_canvas" line 6)
    invoked from within
"add_to_canvas $surface $type $coords $text $fore $fill"
    ("foreach" body line 3)
    invoked from within
"foreach icon $icons {
	lassign $icon role type coords text fore fill
	add_to_canvas $surface $type $coords $text $fore $fill
    }"
    invoked from within
"$base eval { 
    select text, text2, color, x, y, w, h, a, b, type
    from items
    where item_id = :item_id } {
  
    set lines [ $type.lines	 $x..."
    (procedure "render_item" line 3)
    invoked from within
"render_item $surface $item_id"
    invoked from within
"$base eval {
		select item_id
		from items
		where diagram_id = :diagram_id 
    and type != 'vertical' and type != 'horizontal' and type != 'parallel..."
    (procedure "mv::render_to" line 14)
    invoked from within
"mv::render_to export_pdf::p.db_render $diagram "
    (procedure "export_pdf::prepare_export" line 17)
    invoked from within
"export_pdf::prepare_export "
    (procedure "export_png::export" line 9)
    invoked from within
"export_png::export"
    (menu invoke)

I got the same error, if i try to use the "export to pdf" command.
If I use the command "View/See all", I don't have this error...

I've tried to replace all "incr cx $var" in "scripts/highlight.tcl" file by "set cx [ expr { int($var) + 1 } ]"(same correction for "incr cy $var" code) but without success :o( I got a bad png where texts are badly located). My tcl knowledges are very limited.
Can anyone help me ?
Thanks.
Brun0oO

What versions of tclsh and sqlite3 should I use to run DRAKONEditor.app on macOS?

I installed Active Tcl as suggested in the read me file, but in my system tclsh and sqlite3 are all over the place with several different versions. If I try to run tclsh drakon_editor.tcl I get a segmentation fault error.

This is how to reproduce the error:

$ which tclsh
/usr/local/bin/tclsh
$ which sqlite3
/Users/user/NVPACK/android-sdk-macosx/platform-tools/sqlite3
$ tclsh
% info patchlevel
8.6.4
% package require sqlite3
3.8.10.2
% sqlite db data.db
Segmentation fault: 11

Recommend Projects

  • React photo React

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

  • Vue.js photo Vue.js

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

  • Typescript photo Typescript

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

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

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

  • web

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

  • server

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

  • Machine learning

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

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

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

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.