Git Product home page Git Product logo

scxcodeminimap's Introduction

SCXcodeMinimap v2.3

SCXcodeMiniMap is a Xcode plugin that adds a source editor Minimap to Xcode.

Features

  • Custom size
  • Custom themes
  • Highlighting:
    • search results
    • comments and preprocessor directives
    • breakpoints
    • build errors and warnings
    • Xcode's "instances of selected symbol" (Preferences/Text Editing)
  • Can autohide for small files
  • Can hide the main editor scroller
  • Shows code foldings

All options are configurable through the View/Minimap menu item

Screenshots

Without editor highlighting With editor highlighting

Installation

  • Through Alcatraz

  • or download the sources, build the project and restart Xcode

  • or download SCXcodeMinimap.xcplugin.zip from the releases tab, unzip and move it to the Xcode plugins folder ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin

  • If you encounter any issues you can uninstall it by removing the ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin folder

License

SCXcodeMiniMap is released under the GNU GENERAL PUBLIC LICENSE (see the LICENSE file)

Contact

Any suggestions or improvements are more than welcome. Feel free to contact me at [email protected] or @stefanceriu.

scxcodeminimap's People

Contributors

designatednerd avatar e-b-smith avatar goncharov avatar ilg avatar jegnux avatar jmehsieh avatar readmecritic avatar richardjrossiii avatar sbusch-mobivention avatar sneakyness avatar stefanceriu avatar stephencelis avatar zenangst 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

scxcodeminimap's Issues

indentation with tab character

Nice plugin. Thank you.
Found one issue with files using tab characters for indentation. Indentation in the mini map is way to large. It looks as if the indentation is the same size as it would be for the full-sized text rather than what is should be for tiny text in the mini map.

Disable the MiniMap in Version Editor and Comparison Mode

It would be great to be able to either opt-out or completely disable support of the mini map in the Version Editor and Comparison Mode. Why? Because when having 2 editors at the same time it's already hard to read, and the Mini Map isn't helping a lot there IMHO.

image

Great job with this plugin. It's my favorite!

Crash on v2.2 / Xcode 6.3.2

This has been happening to me since upgrading to Xcode 6.3.2 so I thought I'd build the latest code and try that out. But still, I get a crash when editing parts of a long selector either in a declaration or definition. Looks like minimap is trying to update its size while editing is still in progress.

A brute force fix is to set the textContainer to nil to prevent layout, update the frame, then restore the textContainer:

- (void)resizeWithOldSuperviewSize:(NSSize)oldSize
{
    [super resizeWithOldSuperviewSize:oldSize];

    self.shouldAllowFullSyntaxHighlight = NO;

  NSTextContainer *tc = self.textView.textContainer;
  self.textView.textContainer = nil;

    CGRect frame = self.textView.bounds;
    frame.size.width = CGRectGetWidth(self.editorTextView.bounds);
    [self.textView setFrame:frame];

  self.textView.textContainer = tc;

    [self updateOffset];
}

But it introduces noticeable latency in the interface.

Here's the beginning of the crash report that pinpoints the problem...

Process:               Xcode [69212]
Path:                  /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier:            com.apple.dt.Xcode
Version:               6.3.2 (7718)
Build Info:            IDEFrameworks-7718000000000000~2
App Item ID:           497799835
App External ID:       812404257
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Xcode [69212]
User ID:               501

Date/Time:             2015-05-26 14:01:11.207 -0700
OS Version:            Mac OS X 10.10.3 (14D136)
Report Version:        11
Anonymous UUID:        94C363B8-7376-5B22-2997-BD85704840A6

Sleep/Wake UUID:       584F2A56-2196-4219-A3F9-3427AA9F0941

Time Awake Since Boot: 410000 seconds
Time Since Wake:       18000 seconds

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

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000

Application Specific Information:
ProductBuildVersion: 6D2105
UNCAUGHT EXCEPTION (NSInternalInconsistencyException): -[DVTLayoutManager
_fillLayoutHoleForCharacterRange:desiredNumberOfLines:isSoft:] *** attempted layout while
textStorage is editing.  It is not valid to cause the layoutManager to do layout while the textStorage is
editing (ie the textStorage has been sent a beginEditing message without a matching endEditing.)
UserInfo: (null)
Hints: None
Backtrace:
  0  0x00007fff89a6b024 __exceptionPreprocess (in CoreFoundation)
  1  0x00000001063f6bb4 DVTFailureHintExceptionPreprocessor (in DVTFoundation)
  2  0x00007fff95a9576e objc_exception_throw (in libobjc.A.dylib)
  3  0x00007fff89a6aeed +[NSException raise:format:] (in CoreFoundation)
  4  0x00007fff88a5ba81 -[NSLayoutManager(NSPrivate) _fillLayoutHoleForCharacterRange:desiredNumberOfLines:isSoft:] (in UIFoundation)
  5  0x00007fff88a655cc _NSFastFillAllLayoutHolesForGlyphRange (in UIFoundation)
  6  0x00007fff88a62c17 -[NSLayoutManager(NSPrivate) _rectArrayForRange:withinSelectionRange:rangeIsCharRange:singleRectOnly:fullLineRectsOnly:inTextContainer:rectCount:rangeWithinContainer:glyphsDrawOutsideLines:rectArray:rectArrayCapacity:] (in UIFoundation)
  7  0x00007fff88a66056 -[NSLayoutManager(NSPrivate) _rectArrayForRange:withinSelectionRange:rangeIsCharRange:singleRectOnly:fullLineRectsOnly:inTextContainer:rectCount:rangeWithinContainer:glyphsDrawOutsideLines:] (in UIFoundation)
  8  0x00007fff88a660e2 -[NSLayoutManager(NSPrivate) _boundingRectForGlyphRange:inTextContainer:fast:fullLineRectsOnly:] (in UIFoundation)
  9  0x00007fff889b65f9 -[NSLayoutManager boundingRectForGlyphRange:inTextContainer:] (in UIFoundation)
 10  0x00007fff8ef89490 -[NSTextView(NSPrivate) _setFrameSize:forceScroll:] (in AppKit)
 11  0x0000000106883915 -[DVTSourceTextView setFrameSize:] (in DVTKit)
 12  0x00007fff8eec8083 -[NSView setFrame:] (in AppKit)
 13  0x00000001115a76cb -[SCXcodeMinimapView resizeWithOldSuperviewSize:] at /Users/mark/dev/OSX/Build_Xcode_Plugins/SCXcodeMiniMap/SCXcodeMinimap/SCXcodeMinimapView.m:634 (in SCXcodeMinimap)
 14  0x00007fff8ef32bdc -[NSView resizeSubviewsWithOldSize:] (in AppKit)
 15  0x00007fff8eeca102 NSViewLevelLayout (in AppKit)
 16  0x00007fff8f03b1a4 -[NSView _layoutSubtreeWithOldSize:] (in AppKit)
 17  0x00007fff8f03b3f5 -[NSView _layoutSubtreeWithOldSize:] (in AppKit)
 18  0x00007fff8f03b3f5 -[NSView _layoutSubtreeWithOldSize:] (in AppKit)

Install via Alcatraz doesn't work for me

Extract from the console:

25/02/2015 17:12:13,200 Xcode[74353]: Xcodebuild output: 2015-02-25 17:12:12.635 xcodebuild[74671:2343964] [MT] PluginLoading: Required plug-in compatibility UUID C4A681B0-4A26-480E-93EC-1218098B9AA0 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Xprop.xcplugin' not present in DVTPlugInCompatibilityUUIDs
=== BUILD TARGET SCXcodeMinimap OF PROJECT SCXcodeMinimap WITH THE DEFAULT CONFIGURATION (Release) ===

Check dependencies

Create product structure
/bin/mkdir -p /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents
/bin/mkdir -p /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/MacOS
/bin/mkdir -p /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/Resources

ProcessInfoPlistFile /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/Info.plist SCXcodeMinimap/SCXcodeMinimap-Info.plist
    cd "/Users/guillaume/Library/Application Support/Alcatraz/Plug-ins/SCXcodeMinimap"
    builtin-infoPlistUtility /Users/guillaume/Library/Application\ Support/Alcatraz/Plug-ins/SCXcodeMinimap/SCXcodeMinimap/SCXcodeMinimap-Info.plist -expandbuildsettings -platform macosx -o /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/Info.plist

Ld /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/MacOS/SCXcodeMinimap normal x86_64
    cd "/Users/guillaume/Library/Application Support/Alcatraz/Plug-ins/SCXcodeMinimap"
    export MACOSX_DEPLOYMENT_TARGET=10.7
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -bundle -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -L/Users/guillaume/Library/Application\ Support/Alcatraz/Plug-ins/SCXcodeMinimap/build/Release -L/Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/MacOS -L/Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS -F/Users/guillaume/Library/Application\ Support/Alcatraz/Plug-ins/SCXcodeMinimap/build/Release -F/Users/guillaume/Library/Application\ Support/Alcatraz/Plug-ins/SCXcodeMinimap -F/Applications/Xcode.app/Contents/SharedFrameworks -F/Applications/Xcode.app/Contents/Frameworks -F/Applications/Xcode.app/Contents/OtherFrameworks -filelist /Users/guillaume/Library/Application\ Support/Alcatraz/Plug-ins/SCXcodeMinimap/build/SCXcodeMinimap.build/Release/SCXcodeMinimap.build/Objects-normal/x86_64/SCXcodeMinimap.LinkFileList -mmacosx-version-min=10.7 -fobjc-arc -fobjc-link-runtime /Users/guillaume/Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/MacOS/IDESourceEditor -framework DVTFoundation -framework QuartzCore -framework DVTKit -framework IDEKit /Users/guillaume/Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/DebuggerUI -framework Cocoa -framework IDEFoundation -Xlinker -dependency_info -Xlinker /Users/guillaume/Library/Application\ Support/Alcatraz/Plug-ins/SCXcodeMinimap/build/SCXcodeMinimap.build/Release/SCXcodeMinimap.build/Objects-normal/x86_64/SCXcodeMinimap_dependency_info.dat -o /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/MacOS/SCXcodeMinimap
clang: error: no such file or directory: '/Users/guillaume/Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/MacOS/IDESourceEditor'
clang: error: no such file or directory: '/Users/guillaume/Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/DebuggerUI'

** BUILD FAILED **


The following build commands failed:
    Ld /Users/guillaume/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SCXcodeMinimap.xcplugin/Contents/MacOS/SCXcodeMinimap normal x86_64
(1 failure)

Is this a dependency problem with Alcatraz?

Minimap is not lining up

The minimap is off by quite a bit. You can see the area which is marked in yellow over the minimap which does match the editor while the part which is highlighted on the minimap is much lower in the file.

xcodesublimetext

MiniMap over-expands tabs

One tab seems to be expanding to 40 spaces in the MiniMap. These two lines in the source code are indented differently:

sharedMinimap = [[self alloc] init];
                                    //ATESTCOMMENT

The source view:
Code screenshot

In the MiniMap, you can see that sharedMinimap is aligned with the test comment:
MiniMap

(The NSNotificationCenter lines are useful for aligning context.)

I noticed this on a project I'm on that uses tabs for indentation. Spaces seem to work fine (as "atestcomment" shows)

1500 lines of C++ code

Hey,

Thanks for the great plugin. I love it, however, it renders Xcode unusable when I am working on a C++ project, and especially with a huge file (1500+ lines of code).

I haven't looked at the implementation, but I would guess the only cause is that the minimap updates are too often. I mean, they don't have to be real time, right? The point of minimaps (IMHO) is to get a glance of how long the file is, and get an idea of where certain code might be.

Thanks,

Offset incorrect

Whether using an external 1920 x 1080 monitor, or the built in rMBP screen, the offset is never in the correct position.

Crash: pre v2.2 Xcode 6.2

Process: Xcode [6089]
Path: /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier: com.apple.dt.Xcode
Version: 6.2 (6776)
Build Info: IDEFrameworks-6776000000000000~11
App Item ID: 497799835
App External ID: 811890240
Code Type: X86-64 (Native)
Parent Process: launchd [525]
Responsible: Xcode [6089]
User ID: 501

Date/Time: 2015-05-25 14:01:51.877 +0300
OS Version: Mac OS X 10.9.5 (13F1066)
Report Version: 11
Anonymous UUID: 32C9652E-80E7-B6CA-28B2-DB59345B5937

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

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
ProductBuildVersion: 6C131e
UNCAUGHT EXCEPTION (NSInvalidArgumentException): -[DVTLayoutManager autoHighlightTokenRanges]: unrecognized selector sent to instance 0x7fdd70a52ba0
UserInfo: (null)
Hints: None
Backtrace:
0 0x00007fff8960a244 exceptionPreprocess (in CoreFoundation)
1 0x0000000100f72764 DVTFailureHintExceptionPreprocessor (in DVTFoundation)
2 0x00007fff916b2e75 objc_exception_throw (in libobjc.A.dylib)
3 0x00007fff8960d12d -[NSObject(NSObject) doesNotRecognizeSelector:](in CoreFoundation)
4 0x00007fff89568272 __forwarding
(in CoreFoundation)
5 0x00007fff89567df8 _CF_forwarding_prep_0 (in CoreFoundation)
6 0x000000011141f80b -[SCXcodeMinimapView updateHighlightedSymbols](in SCXcodeMinimap)
7 0x000000011142278b -[SCXcodeMinimapView invalidateHighligtedSymbols](in SCXcodeMinimap)
8 0x000000011141939e -[SCXcodeMinimapView initWithEditor:](in SCXcodeMinimap)
9 0x0000000111417c6a -[SCXcodeMinimap onDidFinishSetup:](in SCXcodeMinimap)
10 0x00007fff895d8e0c CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER (in CoreFoundation)
11 0x00007fff894cc82d _CFXNotificationPost (in CoreFoundation)
12 0x00007fff8eb93dda -[NSNotificationCenter postNotificationName:object:userInfo:](in Foundation)
13 0x0000000100f539de -[NSNotificationCenter(DVTNSNotificationCenterAdditions) _dvt_postNotificationName:object:userInfo:](in DVTFoundation)
14 0x000000010c022233 -[IDESourceCodeEditor _doInitialSetup](in IDESourceEditor)
15 0x000000010bfba539 -[IDESourceCodeEditor contentViewDidCompleteLayout](in IDESourceEditor)
16 0x000000010bfba2db -[IDESourceCodeEditorContainerView didCompleteLayout](in IDESourceEditor)
17 0x00000001013b60b9 +[DVTLayoutView_ML _recursivelyLayoutSubviewsOfView:populatingSetWithLaidOutViews:](in DVTKit)
18 0x00000001021724a4 __91-[IDEEditorContext _openNavigableItem:documentExtension:document:shouldInstallEditorBlock:]_block_invoke (in IDEKit)
19 0x0000000101fc531b -[IDEEditorContext _performBlockInsideReentrantGuard:](in IDEKit)
20 0x0000000101fc516e -[IDEEditorContext _openNavigableItem:documentExtension:document:shouldInstallEditorBlock:](in IDEKit)
21 0x0000000111499e75 -[IDEEditorContext(KKHighlightRecentPlugin) kk__openNavigableItem:documentExtension:document:shouldInstallEditorBlock:] at /Users/sagittarius/Library/Application Support/Alcatraz/Plug-ins/KKHighlightRecentPlugin/KKHighlightRecentPlugin/KKFileUsageCounter.m:126 (in KKHighlightRecentPlugin)
22 0x0000000101ff8b15 -[IDEEditorContext _openNavigableItem:withContentsOfURL:documentExtension:shouldInstallEditorBlock:](in IDEKit)
23 0x0000000102173e30 -[IDEEditorContext _notifyDelegateAndOpenNavigableItem:withContentsURL:documentExtensionIdentifier:locationToSelect:annotationRepresentedObject:stateDictionary:annotationWantsIndicatorAnimation:exploreAnnotationRepresentedObject:highlightSelection:skipSubDocumentNavigationUnlessEditorIsReplaced:](in IDEKit)
24 0x000000010217589b -[IDEEditorContext _notifyDelegateAndOpenEditorHistoryItem:previousHistoryItemOrNil:skipSubDocumentNavigationUnlessEditorIsReplaced:](in IDEKit)
25 0x00000001021713f7 -[IDEEditorContext _openEditorHistoryItem:previousHistoryItemOrNil:skipSubDocumentNavigationUnlessEditorIsReplaced:](in IDEKit)
26 0x0000000101ff6d0e -[IDEEditorContext _openEditorHistoryItem:updateHistory:](in IDEKit)
27 0x0000000101ff5f11 -[IDEEditorContext _openEditorHistoryItemFromStateSaving:](in IDEKit)
28 0x000000010202b48d -[IDEEditorBasicMode _setPersistentRepresentation:forIdentifier:](in IDEKit)
29 0x000000010244352e __60-[IDEEditorModeViewController _setPersistentRepresentation:]_block_invoke (in IDEKit)
30 0x00007fff895529c6 __53-[__NSArrayI enumerateObjectsWithOptions:usingBlock:]_block_invoke (in CoreFoundation)
31 0x00007fff89552910 -[__NSArrayI enumerateObjectsWithOptions:usingBlock:](in CoreFoundation)
32 0x0000000101ff1bde -[IDEEditorModeViewController _setPersistentRepresentation:](in IDEKit)
33 0x0000000101ff19e1 -[IDEEditorModeViewController revertStateWithDictionary:](in IDEKit)
34 0x0000000100df24bb -[DVTStateToken _pullStateFromDictionary:](in DVTFoundation)
35 0x0000000100df22dd -[DVTStateToken pullStateFromRepository](in DVTFoundation)
36 0x0000000101fd2218 -[IDEViewController revertState](in IDEKit)
37 0x0000000101fabec0 -[IDEEditorArea _updateStateSavingRegistrations](in IDEKit)
38 0x0000000101fd478f -[IDEEditorArea _refreshEditorContextsAndPreserveCurrentEditorHistoryStack:](in IDEKit)
39 0x00000001021b110a __31-[IDEEditorArea viewDidInstall]_block_invoke (in IDEKit)
40 0x0000000100f8369b __73-[DVTObservingBlockToken observeValueForKeyPath:ofObject:change:context:]_block_invoke183 (in DVTFoundation)
41 0x0000000100f00148 DVTInvokeWithStrongOwnership (in DVTFoundation)
42 0x0000000100db322c -[DVTObservingBlockToken observeValueForKeyPath:ofObject:change:context:](in DVTFoundation)
43 0x00007fff8eb9a548 NSKeyValueNotifyObserver (in Foundation)
44 0x00007fff8eb99718 NSKeyValueDidChange (in Foundation)
45 0x00007fff8eb9e206 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:](in Foundation)
46 0x00000001019b4e32 __81-[IDEWorkspace _finishLoadingAsynchronously:shouldUpgradeFromSimpleFilesFocused:]_block_invoke (in IDEFoundation)
47 0x00000001019b508a __81-[IDEWorkspace _finishLoadingAsynchronously:shouldUpgradeFromSimpleFilesFocused:]_block_invoke321 (in IDEFoundation)
48 0x00007fff8ebb96d5 -[NSBlockOperation main](in Foundation)
49 0x00007fff8eb98ec1 -[__NSOperationInternal _start:](in Foundation)
50 0x00007fff8eb98b6b __NSOQSchedule_f (in Foundation)
51 0x00007fff93dfa28d _dispatch_client_callout (in libdispatch.dylib)
52 0x00007fff93e01ef0 _dispatch_main_queue_callback_4CF (in libdispatch.dylib)
53 0x00007fff895714f9 CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE (in CoreFoundation)
54 0x00007fff8952c714 __CFRunLoopRun (in CoreFoundation)
55 0x00007fff8952be75 CFRunLoopRunSpecific (in CoreFoundation)
56 0x00007fff89073a0d RunCurrentEventLoopInMode (in HIToolbox)
57 0x00007fff89073685 ReceiveNextEventCommon (in HIToolbox)
58 0x00007fff890735bc _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
59 0x00007fff9251524e _DPSNextEvent (in AppKit)
60 0x00007fff9251489b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:](in AppKit)
61 0x00000001014d8d3d -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:](in DVTKit)
62 0x00007fff9250899c -[NSApplication run](in AppKit)
63 0x00007fff924f3783 NSApplicationMain (in AppKit)
64 0x00007fff8e1735fd start (in libdyld.dylib)

abort() called

Application Specific Signatures:
NSInvalidArgumentException

Application Specific Backtrace 1:
0 CoreFoundation 0x00007fff8960a25c exceptionPreprocess + 172
1 DVTFoundation 0x0000000100f72764 DVTFailureHintExceptionPreprocessor + 194
2 libobjc.A.dylib 0x00007fff916b2e75 objc_exception_throw + 43
3 CoreFoundation 0x00007fff8960d12d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
4 CoreFoundation 0x00007fff89568272 __forwarding
+ 1010
5 CoreFoundation 0x00007fff89567df8 _CF_forwarding_prep_0 + 120
6 SCXcodeMinimap 0x000000011141f80b -[SCXcodeMinimapView updateHighlightedSymbols] + 363
7 SCXcodeMinimap 0x000000011142278b -[SCXcodeMinimapView invalidateHighligtedSymbols] + 43
8 SCXcodeMinimap 0x000000011141939e -[SCXcodeMinimapView initWithEditor:] + 4142
9 SCXcodeMinimap 0x0000000111417c6a -[SCXcodeMinimap onDidFinishSetup:] + 442
10 CoreFoundation 0x00007fff895d8e0c CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER + 12
11 CoreFoundation 0x00007fff894cc82d _CFXNotificationPost + 2893
12 Foundation 0x00007fff8eb93dda -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
13 DVTFoundation 0x0000000100f539de -[NSNotificationCenter(DVTNSNotificationCenterAdditions) _dvt_postNotificationName:object:userInfo:] + 125
14 IDESourceEditor 0x000000010c022233 -[IDESourceCodeEditor _doInitialSetup] + 2916
15 IDESourceEditor 0x000000010bfba539 -[IDESourceCodeEditor contentViewDidCompleteLayout] + 596
16 IDESourceEditor 0x000000010bfba2db -[IDESourceCodeEditorContainerView didCompleteLayout] + 67
17 DVTKit 0x00000001013b60b9 +[DVTLayoutView_ML _recursivelyLayoutSubviewsOfView:populatingSetWithLaidOutViews:] + 320
18 IDEKit 0x00000001021724a4 __91-[IDEEditorContext _openNavigableItem:documentExtension:document:shouldInstallEditorBlock:]_block_invoke + 1665
19 IDEKit 0x0000000101fc531b -[IDEEditorContext _performBlockInsideReentrantGuard:] + 132
20 IDEKit 0x0000000101fc516e -[IDEEditorContext _openNavigableItem:documentExtension:document:shouldInstallEditorBlock:] + 3521
21 KKHighlightRecentPlugin 0x0000000111499e75 -[IDEEditorContext(KKHighlightRecentPlugin) kk__openNavigableItem:documentExtension:document:shouldInstallEditorBlock:] + 198
22 IDEKit 0x0000000101ff8b15 -[IDEEditorContext _openNavigableItem:withContentsOfURL:documentExtension:shouldInstallEditorBlock:] + 1713
23 IDEKit 0x0000000102173e30 -[IDEEditorContext _notifyDelegateAndOpenNavigableItem:withContentsURL:documentExtensionIdentifier:locationToSelect:annotationRepresentedObject:stateDictionary:annotationWantsIndicatorAnimation:exploreAnnotationRepresentedObject:highlightSelection:skipSubDocumentNavigationUnlessEditorIsReplaced:] + 3652
24 IDEKit 0x000000010217589b -[IDEEditorContext _notifyDelegateAndOpenEditorHistoryItem:previousHistoryItemOrNil:skipSubDocumentNavigationUnlessEditorIsReplaced:] + 955
25 IDEKit 0x00000001021713f7 -[IDEEditorContext _openEditorHistoryItem:previousHistoryItemOrNil:skipSubDocumentNavigationUnlessEditorIsReplaced:] + 381
26 IDEKit 0x0000000101ff6d0e -[IDEEditorContext _openEditorHistoryItem:updateHistory:] + 346
27 IDEKit 0x0000000101ff5f11 -[IDEEditorContext _openEditorHistoryItemFromStateSaving:] + 448
28 IDEKit 0x000000010202b48d -[IDEEditorBasicMode _setPersistentRepresentation:forIdentifier:] + 519
29 IDEKit 0x000000010244352e __60-[IDEEditorModeViewController _setPersistentRepresentation:]_block_invoke + 84
30 CoreFoundation 0x00007fff895529c6 __53-[__NSArrayI enumerateObjectsWithOptions:usingBlock:]_block_invoke + 70
31 CoreFoundation 0x00007fff89552910 -[__NSArrayI enumerateObjectsWithOptions:usingBlock:] + 320
32 IDEKit 0x0000000101ff1bde -[IDEEditorModeViewController _setPersistentRepresentation:] + 201
33 IDEKit 0x0000000101ff19e1 -[IDEEditorModeViewController revertStateWithDictionary:] + 170
34 DVTFoundation 0x0000000100df24bb -[DVTStateToken _pullStateFromDictionary:] + 327
35 DVTFoundation 0x0000000100df22dd -[DVTStateToken pullStateFromRepository] + 168
36 IDEKit 0x0000000101fd2218 -[IDEViewController revertState] + 48
37 IDEKit 0x0000000101fabec0 -[IDEEditorArea _updateStateSavingRegistrations] + 442
38 IDEKit 0x0000000101fd478f -[IDEEditorArea _refreshEditorContextsAndPreserveCurrentEditorHistoryStack:] + 705
39 IDEKit 0x00000001021b110a __31-[IDEEditorArea viewDidInstall]_block_invoke + 429
40 DVTFoundation 0x0000000100f8369b __73-[DVTObservingBlockToken observeValueForKeyPath:ofObject:change:context:]_block_invoke183 + 83
41 DVTFoundation 0x0000000100f00148 DVTInvokeWithStrongOwnership + 75
42 DVTFoundation 0x0000000100db322c -[DVTObservingBlockToken observeValueForKeyPath:ofObject:change:context:] + 328
43 Foundation 0x00007fff8eb9a548 NSKeyValueNotifyObserver + 387
44 Foundation 0x00007fff8eb99718 NSKeyValueDidChange + 453
45 Foundation 0x00007fff8eb9e206 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 118
46 IDEFoundation 0x00000001019b4e32 __81-[IDEWorkspace _finishLoadingAsynchronously:shouldUpgradeFromSimpleFilesFocused:]_block_invoke + 321
47 IDEFoundation 0x00000001019b508a __81-[IDEWorkspace _finishLoadingAsynchronously:shouldUpgradeFromSimpleFilesFocused:]_block_invoke321 + 59
48 Foundation 0x00007fff8ebb96d5 -[NSBlockOperation main] + 75
49 Foundation 0x00007fff8eb98ec1 -[__NSOperationInternal _start:] + 631
50 Foundation 0x00007fff8eb98b6b __NSOQSchedule_f + 64
51 libdispatch.dylib 0x00007fff93dfa28d _dispatch_client_callout + 8
52 libdispatch.dylib 0x00007fff93e01ef0 _dispatch_main_queue_callback_4CF + 333
53 CoreFoundation 0x00007fff895714f9 CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE + 9
54 CoreFoundation 0x00007fff8952c714 __CFRunLoopRun + 1636
55 CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
56 HIToolbox 0x00007fff89073a0d RunCurrentEventLoopInMode + 226
57 HIToolbox 0x00007fff89073685 ReceiveNextEventCommon + 173
58 HIToolbox 0x00007fff890735bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
59 AppKit 0x00007fff9251524e _DPSNextEvent + 1434
60 AppKit 0x00007fff9251489b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
61 DVTKit 0x00000001014d8d3d -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 237
62 AppKit 0x00007fff9250899c -[NSApplication run] + 553
63 AppKit 0x00007fff924f3783 NSApplicationMain + 940
64 libdyld.dylib 0x00007fff8e1735fd start + 1

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff90309866 pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff8da6935c pthread_kill + 92
2 libsystem_c.dylib 0x00007fff8942ab1a abort + 125
3 com.apple.dt.IDEKit 0x00000001021b8d86 +[IDEAssertionHandler _handleAssertionWithLogString:assertionSignature:assertionReason:extraBacktrace:] + 1510
4 com.apple.dt.IDEKit 0x00000001021ba008 -[IDEAssertionHandler handleUncaughtException:] + 1077
5 com.apple.dt.IDEKit 0x00000001021ba0d7 IDEHandleUncaughtException + 94
6 com.apple.CoreFoundation 0x00007fff8960a702 __handleUncaughtException + 706
7 libobjc.A.dylib 0x00007fff916b3304 _objc_terminate() + 94
8 libc++abi.dylib 0x00007fff86e3e1d1 std::__terminate(void (*)()) + 8
9 libc++abi.dylib 0x00007fff86e3e246 std::terminate() + 54
10 libobjc.A.dylib 0x00007fff916b30b0 objc_terminate + 9
11 libdispatch.dylib 0x00007fff93dfa2a1 _dispatch_client_callout + 28
12 libdispatch.dylib 0x00007fff93e01ef0 _dispatch_main_queue_callback_4CF + 333
13 com.apple.CoreFoundation 0x00007fff895714f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE
+ 9
14 com.apple.CoreFoundation 0x00007fff8952c714 __CFRunLoopRun + 1636
15 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
16 com.apple.HIToolbox 0x00007fff89073a0d RunCurrentEventLoopInMode + 226
17 com.apple.HIToolbox 0x00007fff89073685 ReceiveNextEventCommon + 173
18 com.apple.HIToolbox 0x00007fff890735bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
19 com.apple.AppKit 0x00007fff9251524e _DPSNextEvent + 1434
20 com.apple.AppKit 0x00007fff9251489b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
21 com.apple.dt.DVTKit 0x00000001014d8d3d -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 237
22 com.apple.AppKit 0x00007fff9250899c -[NSApplication run] + 553
23 com.apple.AppKit 0x00007fff924f3783 NSApplicationMain + 940
24 libdyld.dylib 0x00007fff8e1735fd start + 1

Thread 1:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff9030a662 kevent64 + 10
1 libdispatch.dylib 0x00007fff93dfc421 _dispatch_mgr_invoke + 239
2 libdispatch.dylib 0x00007fff93dfc136 _dispatch_mgr_thread + 52

Thread 3:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 6:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff90305a1a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff90304d18 mach_msg + 64
2 com.apple.CoreFoundation 0x00007fff8952cf15 CFRunLoopServiceMachPort + 181
3 com.apple.CoreFoundation 0x00007fff8952c539 __CFRunLoopRun + 1161
4 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
5 com.apple.Foundation 0x00007fff8ebf7f87 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
6 com.apple.Foundation 0x00007fff8ebf7d8b __NSThread__main
+ 1318
7 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
8 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
9 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 7:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 8:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 9:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 10:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 11:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 12:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 13:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 14:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff903099aa __select + 10
1 com.apple.CoreFoundation 0x00007fff89578a03 __CFSocketManager + 867
2 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
3 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
4 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 15:
0 libsystem_kernel.dylib 0x00007fff90305a1a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff90304d18 mach_msg + 64
2 com.apple.CoreFoundation 0x00007fff8952cf15 CFRunLoopServiceMachPort + 181
3 com.apple.CoreFoundation 0x00007fff8952c539 __CFRunLoopRun + 1161
4 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
5 com.apple.Foundation 0x00007fff8ebfa0fc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
6 com.apple.DTDeviceKitBase 0x000000010af69df8 -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 970
7 com.apple.Foundation 0x00007fff8ebf7d8b __NSThread__main
+ 1318
8 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
9 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
10 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 16:
0 libsystem_kernel.dylib 0x00007fff90305a1a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff90304d18 mach_msg + 64
2 com.apple.CoreFoundation 0x00007fff8952cf15 CFRunLoopServiceMachPort + 181
3 com.apple.CoreFoundation 0x00007fff8952c539 __CFRunLoopRun + 1161
4 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
5 com.apple.Foundation 0x00007fff8ebfa0fc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
6 com.apple.DTDeviceKitBase 0x000000010af5b896 +[DTDKRemoteDeviceConnection startServiceBrowsers] + 213
7 com.apple.Foundation 0x00007fff8ebf7d8b __NSThread__main
+ 1318
8 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
9 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
10 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 17:
0 libsystem_kernel.dylib 0x00007fff90305a1a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff90304d18 mach_msg + 64
2 com.apple.CoreFoundation 0x00007fff8952cf15 __CFRunLoopServiceMachPort + 181
3 com.apple.CoreFoundation 0x00007fff8952c539 __CFRunLoopRun + 1161
4 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
5 com.apple.AppKit 0x00007fff926b505e _NSEventThread + 144
6 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
7 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
8 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 18:
0 libsystem_kernel.dylib 0x00007fff90309e6a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8da69f08 _pthread_wqthread + 330
2 libsystem_pthread.dylib 0x00007fff8da6cfb9 start_wqthread + 13

Thread 19:: DYMobileDeviceManager
0 libsystem_kernel.dylib 0x00007fff90305a1a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff90304d18 mach_msg + 64
2 com.apple.CoreFoundation 0x00007fff8952cf15 CFRunLoopServiceMachPort + 181
3 com.apple.CoreFoundation 0x00007fff8952c539 __CFRunLoopRun + 1161
4 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
5 com.apple.Foundation 0x00007fff8ebfa0fc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
6 com.apple.Foundation 0x00007fff8ece2aca -[NSRunLoop(NSRunLoop) run] + 74
7 com.apple.GPUToolsMobileFoundation 0x00000001129709eb -[DYMobileDeviceManager _deviceNotificationThread:] + 134
8 com.apple.Foundation 0x00007fff8ebf7d8b __NSThread__main
+ 1318
9 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
10 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
11 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 20:
0 libsystem_kernel.dylib 0x00007fff90305a1a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff90304d18 mach_msg + 64
2 com.apple.CoreFoundation 0x00007fff8952cf15 __CFRunLoopServiceMachPort + 181
3 com.apple.CoreFoundation 0x00007fff8952c539 __CFRunLoopRun + 1161
4 com.apple.CoreFoundation 0x00007fff8952be75 CFRunLoopRunSpecific + 309
5 com.apple.CoreFoundation 0x00007fff895e1811 CFRunLoopRun + 97
6 com.apple.DebugSymbols 0x00007fff931347e3 SpotlightQueryThread(void*) + 355
7 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
8 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
9 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 21:
0 libsystem_kernel.dylib 0x00007fff90309a3a __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff89449dc0 nanosleep + 200
2 com.apple.CoreSymbolication 0x00007fff8b81c1f1 cleaner_thread_main(void*) + 42
3 libsystem_pthread.dylib 0x00007fff8da68899 _pthread_body + 138
4 libsystem_pthread.dylib 0x00007fff8da6872a _pthread_start + 137
5 libsystem_pthread.dylib 0x00007fff8da6cfc9 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007fff779d5310 rcx: 0x00007fff5ee59118 rdx: 0x0000000000000000
rdi: 0x0000000000000707 rsi: 0x0000000000000006 rbp: 0x00007fff5ee59140 rsp: 0x00007fff5ee59118
r8: 0x0000000000003fff r9: 0xffff802294be86ef r10: 0x0000000008000000 r11: 0x0000000000000206
r12: 0x00007fff916ad0d0 r13: 0x00007fdd71934be0 r14: 0x0000000000000006 r15: 0x00007fdd6b40c800
rip: 0x00007fff90309866 rfl: 0x0000000000000206 cr2: 0x000000010e73d000

Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133

Binary Images:
0x100da5000 - 0x100da5ff7 com.apple.dt.Xcode (6.2 - 6776) /Applications/Xcode.app/Contents/MacOS/Xcode
0x100dab000 - 0x1011dcff7 com.apple.dt.DVTFoundation (6.2 - 6760) <744EF7FB-1E90-3198-B4F4-2BE25F88A44B> /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/DVTFoundation
0x101398000 - 0x1016a1fff com.apple.dt.DVTKit (6.2 - 6760) <45F07C1C-212F-33E0-8882-8DB1922C0B68> /Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/DVTKit
0x101882000 - 0x101cb5ff7 com.apple.dt.IDEFoundation (6.2 - 6776) /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation
0x101f6b000 - 0x1027acff7 com.apple.dt.IDEKit (6.2 - 6776) <08B66E59-E6A4-3122-8F5F-31B253F33D1E> /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit
0x102d51000 - 0x102d6eff7 com.apple.dt.instruments.DTXConnectionServices (1.0 - 56085) /Applications/Xcode.app/Contents/SharedFrameworks/DTXConnectionServices.framework/Versions/A/DTXConnectionServices
0x102d8d000 - 0x102d8efff libCyrillicConverter.dylib (61) /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
0x102d94000 - 0x102dd0fff com.apple.framework.ConfigurationProfiles (6.0.3 - 668) <37BE99F9-3C1C-3D53-9994-D568A5851D9E> /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/ConfigurationProfiles
0x102df6000 - 0x102df7ffb libsysmon.dylib (58.90.3) <819C8868-B41B-3429-B968-696023C74693> /usr/lib/libsysmon.dylib
0x102dfe000 - 0x103891fff +libclang.dylib (600.0.57) <91C9D73F-B11F-303F-81DF-3004904DB145> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libclang.dylib
0x103a33000 - 0x103a67ff7 com.apple.dt.Xcode.DVTSourceControl (1.0 - 1) <43E8BDB2-EA18-3A04-8A7C-265A26ED92B7> /Applications/Xcode.app/Contents/SharedFrameworks/DVTSourceControl.framework/Versions/A/DVTSourceControl
0x103a94000 - 0x103a9aff7 com.apple.network.statistics.framework (1.2 - 1) <0ACBCF2D-893B-3D94-9917-ADB781F37683> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x103aa3000 - 0x103ab8fff com.apple.DADocSetManagement (6.2 - 6742) /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetManagement.framework/Versions/A/DADocSetManagement
0x103ac9000 - 0x103ac9fff com.apple.IOPlatformPluginFamily (1.0 - 1) <30538113-1147-372E-8013-B32174B28BBB> /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/IOPlatformPluginFamily
0x103acd000 - 0x103aceff7 com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framework/Versions/A/DVTDeveloperModeHelper
0x103ad7000 - 0x103b00ff7 com.apple.dt.instruments.DTGraphKit (6.2 - 56700) <85F729FB-1B4B-3C9A-8878-FF552593D988> /Applications/Xcode.app/Contents/SharedFrameworks/DTGraphKit.framework/Versions/A/DTGraphKit
0x103b18000 - 0x103b18fff com.apple.IDEPepperSupportUI (6.2 - 6747) <5A147D64-2405-3BA3-9D3E-2C6B9E484E1A> /Applications/Xcode.app/Contents/PlugIns/IDEPepperSupportUI.ideplugin/Contents/MacOS/IDEPepperSupportUI
0x103b1d000 - 0x103b65ff7 com.apple.DADocSetAccess (6.2 - 6742) <1A3C0036-9609-3009-B8DC-3466082ECAE3> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetAccess.framework/Versions/A/DADocSetAccess
0x103dfa000 - 0x103dfbff7 libpanel.5.4.dylib (42) <1041D101-63D3-34C8-BFB8-E1DB83CDCB6A> /usr/lib/libpanel.5.4.dylib
0x1066e1000 - 0x106737fff com.apple.PhysicsKit (1.0 - 1) <1BD3B0C7-AF08-36F0-8382-27E049E3BB67> /Applications/Xcode.app/Contents/SharedFrameworks/PhysicsKit.framework/PhysicsKit
0x106765000 - 0x1068cbfff com.apple.SpriteKit (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/SpriteKit.framework/SpriteKit
0x106963000 - 0x106988fff com.apple.GLKit (1.0 - 27) /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit
0x1069ad000 - 0x1069d1fff com.apple.audio.OpenAL (1.7 - 1.7) <5D2366B5-111B-3BDD-AFB3-5770075659F4> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x1069e3000 - 0x106a1fff7 com.apple.CoreSimulator (117.5.4 - 117.5.4) <3D350B44-B388-3F62-BA46-31CEE3A0758A> /Applications/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/CoreSimulator
0x106a42000 - 0x106a4ffff com.apple.dt.IDELanguageSupportCore (6.2 - 6749) /Applications/Xcode.app/Contents/PlugIns/IDELanguageSupportCore.ideplugin/Contents/MacOS/IDELanguageSupportCore
0x106a5d000 - 0x106ab6ff7 com.apple.sourcekitd (1.0 - 600.0.57.4) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/sourcekitd.framework/Versions/A/sourcekitd
0x106ade000 - 0x106b1afff com.apple.dt.dbg.DebuggerFoundation (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/MacOS/DebuggerFoundation
0x106b57000 - 0x106b75ffb libedit.3.dylib (39) <1B0596DB-F336-32E7-BB9F-51BF70DB5305> /usr/lib/libedit.3.dylib
0x106b86000 - 0x106b8efff com.apple.DevToolsFoundation (8.2 - 6728) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
0x106b99000 - 0x106b9aff7 com.apple.dt.dbg.DebuggerLLDBService (6.2 - 6751) <532D5CDC-7237-317E-AB8E-B3B14840469A> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents/MacOS/DebuggerLLDBService
0x106c5a000 - 0x106c6bff7 com.apple.DVTiPhoneSimulatorRemoteClient (6.2 - 6760) <8B23A266-2097-3F4B-8C0A-08FE4528D65B> /Applications/Xcode.app/Contents/SharedFrameworks/DVTiPhoneSimulatorRemoteClient.framework/Versions/A/DVTiPhoneSimulatorRemoteClient
0x106c7d000 - 0x106c96fff com.apple.DeviceLinkX (5.0 - 264) /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink
0x106da3000 - 0x106dabfff com.apple.dt.IDE.IDEOSXSupportCore (6.2 - 6748) <6C7A2425-470F-3239-A03F-160B64CF12AE> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/PrivatePlugIns/IDEOSXSupportCore.ideplugin/Contents/MacOS/IDEOSXSupportCore
0x106db9000 - 0x106dbcfff libspindump.dylib (161.2) /usr/lib/libspindump.dylib
0x1070d5000 - 0x1070d6ff7 +liblaunch_sim.dylib (560.5.16) <090A21B2-B81C-3222-984D-42E31C6D235C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/host/liblaunch_sim.dylib
0x10725e000 - 0x10725fff7 +liblaunch_sim.dylib (330.10.5) <4C651793-4591-3CA5-BD3B-209FC38C3050> /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 7.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/host/liblaunch_sim.dylib
0x107265000 - 0x107266fff +liblaunch_sim.dylib (560.3.4) /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 8.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/host/liblaunch_sim.dylib
0x10728b000 - 0x1076c8ff7 com.apple.SceneKit (5.0 - 259) /Applications/Xcode.app/Contents/SharedFrameworks/SceneKit.framework/SceneKit
0x1079ff000 - 0x107a8dff7 com.apple.dt.IBAutolayoutFoundation (1.0 - 6751) <669F6140-1417-3129-B5B7-F03D391978BE> /Applications/Xcode.app/Contents/Frameworks/IBAutolayoutFoundation.framework/Versions/A/IBAutolayoutFoundation
0x107aeb000 - 0x107b8eff7 com.apple.dt.IBFoundation (1.0 - 6751) <3C236911-D0C7-3DCF-A3D2-193A0BD95EDE> /Applications/Xcode.app/Contents/Frameworks/IBFoundation.framework/Versions/A/IBFoundation
0x107c02000 - 0x107c46fff com.apple.CoreThemeDefinition (2.0 - 146) /System/Library/PrivateFrameworks/CoreThemeDefinition.framework/Versions/A/CoreThemeDefinition
0x107d78000 - 0x107dbfff7 com.apple.dt.dbg.DebuggerLLDB (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDB.ideplugin/Contents/MacOS/DebuggerLLDB
0x107df2000 - 0x109eb6fcb com.apple.LLDB.framework (1.320.4.160 - 320.4.160) <35088E53-4D68-3193-B12D-E0B364409504> /Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB
0x10a775000 - 0x10a85ffff org.python.python (2.7.5 - 2.7.5) <8DD65C8B-686D-3BF1-8682-70F02D28D200> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
0x10a8c5000 - 0x10a901fff com.apple.dt.IDE.Xcode3Core (6.2 - 6728) <3173DF1E-3CAB-3077-A3E7-547E7D133CE7> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xcode3Core
0x10a927000 - 0x10ac87fff com.apple.Xcode.DevToolsCore (8.2 - 6728) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsCore.framework/Versions/A/DevToolsCore
0x10ae24000 - 0x10ae5bfff com.apple.Xcode.DevToolsSupport (8.2 - 6728) <23D63096-EAD9-39FA-B2E8-BB9AAE5FD272> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsSupport.framework/Versions/A/DevToolsSupport
0x10ae82000 - 0x10aefbff7 com.apple.dt.IDE.IDEiOSSupportCore (6.2 - 6760) <9011E786-B03B-3EFC-8761-42354C11C330> /Applications/Xcode.app/Contents/PlugIns/IDEiOSSupportCore.ideplugin/Contents/MacOS/IDEiOSSupportCore
0x10af45000 - 0x10afc5fff com.apple.DTDeviceKitBase (6.2 - 6760) <17FAF496-5877-3575-9E53-57511F934826> /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/DTDeviceKitBase
0x10b018000 - 0x10b132ff7 com.apple.mobiledevice (757.5.6.1.1 - 757.5.6.1.1) <8444BF86-66FC-3A07-A53A-035DA1F0E618> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
0x10b378000 - 0x10b3e4ff7 com.apple.dt.IDE.IDEDocViewer (6.2 - 6751) <02566DDE-C91B-385D-B2BB-3D45ABD9350C> /Applications/Xcode.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/IDEDocViewer
0x10b43a000 - 0x10b954ff7 com.apple.dt.IDE.IDEInterfaceBuilderKit (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderKit.ideplugin/Contents/MacOS/IDEInterfaceBuilderKit
0x10bced000 - 0x10be95ff7 com.apple.dt.IDE.Xcode3UI (6.2 - 6728) <1F1DEA50-2987-393F-BC66-1BC4FE0DA20B> /Applications/Xcode.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcode3UI
0x10bfb3000 - 0x10c074fff com.apple.dt.IDE.IDESourceEditor (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/MacOS/IDESourceEditor
0x10c0eb000 - 0x10c12bfff com.apple.dt.IDE.iCloudSupport (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/iCloudSupport.ideplugin/Contents/MacOS/iCloudSupport
0x10c165000 - 0x10c16cff7 com.apple.dt.IDE.HexEditor (6.2 - 6751) <328DDC97-2F1A-3447-819A-E24FA3F440A5> /Applications/Xcode.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/HexEditor
0x10c176000 - 0x10c1a4ff7 +com.ridiculousfish.HexFiendFramework (6.2 - 6751) <472A7A80-1731-3028-BC05-3D0D04AC2778> /Applications/Xcode.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A/HexFiend
0x10c1df000 - 0x10c1e1fff +com.stefanceriu.SCXcodeSwitchExpanderCorrectedISH (1.0.1 - 1) /Users/USER/Library/Application Support/Developer//SCXcodeSwitchExpanderCorrectedISH
0x10c1e7000 - 0x10c1eafff com.apple.dt.dbg.DebuggerKit (1.0 - 1) /Applications/Xcode.app/Contents/PlugIns/DebuggerKit.ideplugin/Contents/MacOS/DebuggerKit
0x10c1f3000 - 0x10c2c1fff com.apple.dt.dbg.DebuggerUI (6.2 - 6751) <1645A20B-3B6D-3B03-B618-8115C50974E5> /Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/DebuggerUI
0x10c3ae000 - 0x10c3b3ff7 com.apple.dt.gpu.GPUTraceDebugger (6.2 - 16740) <1C838DE8-0F00-3E9E-9F34-D0C381B87145> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/MacOS/GPUTraceDebugger
0x10c3bb000 - 0x10c3bfffd com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10c3c5000 - 0x10c3d0fff com.apple.dt.gpu.GPUDebuggerKit (6.2 - 16740) /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacOS/GPUDebuggerKit
0x10c466000 - 0x10c485fff com.apple.dt.IDE.IDEQuickHelp (6.2 - 6751) <1962D21E-A5CE-35C2-9EF1-70434E8855B7> /Applications/Xcode.app/Contents/PlugIns/IDEQuickHelp.ideplugin/Contents/MacOS/IDEQuickHelp
0x10c4a2000 - 0x10c4a4fff +com.flexih.CComment (1.0 - 1) /Users/USER/Library/Application Support/Developer/
/CComment
0x10c4a8000 - 0x10c4a8fff com.apple.Metal (1.0 - 1) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Metal.xcplugin/Contents/MacOS/Metal
0x10c4ac000 - 0x10c4dbfff com.apple.dt.gpu.GPUDebuggerFoundation (6.2 - 16740) <9A9BA19F-BB80-300E-8092-ABF2CBD38B01> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Contents/MacOS/GPUDebuggerFoundation
0x10c507000 - 0x10c545ffb com.apple.GPUToolsCore (1.0 - 16740) <2E511BCB-4069-3D9E-9630-DC7417DA9BA1> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versions/A/GPUToolsCore
0x10c579000 - 0x10c5adffb com.apple.GPUTools (1.0 - 16740) /Applications/Xcode.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A/GPUTools
0x10c5d8000 - 0x10c6a7ff7 com.apple.GPUToolsServices (1.0 - 16740) <99A2960C-BA23-356F-A354-684993EF7810> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsServices.framework/Versions/A/GPUToolsServices
0x10c70f000 - 0x10c714ffb com.apple.GPUToolsInterface (1.0 - 16740) <3B550E9D-F4FB-361B-BD54-55D4ABA84931> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsInterface.framework/Versions/A/GPUToolsInterface
0x10c71c000 - 0x10c744ff3 com.apple.GLToolsInterface (1.0 - 16740) <6AD939B7-4423-3F52-BADA-79D7EE41E07E> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsInterface.framework/Versions/A/GLToolsInterface
0x10c762000 - 0x10c7e5ff7 com.apple.GLToolsCore (1.0 - 16740) <75C756E8-AA6E-3B15-916C-C099BFF2F684> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsCore.framework/Versions/A/GLToolsCore
0x10c803000 - 0x10c814ff3 com.apple.GLTools (1.0 - 16740) /Applications/Xcode.app/Contents/SharedFrameworks/GLTools.framework/Versions/A/GLTools
0x10c81c000 - 0x10c872ff3 com.apple.GLToolsServices (1.0 - 16740) <10EDA28F-6061-3A11-8374-DFCB480D1142> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsServices.framework/Versions/A/GLToolsServices
0x10c8b8000 - 0x10c93fff7 com.apple.gputools.GLToolsAnalysisEngine (1.0 - 16740) /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsAnalysisEngine.framework/Versions/A/GLToolsAnalysisEngine
0x10ccbc000 - 0x10cd2afff com.apple.dt.gpu.GPUTraceDebuggerUI (6.2 - 16740) <1109E244-39EE-3CCD-B888-A41A09BEB285> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/MacOS/GPUTraceDebuggerUI
0x10e742000 - 0x10e748ff7 com.apple.dt.IDE.IDEInstrumentsService (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/IDEInstrumentsService.ideplugin/Contents/MacOS/IDEInstrumentsService
0x10e7ce000 - 0x10e7dcfff +com.omz-software.OMColorSense (1.0.1 - 1.0.1) /Users/USER/Library/Application Support/Developer//OMColorSense
0x1102fd000 - 0x1104cafff com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (6.2 - 6751) <50E08910-89FF-3644-A07A-668B7FEFEE3F> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaIntegration
0x110663000 - 0x110688fff com.apple.DiscRecordingUI (8.0 - 8000.4.6) <9460712B-D256-33E6-A1F0-6C956EC48C32> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
0x1106aa000 - 0x1106eaff7 com.apple.glut (3.6.0 - GLUT-3.6.0) <3950C650-9BFD-3EE0-B931-3E9033479169> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
0x11075e000 - 0x11076dfff com.apple.DTDeviceKit (4.2 - 6760) <1B382FF5-7CFD-3CDD-8582-5DACA4A4BF32> /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKit.framework/Versions/A/DTDeviceKit
0x1107b8000 - 0x1107c7ff7 +com.plumn.XToDo (1.0 - 1) <8AE91145-5297-3845-88B0-3DC66BC87D73> /Users/USER/Library/Application Support/Developer/
/XToDo
0x110daf000 - 0x110fa7fff com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (6.2 - 6736) <691D8841-B3DF-3AA6-B61A-2E4D36BD2DD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchIntegration
0x111097000 - 0x1110f3fff com.apple.dt.IDE.IDEInterfaceBuilderWatchKitIntegration (6.2 - 3737) <87A63DC3-8ECD-3D21-9DA7-00B8C4FFD572> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderWatchKitIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderWatchKitIntegration
0x111170000 - 0x111341fff com.apple.audio.units.Components (1.10 - 1.10) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x1113ec000 - 0x1113fcff7 +com.onevcat.VVDocumenter-Xcode (1.0 - 1) <632C25A1-C923-3110-9AC0-0D86E69DF0C5> /Users/USER/Library/Application Support/Developer//VVDocumenter-Xcode
0x111412000 - 0x11142dfff +com.stefanceriu.SCXcodeMinimap (1.3 - 1) <11AFD83F-6115-39DC-ACF3-B144EDB5691D> /Users/USER/Library/Application Support/Developer/
/SCXcodeMinimap
0x111447000 - 0x11145efff +jp.questbeat.Lin (2.0 - 1) /Users/USER/Library/Application Support/Developer//Lin
0x11147d000 - 0x111487ff7 +com.ksuther.KSImageNamed (1.0 - 1) <1B883194-4B57-3926-B51F-EA2C606F1100> /Users/USER/Library/Application Support/Developer/
/KSImageNamed
0x111497000 - 0x11149aff7 +com.karolkozub.KKHighlightRecentPlugin (1.0 - 1) <1A20116F-2EE7-3057-AF4C-6983CFC84AA2> /Users/USER/Library/Application Support/Developer//KKHighlightRecentPlugin
0x1114a2000 - 0x1114ceff7 +com.johnholdsworth.GitDiff (3.6 - 3.6) <38BDC19B-5326-3F87-A65A-8593F4378E86> /Users/USER/Library/Application Support/Developer/
/GitDiff
0x11172c000 - 0x111742fff +io.github.FuzzyAutocomplete (2.1.0 - 2.1.0) <31E3D70B-F342-3AC0-8726-40693BBE3E23> /Users/USER/Library/Application Support/Developer//FuzzyAutocomplete
0x11175a000 - 0x11175ffff +adamontherun.autoGenerateDescription (1.0 - 1) <9B3C2C6E-783E-3A9E-96D6-315DB5131D8F> /Users/USER/Library/Application Support/Developer/
/AutoGenerateDescriptionPluginProd
0x111768000 - 0x11176fff7 +com.tendencystudio.AMMethod2Implement (3.1 - 3.1) /Users/USER/Library/Application Support/Developer//AMMethod2Implement
0x111777000 - 0x11178eff7 +com.mneorr.Alcatraz (1.0 - 1) /Users/USER/Library/Application Support/Developer/
/Alcatraz
0x1117af000 - 0x1117beff7 +com.acoomans.ACCodeSnippetRepository (1.0 - 1) <51EB3F2D-C8ED-3681-8D17-E0945733DE02> /Users/USER/Library/Application Support/Developer/*/ACCodeSnippetRepository
0x1119de000 - 0x1119e0fff com.apple.XCPepperSupport (1.0 - 1) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/XCPepperSupport.xcplugin/Contents/MacOS/XCPepperSupport
0x1119e5000 - 0x1119f5fff com.apple.dt.XCLanguageSupport (6.2 - 6749) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/XCLanguageSupport.xcplugin/Contents/MacOS/XCLanguageSupport
0x111a03000 - 0x111a0dfff com.apple.xcode.plug-in.CoreBuildTasks (8.2 - 6728) <339FFC5A-7048-356D-B843-A6168E92068D> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/CoreBuildTasks
0x111a15000 - 0x111a15ff7 com.apple.xcode.compilers.coredata (8.2 - 6728) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Core Data.xcplugin/Contents/MacOS/Core Data
0x111a19000 - 0x111a19ff7 com.apple.compilers.clang (8.2 - 6728) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Clang LLVM 1.0.xcplugin/Contents/MacOS/Clang LLVM 1.0
0x111a1d000 - 0x111a20ff7 com.apple.platform.iphonesimulator.plugin (1.0 - 1.0) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/iPhoneSimulator Build System Support.xcplugin/Contents/MacOS/iPhoneSimulator Build System Support
0x111a26000 - 0x111a27ff7 com.apple.platform.iphoneos.plugin (1.0 - 1.0) <5A27B554-D2CD-3A62-949F-7B0E58C656BC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/iPhoneOS Build System Support.xcplugin/Contents/MacOS/iPhoneOS Build System Support
0x111a2b000 - 0x111a2fff7 com.apple.dt.IDEIODebugGaugesCore (6.2 - 6751) <812ACE35-9F9F-39E6-BD2C-632713F0623B> /Applications/Xcode.app/Contents/PlugIns/IDEIODebugGaugesCore.ideplugin/Contents/MacOS/IDEIODebugGaugesCore
0x111a39000 - 0x111a46ff7 com.apple.dt.IDEIODebugGaugesUI (6.2 - 6751) <047BF344-088E-3220-AEE4-2FC0FFA7CED5> /Applications/Xcode.app/Contents/PlugIns/IDEIODebugGaugesUI.ideplugin/Contents/MacOS/IDEIODebugGaugesUI
0x111a58000 - 0x111a9bff7 com.apple.dt.IDE.IDEiPhoneSupport (6.2 - 6760) <8E560D32-4BF8-31DD-96E6-052BF3522CF3> /Applications/Xcode.app/Contents/PlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPhoneSupport
0x111ae2000 - 0x111ae2ff9 +cl_kernels (???) cl_kernels
0x111b0e000 - 0x111b12ffd libFontRegistryUI.dylib (127) <57DE4E73-B65B-3712-9815-81018E72501A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
0x111b19000 - 0x111befff7 com.apple.dt.IDELanguageSupportUI (6.2 - 6749) /Applications/Xcode.app/Contents/PlugIns/IDELanguageSupportUI.ideplugin/Contents/MacOS/IDELanguageSupportUI
0x111c94000 - 0x111c9cff7 com.apple.dt.DVTPlaygroundCommunication (1.0 - 6751) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/DVTPlaygroundCommunication.framework/Versions/A/DVTPlaygroundCommunication
0x111cad000 - 0x111caeffa +cl_kernels (???) <49862F76-016C-47C2-9A7B-542F5058439D> cl_kernels
0x111cb7000 - 0x111cb8ff3 com.apple.MTLTools (1.0 - 1) <3748F955-5610-3EA4-B089-2A615750C3A8> /Applications/Xcode.app/Contents/SharedFrameworks/MTLTools.framework/Versions/A/MTLTools
0x112295000 - 0x112295ffb +cl_kernels (???) <37E69101-D168-4B12-B27E-8AA97897DB96> cl_kernels
0x1122a8000 - 0x1122a9ff4 +cl_kernels (???) <5229DBFE-1A6E-4266-BB52-7CDD23ECDC7C> cl_kernels
0x11230c000 - 0x112340ff7 com.apple.gputools.GLToolsMobileAnalysis (1.0 - 16739) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsMobileAnalysis.gtplugin/Contents/MacOS/GLToolsMobileAnalysis
0x112350000 - 0x112357ff7 com.apple.gputools.GLToolsShaderProfilerMobileSupport (1.0 - 16739) <964D23D9-7D26-3702-96DD-E3C8939270A7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsShaderProfilerMobileSupport.gtplugin/Contents/MacOS/GLToolsShaderProfilerMobileSupport
0x11235e000 - 0x112383ffb com.apple.gdt.MTLToolsAnalysisHeuristics (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/MTLToolsAnalysisHeuristics.gtplugin/Contents/MacOS/MTLToolsAnalysisHeuristics
0x11238a000 - 0x11238aff7 com.apple.dt.IDE.IDEAppleScriptEditor (6.2 - 6751) <3D2175F1-2638-3A0A-9415-8C1ABAEB1F2D> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptEditor.ideplugin/Contents/MacOS/IDEAppleScriptEditor
0x112391000 - 0x112391fff com.apple.GLToolsMobileFoundation (1.0 - 16739) <520C0C96-AC37-3448-965E-AEC9A3D65E8C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GLToolsMobileFoundation.framework/Versions/A/GLToolsMobileFoundation
0x1123b3000 - 0x11241fff7 com.apple.dt.gpu.GPURenderTargetEditor (6.2 - 16740) <3C2DD313-C8A7-3552-91C1-8D2406B73475> /Applications/Xcode.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Contents/MacOS/GPURenderTargetEditor
0x112463000 - 0x11246cff7 com.apple.dt.PlistEditor (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/PlistEditor
0x112478000 - 0x1124c9fff com.apple.IDESpriteKitParticleEditor (2.0 - 2) <21315F18-A679-3455-BF72-190FD1E98A84> /Applications/Xcode.app/Contents/PlugIns/IDESpriteKitParticleEditor.ideplugin/Contents/MacOS/IDESpriteKitParticleEditor
0x1124fb000 - 0x112551ff7 com.apple.dt.IDE.IDESceneKitEditor (6.2 - 6745) /Applications/Xcode.app/Contents/PlugIns/IDESceneKitEditor.ideplugin/Contents/MacOS/IDESceneKitEditor
0x11259a000 - 0x1125affff com.apple.dt.IDE.IDERTFEditor (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/IDERTFEditor.ideplugin/Contents/MacOS/IDERTFEditor
0x1125c1000 - 0x112812fff com.apple.dt.gpu.GPUDebuggeriOSSupport (6.2 - 16740) <48230C93-6DDC-3FFC-AA66-5AA26EEAB557> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggeriOSSupport.ideplugin/Contents/MacOS/GPUDebuggeriOSSupport
0x112885000 - 0x1128ecffb com.apple.GLToolsExpert (1.0 - 16739) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GLToolsExpert.framework/Versions/A/GLToolsExpert
0x112928000 - 0x112934fff com.apple.GPUToolsShaderProfiler (1.0 - 16740) /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsShaderProfiler.framework/Versions/A/GPUToolsShaderProfiler
0x112943000 - 0x11295bff3 com.apple.GLToolsShaderProfiler (1.0 - 16740) <74CCEF8A-D401-38B0-B80D-35B6C5A15901> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsShaderProfiler.framework/Versions/A/GLToolsShaderProfiler
0x112968000 - 0x11297cffb com.apple.GPUToolsMobileFoundation (1.0 - 16739) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GPUToolsMobileFoundation.framework/Versions/A/GPUToolsMobileFoundation
0x112990000 - 0x11299dff7 com.apple.dt.IDE.IDEQuickLookEditor (6.2 - 6751) <234C6365-9476-3EC3-9FBD-D55C4A265962> /Applications/Xcode.app/Contents/PlugIns/IDEQuickLookEditor.ideplugin/Contents/MacOS/IDEQuickLookEditor
0x1129ae000 - 0x112a8ffff com.apple.dt.IDE.IDEModelEditor (6.2 - 6751) <5B8D76F4-9075-3D5A-B82A-2397017C7E39> /Applications/Xcode.app/Contents/PlugIns/IDEModelEditor.ideplugin/Contents/MacOS/IDEModelEditor
0x112b26000 - 0x112b9ffff com.apple.dt.IDE.IDEModelFoundation (6.2 - 6751) <66CDD101-BDAA-35CE-A6F9-BECF39681DC7> /Applications/Xcode.app/Contents/PlugIns/IDEModelFoundation.ideplugin/Contents/MacOS/IDEModelFoundation
0x112bf6000 - 0x112bfdff7 com.apple.dt.ScriptingDefinitionEditor (6.2 - 6751) <7450BFBB-6376-39A6-96B0-A9B41B24DD7F> /Applications/Xcode.app/Contents/PlugIns/ScriptingDefinitionEditor.ideplugin/Contents/MacOS/ScriptingDefinitionEditor
0x112c05000 - 0x112c09ff7 com.apple.dt.IDE.IDEPDFViewer (6.2 - 6751) <7A10160C-4CD1-3C5D-BA07-46AA4114EAE7> /Applications/Xcode.app/Contents/PlugIns/IDEPDFViewer.ideplugin/Contents/MacOS/IDEPDFViewer
0x1131ef000 - 0x113371fff com.apple.gputools.GLToolsAnalysisHeuristics (1.0 - 16740) <15B4C70D-57E4-3463-B8F1-F228BFE8BBF0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsAnalysisHeuristics.gtplugin/Contents/MacOS/GLToolsAnalysisHeuristics
0x113386000 - 0x113392ff3 com.apple.MTLToolsCore (1.0 - 1) <93C39588-485D-3176-9AFF-1BB5EF8F3DB6> /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsCore.framework/Versions/A/MTLToolsCore
0x11339d000 - 0x1133c5ff3 com.apple.gdt.MTLToolsAnalysisEngine (1.0 - 16739) /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsAnalysisEngine.framework/Versions/A/MTLToolsAnalysisEngine
0x1133ec000 - 0x1133f5ff7 +dsc_extractor.bundle (353.10) <75638F60-F30C-3801-89F3-63AADD1E2855> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/lib/dsc_extractor.bundle
0x1133fd000 - 0x113413fff com.apple.dt.IDE.IDESubversion (6.2 - 6751) <053510E2-0B4D-37D0-8B1A-5AF5FCE36859> /Applications/Xcode.app/Contents/PlugIns/IDESubversion.ideplugin/Contents/MacOS/IDESubversion
0x113421000 - 0x11343dff7 com.apple.dt.IDE.IDEGit (6.2 - 6751) /Applications/Xcode.app/Contents/PlugIns/IDEGit.ideplugin/Contents/MacOS/IDEGit
0x113462000 - 0x113467ff7 com.apple.dt.IDEContinuousIntegration (1.0 - 1) <5DD5EE88-8F7F-3092-B257-77F5D194BD5E> /Applications/Xcode.app/Contents/PlugIns/IDEContinuousIntegration.ideplugin/Contents/MacOS/IDEContinuousIntegration
0x113470000 - 0x11350bfff com.apple.XCSCore (1.0 - 1) <60CDAFCE-891C-34DF-9DCF-04B3956D8DA9> /Applications/Xcode.app/Contents/SharedFrameworks/XCSCore.framework/Versions/A/XCSCore
0x113570000 - 0x11361dff7 com.apple.dt.XCSUI (1.0 - 1) <2256D1A4-3BBF-3F58-8A68-D409063F2F71> /Applications/Xcode.app/Contents/SharedFrameworks/XCSUI.framework/Versions/A/XCSUI
0x1136c5000 - 0x113893fff com.apple.dt.gpu.GPUDebuggerMTLSupport (6.2 - 16739) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggerMTLSupport.ideplugin/Contents/MacOS/GPUDebuggerMTLSupport
0x1138f0000 - 0x113910ffb com.apple.MTLToolsServices (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsServices.framework/Versions/A/MTLToolsServices
0x11392b000 - 0x11395efff com.apple.MTLToolsShaderProfiler (1.0 - 16739) <4A34B28E-F7F9-355E-8C37-94B90F7D188A> /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsShaderProfiler.framework/Versions/A/MTLToolsShaderProfiler
0x113abb000 - 0x113ba1fef unorm8_bgra.dylib (2.3.58) <641EC871-01E8-301F-8695-B92993AD7E23> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x7fff69a01000 - 0x7fff69a34817 dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
0x7fff86131000 - 0x7fff86202fff com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff86203000 - 0x7fff86216ff7 com.apple.AppContainer (3.0 - 1) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff86217000 - 0x7fff86240fff com.apple.DictionaryServices (1.2 - 208) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff86241000 - 0x7fff86241fff com.apple.Cocoa (6.8 - 20) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff862c1000 - 0x7fff8639eff7 libcrypto.0.9.8.dylib (52.8.1) <52B36740-372F-3AF6-99E4-B1A24A3C9954> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8639f000 - 0x7fff863a0fff com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff863a1000 - 0x7fff863a1fff com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff868ba000 - 0x7fff8697cff5 com.apple.CoreText (367.20 - 367.20) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8697d000 - 0x7fff86980fff libCoreVMClient.dylib (58.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff86a86000 - 0x7fff86ad4ff9 libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
0x7fff86ad5000 - 0x7fff86adcfff com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff86ae1000 - 0x7fff86e17fff com.apple.MediaToolbox (1.0 - 1273.54) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff86e18000 - 0x7fff86e18fff com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff86e19000 - 0x7fff86e19ffd libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
0x7fff86e1a000 - 0x7fff86e43ff7 libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
0x7fff86e44000 - 0x7fff86e4ffff libkxld.dylib (2422.115.10) /usr/lib/system/libkxld.dylib
0x7fff872a3000 - 0x7fff87374ff1 com.apple.DiskImagesFramework (10.9 - 371.1) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff87375000 - 0x7fff87379ff7 com.apple.ServerInformation (2.1.1 - 1) <7FAF2B82-FE90-3398-98D8-0F84C6FE6A4A> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/ServerInformation
0x7fff8737a000 - 0x7fff87385ff7 com.apple.DirectoryService.Framework (10.9 - 173.90.1) <22A0C230-CF1E-38F5-A947-5ACDAEEE0DB6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff873a9000 - 0x7fff87435ff7 com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff87bc3000 - 0x7fff87bc6fff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff87bc7000 - 0x7fff87d63ff3 com.apple.QuartzCore (1.8 - 332.3) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff87d64000 - 0x7fff87d6afff com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
0x7fff87d6b000 - 0x7fff87dcafff com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff87dcb000 - 0x7fff87e0cfff com.apple.PerformanceAnalysis (1.47 - 47) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff87e0d000 - 0x7fff87e18ff7 com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff87e19000 - 0x7fff87ea1ff7 com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff87ea2000 - 0x7fff88176fc7 com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff88177000 - 0x7fff88335fff com.apple.GeoServices (1.0 - 702.15.12) <850DC458-20CC-3E16-BB50-7C9FDBA308D3> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff88336000 - 0x7fff8834cfff com.apple.CoreMediaAuthoring (2.2 - 947) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff8834d000 - 0x7fff883adfff com.apple.ISSupport (1.9.9 - 57) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
0x7fff88c72000 - 0x7fff88ccaff7 com.apple.Symbolication (1.4 - 129.0.2) <78AE8B21-BF15-373F-88C6-73BF740BFFFB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff88ccb000 - 0x7fff88cd3fff libsystem_dnssd.dylib (522.92.1) <3F8C6A07-3046-3E88-858F-D9CEFC43A405> /usr/lib/system/libsystem_dnssd.dylib
0x7fff88cd4000 - 0x7fff88ce6ff7 com.apple.CoreBluetooth (1.0 - 1) <67A00F44-563E-3C55-9187-34D502D84DDE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff88e16000 - 0x7fff88e1dff7 com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff88e1e000 - 0x7fff88e53ffc com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff88e54000 - 0x7fff88e99ff6 com.apple.HIServices (1.23 - 468) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff88e9a000 - 0x7fff88e9cfff libRadiance.dylib (1044) <461482C9-CADB-3B36-B023-597C64AD4B00> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff88eb7000 - 0x7fff88eb8ff7 libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff88ed9000 - 0x7fff8903fff7 com.apple.AutomatorFramework (1.4 - 381) <8B88828A-6520-3A64-B9AD-C4DA3081E130> /System/Library/Frameworks/Automator.framework/Versions/A/Automator
0x7fff89040000 - 0x7fff89042ff7 libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
0x7fff89045000 - 0x7fff892efff5 com.apple.HIToolbox (2.1.1 - 698) <26FF0E2C-1CD7-311F-ACF0-84F3D5273AD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff892f0000 - 0x7fff89342fff libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
0x7fff89384000 - 0x7fff8938eff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8938f000 - 0x7fff89397ffc libGFXShared.dylib (9.6.1) <65BC4378-C023-30EC-8B80-60FB4EA0B036> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff89398000 - 0x7fff893bfff7 libsystem_network.dylib (241.4) <0D630D53-C772-3EC5-8257-EFB0ACCE3153> /usr/lib/system/libsystem_network.dylib
0x7fff893c0000 - 0x7fff893cdff7 libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
0x7fff893ce000 - 0x7fff89457ff7 libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
0x7fff89458000 - 0x7fff894bbffb com.apple.SystemConfiguration (1.13.1 - 1.13.1) <339A2A90-DA25-33AF-88E5-2FB38A758FEE> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff894bc000 - 0x7fff896a1fff com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff896a2000 - 0x7fff896ddfff com.apple.bom (14.0 - 193.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff896de000 - 0x7fff896e0fff com.apple.SecCodeWrapper (3.0 - 1) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff896e1000 - 0x7fff896e6fff libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
0x7fff896e7000 - 0x7fff8a53bff7 com.apple.WebCore (9537 - 9537.78.1) <56C3D4BF-2495-3FD2-8212-91AF7DF693B8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff8a59f000 - 0x7fff8a5ebffe com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff8a5ec000 - 0x7fff8a610fff libxpc.dylib (300.90.2) /usr/lib/system/libxpc.dylib
0x7fff8a611000 - 0x7fff8a613ff3 libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
0x7fff8a616000 - 0x7fff8a76aff3 com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff8a76b000 - 0x7fff8a77bffb libsasl2.2.dylib (170) /usr/lib/libsasl2.2.dylib
0x7fff8a77c000 - 0x7fff8a9c4ff7 com.apple.CoreData (107 - 481.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8a9dd000 - 0x7fff8aa0dfff com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8aa0e000 - 0x7fff8ac6ffff com.apple.imageKit (2.5 - 774) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff8ac70000 - 0x7fff8ac7aff7 com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff8ac80000 - 0x7fff8acafff9 com.apple.GSS (4.0 - 2.0) <27FCA2B4-0767-3002-8755-862B19B5CF92> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff8acb0000 - 0x7fff8accbff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib
0x7fff8accc000 - 0x7fff8ace0fff com.apple.aps.framework (4.0 - 4.0) <2D42DCDD-055E-3EE1-97F8-FC447B495D3E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff8afe9000 - 0x7fff8b018fd2 libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib
0x7fff8b019000 - 0x7fff8b2aaff7 com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
0x7fff8b2c3000 - 0x7fff8b2c6ffa libCGXType.A.dylib (599.35.6) <7DAB1A62-D475-37F1-8234-07649906E234> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8b2c7000 - 0x7fff8b2cffff libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
0x7fff8b2d0000 - 0x7fff8b2d6ff7 com.apple.AddressBook.ContactsFoundation (8.0 - 1371.2) /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff8b2d7000 - 0x7fff8b310ff7 com.apple.QD (3.50 - 298) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8b311000 - 0x7fff8b3fbfff libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
0x7fff8b3fc000 - 0x7fff8b409ff4 com.apple.Librarian (1.2 - 1) /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
0x7fff8b40a000 - 0x7fff8b41cff7 com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <38262B92-C63F-35A0-997D-AD2EBF2F8338> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8b46d000 - 0x7fff8b4c6fff libTIFF.dylib (1044) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8b4c7000 - 0x7fff8b4d9fff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff8b4da000 - 0x7fff8b4dafff com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8b4db000 - 0x7fff8b548fff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff8b646000 - 0x7fff8b652ff7 com.apple.HelpData (2.1.4 - 90) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x7fff8b6a6000 - 0x7fff8b756ff7 libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8b757000 - 0x7fff8b7a2fff com.apple.ImageCaptureCore (5.0 - 5.0) /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff8b7a3000 - 0x7fff8b7feffb com.apple.AE (665.5 - 665.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff8b801000 - 0x7fff8b809ff3 libCGCMS.A.dylib (599.35.6) <09F33B9F-098A-340A-8717-E3BA6849470E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff8b80a000 - 0x7fff8b88bfff com.apple.CoreSymbolication (3.0.1 - 141.0.6) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8b90b000 - 0x7fff8b90efff com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8bb4b000 - 0x7fff8bb57ffb com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff8bb58000 - 0x7fff8bbc4fff com.apple.framework.IOKit (2.0.1 - 907.100.14) <10932113-9F7E-38A0-A158-A019A555CAC3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8bbc5000 - 0x7fff8c4e530b com.apple.CoreGraphics (1.600.0 - 599.35.6) <07F8BE29-8352-30DE-A136-FD8CE9526B8A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8c4e6000 - 0x7fff8c4efffd com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff8c4f0000 - 0x7fff8c74eff2 com.apple.RawCamera.bundle (5.06 - 753) <7315ED29-77A1-3990-9054-F00B96527C06> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff8c74f000 - 0x7fff8c777ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib
0x7fff8c778000 - 0x7fff8c781fff com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8c782000 - 0x7fff8c7f5fff com.apple.securityfoundation (6.0 - 55122.3) <0FDC8F53-104C-3938-A852-5B33C30BAAD5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8ca80000 - 0x7fff8ca82fff com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff8ca83000 - 0x7fff8caeeff7 com.apple.AVKit (1.0 - 117.5) /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
0x7fff8caf9000 - 0x7fff8cafdff7 libsystem_stats.dylib (93.90.3) /usr/lib/system/libsystem_stats.dylib
0x7fff8cbcf000 - 0x7fff8cbdffff libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
0x7fff8cbe0000 - 0x7fff8ce29fff com.apple.AddressBook.framework (8.0 - 1371.2) <7DB320AB-4ED4-391E-89CC-125826D94026> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff8ce2a000 - 0x7fff8d0fbff4 com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8d0fc000 - 0x7fff8d173fff com.apple.CoreServices.OSServices (600.4 - 600.4) <5A44F0B5-4A24-3875-ADE4-5B47D6C7E251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8d174000 - 0x7fff8d178ff7 libheimdal-asn1.dylib (323.92.2) <979AEAA0-59B3-3E99-94B1-9BB9C6C45273> /usr/lib/libheimdal-asn1.dylib
0x7fff8d1d1000 - 0x7fff8d1e2ff7 libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
0x7fff8d1e3000 - 0x7fff8d706fff com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8d707000 - 0x7fff8d875ff7 libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff8d876000 - 0x7fff8d9a5fef com.apple.MediaControlSender (2.0 - 200.34.4) /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff8d9a6000 - 0x7fff8d9a8ffb libutil.dylib (34) /usr/lib/libutil.dylib
0x7fff8d9a9000 - 0x7fff8d9adff7 libGIF.dylib (1044) <7E51DFC3-740A-3CD3-98A1-1EC510A4A055> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8d9b1000 - 0x7fff8d9b8ff8 liblaunch.dylib (842.92.1) /usr/lib/system/liblaunch.dylib
0x7fff8d9b9000 - 0x7fff8d9c3ff7 com.apple.CrashReporterSupport (10.9 - 539) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff8d9c4000 - 0x7fff8da17fff com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x7fff8da18000 - 0x7fff8da66ff7 com.apple.opencl (2.3.59 - 2.3.59) <9F43F471-C3C3-352D-889D-EC418DC1F5B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8da67000 - 0x7fff8da6eff7 libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib
0x7fff8da6f000 - 0x7fff8db5efff libFontParser.dylib (111.1.2) <25C4548B-A2DE-30BE-9FAF-DDA161DADB16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8db5f000 - 0x7fff8db69fff libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
0x7fff8dba0000 - 0x7fff8dc58ff7 com.apple.DiscRecording (8.0 - 8000.4.6) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8dc9b000 - 0x7fff8dcddff7 libauto.dylib (185.5) /usr/lib/libauto.dylib
0x7fff8dcde000 - 0x7fff8dcf7ff3 liblzma.5.dylib (5) <6479DC70-3290-35A0-8EA0-056D366A13A2> /usr/lib/liblzma.5.dylib
0x7fff8dcf8000 - 0x7fff8dd15ff7 com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff8dd3a000 - 0x7fff8dd3afff com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff8dd3b000 - 0x7fff8dd3bfff com.apple.AOSMigrate (1.0 - 1) /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
0x7fff8dd3c000 - 0x7fff8dd3efff com.apple.marco (10.0 - 1000) /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff8dd3f000 - 0x7fff8dd74ffb com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff8dd75000 - 0x7fff8ddaeff7 com.apple.OSAKit (1.4.1 - 89.1) <41C7737D-4C6F-30EA-964D-65650DD11912> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
0x7fff8ddaf000 - 0x7fff8ddebff7 com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff8ddec000 - 0x7fff8ddeefff com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8ddef000 - 0x7fff8de16ffb libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
0x7fff8de17000 - 0x7fff8de2fff7 com.apple.openscripting (1.4 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff8de30000 - 0x7fff8e021ffc com.apple.WebKit2 (9537 - 9537.78.2) <1A443A0D-98DB-308C-B16C-7EDCDA5FF8E5> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
0x7fff8e022000 - 0x7fff8e046fff com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff8e047000 - 0x7fff8e12bff7 com.apple.coreui (2.2 - 231.1) <187DF89C-8A64-366D-8782-F90315FA3CD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8e12c000 - 0x7fff8e12dfff com.apple.AddressBook.ContactsData (8.0 - 1371.2) <5C8D3406-C4DE-305A-958F-53BCE7B179AA> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
0x7fff8e12e000 - 0x7fff8e135ffb libcopyfile.dylib (103.92.1) /usr/lib/system/libcopyfile.dylib
0x7fff8e136000 - 0x7fff8e160ff7 libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
0x7fff8e170000 - 0x7fff8e173ff7 libdyld.dylib (239.4) <41077DD7-F909-3B8A-863E-72AE304EDE13> /usr/lib/system/libdyld.dylib
0x7fff8e174000 - 0x7fff8e17eff7 com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff8e17f000 - 0x7fff8e19dfff com.apple.facetimeservices (10.0 - 1000) /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
0x7fff8e19e000 - 0x7fff8e19fff7 libSystem.B.dylib (1197.1.1) <70B235FC-BCED-367B-BA6C-67C299BAE7D9> /usr/lib/libSystem.B.dylib
0x7fff8e1ad000 - 0x7fff8e1d5ffb libRIP.A.dylib (599.35.6) <45A8594F-906E-3EAE-87D4-BA1DB091C690> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff8e1d6000 - 0x7fff8e207fff com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff8e22b000 - 0x7fff8e2f6fff libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff8e2f7000 - 0x7fff8e308fff com.apple.idsfoundation (10.0 - 1000) /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff8e309000 - 0x7fff8e30afff libsystem_sandbox.dylib (278.11.2) <0C93EB23-7364-3670-B511-212A7A524695> /usr/lib/system/libsystem_sandbox.dylib
0x7fff8e30b000 - 0x7fff8e30fff7 libcache.dylib (62) /usr/lib/system/libcache.dylib
0x7fff8e316000 - 0x7fff8e35dff7 libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
0x7fff8e35e000 - 0x7fff8e3c2fff com.apple.datadetectorscore (5.0 - 354.5) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff8e3c3000 - 0x7fff8e3f0ff2 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8e6a9000 - 0x7fff8e6ceff7 com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff8e6cf000 - 0x7fff8e9b9fff com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8e9ba000 - 0x7fff8e9d1ff7 com.apple.CFOpenDirectory (10.9 - 173.90.1) <7BC0194E-1B40-3FCA-ACD2-235CE5D65DFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff8e9d2000 - 0x7fff8e9d3fff libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
0x7fff8e9d4000 - 0x7fff8ea21ff2 com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8ea2b000 - 0x7fff8ea2cfff liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
0x7fff8ea2d000 - 0x7fff8ea2eff7 libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib
0x7fff8ea2f000 - 0x7fff8ea46ffa libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff8ea47000 - 0x7fff8ea62ff7 libsystem_malloc.dylib (23.10.1) /usr/lib/system/libsystem_malloc.dylib
0x7fff8ea63000 - 0x7fff8ea8dff7 libsandbox.1.dylib (278.11.2) /usr/lib/libsandbox.1.dylib
0x7fff8ea8e000 - 0x7fff8eae5fff com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff8eb0c000 - 0x7fff8eb3cfff libncurses.5.4.dylib (42) /usr/lib/libncurses.5.4.dylib
0x7fff8eb3d000 - 0x7fff8eb61ff7 libJPEG.dylib (1044) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8eb62000 - 0x7fff8eb66fff com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff8eb67000 - 0x7fff8eb83fff libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
0x7fff8eb84000 - 0x7fff8eb90ff7 com.apple.OpenDirectory (10.9 - 173.90.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff8eb91000 - 0x7fff8ee91ff7 com.apple.Foundation (6.9 - 1056.17) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8ee94000 - 0x7fff8ee95ffb libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
0x7fff8ee96000 - 0x7fff8eeb2fff com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
0x7fff8eeb3000 - 0x7fff8f04eff8 com.apple.CFNetwork (673.5 - 673.5) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8f04f000 - 0x7fff8f08dff7 libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff8f09d000 - 0x7fff8f09dfff com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff8f09e000 - 0x7fff8f0aafff libexslt.0.dylib (13) <5E67F2D8-F4A2-3DC5-8FD8-6876C08466C9> /usr/lib/libexslt.0.dylib
0x7fff8f163000 - 0x7fff8f544ffe libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8f552000 - 0x7fff8f554ff7 com.apple.securityhi (9.0 - 55005) <9985032A-0EE1-3760-8D23-ADD3965A4D18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8f55e000 - 0x7fff8f64fff9 libiconv.2.dylib (41) /usr/lib/libiconv.2.dylib
0x7fff8f650000 - 0x7fff8f65aff7 libcsfde.dylib (380.70.2) <3ACB87D7-A81C-3C45-B648-AD27F1B9D841> /usr/lib/libcsfde.dylib
0x7fff8f65b000 - 0x7fff8f685ff0 com.apple.SystemConfiguration.EAP8021X (13.0.0 - 13.0) /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
0x7fff8f686000 - 0x7fff8f68fffb libsystem_notify.dylib (121.20.1) <9B34B4FE-F5AD-3F09-A5F0-46AFF3571323> /usr/lib/system/libsystem_notify.dylib
0x7fff8f690000 - 0x7fff8f6c1ff7 libtidy.A.dylib (15.12) /usr/lib/libtidy.A.dylib
0x7fff8f6c2000 - 0x7fff8f6d0fff com.apple.opengl (9.6.1 - 9.6.1) <359D0ECB-D100-341B-B437-BDE56E27B74B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8f710000 - 0x7fff8f75dfff com.apple.AppleVAFramework (5.0.27 - 5.0.27) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff8f75e000 - 0x7fff8f762fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff8f763000 - 0x7fff8f7acfff com.apple.CoreMedia (1.0 - 1273.54) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff8f7ad000 - 0x7fff8f7bcff8 com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff8f7bd000 - 0x7fff8f7e4ff7 com.apple.shortcut (2.6 - 2.6) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x7fff8f7e5000 - 0x7fff8f880ff7 com.apple.PDFKit (2.9.2 - 2.9.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff8f881000 - 0x7fff8fbf8ff6 com.apple.JavaScriptCore (9537 - 9537.78.1) <8623A109-9E9D-3E3B-A8E1-6EE447C0110C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff8fbf9000 - 0x7fff8fd1bfff com.apple.avfoundation (2.0 - 651.12.1) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff8fd1c000 - 0x7fff8fd1eff7 com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff8fd9d000 - 0x7fff8fe84ff7 libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib
0x7fff8fe85000 - 0x7fff8febafff libssl.0.9.8.dylib (52.8.1) /usr/lib/libssl.0.9.8.dylib
0x7fff8febb000 - 0x7fff8ff7fff7 com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8ff80000 - 0x7fff8ffbffff libGLU.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8ffc0000 - 0x7fff90006fff com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff90007000 - 0x7fff90010ff7 libcldcpuengine.dylib (2.3.58) <645ABD2F-C93B-3943-8B07-BBC08B904253> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff90011000 - 0x7fff902b2ff9 com.apple.VectorKit (1.0 - 716.20.2) <479C2699-AE6B-3309-A190-B1FA3A548B5C> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
0x7fff902b3000 - 0x7fff902cafff com.apple.ScriptingBridge (1.3.1 - 63) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
0x7fff902cb000 - 0x7fff902e4ff7 com.apple.Ubiquity (1.3 - 289) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff902f4000 - 0x7fff90310ff7 libsystem_kernel.dylib (2422.115.10) <1A75B3AB-3FAE-3D26-922D-726FE6C99F4D> /usr/lib/system/libsystem_kernel.dylib
0x7fff90311000 - 0x7fff90349ff7 com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff9034a000 - 0x7fff9034affd com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9034b000 - 0x7fff9034effc com.apple.IOSurface (91.2 - 91.2) <4B2308B5-3F40-33BB-851C-A2A168343F6D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff9034f000 - 0x7fff9041fff7 com.apple.PubSub (1.0.5 - 65.36) <26189018-1C77-3C56-84E8-56C6A400187F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
0x7fff90420000 - 0x7fff90426ff7 com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff90427000 - 0x7fff9042dff7 libCGXCoreImage.A.dylib (599.35.6) <69BEB63E-93AF-3A32-BA27-EDC2B6649B2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x7fff90434000 - 0x7fff9053aff7 com.apple.ImageIO.framework (3.3.0 - 1044) <3BCCF2AE-CF1F-3324-A371-DF0A42C841A2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff9053b000 - 0x7fff90540ff7 libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
0x7fff90541000 - 0x7fff905d7ff7 com.apple.PackageKit (3.0 - 332) <70BE1C7F-0609-32D3-9FA3-3C2CCF7FE999> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
0x7fff905d8000 - 0x7fff9061dfff libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
0x7fff9061e000 - 0x7fff906a9ff7 libCoreStorage.dylib (380.70.2) /usr/lib/libCoreStorage.dylib
0x7fff906aa000 - 0x7fff90707fff com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff90708000 - 0x7fff907d2fff com.apple.LaunchServices (572.29 - 572.29) <15C7BB21-73FB-38E7-924F-E6C4DF49D440> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff907d3000 - 0x7fff90c21fef com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff90c22000 - 0x7fff90e86ffd com.apple.security (7.0 - 55471.14.27) <714CB117-0BFD-3717-A2F4-2D58E09DF803> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff90e87000 - 0x7fff90e8afff com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff90edf000 - 0x7fff90ee6fff libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
0x7fff90ee7000 - 0x7fff90f0cff7 com.apple.ChunkingLibrary (2.0 - 155.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff90f50000 - 0x7fff90fe4ff7 com.apple.Bluetooth (4.2.7 - 4.2.7f4) <8FF9E7DB-9452-3B11-A105-7ADAC3B68319> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff91037000 - 0x7fff910c7ff7 com.apple.Metadata (10.7.0 - 800.29) <6310AE28-EB99-3BB4-92F1-0C8BE6DEAD48> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff91429000 - 0x7fff9148ffff com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff91490000 - 0x7fff915d1fff com.apple.QTKit (7.7.3 - 2826.24) <08E58C71-D16C-3357-989C-780A08994B27> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff9163b000 - 0x7fff916a2ff7 com.apple.CoreUtils (2.0 - 200.34.4) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff916a3000 - 0x7fff916a4fff libffi.dylib (18.1) /usr/lib/libffi.dylib
0x7fff916a5000 - 0x7fff91852f27 libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib
0x7fff9186f000 - 0x7fff9189eff7 com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff9189f000 - 0x7fff918a0ff7 com.apple.print.framework.Print (9.0 - 260) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff918a1000 - 0x7fff919d1ff7 com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff919d2000 - 0x7fff91a19fff libFontRegistry.dylib (127) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff91a86000 - 0x7fff91ab4ff7 com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff91ab5000 - 0x7fff91e8cfef com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff91e8d000 - 0x7fff91e92fff com.apple.DiskArbitration (2.6 - 2.6) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff91e93000 - 0x7fff922c6ffb com.apple.vision.FaceCore (3.0.0 - 3.0.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff922c7000 - 0x7fff9247fffb libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
0x7fff92480000 - 0x7fff92482fff libCVMSPluginSupport.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff92483000 - 0x7fff92489ff7 libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
0x7fff9248a000 - 0x7fff924d9ff7 com.apple.framework.internetaccounts (2.1 - 210) /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
0x7fff924f1000 - 0x7fff93067ff7 com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff93068000 - 0x7fff93070ff7 com.apple.AppleSRP (5.0 - 1) /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff93071000 - 0x7fff9307cfff libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff9307d000 - 0x7fff93132ffb com.apple.MapKit (1.0 - 1205.7.4) /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
0x7fff93133000 - 0x7fff93162fff com.apple.DebugSymbols (106 - 106) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff93163000 - 0x7fff93170fff com.apple.Sharing (132.2 - 132.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff93171000 - 0x7fff931cfff7 com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff931d0000 - 0x7fff93235ffb com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff93236000 - 0x7fff93262fff com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff93263000 - 0x7fff932b4ff7 com.apple.audio.CoreAudio (4.2.1 - 4.2.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff932b5000 - 0x7fff932b5ff7 libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
0x7fff932b6000 - 0x7fff932cfff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff932d0000 - 0x7fff936abffb com.apple.Altitude (1.0 - 347.6.3) /System/Library/PrivateFrameworks/Altitude.framework/Versions/A/Altitude
0x7fff936ac000 - 0x7fff936c7ff7 libPng.dylib (1044) <151BA92C-6E7C-3B69-8024-FDD1E2C89DD3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff936c8000 - 0x7fff936d5ff0 libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
0x7fff936d6000 - 0x7fff93724fff libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib
0x7fff93790000 - 0x7fff93819fff com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff93855000 - 0x7fff9398bff5 com.apple.WebKit (9537 - 9537.78.2) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff9398c000 - 0x7fff939a4ff7 com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff939a5000 - 0x7fff939aaff7 com.apple.MediaAccessibility (1.0 - 43) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff939ab000 - 0x7fff93a1aff1 com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff93a9d000 - 0x7fff93b8bfff libJP2.dylib (1044) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff93b8e000 - 0x7fff93bdffff com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff93be0000 - 0x7fff93be9fff com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff93d06000 - 0x7fff93d0eff7 com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff93d0f000 - 0x7fff93d20ff7 libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
0x7fff93d21000 - 0x7fff93d30fff com.apple.AppleScriptObjC (1.3 - 26) /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC
0x7fff93d31000 - 0x7fff93dcefff com.apple.imcore (10.0 - 1000) /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
0x7fff93dcf000 - 0x7fff93dcffff com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff93df9000 - 0x7fff93e13fff libdispatch.dylib (339.92.1) /usr/lib/system/libdispatch.dylib

Unwanted horizontal scrolling

When clicking in the minimap to go to a specific location (or when dragging within the minimap) often the editor is not only vertcially scrolled but also horizontally, which is annoying. The best solution is probably to have no horizontal scrolling at all (and hence keep what was last set by the user). Thanks.

Blinking selection

It is hard to use it because it blinks each time I add a new line to the document or show/hide the autocompletion help on esc command or similar actions. And it is annoying

Add option to disable scroll animation

Looks like minimap uses an animation to scroll to a given position. Can this be made optional? The animation significantly slows down quick navigation. Thank you.

Only cover as much space as needed

Refer to the minimap in SublimeText. It only is as tall as it needs to be, so in most cases, long lines are not completely blocked; there'd be an opening to see the entire line.

Install failed

2015-03-16 14:18:21.488 Xcode[3786:60165] DeveloperPortal: Using pre-existing current store at URL (file:///Users/username/Library/Developer/Xcode/DeveloperPortal%206.2.db).
2015-03-16 14:18:22.583 Xcode[3786:60138] [MT] iPhoneSimulator: SimVerifier returned: Error Domain=NSPOSIXErrorDomain Code=53 "Simulator verification failed." UserInfo=0x608002c78840 {NSLocalizedFailureReason=A connection to the simulator verification service could not be established., NSLocalizedRecoverySuggestion=Ensure that Xcode.app is installed on a volume with ownership enabled., NSLocalizedDescription=Simulator verification failed.}

Xcode Version 6.2 (6C131e)

Use trackpad, the map following the last focus

In Xcode v6.2, MiniMap v2.0.
first, my focus in the top of the page, in this time, i scroll the map to the bottom of the page,
and use trackpad scroll page, the page scroll to top(first focus position) right now.

XCode 5 support

please :)
I'd tried to make it by myself, but I don't have knowledge there to search for it.
I compiled it in XCode 5, and it become available for XCode 4, but on xcode5 I see nothing

Empty file

When I create an empty file, xcode automatically (and this can't be configured) shows the content of the file and that's when xcode crashes when this plugin is installed.

SCXcodeMiniMap warning when loading a Playground

Hi! I'm getting an console error when playground loads. The error is as follows

com.apple.dt.Xcode.Playground[12396]: WARNING: Failed to load plugin at path: ... The bundle “SCXcodeMinimap” couldn’t be loaded because it is damaged or missing necessary resources

Though it is a warning would be nice to prevent this from happening. I'm sure Apple is receiving these types of logs and thus the reason for them to try put up warnings about installing plugins

Folded code segments still appear in the MiniMap

If you fold code in the source editor it's still displayed as expanded in the mini map. Maybe it's not an issue, but should be an option. Probably with some visual clue (like a thin line) that there is folded code at that location.

SCXcodeMiniMap covers ends of longer lines

SCXcodeMiniMap will cover text of longer lines if the editor is not set to soft wrap longer lines making it hard to see end of lines without scrolling.

Instalation Info

  • Installed the plugin using Alcatraz. (sets soft wrap to on by default)
  • Turned off soft wrap
  • Page guide is set at 80 chars

Some suggestions

  1. What about to distinguish #pragma mark and other preprocessor macro? The reason is this macro is usually to separate code in several chunks only
  2. You have an option to hide minimap fully but if I have previously chosen "highlight main editor" then it will have been hidden too. What about to split this option into 2 independent ones?

Feature: autohide for small files

I'm not really sure will it be useful, but can you add option for autohiding MiniMap if editor doesn't have vertical scroll?
I think it's better not to remove it completely, but just set width to = 0, for better performance.

Disable bouncing

Nice work!

There's one small issue I've encountered after installing - if you swipe with a touchpad over the minimap, the whole thing moves.

I assume the minimap should always stay in the place, and eventually, scroll Xcode when the highlighted area is clicked&moved.

Xcode 7 beta 4 crashes when viewing the stdio.h file

For some reason SCXcodeMiniMap causes Xcode to crash when viewing the stdio.h file.
I find it only happens with that specific file, it may still crash with other files though.

Here's the crash report:

Process:               Xcode [40803]
Path:                  /Applications/Xcode-beta.app/Contents/MacOS/Xcode
Identifier:            com.apple.dt.Xcode
Version:               7.0 (8178.7)
Build Info:            IDEFrameworks-8178007000000000~3
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Xcode [40803]
User ID:               502

Date/Time:             2015-08-15 01:21:04.362 +0100
OS Version:            Mac OS X 10.11 (15A244d)
Report Version:        11
Anonymous UUID:        6581E10A-7539-EF3D-7176-A9F5DF9776C2

Sleep/Wake UUID:       1DF193C9-4579-41E8-B289-B33402F87163

Time Awake Since Boot: 470000 seconds
Time Since Wake:       210000 seconds

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:
ProductBuildVersion: 7A165t
UNCAUGHT EXCEPTION (NSRangeException): *** -[NSConcretePointerArray pointerAtIndex:]: attempt to access pointer at index 30 beyond bounds 28
UserInfo: (null)
Hints: None
Backtrace:
  0  0x00007fff8667a7c4 __exceptionPreprocess (in CoreFoundation)
  1  0x0000000105532743 DVTFailureHintExceptionPreprocessor (in DVTFoundation)
  2  0x00007fff88c5d810 objc_exception_throw (in libobjc.A.dylib)
  3  0x00007fff8667a68d +[NSException raise:format:] (in CoreFoundation)
  4  0x00007fff98a2bc08 -[NSConcretePointerArray pointerAtIndex:] (in Foundation)
  5  0x000000011288b1ed -[SCXcodeMinimapView layoutManager:shouldUseTemporaryAttributes:forDrawingToScreen:atCharacterIndex:effectiveRange:] at /Users/ricardonogueira/Downloads/SCXcodeMiniMap-master/SCXcodeMinimap/SCXcodeMinimapView.m:313 (in SCXcodeMinimap)
  6  0x00007fff8c42da96 -[NSLayoutManager(NSPrivate) _drawBackgroundForGlyphRange:atPoint:] (in UIFoundation)
  7  0x0000000105a0a963 -[DVTLayoutManager drawBackgroundForGlyphRange:atPoint:] (in DVTKit)
  8  0x00007fff94dc8561 -[NSTextView drawRect:] (in AppKit)
  9  0x0000000105a095ec -[DVTCompletingTextView drawRect:] (in DVTKit)
 10  0x0000000105a0928c -[DVTSourceTextView drawRect:] (in DVTKit)
 11  0x00007fff94d837ea -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] (in AppKit)
 12  0x00007fff94d83180 __46-[NSView(NSLayerKitGlue) drawLayer:inContext:]_block_invoke (in AppKit)
 13  0x00007fff94d82e2b -[NSView(NSLayerKitGlue) _drawViewBackingLayer:inContext:drawingHandler:] (in AppKit)
 14  0x00007fff94d824bd -[NSView(NSLayerKitGlue) drawLayer:inContext:] (in AppKit)
 15  0x00007fff94fe0fba -[NSTextView drawLayer:inContext:] (in AppKit)
 16  0x00007fff94f234dc -[_NSBackingLayerContents drawLayer:inContext:] (in AppKit)
 17  0x00007fff8a8f1943 -[CALayer drawInContext:] (in QuartzCore)
 18  0x00007fff94f22fb2 -[_NSTiledLayer drawTile:inContext:] (in AppKit)
 19  0x00007fff94f22ce3 -[_NSTiledLayerContents drawLayer:inContext:] (in AppKit)
 20  0x00007fff8a8f1943 -[CALayer drawInContext:] (in QuartzCore)
 21  0x00007fff94f22c21 -[NSTileLayer drawInContext:] (in AppKit)
 22  0x00007fff8a8efe95 CABackingStoreUpdate_ (in QuartzCore)
 23  0x00007fff8a8ef0e9 ___ZN2CA5Layer8display_Ev_block_invoke (in QuartzCore)
 24  0x00007fff8a8e2d49 CA::Layer::display_() (in QuartzCore)
 25  0x00007fff94f22b38 -[NSTileLayer display] (in AppKit)
 26  0x00007fff956986af -[_NSTiledLayerContents update:shouldCallPrepareContent:] (in AppKit)
 27  0x00007fff94dcd0f0 -[_NSTiledLayer display] (in AppKit)
 28  0x00007fff8a8e1125 CA::Layer::display_if_needed(CA::Transaction*) (in QuartzCore)
 29  0x00007fff8a8e07a5 CA::Layer::layout_and_display_if_needed(CA::Transaction*) (in QuartzCore)
 30  0x00007fff8a8dfd09 CA::Context::commit_transaction(CA::Transaction*) (in QuartzCore)
 31  0x00007fff8a8dfa3c CA::Transaction::commit() (in QuartzCore)
 32  0x00007fff8a8ee933 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) (in QuartzCore)
 33  0x00007fff8658a5b7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ (in CoreFoundation)
 34  0x00007fff8658a527 __CFRunLoopDoObservers (in CoreFoundation)
 35  0x00007fff8657bb98 CFRunLoopRunSpecific (in CoreFoundation)
 36  0x00007fff93f953e5 RunCurrentEventLoopInMode (in HIToolbox)
 37  0x00007fff93f95083 ReceiveNextEventCommon (in HIToolbox)
 38  0x00007fff93f94fbb _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
 39  0x00007fff94d1fae7 _DPSNextEvent (in AppKit)
 40  0x00007fff950ebac5 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit)
 41  0x0000000105aeeb50 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in DVTKit)
 42  0x00007fff94d15986 -[NSApplication run] (in AppKit)
 43  0x00007fff94c97e9a NSApplicationMain (in AppKit)
 44  0x00007fff978405ad start (in libdyld.dylib)

abort() called

Application Specific Signatures:
NSRangeException

Application Specific Backtrace 1:
0   CoreFoundation                      0x00007fff8667a7dc __exceptionPreprocess + 172
1   DVTFoundation                       0x0000000105532743 DVTFailureHintExceptionPreprocessor + 194
2   libobjc.A.dylib                     0x00007fff88c5d810 objc_exception_throw + 48
3   CoreFoundation                      0x00007fff8667a68d +[NSException raise:format:] + 205
4   Foundation                          0x00007fff98a2bc08 -[NSConcretePointerArray pointerAtIndex:] + 128
5   SCXcodeMinimap                      0x000000011288b1ed -[SCXcodeMinimapView layoutManager:shouldUseTemporaryAttributes:forDrawingToScreen:atCharacterIndex:effectiveRange:] + 8125
6   UIFoundation                        0x00007fff8c42da96 -[NSLayoutManager(NSPrivate) _drawBackgroundForGlyphRange:atPoint:] + 2610
7   DVTKit                              0x0000000105a0a963 -[DVTLayoutManager drawBackgroundForGlyphRange:atPoint:] + 160
8   AppKit                              0x00007fff94dc8561 -[NSTextView drawRect:] + 2710
9   DVTKit                              0x0000000105a095ec -[DVTCompletingTextView drawRect:] + 114
10  DVTKit                              0x0000000105a0928c -[DVTSourceTextView drawRect:] + 243
11  AppKit                              0x00007fff94d837ea -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
12  AppKit                              0x00007fff94d83180 __46-[NSView(NSLayerKitGlue) drawLayer:inContext:]_block_invoke + 242
13  AppKit                              0x00007fff94d82e2b -[NSView(NSLayerKitGlue) _drawViewBackingLayer:inContext:drawingHandler:] + 2403
14  AppKit                              0x00007fff94d824bd -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 108
15  AppKit                              0x00007fff94fe0fba -[NSTextView drawLayer:inContext:] + 179
16  AppKit                              0x00007fff94f234dc -[_NSBackingLayerContents drawLayer:inContext:] + 157
17  QuartzCore                          0x00007fff8a8f1943 -[CALayer drawInContext:] + 257
18  AppKit                              0x00007fff94f22fb2 -[_NSTiledLayer drawTile:inContext:] + 625
19  AppKit                              0x00007fff94f22ce3 -[_NSTiledLayerContents drawLayer:inContext:] + 185
20  QuartzCore                          0x00007fff8a8f1943 -[CALayer drawInContext:] + 257
21  AppKit                              0x00007fff94f22c21 -[NSTileLayer drawInContext:] + 169
22  QuartzCore                          0x00007fff8a8efe95 CABackingStoreUpdate_ + 3494
23  QuartzCore                          0x00007fff8a8ef0e9 ___ZN2CA5Layer8display_Ev_block_invoke + 59
24  QuartzCore                          0x00007fff8a8e2d49 _ZN2CA5Layer8display_Ev + 1565
25  AppKit                              0x00007fff94f22b38 -[NSTileLayer display] + 119
26  AppKit                              0x00007fff956986af -[_NSTiledLayerContents update:shouldCallPrepareContent:] + 7131
27  AppKit                              0x00007fff94dcd0f0 -[_NSTiledLayer display] + 368
28  QuartzCore                          0x00007fff8a8e1125 _ZN2CA5Layer17display_if_neededEPNS_11TransactionE + 603
29  QuartzCore                          0x00007fff8a8e07a5 _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 35
30  QuartzCore                          0x00007fff8a8dfd09 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 277
31  QuartzCore                          0x00007fff8a8dfa3c _ZN2CA11Transaction6commitEv + 508
32  QuartzCore                          0x00007fff8a8ee933 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 71
33  CoreFoundation                      0x00007fff8658a5b7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
34  CoreFoundation                      0x00007fff8658a527 __CFRunLoopDoObservers + 391
35  CoreFoundation                      0x00007fff8657bb98 CFRunLoopRunSpecific + 328
36  HIToolbox                           0x00007fff93f953e5 RunCurrentEventLoopInMode + 235
37  HIToolbox                           0x00007fff93f95083 ReceiveNextEventCommon + 184
38  HIToolbox                           0x00007fff93f94fbb _BlockUntilNextEventMatchingListInModeWithFilter + 71
39  AppKit                              0x00007fff94d1fae7 _DPSNextEvent + 1076
40  AppKit                              0x00007fff950ebac5 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 440
41  DVTKit                              0x0000000105aeeb50 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 247
42  AppKit                              0x00007fff94d15986 -[NSApplication run] + 682
43  AppKit                              0x00007fff94c97e9a NSApplicationMain + 1176
44  libdyld.dylib                       0x00007fff978405ad start + 1

Global Trace Buffer (reverse chronological seconds):
322.524918   CFNetwork                  0x00007fff85fe8d6b TCP Conn 0x7fe423cc6780 SSL Handshake DONE
322.770404   CFNetwork                  0x00007fff85fe8c47 TCP Conn 0x7fe423cc6780 starting SSL negotiation
322.770561   CFNetwork                  0x00007fff85fe74eb TCP Conn 0x7fe423cc6780 complete. fd: 63, err: 0
322.770889   CFNetwork                  0x00007fff85fe6a9d TCP Conn 0x7fe423cc6780 event 1. err: 0
322.803177   CFNetwork                  0x00007fff85fe8d6b TCP Conn 0x7fe423fef630 SSL Handshake DONE
322.808419   CFNetwork                  0x00007fff85fe8d6b TCP Conn 0x7fe4245f3130 SSL Handshake DONE
322.844572   CFNetwork                  0x00007fff85fe74eb TCP Conn 0x7fe423ad7210 complete. fd: 62, err: 0
322.844709   CFNetwork                  0x00007fff85fe6a9d TCP Conn 0x7fe423ad7210 event 1. err: 0
322.903232   CFNetwork                  0x00007fff85fe8c47 TCP Conn 0x7fe423fef630 starting SSL negotiation
322.903572   CFNetwork                  0x00007fff85fe74eb TCP Conn 0x7fe423fef630 complete. fd: 71, err: 0

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib          0x00007fff93f450ae __pthread_kill + 10
1   libsystem_pthread.dylib         0x00007fff8ef8e665 pthread_kill + 90
2   libsystem_c.dylib               0x00007fff9453c3fb abort + 129
3   com.apple.dt.IDEKit             0x000000010693ac04 +[IDEAssertionHandler _handleAssertionWithLogString:assertionSignature:assertionReason:extraBacktrace:] + 1481
4   com.apple.dt.IDEKit             0x000000010693be9d -[IDEAssertionHandler handleUncaughtException:] + 1077
5   com.apple.dt.IDEKit             0x000000010693bf69 IDEHandleUncaughtException + 94
6   com.apple.dt.DVTKit             0x0000000105a0962a -[DVTCompletingTextView drawRect:] + 176
7   com.apple.dt.DVTKit             0x0000000105a0928c -[DVTSourceTextView drawRect:] + 243
8   com.apple.AppKit                0x00007fff94d837ea -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFontReferenceColor:] + 1331
9   com.apple.AppKit                0x00007fff94d83180 __46-[NSView(NSLayerKitGlue) drawLayer:inContext:]_block_invoke + 242
10  com.apple.AppKit                0x00007fff94d82e2b -[NSView(NSLayerKitGlue) _drawViewBackingLayer:inContext:drawingHandler:] + 2403
11  com.apple.AppKit                0x00007fff94d824bd -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 108
12  com.apple.AppKit                0x00007fff94fe0fba -[NSTextView drawLayer:inContext:] + 179
13  com.apple.AppKit                0x00007fff94f234dc -[_NSBackingLayerContents drawLayer:inContext:] + 157
14  com.apple.QuartzCore            0x00007fff8a8f1943 -[CALayer drawInContext:] + 257
15  com.apple.AppKit                0x00007fff94f22fb2 -[_NSTiledLayer drawTile:inContext:] + 625
16  com.apple.AppKit                0x00007fff94f22ce3 -[_NSTiledLayerContents drawLayer:inContext:] + 185
17  com.apple.QuartzCore            0x00007fff8a8f1943 -[CALayer drawInContext:] + 257
18  com.apple.AppKit                0x00007fff94f22c21 -[NSTileLayer drawInContext:] + 169
19  com.apple.QuartzCore            0x00007fff8a8efe95 CABackingStoreUpdate_ + 3494
20  com.apple.QuartzCore            0x00007fff8a8ef0e9 ___ZN2CA5Layer8display_Ev_block_invoke + 59
21  com.apple.QuartzCore            0x00007fff8a8e2d49 CA::Layer::display_() + 1565
22  com.apple.AppKit                0x00007fff94f22b38 -[NSTileLayer display] + 119
23  com.apple.AppKit                0x00007fff956986af -[_NSTiledLayerContents update:shouldCallPrepareContent:] + 7131
24  com.apple.AppKit                0x00007fff94dcd0f0 -[_NSTiledLayer display] + 368
25  com.apple.QuartzCore            0x00007fff8a8e1125 CA::Layer::display_if_needed(CA::Transaction*) + 603
26  com.apple.QuartzCore            0x00007fff8a8e07a5 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
27  com.apple.QuartzCore            0x00007fff8a8dfd09 CA::Context::commit_transaction(CA::Transaction*) + 277
28  com.apple.QuartzCore            0x00007fff8a8dfa3c CA::Transaction::commit() + 508
29  com.apple.QuartzCore            0x00007fff8a8ee933 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 71
30  com.apple.CoreFoundation        0x00007fff8658a5b7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
31  com.apple.CoreFoundation        0x00007fff8658a527 __CFRunLoopDoObservers + 391
32  com.apple.CoreFoundation        0x00007fff8657bb98 CFRunLoopRunSpecific + 328
33  com.apple.HIToolbox             0x00007fff93f953e5 RunCurrentEventLoopInMode + 235
34  com.apple.HIToolbox             0x00007fff93f95083 ReceiveNextEventCommon + 184
35  com.apple.HIToolbox             0x00007fff93f94fbb _BlockUntilNextEventMatchingListInModeWithFilter + 71
36  com.apple.AppKit                0x00007fff94d1fae7 _DPSNextEvent + 1076
37  com.apple.AppKit                0x00007fff950ebac5 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 440
38  com.apple.dt.DVTKit             0x0000000105aeeb50 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 247
39  com.apple.AppKit                0x00007fff94d15986 -[NSApplication run] + 682
40  com.apple.AppKit                0x00007fff94c97e9a NSApplicationMain + 1176
41  libdyld.dylib                   0x00007fff978405ad start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib          0x00007fff93f460a2 kevent_qos + 10
1   libdispatch.dylib               0x00007fff8e6c450c _dispatch_mgr_invoke + 216
2   libdispatch.dylib               0x00007fff8e6c4183 _dispatch_mgr_thread + 52

Thread 2:
0   libsystem_kernel.dylib          0x00007fff93f3fc96 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff93f3f0d7 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff8657ce64 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff8657c32c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff8657bb78 CFRunLoopRunSpecific + 296
5   com.apple.Foundation            0x00007fff98a9452d -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
6   com.apple.DTDeviceKitBase       0x000000010eda60aa -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 1103
7   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
8   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
9   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
10  libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 3:: com.apple.CFSocket.private
0   libsystem_kernel.dylib          0x00007fff93f45222 __select + 10
1   com.apple.CoreFoundation        0x00007fff865c8a5a __CFSocketManager + 762
2   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
3   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
4   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 4:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib          0x00007fff93f3fc96 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff93f3f0d7 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff8657ce64 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff8657c32c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff8657bb78 CFRunLoopRunSpecific + 296
5   com.apple.CFNetwork             0x00007fff85fcff4e +[NSURLConnection(Loader) _resourceLoadLoop:] + 412
6   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
7   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 5:: com.apple.NSEventThread
0   libsystem_kernel.dylib          0x00007fff93f3fc96 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff93f3f0d7 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff8657ce64 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff8657c32c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff8657bb78 CFRunLoopRunSpecific + 296
5   com.apple.AppKit                0x00007fff94dde599 _NSEventThread + 149
6   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
7   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
8   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 6:: DYMobileDeviceManager
0   libsystem_kernel.dylib          0x00007fff93f3fc96 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff93f3f0d7 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff8657ce64 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff8657c32c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff8657bb78 CFRunLoopRunSpecific + 296
5   com.apple.Foundation            0x00007fff98a9452d -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
6   com.apple.Foundation            0x00007fff98b06290 -[NSRunLoop(NSRunLoop) run] + 74
7   com.apple.GPUToolsMobileFoundation  0x0000000119575901 -[DYMobileDeviceManager _deviceNotificationThread:] + 134
8   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
9   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
10  libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
11  libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 7:
0   libsystem_kernel.dylib          0x00007fff93f44f5e __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff8ef8d1f0 _pthread_cond_wait + 767
2   com.apple.Xcode.DevToolsCore    0x000000010e858c4a -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 450
3   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
4   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
5   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
6   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 8:
0   libsystem_kernel.dylib          0x00007fff93f44f5e __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff8ef8d1f0 _pthread_cond_wait + 767
2   com.apple.Xcode.DevToolsCore    0x000000010e858c4a -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 450
3   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
4   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
5   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
6   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib          0x00007fff93f44f5e __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff8ef8d1f0 _pthread_cond_wait + 767
2   com.apple.Xcode.DevToolsCore    0x000000010e858c4a -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 450
3   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
4   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
5   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
6   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 10:
0   libsystem_kernel.dylib          0x00007fff93f3fc96 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff93f3f0d7 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff8657ce64 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff8657c32c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff8657bb78 CFRunLoopRunSpecific + 296
5   com.apple.Foundation            0x00007fff98a9452d -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
6   com.apple.DTDeviceKitBase       0x000000010ed96ff6 +[DTDKRemoteDeviceConnection startServiceBrowsers] + 213
7   com.apple.Foundation            0x00007fff98be01ca __NSThread__start__ + 1351
8   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
9   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
10  libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 11:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 12:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 13:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 14:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 15:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 16:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 17:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 18:: Dispatch queue: com.apple.root.default-qos
0   com.apple.CoreFoundation        0x00007fff865725a4 __CFBinaryPlistGetOffsetForValueFromDictionary3 + 836
1   com.apple.Foundation            0x00007fff98a1a23a _decodeObject + 188
2   com.apple.DADocSetAccess        0x000000010b474367 -[DSAFastToken initWithCoder:] + 201
3   com.apple.Foundation            0x00007fff98a1ae53 _decodeObjectBinary + 2743
4   com.apple.Foundation            0x00007fff98a1bf1b -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1469
5   com.apple.Foundation            0x00007fff98a1c1a3 -[NSArray(NSArray) initWithCoder:] + 203
6   com.apple.Foundation            0x00007fff98a1ae53 _decodeObjectBinary + 2743
7   com.apple.Foundation            0x00007fff98a1a297 _decodeObject + 281
8   com.apple.Foundation            0x00007fff98b6922f +[NSKeyedUnarchiver unarchiveObjectWithFile:] + 156
9   com.apple.DADocSetAccess        0x000000010b46a0e3 -[DSADocSet loadTokenCache] + 234
10  com.apple.dt.IDE.IDEQuickHelp   0x0000000114f5470a __73+[IDEQuickHelpQueries scheduleLoadingTokenCacheForEnabledDocSetsIfNeeded]_block_invoke_3 + 54
11  com.apple.CoreFoundation        0x00007fff8658da06 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 134
12  com.apple.CoreFoundation        0x00007fff8658d0f9 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 217
13  com.apple.dt.DVTFoundation      0x000000010556c04c __DVTDispatchAsync_block_invoke + 153
14  libdispatch.dylib               0x00007fff8e6c35cf _dispatch_call_block_and_release + 12
15  libdispatch.dylib               0x00007fff8e6bf409 _dispatch_client_callout + 8
16  libdispatch.dylib               0x00007fff8e6c25e4 _dispatch_root_queue_drain + 1890
17  libdispatch.dylib               0x00007fff8e6c1e80 _dispatch_worker_thread3 + 91
18  libsystem_pthread.dylib         0x00007fff8ef8c72f _pthread_wqthread + 1129
19  libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 19:
0   libsystem_kernel.dylib          0x00007fff93f4578a __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff8ef8c7c9 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff8ef8a409 start_wqthread + 13

Thread 20:: JavaScriptCore::Marking
0   libsystem_kernel.dylib          0x00007fff93f44f5e __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff8ef8d1f0 _pthread_cond_wait + 767
2   libc++.1.dylib                  0x00007fff9449168f std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
3   com.apple.JavaScriptCore        0x00007fff8efa47db JSC::GCThread::waitForNextPhase() + 171
4   com.apple.JavaScriptCore        0x00007fff8efa4628 JSC::GCThread::gcThreadMain() + 88
5   com.apple.JavaScriptCore        0x00007fff8ef99f22 WTF::threadEntryPoint(void*) + 178
6   com.apple.JavaScriptCore        0x00007fff8ef99e4f WTF::wtfThreadEntryPoint(void*) + 15
7   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 21:: JavaScriptCore::Marking
0   libsystem_kernel.dylib          0x00007fff93f44f5e __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff8ef8d1f0 _pthread_cond_wait + 767
2   libc++.1.dylib                  0x00007fff9449168f std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
3   com.apple.JavaScriptCore        0x00007fff8efa47db JSC::GCThread::waitForNextPhase() + 171
4   com.apple.JavaScriptCore        0x00007fff8efa4628 JSC::GCThread::gcThreadMain() + 88
5   com.apple.JavaScriptCore        0x00007fff8ef99f22 WTF::threadEntryPoint(void*) + 178
6   com.apple.JavaScriptCore        0x00007fff8ef99e4f WTF::wtfThreadEntryPoint(void*) + 15
7   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 22:: JavaScriptCore::Marking
0   libsystem_kernel.dylib          0x00007fff93f44f5e __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff8ef8d1f0 _pthread_cond_wait + 767
2   libc++.1.dylib                  0x00007fff9449168f std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
3   com.apple.JavaScriptCore        0x00007fff8efa47db JSC::GCThread::waitForNextPhase() + 171
4   com.apple.JavaScriptCore        0x00007fff8efa4628 JSC::GCThread::gcThreadMain() + 88
5   com.apple.JavaScriptCore        0x00007fff8ef99f22 WTF::threadEntryPoint(void*) + 178
6   com.apple.JavaScriptCore        0x00007fff8ef99e4f WTF::wtfThreadEntryPoint(void*) + 15
7   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 23:
0   libsystem_kernel.dylib          0x00007fff93f3fc96 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff93f3f0d7 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff8657ce64 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff8657c32c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff8657bb78 CFRunLoopRunSpecific + 296
5   com.apple.CoreFoundation        0x00007fff8663e061 CFRunLoopRun + 97
6   com.apple.DebugSymbols          0x00007fff916dd69a SpotlightQueryThread(void*) + 346
7   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 24:
0   libsystem_kernel.dylib          0x00007fff93f452b2 __semwait_signal + 10
1   libsystem_c.dylib               0x00007fff9455daf5 nanosleep + 199
2   com.apple.CoreSymbolication     0x00007fff88280b5f 0x7fff8826e000 + 76639
3   libsystem_pthread.dylib         0x00007fff8ef8ccb3 _pthread_body + 131
4   libsystem_pthread.dylib         0x00007fff8ef8cc30 _pthread_start + 168
5   libsystem_pthread.dylib         0x00007fff8ef8a419 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5a8f4328  rdx: 0x0000000000000000
  rdi: 0x000000000000160b  rsi: 0x0000000000000006  rbp: 0x00007fff5a8f4350  rsp: 0x00007fff5a8f4328
   r8: 0x00007fe429755132   r9: 0x0000000000000000  r10: 0x0000000008000000  r11: 0x0000000000000206
  r12: 0x00007fff88c54230  r13: 0x00007fe429e3fdd0  r14: 0x00007fff765ed000  r15: 0x00007fe420713400
  rip: 0x00007fff93f450ae  rfl: 0x0000000000000206  cr2: 0x000000012c792d20

Logical CPU:     0
Error Code:      0x0200014e
Trap Number:     133


Binary Images:
       0x105308000 -        0x105308fff  com.apple.dt.Xcode (7.0 - 8178.7) <9E8BC860-4BD5-3989-87DC-0E951D6FD08E> /Applications/Xcode-beta.app/Contents/MacOS/Xcode
       0x105313000 -        0x1057d2ff7  com.apple.dt.DVTFoundation (7.0 - 8164.3) <5D7E9DBD-1282-308B-8717-9CFB37E8E411> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/DVTFoundation
       0x1059b4000 -        0x105ce4ff7  com.apple.dt.DVTKit (7.0 - 8164.3) <089285C9-E675-315A-B785-BFE6B761A0CB> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/DVTKit
       0x105ede000 -        0x1063c9ff7  com.apple.dt.IDEFoundation (7.0 - 8178.7) <87BD0553-DF8E-3282-8124-05BB546FB9DE> /Applications/Xcode-beta.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation
       0x1066fe000 -        0x106f70ff7  com.apple.dt.IDEKit (7.0 - 8178.7) <0AF27938-A5C5-39C0-AA89-65C3F39F2FFF> /Applications/Xcode-beta.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit
       0x107554000 -        0x107580fc7  com.apple.dt.instruments.DTXConnectionServices (1.0 - 58101) <89796DCA-606A-3D99-AE47-BC603AAE7D92> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DTXConnectionServices.framework/Versions/A/DTXConnectionServices
       0x1075a9000 -        0x10762dfff  com.apple.dt.instruments.DVTInstrumentsFoundation (1.0 - 58101) <18538675-9FB1-375B-9118-D58AC5FD08D6> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTInstrumentsFoundation.framework/Versions/A/DVTInstrumentsFoundation
       0x1076a1000 -        0x107728fff  com.apple.CoreSymbolicationDT (3.1 - 58046) <B4F36D33-44B9-3E3D-849E-36B737C60624> /Applications/Xcode-beta.app/Contents/SharedFrameworks/CoreSymbolicationDT.framework/Versions/A/CoreSymbolicationDT
       0x10773f000 -        0x107789fef  com.apple.Symbolication (1.4 - 58040) <19648EA0-C136-3BDB-9AAF-43F98E9BF140> /Applications/Xcode-beta.app/Contents/SharedFrameworks/SymbolicationDT.framework/Versions/A/SymbolicationDT
       0x1077c3000 -        0x1078f9fff  com.apple.framework.CoreProfileDT (7.0 - 58026) <BAE17FAE-A9CC-33C7-8FDE-E0A8E04CF4B1> /Applications/Xcode-beta.app/Contents/SharedFrameworks/CoreProfileDT.framework/Versions/A/CoreProfileDT
       0x107936000 -        0x10793aff7  com.apple.kperf (1.0 - 1) <B90A9E99-F850-35FF-AA91-E7D60746500E> /System/Library/PrivateFrameworks/kperf.framework/Versions/A/kperf
       0x107943000 -        0x107943fff  com.apple.IDEPepperSupportUI (7.0 - 8028) <6918D405-8842-380B-8891-33353D3AD94E> /Applications/Xcode-beta.app/Contents/PlugIns/IDEPepperSupportUI.ideplugin/Contents/MacOS/IDEPepperSupportUI
       0x107949000 -        0x107953ff7  com.apple.kperfdataDT (1.0 - 1) <77AB819C-D582-30A7-A073-627A5EB5115D> /Applications/Xcode-beta.app/Contents/SharedFrameworks/kperfdataDT.framework/Versions/A/kperfdataDT
       0x10795b000 -        0x10795bfff  com.apple.Metal (1.0 - 1) <FBB8DE80-1C69-372A-BAED-A56550A97216> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Metal.xcplugin/Contents/MacOS/Metal
       0x10795f000 -        0x107982fff  com.apple.StreamingZip (1.0 - 1) <60F60931-8D26-3372-9962-A2C6982EA9FA> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
       0x107999000 -        0x107999ff7  com.apple.xcode.compilers.coredata (9.0 - 8159.2) <3926C099-E4B8-3FE0-AAC1-FD219001F827> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Core Data.xcplugin/Contents/MacOS/Core Data
       0x10799e000 -        0x1079abfff  com.apple.dt.instruments.DVTInstrumentsUtilities (1.0 - 58101) <E94DDBF6-2712-3944-AB7A-FACAD5A345A8> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTInstrumentsUtilities.framework/Versions/A/DVTInstrumentsUtilities
       0x1079ba000 -        0x1079bbfff  libpanel.5.4.dylib (46) <AF43720C-CE1D-3F76-9E99-4CDCB6FAE3C1> /usr/lib/libpanel.5.4.dylib
       0x1079c0000 -        0x1079fcffb  com.apple.DebugSymbols (132 - 132) <9A55D827-7DDD-3651-A63B-BDDD3556AC76> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DebugSymbolsDT.framework/Versions/A/DebugSymbolsDT
       0x107a1b000 -        0x107a1cff7  com.apple.dt.dbg.DebuggerLLDBService (7.0 - 8166.2) <35F842C6-718A-3E87-8811-0D4CABB5DC50> /Applications/Xcode-beta.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents/MacOS/DebuggerLLDBService
       0x107a22000 -        0x107a9ffff  com.apple.dt.XCTest (1.0 - 8144) <477E0628-9C90-3350-8FC7-5D660092936D> /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Versions/A/XCTest
       0x107b04000 -        0x107b04ff7  com.apple.compilers.clang (9.0 - 8159.2) <1EA4F737-80A5-33D8-B72B-93220541CDE4> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Clang LLVM 1.0.xcplugin/Contents/MacOS/Clang LLVM 1.0
       0x107b08000 -        0x107b48ff7 +libswiftDemangle.dylib (700.0.47.4) <878FC90D-33DA-3350-BA23-51287159B7BC> /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libswiftDemangle.dylib
       0x107b61000 -        0x10994aff3 +libclang.dylib (700.0.59.1) <1256C976-CFDB-3A59-9306-E7428C23DCE0> /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libclang.dylib
       0x109e0d000 -        0x109e0dfff  com.apple.dt.IDEWatchSupportCore (1.0 - 1) <182028D0-25E8-3F3B-B6F5-71397BCC9080> /Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEWatchSupportCore.ideplugin/Contents/MacOS/IDEWatchSupportCore
       0x109e13000 -        0x109e74fff  com.apple.dt.Xcode.DVTSourceControl (1.0 - 1) <0034E69C-16C6-3229-8ECA-343F22B4BE52> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTSourceControl.framework/Versions/A/DVTSourceControl
       0x109eb8000 -        0x109ebafff  com.apple.dt.IDEiOSPlatformSupportCore (1.0 - 1.0) <33E10357-3BC1-3A8D-ABFD-983E44E946E8> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEiOSPlatformSupportCore.ideplugin/Contents/MacOS/IDEiOSPlatformSupportCore
       0x109ebf000 -        0x10b070fff +libLTO.dylib (700.0.59.1) <A5A32B2D-F588-390A-AB7A-C4894013DF72> /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib
       0x10b326000 -        0x10b33bfff  com.apple.DADocSetManagement (7.0 - 8016) <0F4A5975-80B6-36C6-A058-8C91BCBFC506> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DADocSetManagement.framework/Versions/A/DADocSetManagement
       0x10b34e000 -        0x10b350fff  com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) <CF907855-EF72-3B18-B7F7-EE50D6A0D91E> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framework/Versions/A/DVTDeveloperModeHelper
       0x10b35b000 -        0x10b3f2fff  com.apple.dt.instruments.DTGraphKit (7.0 - 58096) <FD795463-BF41-38D1-9BCE-83748CC56ACF> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DTGraphKit.framework/Versions/A/DTGraphKit
       0x10b44f000 -        0x10b498fff  com.apple.DADocSetAccess (7.0 - 8016) <B99101F0-1C4A-39D3-89D9-8D7CF3FCDA4C> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DADocSetAccess.framework/Versions/A/DADocSetAccess
       0x10b4c1000 -        0x10b4c2fe6 +cl_kernels (???) <6271AB0F-3C96-42EE-BEB7-ED3B6D430B8F> cl_kernels
       0x10b4c5000 -        0x10b597ffb  com.apple.PubSub (1.0.5 - 65.40) <B5495E49-A479-343C-9E4C-86AA84223A20> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
       0x10b9ea000 -        0x10b9f1ff7  com.apple.AccessibilityBundles (1.0 - 38) <0CD9EE83-C4B8-345F-807B-7DB0FFB33E7B> /System/Library/PrivateFrameworks/AccessibilityBundles.framework/AccessibilityBundles
       0x10ded7000 -        0x10e085ff7  com.apple.dt.IDE.Xcode3UI (7.0 - 8159.2) <AC312D26-9EC3-311C-91FF-13217E509485> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcode3UI
       0x10e1b1000 -        0x10e1b7ff7  com.apple.dt.IDEIODebugGaugesCore (7.0 - 8166.2) <04B81534-EB7A-38CA-BB99-7F14C3495FCE> /Applications/Xcode-beta.app/Contents/PlugIns/IDEIODebugGaugesCore.ideplugin/Contents/MacOS/IDEIODebugGaugesCore
       0x10e1ea000 -        0x10e1eafff  com.apple.CoreSimulator.SimDeviceType.Apple-Watch-38mm (1.0 - 1) <AED1919D-A01B-35E2-B948-2199457E4794> /Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/Library/CoreSimulator/Profiles/DeviceTypes/Apple Watch - 38mm.simdevicetype/Contents/MacOS/Apple Watch - 38mm
       0x10e1ee000 -        0x10e1eefff  com.apple.CoreSimulator.SimDeviceType.Apple-Watch-42mm (1.0 - 1) <11F7552C-B9ED-3540-9CA2-BC2A951E7D31> /Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/Library/CoreSimulator/Profiles/DeviceTypes/Apple Watch - 42mm.simdevicetype/Contents/MacOS/Apple Watch - 42mm
       0x10e1f2000 -        0x10e1f3ffb +liblaunch_sim.dylib (755.1.4) <6DA1A5E7-C64D-3787-BCF8-D2F387F29A85> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/host/liblaunch_sim.dylib
       0x10e1f9000 -        0x10e1faffb +liblaunch_sim.dylib (755.1.4) <1C8A38C7-FE80-3DD9-9E51-ADD32D2B9240> /Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator.sdk/usr/lib/system/host/liblaunch_sim.dylib
       0x10e20d000 -        0x10e253ff7  com.apple.CoreSimulator (171 - 171) <E0E4464E-BB46-37D6-9E30-4BEE5AFC88E2> /Applications/Xcode-beta.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/CoreSimulator
       0x10e37b000 -        0x10e389fff  com.apple.dt.IDELanguageSupportCore (7.0 - 8139.3) <BB5F17B5-79C7-3EC6-8D21-65869F40A339> /Applications/Xcode-beta.app/Contents/PlugIns/IDELanguageSupportCore.ideplugin/Contents/MacOS/IDELanguageSupportCore
       0x10e399000 -        0x10e40bff7  com.apple.sourcekitd (1.0 - 700.0.47.4) <F3442851-595F-3752-9710-EEB7AD193E00> /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/sourcekitd.framework/Versions/A/sourcekitd
       0x10e439000 -        0x10e494ff7  com.apple.dt.IDE.Xcode3Core (7.0 - 8159.2) <6D0B0805-9826-3FB2-AD61-8D83F3768EDB> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xcode3Core
       0x10e4ca000 -        0x10e4d2ff7  com.apple.DevToolsFoundation (9.0 - 8159.2) <36108104-CAB7-3854-872E-030A45D389CA> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
       0x10e4dd000 -        0x10e4f0fff  com.apple.DVTiPhoneSimulatorRemoteClient (7.0 - 8138.2) <BAE0BDC6-4259-3A81-B4A0-0AF662E718A7> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTiPhoneSimulatorRemoteClient.framework/Versions/A/DVTiPhoneSimulatorRemoteClient
       0x10e503000 -        0x10e506fff  com.apple.XCPepperSupport (1.0 - 1) <3EAD026C-3FA2-3951-89F6-C50789E0F17F> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/XCPepperSupport.xcplugin/Contents/MacOS/XCPepperSupport
       0x10e50b000 -        0x10e50dfff +ru.DeepIT.XcodeColors (1.0.9 - 109) <002B65F9-D693-3748-8226-2F38268B2EA4> /Users/USER/Library/Application Support/Developer/*/XcodeColors
       0x10e6b9000 -        0x10e6bafef +cl_kernels (???) <4DA62F1F-228F-4887-8D01-043FAAF818F9> cl_kernels
       0x10e719000 -        0x10ea98fff  com.apple.Xcode.DevToolsCore (9.0 - 8159.2) <B4B814FB-3DBB-3958-9567-3B1DD2F74A98> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsCore.framework/Versions/A/DevToolsCore
       0x10ec40000 -        0x10ec76ff7  com.apple.Xcode.DevToolsSupport (9.0 - 8159.2) <0603F4ED-124C-3794-AB65-F2A11FE2E15A> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsSupport.framework/Versions/A/DevToolsSupport
       0x10ec9e000 -        0x10ed29ff7  com.apple.dt.IDE.IDEiOSSupportCore (7.0 - 8138.2) <6BC4A704-259C-339A-ACDA-375AB3737048> /Applications/Xcode-beta.app/Contents/PlugIns/IDEiOSSupportCore.ideplugin/Contents/MacOS/IDEiOSSupportCore
       0x10ed7e000 -        0x10ee0cfff  com.apple.DTDeviceKitBase (7.0 - 8138.2) <19AF06BC-3895-39F4-BBB4-F0AE8D17341F> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/DTDeviceKitBase
       0x10ee64000 -        0x10efb4fff  com.apple.mobiledevice (820 - 820) <EFE49C93-A49A-3D5B-B685-A21C5F98804C> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
       0x10f03b000 -        0x10f054ff7  com.apple.DeviceLinkX (5.0 - 264) <AE4A2687-7EB0-3FD4-8E15-C8DC2107095A> /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink
       0x10f064000 -        0x10f0b2ff7  libstdc++.6.dylib (104.1) <76E2AFB1-07E5-3F19-B692-F6E21B7E470D> /usr/lib/libstdc++.6.dylib
       0x10f11b000 -        0x10f155fff  com.apple.dt.dbg.DebuggerFoundation (7.0 - 8166.2) <3F552625-C525-3651-8632-D5608CE012D6> /Applications/Xcode-beta.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/MacOS/DebuggerFoundation
       0x10f18c000 -        0x10f210ff7  com.apple.dt.IBAutolayoutFoundation (7.0 - 8164.2) <B6EE27BB-1FD3-3AB0-BF9B-7DD6DFE90033> /Applications/Xcode-beta.app/Contents/Frameworks/IBAutolayoutFoundation.framework/Versions/A/IBAutolayoutFoundation
       0x10f267000 -        0x10f32fff7  com.apple.dt.IBFoundation (7.0 - 8164.2) <A533FEC5-93C1-3D23-BDD4-A9C6AFB43DA8> /Applications/Xcode-beta.app/Contents/Frameworks/IBFoundation.framework/Versions/A/IBFoundation
       0x10f3c1000 -        0x10f41efff  com.apple.CoreThemeDefinition (2.0 - 233) <7B9FEC3E-4BDE-3252-A158-006FA55AF346> /System/Library/PrivateFrameworks/CoreThemeDefinition.framework/Versions/A/CoreThemeDefinition
       0x10f463000 -        0x10f4b3ff7  com.apple.dt.dbg.DebuggerLLDB (7.0 - 8166.2) <3ABBA235-2434-3E00-B8FE-52E928309F53> /Applications/Xcode-beta.app/Contents/PlugIns/DebuggerLLDB.ideplugin/Contents/MacOS/DebuggerLLDB
       0x10f4eb000 -        0x111bdfff7  com.apple.LLDB.framework (1.340.4.53.3 - 340.4.53.3) <BB2B0591-4BB7-323D-9B7E-821F604EABBF> /Applications/Xcode-beta.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB
       0x1126c8000 -        0x1127b9ff7  org.python.python (2.7.10 - 2.7.10) <AD0075B1-5F1C-3B79-A68C-FF2173CF7D45> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
       0x112820000 -        0x112832ff7  com.apple.dt.XCLanguageSupport (7.0 - 8139.3) <BED68DEF-9FC3-3944-981E-272664A5C758> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/XCLanguageSupport.xcplugin/Contents/MacOS/XCLanguageSupport
       0x112840000 -        0x11284bfff  com.apple.xcode.plug-in.CoreBuildTasks (9.0 - 8159.2) <A9F03903-A290-386E-BF25-04DE58DC9142> /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/CoreBuildTasks
       0x112853000 -        0x112865fff +com.onevcat.VVDocumenter-Xcode (1.0 - 1) <FE5E3F8F-AE15-3BBE-914D-7B811D2F04B1> /Users/USER/Library/Application Support/Developer/*/VVDocumenter-Xcode
       0x11287e000 -        0x11289dff7 +com.stefanceriu.SCXcodeMinimap (1.3 - 1) <355A5479-4A37-3C95-BECC-4F4112978876> /Users/USER/Library/Application Support/Developer/*/SCXcodeMinimap
       0x1128b9000 -        0x1129a0fff  com.apple.dt.dbg.DebuggerUI (7.0 - 8166.2) <473E983D-68AA-3A6F-9C0C-B0E8D172CE7B> /Applications/Xcode-beta.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/DebuggerUI
       0x112a5f000 -        0x112b32fff  com.apple.dt.IDE.IDESourceEditor (7.0 - 8166.2) <51066A5B-A77F-35D8-B6E7-239C21B37DC0> /Applications/Xcode-beta.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/MacOS/IDESourceEditor
       0x112bb6000 -        0x112bb9fff  com.apple.dt.dbg.DebuggerKit (1.0 - 1) <BD4C05A5-480D-3E33-ABD1-591AB14FC244> /Applications/Xcode-beta.app/Contents/PlugIns/DebuggerKit.ideplugin/Contents/MacOS/DebuggerKit
       0x112bc2000 -        0x112bc9fff  com.apple.dt.IDE.HexEditor (7.0 - 8166.2) <57429188-A772-39A9-9D63-A66017D5E05E> /Applications/Xcode-beta.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/HexEditor
       0x112bd3000 -        0x112c01ff7  com.apple.dt.HexFiendFramework (7.0 - 8166.2) <DA326930-51A9-3B0F-B4F4-3FB4E4C98D4F> /Applications/Xcode-beta.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A/HexFiend
       0x112c28000 -        0x1130ecfff  com.apple.SceneKit (5.0 - 293) <039941E0-DC48-3A1C-B438-235B924BB496> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
       0x1133ca000 -        0x1133d4fff +com.zenangst.MarvinPlugin (1.4.4 - 1.4.4) <4E05C6B9-7988-3987-9FEB-3BCBF1CBB6B3> /Users/USER/Library/Application Support/Developer/*/MarvinPlugin
       0x1133e2000 -        0x1133ecff7 +it.holtwick.HOStringSense (1.0.1 - 1.0.1) <E6E1D8C2-30CA-3DA7-A307-8FE1F05F4B98> /Users/USER/Library/Application Support/Developer/*/HOStringSense
       0x1133fa000 -        0x113402fff +com.travisjeffery.ClangFormat (1.0 - 1) <D5EE5391-4F71-3EB5-83B7-A0F05CF6D1F1> /Users/USER/Library/Application Support/Developer/*/ClangFormat
       0x11340f000 -        0x113410fff +com.zats.BetaWarpaint (1.0 - 1) <201BF1AE-4862-300C-AAE6-0CB8F48AA44C> /Users/USER/Library/Application Support/Developer/*/BetaWarpaint
       0x113415000 -        0x11341dfff +org.vu0.BBUDebuggerTuckAway (1.0 - 1) <6C26724A-C1BE-3632-88C4-7EBC394E7E90> /Users/USER/Library/Application Support/Developer/*/BBUDebuggerTuckAway
       0x113429000 -        0x11342dfff +by.idev.Backlight (1.1 - 1.1) <A52368A3-8253-3B4D-BCBF-F75C4FBF8171> /Users/USER/Library/Application Support/Developer/*/Backlight
       0x113434000 -        0x11344afff +com.mneorr.Alcatraz (1.0 - 1) <3A8DD3D9-9099-3594-A59B-B52E9AA756C7> /Users/USER/Library/Application Support/Developer/*/Alcatraz
       0x11346a000 -        0x1134d7ff7  com.apple.dt.IDE.IDEDocViewer (7.0 - 8166.2) <61A00C37-7967-36D6-B00A-0CCFDCCD9622> /Applications/Xcode-beta.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/IDEDocViewer
       0x11352e000 -        0x113aa1fff  com.apple.dt.IDE.IDEInterfaceBuilderKit (7.0 - 8164.2) <2998F5FA-AD04-375B-8539-08C6E0C8765E> /Applications/Xcode-beta.app/Contents/PlugIns/IDEInterfaceBuilderKit.ideplugin/Contents/MacOS/IDEInterfaceBuilderKit
       0x113e80000 -        0x11404dff7  com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (7.0 - 8164.2) <C6A6810D-5326-3B14-805F-EC395F1DA9F0> /Applications/Xcode-beta.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaIntegration
       0x1141ea000 -        0x11420fff7  com.apple.DiscRecordingUI (9.0 - 9000.4.2) <FCF64B70-2C7E-30DC-BFFD-5FF09AF600FA> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
       0x114231000 -        0x114457fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (7.0 - 8135.1) <55D7BCC4-A558-3F9A-83E8-78BEB8DBC867> /Applications/Xcode-beta.app/Contents/PlugIns/IDEInterfaceBuilderCocoaTouchIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchIntegration
       0x114557000 -        0x11455ffff  com.apple.SimulatorKit (1.0 - 171) <D7829582-0229-37F1-9FCD-4326BF26A5FA> /Applications/Xcode-beta.app/Contents/Developer/Library/PrivateFrameworks/SimulatorKit.framework/Versions/A/SimulatorKit
       0x114569000 -        0x114577ff7  com.apple.DTDeviceKit (4.2 - 8138.2) <F5662E38-59A4-31DF-A7A6-D28E549ED773> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DTDeviceKit.framework/Versions/A/DTDeviceKit
       0x114586000 -        0x1145c5ff7  com.apple.dt.IDE.iCloudSupport (7.0 - 8166.2) <77D05D00-D87B-3097-AFAC-1B293E53C192> /Applications/Xcode-beta.app/Contents/PlugIns/iCloudSupport.ideplugin/Contents/MacOS/iCloudSupport
       0x1145fe000 -        0x11463afff  com.apple.dt.gpu.GPUDebuggerFoundation (7.0 - 18063) <46ECFD62-00F7-3E9F-82D3-A3EC804DBF58> /Applications/Xcode-beta.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Contents/MacOS/GPUDebuggerFoundation
       0x11466c000 -        0x114679ffb  com.apple.GPUToolsShaderProfiler (1.0 - 18047) <D4C860D9-165A-309A-B316-8F354E9B5392> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GPUToolsShaderProfiler.framework/Versions/A/GPUToolsShaderProfiler
       0x114688000 -        0x1146c7fff  com.apple.GPUToolsCore (1.0 - 18079.1) <8B4F1A76-1268-3F3C-8C2F-63E94DFC680B> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versions/A/GPUToolsCore
       0x1146fd000 -        0x114734ff7  com.apple.GPUTools (1.0 - 18079.1) <51B8F58F-236E-3BE4-9868-79E15A574612> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A/GPUTools
       0x114761000 -        0x11483bff3  com.apple.GPUToolsServices (1.0 - 18047) <BED558C7-72D8-3A33-BF4C-F095E92175FF> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GPUToolsServices.framework/Versions/A/GPUToolsServices
       0x1148a5000 -        0x1148f7ff3  com.apple.GPUToolsInterface (1.0 - 18047) <D9AE3A7D-B803-3900-9767-D6D3944ECB29> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GPUToolsInterface.framework/Versions/A/GPUToolsInterface
       0x114931000 -        0x114959ff3  com.apple.GLToolsInterface (1.0 - 18047) <AA148B10-9CE4-3C7C-956A-C168270B8CEE> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GLToolsInterface.framework/Versions/A/GLToolsInterface
       0x114977000 -        0x1149c1fff  com.apple.GLToolsCore (1.0 - 18079.1) <C68483EB-9AF7-3A0E-B687-35FB464D2DE4> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GLToolsCore.framework/Versions/A/GLToolsCore
       0x1149de000 -        0x1149efff7  com.apple.GLTools (1.0 - 18079.1) <710AB513-E338-3144-A519-A5E719A76379> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GLTools.framework/Versions/A/GLTools
       0x1149f7000 -        0x114a4dfff  com.apple.GLToolsServices (1.0 - 18047) <92AAFDFD-F2C4-337F-AC81-BC0EFFFAE9EF> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GLToolsServices.framework/Versions/A/GLToolsServices
       0x114a91000 -        0x114b15ff7  com.apple.gputools.GLToolsAnalysisEngine (1.0 - 18047) <5F81E458-5C82-3B45-A348-B6E76D4961F3> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GLToolsAnalysisEngine.framework/Versions/A/GLToolsAnalysisEngine
       0x114e5a000 -        0x114e60ff7  com.apple.dt.gpu.GPUTraceDebugger (7.0 - 18063) <596BE0E9-22FF-3EF5-BB9A-A8DF97DD803B> /Applications/Xcode-beta.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/MacOS/GPUTraceDebugger
       0x114e68000 -        0x114e72fff  com.apple.dt.gpu.GPUDebuggerKit (7.0 - 18063) <34E292DF-DA3A-3167-873E-11A4076ED81E> /Applications/Xcode-beta.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacOS/GPUDebuggerKit
       0x114e84000 -        0x114ef8ff7  com.apple.dt.gpu.GPUTraceDebuggerUI (7.0 - 18063) <E2DDAE29-9E72-3B50-9D71-5574AD91FA28> /Applications/Xcode-beta.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/MacOS/GPUTraceDebuggerUI
       0x114f45000 -        0x114f65fff  com.apple.dt.IDE.IDEQuickHelp (7.0 - 8166.2) <FE3BF2E8-C798-3A2A-B9D4-0C8A53588830> /Applications/Xcode-beta.app/Contents/PlugIns/IDEQuickHelp.ideplugin/Contents/MacOS/IDEQuickHelp
       0x114f82000 -        0x114fc6ff7  com.apple.dt.IDEProductsUI (1.0 - 1) <E11FAA93-CA21-3690-82A0-F3F6722C4814> /Applications/Xcode-beta.app/Contents/PlugIns/IDEProductsUI.ideplugin/Contents/MacOS/IDEProductsUI
       0x11500e000 -        0x115018ff7  com.apple.dt.DVTServices (7.0 - 8164.3) <E801CE87-6095-33EA-86E2-29748332B512> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTServices.framework/Versions/A/DVTServices
       0x115025000 -        0x115043fff  com.apple.dt.DVTProducts (1.0 - 1) <EB9C3404-D90C-3DD3-A929-FACCD01FCEE9> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTProducts.framework/Versions/A/DVTProducts
       0x11505e000 -        0x11507bff7  com.apple.dt.DVTAnalytics (1.0 - 1) <C58A45C9-33E9-3ADF-BD1D-974777CDFC31> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTAnalytics.framework/Versions/A/DVTAnalytics
       0x11509a000 -        0x1150a9fff  com.apple.dt.DVTAnalyticsClient (7.0 - 1) <CA8099DB-B775-38DC-987D-B69C98806ADF> /Applications/Xcode-beta.app/Contents/SharedFrameworks/DVTAnalyticsClient.framework/Versions/A/DVTAnalyticsClient
       0x11531d000 -        0x115332ff7  libCGInterfaces.dylib (316) <6026DF85-E35B-3E62-8C2B-4931134F216B> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
       0x1172ca000 -        0x1172caff7  com.apple.dt.IDE.IDEAppleScriptEditor (7.0 - 8166.2) <9409AC0F-F183-3056-8D43-9D4FB52B4ED5> /Applications/Xcode-beta.app/Contents/PlugIns/IDEAppleScriptEditor.ideplugin/Contents/MacOS/IDEAppleScriptEditor
       0x117307000 -        0x11730fff7  com.apple.dt.IDE.IDEOSXSupportCore (7.0 - 8020) <FA5755C8-81B2-3B31-8267-B0AD0679A4A4> /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/PrivatePlugIns/IDEOSXSupportCore.ideplugin/Contents/MacOS/IDEOSXSupportCore
       0x117653000 -        0x117668fff  com.apple.dt.IDEIODebugGaugesUI (7.0 - 8166.2) <8A140800-D4B5-3E8A-B475-DC8F2B637E59> /Applications/Xcode-beta.app/Contents/PlugIns/IDEIODebugGaugesUI.ideplugin/Contents/MacOS/IDEIODebugGaugesUI
       0x117af5000 -        0x117af5fff  com.apple.dt.IDEContinuousIntegration (1.0 - 1) <40787211-18AE-3B88-8872-791439CE23FB> /Applications/Xcode-beta.app/Contents/PlugIns/IDEContinuousIntegration.ideplugin/Contents/MacOS/IDEContinuousIntegration
       0x117af9000 -        0x117afbff7  com.apple.IDEServerTools (1.0 - 1) <C88B902C-4286-313E-B7E0-34387344BCF0> /Applications/Xcode-beta.app/Contents/SharedFrameworks/IDEServerTools.framework/Versions/A/IDEServerTools
       0x117b15000 -        0x117b1efff  com.apple.dt.IDE.IDEInterfaceBuilderiOSIntegration (7.0 - 8135.1) <61D68978-03A1-3E1A-9805-E0638E8E39B3> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderiOSIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderiOSIntegration
       0x117b67000 -        0x117b7dfff  com.apple.dt.IDE.IDESubversion (7.0 - 8166.2) <33E55B76-477A-3C62-93E8-154294D2C295> /Applications/Xcode-beta.app/Contents/PlugIns/IDESubversion.ideplugin/Contents/MacOS/IDESubversion
       0x117b8b000 -        0x117ba6fff  com.apple.dt.IDE.IDEGit (7.0 - 8166.2) <75085C7C-2FF7-37F3-B420-CD0DA39B1C99> /Applications/Xcode-beta.app/Contents/PlugIns/IDEGit.ideplugin/Contents/MacOS/IDEGit
       0x117bc7000 -        0x117c36ff7  com.apple.dt.IDE.IDEInterfaceBuilderWatchKitIntegration (7.0 - 8083.2) <CE261DAD-0C3F-3910-B2D5-BD3A3F747DC6> /Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderWatchKitIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderWatchKitIntegration
       0x117d00000 -        0x117d45ff7  com.apple.dt.IDE.IDEiPhoneSupport (7.0 - 8138.2) <E1AC80BC-6879-3E52-93C2-9F789DDD5592> /Applications/Xcode-beta.app/Contents/PlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPhoneSupport
       0x117d88000 -        0x117eb8ffb  com.apple.audio.units.Components (1.12 - 1.12) <9D02EC97-0169-3171-8FD8-3F229B804719> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
       0x117f4a000 -        0x117f4efff  com.apple.audio.AppleHDAHALPlugIn (272.49 - 272.49) <65BBF42D-7FB0-3873-8C67-E0396B18FEA2> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x117f7c000 -        0x117f9dff7  com.apple.MTLToolsServices (1.0 - 1) <96540D5E-FA86-3123-A969-C24300906172> /Applications/Xcode-beta.app/Contents/SharedFrameworks/MTLToolsServices.framework/Versions/A/MTLToolsServices
       0x117fb7000 -        0x117fccff7  com.apple.MTLToolsCore (1.0 - 1) <92FAA43A-4F03-36AD-A136-C75D06B87A26> /Applications/Xcode-beta.app/Contents/SharedFrameworks/MTLToolsCore.framework/Versions/A/MTLToolsCore
       0x117fdc000 -        0x117fe5fff  com.apple.dt.PlistEditor (7.0 - 8166.2) <8EA42A8E-A02F-3189-84C0-AE4E4ED6BB82> /Applications/Xcode-beta.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/PlistEditor
       0x117ff1000 -        0x117ff5ff7  com.apple.dt.IDE.IDEPDFViewer (7.0 - 8166.2) <6335D8A6-E023-3EC7-A245-76858CBD9DB1> /Applications/Xcode-beta.app/Contents/PlugIns/IDEPDFViewer.ideplugin/Contents/MacOS/IDEPDFViewer
       0x118800000 -        0x118876fff  com.apple.dt.gpu.GPURenderTargetEditor (7.0 - 18063) <A77A1097-6358-37F1-8A45-934E507B4AC1> /Applications/Xcode-beta.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Contents/MacOS/GPURenderTargetEditor
       0x1188bd000 -        0x1188e0ff3  com.apple.MTLTools (1.0 - 1) <F299A51C-B46F-320A-AD5A-D702C263430C> /Applications/Xcode-beta.app/Contents/SharedFrameworks/MTLTools.framework/Versions/A/MTLTools
       0x1188f4000 -        0x11891ffff  com.apple.gdt.MTLToolsAnalysisEngine (1.0 - 18047) <C8D1B612-C567-383C-8DA7-40C28F3A353F> /Applications/Xcode-beta.app/Contents/SharedFrameworks/MTLToolsAnalysisEngine.framework/Versions/A/MTLToolsAnalysisEngine
       0x118947000 -        0x11899ffff  com.apple.gpusw.MetalTools (1.0 - 1) <8970E332-99B2-3406-8C90-C96201964F73> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
       0x1189f3000 -        0x118aa5ff7  com.apple.dt.IDE.IDESceneKitEditor (7.0 - 8107) <B4D7150B-7C54-306F-BEF4-56539664289D> /Applications/Xcode-beta.app/Contents/PlugIns/IDESceneKitEditor.ideplugin/Contents/MacOS/IDESceneKitEditor
       0x118afd000 -        0x118b6afff  com.apple.xcode.GameToolsFoundation (1.0 - 8050) <04D52087-066A-3846-BE74-DE183CC53B01> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GameToolsFoundation.framework/Versions/A/GameToolsFoundation
       0x118bac000 -        0x118d3ffff  com.apple.SpriteKit (1.0 - 1) <F430D65B-0630-39AE-B9D9-9C7F78052658> /System/Library/Frameworks/SpriteKit.framework/Versions/A/SpriteKit
       0x118df4000 -        0x118e15fff  com.apple.Jet (1.0 - 1) <76D4D613-110C-3866-ABDD-4A88C2F6FA84> /System/Library/PrivateFrameworks/Jet.framework/Versions/A/Jet
       0x118e40000 -        0x118e97ff7  com.apple.PhysicsKit (1.0 - 1) <257FC377-E189-3A86-9284-85D7C961106A> /System/Library/PrivateFrameworks/PhysicsKit.framework/Versions/A/PhysicsKit
       0x118ec5000 -        0x118eebff7  com.apple.audio.OpenAL (1.8 - 1.8) <5449ABA7-84EB-3427-8A07-865380BB1D58> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
       0x118efe000 -        0x118f0cfff  com.apple.dt.IDE.IDEQuickLookEditor (7.0 - 8166.2) <B81C98BD-559E-3D25-ADE3-FA29542E72D0> /Applications/Xcode-beta.app/Contents/PlugIns/IDEQuickLookEditor.ideplugin/Contents/MacOS/IDEQuickLookEditor
       0x118f1d000 -        0x118f32fff  com.apple.dt.IDE.IDERTFEditor (7.0 - 8166.2) <E117EBB2-3738-32E1-A52B-B1FA6EC9F473> /Applications/Xcode-beta.app/Contents/PlugIns/IDERTFEditor.ideplugin/Contents/MacOS/IDERTFEditor
       0x118f44000 -        0x118f4bfff  com.apple.dt.ScriptingDefinitionEditor (7.0 - 8166.2) <8BC4073A-3BF2-357E-AE86-CA68480C6D37> /Applications/Xcode-beta.app/Contents/PlugIns/ScriptingDefinitionEditor.ideplugin/Contents/MacOS/ScriptingDefinitionEditor
       0x118f53000 -        0x119032ff7  com.apple.dt.IDE.IDEModelEditor (7.0 - 8166.2) <A6A977EC-C605-3499-889E-F96794727FBF> /Applications/Xcode-beta.app/Contents/PlugIns/IDEModelEditor.ideplugin/Contents/MacOS/IDEModelEditor
       0x1190c9000 -        0x119145fff  com.apple.dt.IDE.IDEModelFoundation (7.0 - 8166.2) <E52AAAA6-F6A5-310C-9213-111A721D4AB4> /Applications/Xcode-beta.app/Contents/PlugIns/IDEModelFoundation.ideplugin/Contents/MacOS/IDEModelFoundation
       0x11919d000 -        0x1192b6ff7  com.apple.dt.IDELanguageSupportUI (7.0 - 8139.3) <5F012D9E-92AE-3CC3-B851-A4C6C2FD302F> /Applications/Xcode-beta.app/Contents/PlugIns/IDELanguageSupportUI.ideplugin/Contents/MacOS/IDELanguageSupportUI
       0x11938c000 -        0x119393ff7  com.apple.dt.DVTPlaygroundCommunication (1.0 - 8039) <FAB51C3E-D4EB-35E5-9E06-49D50C787B96> /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/DVTPlaygroundCommunication.framework/Versions/A/DVTPlaygroundCommunication
       0x11939f000 -        0x119421ff7  com.apple.IDESpriteKitParticleEditor (2.0 - 2) <980E2763-2FEE-3EA6-8B96-F907BD84A2F9> /Applications/Xcode-beta.app/Contents/PlugIns/IDESpriteKitParticleEditor.ideplugin/Contents/MacOS/IDESpriteKitParticleEditor
       0x119475000 -        0x119479fff  com.apple.dt.gpu.GPUDebuggerOSXSupport (7.0 - 18063) <4F782C46-2B9D-3A5D-8F2F-AA08D0A9981E> /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggerOSXSupport.ideplugin/Contents/MacOS/GPUDebuggerOSXSupport
       0x11947f000 -        0x11948dffb  com.apple.GPUToolsDesktopFoundation (1.0 - 18012) <0FEC7E22-2C94-3A8F-A08D-79C0A0406574> /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/GPUToolsDesktopFoundation.framework/Versions/A/GPUToolsDesktopFoundation
       0x11949a000 -        0x11949dff7  com.apple.dt.gpu.GPUDebuggeriOSSupport (7.0 - 18018) <679719B8-A1E8-3C8B-B1D7-03FEA33DCF27> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggeriOSSupport.ideplugin/Contents/MacOS/GPUDebuggeriOSSupport
       0x1194a3000 -        0x1194a3fff  com.apple.GLToolsMobileFoundation (1.0 - 18016) <468E1007-CD27-3FCE-BBB8-2A2DF7E613B1> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GLToolsMobileFoundation.framework/Versions/A/GLToolsMobileFoundation
       0x1194a8000 -        0x11950dffb  com.apple.GLToolsExpert (1.0 - 18016) <84528DC8-5908-3855-939B-C4D65E69A621> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GLToolsExpert.framework/Versions/A/GLToolsExpert
       0x119548000 -        0x119560fff  com.apple.GLToolsShaderProfiler (1.0 - 18047) <94379057-8D91-36C9-A6BC-F98B21BAE6AF> /Applications/Xcode-beta.app/Contents/SharedFrameworks/GLToolsShaderProfiler.framework/Versions/A/GLToolsShaderProfiler
       0x11956d000 -        0x119581ff7  com.apple.GPUToolsMobileFoundation (1.0 - 18016) <65260256-09A3-3EAD-9081-CCDA3E5D5B9A> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GPUToolsMobileFoundation.framework/Versions/A/GPUToolsMobileFoundation
       0x1197a0000 -        0x11986bff7  com.apple.XCSCore (1.0 - 1) <AF44A2C4-CB00-3CAA-B426-EE4C94F05559> /Applications/Xcode-beta.app/Contents/SharedFrameworks/XCSCore.framework/Versions/A/XCSCore
       0x1198f0000 -        0x1199d4fff  com.apple.dt.XCSUI (1.0 - 1) <77848CEF-7986-3B07-AF22-95644DA383C8> /Applications/Xcode-beta.app/Contents/SharedFrameworks/XCSUI.framework/Versions/A/XCSUI
       0x11a016000 -        0x11a01afff  libFontRegistryUI.dylib (152) <D30EE866-904A-34AD-9DB6-A703B76B0BE9> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
       0x11a085000 -        0x11a0e7ff7  com.apple.driver.AppleIntelHD4000GraphicsMTLDriver (10.8.70 - 10.0.8) <D7A29FB1-6EC7-384A-B591-A9EB5A05DC28> /System/Library/Extensions/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsMTLDriver
       0x11a9e2000 -        0x11a9e3ff7  com.apple.dt.IDE.IDEAppleScriptCore (7.0 - 8166.2) <5A22741C-70F2-385C-BF90-23D71D5617EC> /Applications/Xcode-beta.app/Contents/PlugIns/IDEAppleScriptCore.ideplugin/Contents/MacOS/IDEAppleScriptCore
       0x11a9f8000 -        0x11ab73ff7  com.apple.gputools.GLToolsAnalysisHeuristics (1.0 - 18047) <40F1F716-D25B-3D9A-A6B5-DC7AFEA21F79> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsAnalysisHeuristics.gtplugin/Contents/MacOS/GLToolsAnalysisHeuristics
       0x11ab88000 -        0x11abbcffb  com.apple.gputools.GLToolsMobileAnalysis (1.0 - 18016) <04DD9FF3-018F-3296-86BC-D0440F4055D3> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsMobileAnalysis.gtplugin/Contents/MacOS/GLToolsMobileAnalysis
       0x11abcc000 -        0x11abd3ffb  com.apple.gputools.GLToolsShaderProfilerMobileSupport (1.0 - 18016) <9D0C214B-17F8-32E8-A4D2-8C4682E660E0> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsShaderProfilerMobileSupport.gtplugin/Contents/MacOS/GLToolsShaderProfilerMobileSupport
       0x11abda000 -        0x11ac59fff  com.apple.gdt.MTLToolsAnalysisHeuristics (1.0 - 1) <E78F1DE2-70AB-3A30-B63B-087A1B5EDCE4> /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/GPUTools/PlugIns/MTLToolsAnalysisHeuristics.gtplugin/Contents/MacOS/MTLToolsAnalysisHeuristics
       0x11ac62000 -        0x11ae56ff7  com.apple.dt.gpu.GPUDebuggerMTLSupport (7.0 - 18063) <971EA84B-5EAE-3196-8458-C4EFF31C89AE> /Applications/Xcode-beta.app/Contents/PlugIns/GPUDebuggerMTLSupport.ideplugin/Contents/MacOS/GPUDebuggerMTLSupport
       0x11aebb000 -        0x11aef3ffb  com.apple.MTLToolsShaderProfiler (1.0 - 18047) <2A1E0369-6712-3340-BD01-A1897004028F> /Applications/Xcode-beta.app/Contents/SharedFrameworks/MTLToolsShaderProfiler.framework/Versions/A/MTLToolsShaderProfiler
       0x11af1e000 -        0x11af24fff  com.apple.dt.IDE.IDEInstrumentsService (7.0 - 8166.2) <CEA687A4-6D7C-361E-91F2-79AAF32728D0> /Applications/Xcode-beta.app/Contents/PlugIns/IDEInstrumentsService.ideplugin/Contents/MacOS/IDEInstrumentsService
       0x120939000 -        0x120aebfff  libCMaps.A.dylib (921.1) <A08AAB01-B80A-3ED5-8E71-1DC6E1BDBA9F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
       0x120bef000 -        0x120c01ff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <D69E81D3-36E4-3DB4-B91D-195AB76B3C79> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
       0x12a34a000 -        0x12a3c4ff7  com.apple.xquery (1.3.1 - 30) <F34AFF56-4395-306F-B619-B6A0AC37F491> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
    0x7fff6be26000 -     0x7fff6be5cbf7  dyld (360.11) <8D611E1A-C060-3E57-82F1-E952FB6908C8> /usr/lib/dyld
    0x7fff84d88000 -     0x7fff84e7aff7  libJP2.dylib (1426) <EE418E2E-2D8B-3340-A9BD-8E79A29AC4EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff84e7b000 -     0x7fff84edeff3  libAVFAudio.dylib (161) <F33BBEDC-0EA0-3ED9-9D9B-08D06CE75953> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x7fff8519a000 -     0x7fff8519ffff  com.apple.ImageCapture (9.0 - 9.0) <5E8EA786-1E92-3DD3-BABB-E5F833A19296> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff851a7000 -     0x7fff851a7fff  com.apple.Cocoa (6.11 - 22) <419B5508-D1B3-397E-BE9B-DA5AE9088E41> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff851a8000 -     0x7fff851aafff  com.apple.OAuth (25 - 25) <96CDA969-5C46-351A-B28D-0CC4FF9A76F4> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff851ab000 -     0x7fff851d9fff  com.apple.DictionaryServices (1.2 - 249) <88AF3169-9BDA-30A1-8F9D-5DB229C823C2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff851e4000 -     0x7fff85207fff  com.apple.Network (1.0 - 1) <9F322A65-7D15-35E6-8BFA-272B54CBEFD2> /System/Library/PrivateFrameworks/Network.framework/Versions/A/Network
    0x7fff85208000 -     0x7fff85256fff  libcurl.4.dylib (90) <2A430F32-E11A-32B8-B936-7E17CF0B6F17> /usr/lib/libcurl.4.dylib
    0x7fff85257000 -     0x7fff85457ff7  com.apple.CoreImage (11.0.0 - 347) <BA4D8228-9CF2-3E23-A298-A7A5BFBEF675> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff85458000 -     0x7fff8546ffff  libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib
    0x7fff854a5000 -     0x7fff854a8ff7  libsystem_sandbox.dylib (455) <46D82D66-9C57-3CF8-B76B-B8F54506F442> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff854c3000 -     0x7fff854c5fff  libCVMSPluginSupport.dylib (12.0.34.11) <0D78A89E-D1D5-37CE-AA7E-64ADE33541D8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff854c6000 -     0x7fff854eefff  libxpc.dylib (755.1.13) <900EB889-37FB-3D89-8D92-C571C33121ED> /usr/lib/system/libxpc.dylib
    0x7fff854ef000 -     0x7fff854f8fff  com.apple.private.XprotectFrameWork.XprotectFramework (1.0 - 1) <0A5F78AC-7C04-37AD-BB16-7CFB8DC72B0F> /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XprotectFramework
    0x7fff8556b000 -     0x7fff8557afff  com.apple.AppleFSCompression (80 - 1.0) <FEEB931F-4240-3237-962D-A54020CF64D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff855ed000 -     0x7fff856d3fef  unorm8_bgra.dylib (2.6.2) <553263E9-5405-3CDD-87B5-19692BCC9139> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
    0x7fff856ea000 -     0x7fff856edfff  com.apple.IOSurface (108 - 108) <611CF607-525B-3D57-91F3-D0CC5576E3DE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff856ee000 -     0x7fff85733ff7  com.apple.coreservices.SharedFileList (23 - 23) <80D56F36-2B54-3708-84A4-3835E826D13F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff85752000 -     0x7fff857b0ff7  com.apple.SystemConfiguration (1.14 - 1.14) <5346E4F7-3D18-3FDD-A5DC-0CA4D799F65B> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff85a2a000 -     0x7fff85a47fff  com.apple.AppleVPAFramework (2.0.15 - 2.0.15) <2C1C5C20-1C64-3826-84FE-E96BBE161A13> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff85a50000 -     0x7fff85ac7fc7  libcorecrypto.dylib (331) <DD985B56-851A-3AFD-8496-FF8F7DFE05E1> /usr/lib/system/libcorecrypto.dylib
    0x7fff85c55000 -     0x7fff85c61ff7  com.apple.OpenDirectory (10.11 - 194) <9F5B7BCC-C4E1-3CD4-A979-E4461E7C4348> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff85c62000 -     0x7fff85c69ff7  libnetwork.dylib (582) <EBE44225-7CE5-37F2-BD87-814874D54A9F> /usr/lib/libnetwork.dylib
    0x7fff85c6a000 -     0x7fff85c6afff  libmetal_timestamp.dylib (600.0.39) <917C6DA4-6EA6-3745-B0A7-8A5E82BD9472> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fff85c6b000 -     0x7fff85c6eff7  libCoreFSCache.dylib (119.2) <11FCECD6-8791-3402-A62A-0EB6B27E1B5A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff85c6f000 -     0x7fff85c81fff  com.apple.contacts.ContactsPersistence (1.0 - 2127.1) <A321F3E3-3D10-313B-84CE-B417D35EFEAF> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
    0x7fff85c82000 -     0x7fff85cceff3  com.apple.HIServices (1.22 - 546) <C9018B2B-2B09-3EAD-9DF8-ADF4C51440A5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff85ccf000 -     0x7fff85cebff7  libextension.dylib (78) <71EA5853-72A3-335F-B068-E7BEEF78D7B6> /usr/lib/libextension.dylib
    0x7fff85cec000 -     0x7fff85cedfff  com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff85fb6000 -     0x7fff85fb8ff7  com.apple.securityhi (9.0 - 55006) <D330AF45-485D-3B78-9984-E3BA31766517> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff85fc8000 -     0x7fff8624eff3  com.apple.CFNetwork (754.1 - 754.1) <A9A65D55-BF23-390F-AA35-B632E111B1C9> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff86296000 -     0x7fff862b8ff7  com.apple.IconServices (68 - 68) <F64B33A9-A613-37A8-A4C7-002B73B71FD3> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff862b9000 -     0x7fff862f3fff  com.apple.QD (3.12 - 302) <8465EEA6-A25A-3804-8A4C-EE9970855C03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff862f4000 -     0x7fff8631bfff  com.apple.shortcut (2.16 - 93) <76268B38-E7CA-389F-A71F-07DE582C27B4> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff8631c000 -     0x7fff86321fff  com.apple.SymptomReporter (1.0 - 1) <63999D6F-100A-3286-9734-ACACE5F525B3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomReporter.framework/SymptomReporter
    0x7fff86366000 -     0x7fff8650cfff  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <631788BA-10C3-3261-AB06-D64D495DA225> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8650d000 -     0x7fff86981fff  com.apple.CoreFoundation (6.9 - 1229.11) <323A84CB-A25E-3B64-941C-0EFB79A16728> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff86982000 -     0x7fff86983ff3  libSystem.B.dylib (1225) <B23C2B8E-5093-327F-A683-20F8421E3608> /usr/lib/libSystem.B.dylib
    0x7fff86984000 -     0x7fff86aa1fff  libsqlite3.dylib (215) <69E290F1-8234-3585-AAD7-CEEF4750F2B1> /usr/lib/libsqlite3.dylib
    0x7fff86aa2000 -     0x7fff86ab6fff  libsystem_coretls.dylib (82) <A4358764-050F-3F6F-82B1-6B8FFCA39D75> /usr/lib/system/libsystem_coretls.dylib
    0x7fff86d97000 -     0x7fff86db9fff  com.apple.MultitouchSupport.framework (304.2 - 304.2) <417C4A80-7193-37B9-AB6B-6D86E8CCC65E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff86dba000 -     0x7fff86dc9ffb  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D17169BD-6F00-380A-9B09-87D58EE03376> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff86df0000 -     0x7fff86df9ffb  libsystem_notify.dylib (149) <A5361B79-C5BD-322C-A141-C68AD15D6AB8> /usr/lib/system/libsystem_notify.dylib
    0x7fff86dfa000 -     0x7fff86dfafff  libOpenScriptingUtil.dylib (169) <B261996D-8A30-3100-AA67-329687BC8411> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff86dfb000 -     0x7fff86e41ff7  libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
    0x7fff876d3000 -     0x7fff876fcfff  libc++abi.dylib (125) <DCCC8177-3D09-35BC-9784-2A04FEC4C71B> /usr/lib/libc++abi.dylib
    0x7fff876fe000 -     0x7fff876fefff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <F432B311-D467-358F-8998-F4A6C0F42AFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff876ff000 -     0x7fff8770bff7  com.apple.speech.synthesis.framework (5.4.9 - 5.4.9) <20C4A18D-9CAD-36FC-9544-353B6BF8C898> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8770c000 -     0x7fff87728fff  com.apple.GenerationalStorage (2.0 - 238) <FEA5D765-70AD-335E-8E36-ACD6C342C0E2> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff87729000 -     0x7fff8772aff3  com.apple.print.framework.Print (10.0 - 266) <27A3B0E3-0971-3FDF-BD6F-49B6371CFABF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff8772d000 -     0x7fff878d2ffb  com.apple.avfoundation (2.0 - 1046) <43A963CC-1395-3F1A-80F8-8251DABBBE36> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff878d3000 -     0x7fff87d91fc3  com.apple.vImage (8.0 - 8.0) <C5673A89-E03D-3E3B-969A-0A793D8DC3A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff87d92000 -     0x7fff87e01fff  com.apple.SearchKit (1.4.0 - 1.4.0) <52ED2549-9404-38E5-A4AA-2194E547CF8C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff87e02000 -     0x7fff881dafef  com.apple.CoreAUC (214.0.0 - 214.0.0) <996A7050-0B1A-3629-AEF1-91C27A3C5B56> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff881db000 -     0x7fff881f3fc7  libcompression.dylib (23) <AFA5BFF1-40E4-3880-921D-FD7D8AF33B88> /usr/lib/libcompression.dylib
    0x7fff881f4000 -     0x7fff88210ff3  libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib
    0x7fff8826e000 -     0x7fff882f6fff  com.apple.CoreSymbolication (3.1 - 58048) <3EDA23E3-016E-3F44-BE78-D7CC5D625122> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff8838e000 -     0x7fff883ebfff  com.apple.CoreServices.OSServices (726.4 - 726.4) <F3024E48-8E19-30C5-9655-3C5EE25F7AD2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff883ec000 -     0x7fff8853bff7  com.apple.MapKit (1.0 - 1620.0.7.1) <671674AC-0027-383E-81BA-8D2C6A94C08F> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
    0x7fff88542000 -     0x7fff88543ff7  libodfde.dylib (23) <97DE4A01-FA1B-3DD9-8416-8A8CB462C9C0> /usr/lib/libodfde.dylib
    0x7fff88589000 -     0x7fff8858dfff  libcache.dylib (75) <34431DDC-4EA4-3DCF-9040-225615C6FD5B> /usr/lib/system/libcache.dylib
    0x7fff885f7000 -     0x7fff885fbfff  com.apple.LoginUICore (3.1 - 3.1) <E370C812-8A0B-3DA3-866C-FF6876962BBF> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff88671000 -     0x7fff88674fff  com.apple.Mangrove (1.0 - 1) <0916C817-BEA3-3332-82FA-B542919CECD4> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff886f6000 -     0x7fff88c4aff7  com.apple.MediaToolbox (1.0 - 1731) <7A0A6879-7F0B-39EB-AC89-B4A01C49018E> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff88c4b000 -     0x7fff88fb666f  libobjc.A.dylib (678) <976D10AF-624A-34F3-88A6-CB90EBE3FEA3> /usr/lib/libobjc.A.dylib
    0x7fff88fb7000 -     0x7fff88fe3fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <007485EB-22C6-3EB1-9005-C4A2984A6960> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff88fe4000 -     0x7fff89277fff  libmecabra.dylib (693) <CE14BCD6-DE22-3459-86BE-4C8277341136> /usr/lib/libmecabra.dylib
    0x7fff89278000 -     0x7fff8927eff7  com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <4700DC3D-1D6A-3D50-912F-A074C446DC4E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8927f000 -     0x7fff892aefff  com.apple.securityinterface (10.0 - 55065) <71B81C9F-0323-3CA6-A3AA-F98482C76AF5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff8951d000 -     0x7fff8951efff  libquit.dylib (196) <42A1A802-7768-30A4-96DB-29CBD2EDF2D8> /usr/lib/libquit.dylib
    0x7fff8951f000 -     0x7fff8952afff  libcsfde.dylib (515.1) <2615952B-B5E0-3F8B-B502-BF5F815C67F8> /usr/lib/libcsfde.dylib
    0x7fff8952b000 -     0x7fff8a78bffb  com.apple.CoreGraphics (1.600.0 - 921.1) <73D28EB2-B278-3A46-947E-58501E82C3E0> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8a78c000 -     0x7fff8a7dcff7  libcups.2.dylib (433) <1DB44460-4255-32CC-80FB-A32720729FC7> /usr/lib/libcups.2.dylib
    0x7fff8a7dd000 -     0x7fff8a819ff7  com.apple.OSAKit (1.5 - 104) <1DA1714C-5BAA-3C5D-AFC5-94C49991D490> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x7fff8a81a000 -     0x7fff8a86aff7  com.apple.Symbolication (1.4 - 58044) <E22A79C6-C0EE-383B-95F3-4AFCBDFB13A7> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8a874000 -     0x7fff8a875fff  libffi.dylib (18.1) <5BA9612C-747E-33CE-9DB1-3C01ECF3041D> /usr/lib/libffi.dylib
    0x7fff8a876000 -     0x7fff8a8c5ff7  com.apple.opencl (2.6.8 - 2.6.8) <B2FB56C4-FBC2-3059-A397-2CB27D7A08DA> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8a8d2000 -     0x7fff8aa9fff3  com.apple.QuartzCore (1.11 - 409.0) <9C17C862-FF5B-32CA-91CB-423626CBBD55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8aaf1000 -     0x7fff8ab01fff  libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
    0x7fff8ab25000 -     0x7fff8ab33fff  libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
    0x7fff8ab41000 -     0x7fff8ab43ffb  libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib
    0x7fff8ab51000 -     0x7fff8ab82ff3  com.apple.GSS (4.0 - 2.0) <8800624F-1645-399D-BE58-66F096D156C9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8ab8a000 -     0x7fff8ac17dd7  com.apple.AppleJPEG (1.0 - 1) <8DBC3368-C8EA-317A-BD1C-0596B38DBF92> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff8ad8a000 -     0x7fff8ade5fff  libTIFF.dylib (1426) <9AC3C90B-16F6-3451-8B3B-C5EB6D38B02A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8ae21000 -     0x7fff8b28afff  com.apple.GeoServices (1.0 - 1151.2.7) <3C0AF162-D195-39C4-9674-238EFC1AC919> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8b28b000 -     0x7fff8b2aaff7  com.apple.framework.Apple80211 (11.0 - 1101.29) <93DF1194-CB1E-382E-87D2-750F7CCC04DF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8b2ab000 -     0x7fff8b590ffb  com.apple.CoreServices.CarbonCore (1135 - 1135) <91569EEE-8954-385F-97C0-02F06551FE3D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff8b591000 -     0x7fff8b596fff  com.apple.MediaAccessibility (1.0 - 79) <6CB5BDA2-7BAB-3533-BB0F-6C8CF099FE3E> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff8b651000 -     0x7fff8b687fff  libssl.0.9.8.dylib (59) <E72A6561-7358-3D66-BFBB-3CA35C6FD688> /usr/lib/libssl.0.9.8.dylib
    0x7fff8b688000 -     0x7fff8b689fff  liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
    0x7fff8b68a000 -     0x7fff8bab8fff  com.apple.vision.FaceCore (3.3.1 - 3.3.1) <715D76E9-88AC-3E62-9DC8-B8BE49221F49> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8bc29000 -     0x7fff8bc34fff  com.apple.DirectoryService.Framework (10.11 - 194) <9AE09182-D94C-369A-9E67-619B14705689> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff8bc35000 -     0x7fff8bc40ff7  com.apple.AppSandbox (4.0 - 261) <5810BD4A-5300-31C8-AE1C-C41DFF66A731> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff8bc41000 -     0x7fff8bcfaff7  libvMisc.dylib (563.2) <3D7B6BAD-215C-38DF-8C47-AD543ED3D91C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff8bd49000 -     0x7fff8bd4bff7  libsystem_configuration.dylib (800) <97621C4A-4765-3351-BB97-92EC6E4F6ABF> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8bd4c000 -     0x7fff8bd54fef  libcldcpuengine.dylib (2.6.2) <E78BF015-4C9F-3B38-9F45-AB714701CE74> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff8bd55000 -     0x7fff8bd83fff  com.apple.datadetectors (5.0 - 306) <855DF4EC-2C00-3FEC-AA29-43C07CC9956A> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x7fff8bd84000 -     0x7fff8becaff7  com.apple.coreui (2.1 - 358) <546254AE-BFCF-3213-9374-D194661507A5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8c0e2000 -     0x7fff8c140fff  libsystem_network.dylib (582) <5627B4EC-5CB4-3B50-BB08-0A9BABF42A10> /usr/lib/system/libsystem_network.dylib
    0x7fff8c141000 -     0x7fff8c175fff  com.apple.CoreVideo (1.8 - 191.0) <6B6EB8DA-702E-3274-988F-F476DEBA5B15> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8c176000 -     0x7fff8c288fef  libvDSP.dylib (563.2) <5A1F6269-D457-303F-8FD5-78094631F2D7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff8c289000 -     0x7fff8c299fff  libSparseBLAS.dylib (1159) <0D54EC42-CC6E-3F26-B5B0-248C926FA928> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff8c2bc000 -     0x7fff8c2c4ffb  libsystem_dnssd.dylib (623) <A8F05BEC-716E-3181-B3FB-71739F04E9D8> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8c2c5000 -     0x7fff8c32cfff  com.apple.framework.CoreWiFi (11.0 - 1100.18) <C4AD1353-93D4-3BBB-B21E-AAB6DDEABD27> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8c32d000 -     0x7fff8c4abfff  com.apple.UIFoundation (1.0 - 431) <BB3B7D63-E237-3666-9201-9B11EF026E80> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff8c848000 -     0x7fff8c856ff7  com.apple.IntlPreferences (2.0 - 189) <8064C415-ECBE-3590-98FB-E957DD0C7EFB> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
    0x7fff8c857000 -     0x7fff8c8c2fff  com.apple.contacts.Contacts (1.0 - 2127.1) <CD9E9D89-4AF8-33C4-BAB4-ED0133271EEC> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
    0x7fff8c8c8000 -     0x7fff8cad5ffb  libicucore.A.dylib (551.20) <6A9C1B1D-79F7-321B-A0FA-9BFCDF2830D7> /usr/lib/libicucore.A.dylib
    0x7fff8cad6000 -     0x7fff8cb06ff3  com.apple.CoreAVCHD (5.8.0 - 5800.4.2) <7BE9213B-3D52-3CC9-A08E-064F304984EB> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8cb07000 -     0x7fff8cc6dfff  com.apple.AutomatorFramework (2.5 - 414) <4D2F7E92-48E5-3C52-8B7F-6ACEAFF66717> /System/Library/Frameworks/Automator.framework/Versions/A/Automator
    0x7fff8cc6e000 -     0x7fff8cc6ffff  libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8cceb000 -     0x7fff8cceffff  com.apple.CommonPanels (1.2.6 - 96) <2BCBCD07-9857-3DBF-9513-C3D0BA041567> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff8ccf0000 -     0x7fff8cd64ff3  com.apple.securityfoundation (6.0 - 55126) <8ED0B5C9-F5CF-3EEF-8D7D-56FD95EB163A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8cd65000 -     0x7fff8cda2ff3  com.apple.bom (14.0 - 193.6) <0F4838E3-CDF3-3416-9633-4BD278257ED3> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8ce21000 -     0x7fff8ce23fff  libUniversalAccess.dylib (268) <4D838CFE-AF5C-3092-8A74-90CA370A0712> /usr/lib/libUniversalAccess.dylib
    0x7fff8ce67000 -     0x7fff8ce7bfff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <2517632D-F9E2-3031-9ECD-2FBC964117C4> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff8ce7c000 -     0x7fff8cfd7ff7  com.apple.WebKitLegacy (11601 - 11601.1.43) <A8416FBC-8823-3DA9-B515-CE0BBB41EDE2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff8d01c000 -     0x7fff8d12dffb  com.apple.desktopservices (1.10 - 1.10) <464D3641-F532-3502-97E1-9D9FE8D1AE72> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8d135000 -     0x7fff8d15cfff  com.apple.ChunkingLibrary (167 - 167) <A5C6AA70-597D-3C67-81D0-DE34B6DDA26E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff8d15d000 -     0x7fff8d160ff3  libCGXCoreImage.A.dylib (921.1) <ED84DA5C-D67C-3498-827C-35DF1744FF12> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8d164000 -     0x7fff8d32cfff  com.apple.ImageIO.framework (3.3.0 - 1426) <13B774DB-31D8-3803-96B7-068E5CEC1F19> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8d396000 -     0x7fff8d46eff3  com.apple.CoreMedia (1.0 - 1731) <91BD2128-0A72-394C-8981-42312CF9FE0A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8d48a000 -     0x7fff8d4bbff7  libtidy.A.dylib (15.17) <7725413B-1315-3883-B680-8EBA40E71C01> /usr/lib/libtidy.A.dylib
    0x7fff8d5b8000 -     0x7fff8d5c9ff7  libsystem_trace.dylib (200) <AA65BE78-DC34-39F1-B437-8654D4BB4B08> /usr/lib/system/libsystem_trace.dylib
    0x7fff8d5ca000 -     0x7fff8d5cafff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <4F91132F-DE17-381B-A361-E6A0F34D9562> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8d6ca000 -     0x7fff8d6e5fff  com.apple.aps.framework (4.0 - 4.0) <E93FC16E-8C81-347F-93C7-8382564C95AD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff8d6e7000 -     0x7fff8d75dff7  com.apple.MMCS (1.3 - 347) <E1CCC510-D45C-3CF2-9B19-51439441975A> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fff8d75e000 -     0x7fff8d816ff7  com.apple.CoreDuet (1.0 - 1) <4412928D-64D1-30B7-B1D8-48F6E94DFE1B> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff8d81f000 -     0x7fff8d8f5ff7  com.apple.DiskImagesFramework (10.11 - 414) <9106EE95-071B-3974-8005-5F85BAE29902> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8d914000 -     0x7fff8d943ff7  libsandbox.1.dylib (455) <5A231EAD-C221-3221-8034-CFE75B920A79> /usr/lib/libsandbox.1.dylib
    0x7fff8da9b000 -     0x7fff8db3afff  com.apple.Metadata (10.7.0 - 963) <64BA6774-8A48-3F55-A4D8-A84D3DC05911> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff8db4c000 -     0x7fff8db8eff7  com.apple.Metal (54.26 - 54.26) <C85D69FE-6D0B-356D-A83B-77B1B3C86D24> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff8df36000 -     0x7fff8df3efff  libcopyfile.dylib (126) <56A575AF-176F-35B2-BD64-A07A67BDAC4B> /usr/lib/system/libcopyfile.dylib
    0x7fff8df3f000 -     0x7fff8e461fff  com.apple.QuartzComposer (5.1 - 334) <759D0ACF-F053-3246-8763-5C25E9E98A60> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff8e462000 -     0x7fff8e462fff  libenergytrace.dylib (10) <CE5449B5-00CB-3CE1-8CAC-4331C7573F29> /usr/lib/libenergytrace.dylib
    0x7fff8e463000 -     0x7fff8e480fff  com.apple.pluginkit.framework (1.0 - 1) <2582A9DA-47D9-3FAD-B9C4-D11019CC08C2> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff8e48e000 -     0x7fff8e4bdffb  libsystem_m.dylib (3105) <77C1C73C-0E61-375E-8BAF-DAF018550D67> /usr/lib/system/libsystem_m.dylib
    0x7fff8e4ea000 -     0x7fff8e554ff7  com.apple.framework.CoreWLAN (11.0 - 1100.18) <4F9F8411-EDE1-3A92-B05B-5E6FC9C5F398> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8e558000 -     0x7fff8e57ffff  com.apple.ProtectedCloudStorage (1.0 - 1) <6B711E13-1BFE-331F-86D5-68ACD73A1AF4> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff8e6bc000 -     0x7fff8e6bcfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <465A0275-5DF3-313D-B030-4F57440115D5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8e6bd000 -     0x7fff8e6eafff  libdispatch.dylib (500.1.4) <FF252D77-8509-3909-8677-0D3194157BF3> /usr/lib/system/libdispatch.dylib
    0x7fff8e6f0000 -     0x7fff8e6f0ff7  libkeymgr.dylib (28) <A36BD6EF-7FF1-3D92-8473-87487770D78A> /usr/lib/system/libkeymgr.dylib
    0x7fff8e722000 -     0x7fff8e727fff  com.apple.TCC (1.0 - 1) <FD3184BA-AEC0-3298-A127-39CA8D0591A5> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8e728000 -     0x7fff8e7b1fff  com.apple.PerformanceAnalysis (1.0 - 1) <19FC5D07-8198-393C-926D-9814693E0D07> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8e7b2000 -     0x7fff8e7d0ffb  libedit.3.dylib (43) <1D3E3152-4001-3C19-B56A-7543F1BBA47C> /usr/lib/libedit.3.dylib
    0x7fff8e7d1000 -     0x7fff8e7d2ffb  libremovefile.dylib (40) <E97EABA2-D961-3CFF-91B0-5FC37924D199> /usr/lib/system/libremovefile.dylib
    0x7fff8e7d3000 -     0x7fff8e917ff7  com.apple.QTKit (7.7.3 - 2930) <BB655909-6269-3C90-90B7-7E6A5422C044> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8e9bd000 -     0x7fff8e9e1fff  com.apple.quartzfilters (1.10.0 - 1.10.0) <FF0EBD06-3A04-3B47-994D-75D70DB085C6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff8e9e2000 -     0x7fff8ea20ff7  libGLImage.dylib (12.0.34.11) <7F762319-257A-3235-A973-F42BCD2DA842> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8ea21000 -     0x7fff8eb45fff  com.apple.LaunchServices (726.4 - 726.4) <81D61070-0554-31CB-990D-ADA3BA907857> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff8eb46000 -     0x7fff8eb57fff  libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib
    0x7fff8eb8c000 -     0x7fff8ed95fff  libFosl_dynamic.dylib (16.23) <652311EC-9B20-35E4-BFAB-A3822EF4FF9C> /usr/lib/libFosl_dynamic.dylib
    0x7fff8ed96000 -     0x7fff8ed98ff7  com.apple.xpc.ServiceManagement (1.0 - 1) <BEA73E4B-4596-3B1B-9A3B-A444ADB84978> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff8edb2000 -     0x7fff8edb2ff7  liblaunch.dylib (755.1.13) <EDC83AA4-F0B8-3C23-869A-11CDA021E453> /usr/lib/system/liblaunch.dylib
    0x7fff8edb3000 -     0x7fff8edd4ff7  com.apple.Sharing (434 - 434) <2185B8EF-4E2E-3492-90B2-6A9E12B5E237> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8edd5000 -     0x7fff8edf1ff7  libsystem_malloc.dylib (67) <962E8D77-A7DA-3AAC-B673-65115042A395> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8edf6000 -     0x7fff8ee41ffb  com.apple.print.framework.PrintCore (11.0 - 471) <023B1969-E338-3308-8CAA-187017663575> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff8ee42000 -     0x7fff8ee4afff  libsystem_networkextension.dylib (382) <D8F5D28A-D20F-3F26-B261-95B3377B084E> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff8eec2000 -     0x7fff8eec4ff7  libquarantine.dylib (80) <E9E19200-9867-386D-8C56-3838099C7EFF> /usr/lib/system/libquarantine.dylib
    0x7fff8eec5000 -     0x7fff8eee9ff7  libJPEG.dylib (1426) <6C8EDE43-D132-3553-8619-C1D745DDEB90> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8eeea000 -     0x7fff8ef80fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B493301E-0E9F-3C61-9C6F-D7BD6DDFD265> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff8ef81000 -     0x7fff8ef88ff7  com.apple.phonenumbers (1.1.1 - 105) <621BF8C9-6BFC-3028-9A83-BE6F0AFFA61D> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x7fff8ef89000 -     0x7fff8ef92ff7  libsystem_pthread.dylib (137) <7163D878-C607-3FBA-92DF-589021ADD49E> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8ef93000 -     0x7fff8ef95fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <7A1B2883-F047-37CF-B333-F166B77994CC> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff8ef96000 -     0x7fff8f63bff3  com.apple.JavaScriptCore (11601 - 11601.1.43) <AC4E0483-E8EB-343F-8760-45B28252AF31> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8f641000 -     0x7fff8f642fff  libsystem_blocks.dylib (65) <0BCF8CF0-F59B-348B-80F8-E241E2E085D9> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8f656000 -     0x7fff8f681ff7  com.apple.AddressBook.ContactsFoundation (8.0 - 2127.1) <4BEA16C0-5EE5-37D6-9A54-53507EC8048F> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
    0x7fff8f6ae000 -     0x7fff8f6befff  com.apple.AppleScriptObjC (1.3.1 - 31) <2421D592-1200-3302-B07C-AF84ABB1C086> /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC
    0x7fff8f6bf000 -     0x7fff8f6f7fff  com.apple.RemoteViewServices (2.0 - 99) <2F5269C0-8911-3882-92E7-276AAAFE8FC6> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff8f769000 -     0x7fff8f77bfff  libsasl2.2.dylib (209) <159C2252-E295-35A8-9B18-845379E66B0F> /usr/lib/libsasl2.2.dylib
    0x7fff8f8f4000 -     0x7fff8f942ff7  com.apple.DiskManagement (8.0 - 946) <FE984D6E-5A6B-3CA5-905A-1B688521300B> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff900e1000 -     0x7fff90190ff7  com.apple.cloudkit.CloudKit (475 - 475) <A33E1BCC-C019-3BAE-B00F-5E5A4AD9B500> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff90191000 -     0x7fff90194ffb  libScreenReader.dylib (420) <F3DFA71A-F246-393B-B869-DC9B197223BF> /usr/lib/libScreenReader.dylib
    0x7fff90195000 -     0x7fff9019afff  com.apple.AssetCacheServices (14 - 14) <13EE82DF-CA4F-3130-BD19-FFBB3BDC7590> /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServices
    0x7fff90223000 -     0x7fff902cafff  com.apple.LanguageModeling (1.0 - 1) <C79B9104-57CA-3490-94D6-4BFCC4CBBA0C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff902cb000 -     0x7fff9031cff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <55BACF67-F976-3E25-991B-8967F88DAA5C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff9041e000 -     0x7fff9041efff  com.apple.quartzframework (1.5 - 21) <0B88EC08-1F98-3505-A639-937B95A9A9A3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff90427000 -     0x7fff90430ff7  com.apple.DisplayServicesFW (3.0 - 378) <667E64BD-AFA6-3053-B45D-602F70946969> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff90431000 -     0x7fff90433ff7  com.apple.SafariServices.framework (11601 - 11601.1.43) <7ED25300-FDC0-3525-849B-E13D8EEE8FC6> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff90478000 -     0x7fff904a1ff7  libsystem_info.dylib (476) <9D7B30C7-734D-33E1-814E-63B9492DFCEA> /usr/lib/system/libsystem_info.dylib
    0x7fff904a2000 -     0x7fff904d9ff7  com.apple.LDAPFramework (2.4.28 - 194.5) <45948A74-3134-3368-955F-9B8F468334DA> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff904fa000 -     0x7fff9052bff7  libncurses.5.4.dylib (46) <D4C10699-3E8F-3F42-A695-7490EA4B6B32> /usr/lib/libncurses.5.4.dylib
    0x7fff9053c000 -     0x7fff9054cff3  com.apple.ProtocolBuffer (1 - 242) <64D66EAA-D971-38D3-97D7-A9EFE9500408> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff9054d000 -     0x7fff90552fff  com.apple.DiskArbitration (2.7 - 2.7) <12A08215-4100-36F6-BCD7-78CB34208B9E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff90553000 -     0x7fff90955fff  libLAPACK.dylib (1159) <A333AA38-9C2C-329C-AB92-94774C8264C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff9095f000 -     0x7fff9096aff7  libChineseTokenizer.dylib (16) <5346DAB3-E0A7-3E58-8D42-41256CC88A57> /usr/lib/libChineseTokenizer.dylib
    0x7fff9096b000 -     0x7fff90d90fff  com.apple.ModelIO (1.0 - 1) <F65483DB-F2D5-3F9B-9592-39BD7F3752CA> /System/Library/Frameworks/ModelIO.framework/Versions/A/ModelIO
    0x7fff90d91000 -     0x7fff90d9ffff  com.apple.opengl (12.0.34 - 12.0.34) <F38A4044-67DE-35B9-B131-F9AEE1C7B6FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff90da3000 -     0x7fff90eceff7  com.apple.CoreText (352.0 - 486.1) <D2B4732A-B604-3EF1-852C-E15C84D609B1> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff90ecf000 -     0x7fff90ecffff  com.apple.ApplicationServices (48 - 48) <50A20089-B15B-392F-8CCF-EF5573B899AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff90ed0000 -     0x7fff90ed7ff7  libcompiler_rt.dylib (62) <1EF79228-6289-349D-9A47-3279C70E9D8E> /usr/lib/system/libcompiler_rt.dylib
    0x7fff90ed8000 -     0x7fff90efaff7  com.apple.framework.familycontrols (4.1 - 410) <EC3B1D32-4AE4-32DA-B3C9-3BC5045FDC5A> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff90efb000 -     0x7fff90f5bfff  com.apple.QuickLookFramework (5.0 - 690) <5C886B25-EFD6-3E97-87A4-1E9254E917DA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff90f64000 -     0x7fff90f65fff  libUAPreferences.dylib (268) <DE6D84A2-488A-3715-8BCA-8F7B95495F52> /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Libraries/libUAPreferences.dylib
    0x7fff90f66000 -     0x7fff9168cffb  com.apple.VectorKit (1.0 - 1156.1.4) <F9F54405-7CFC-3F99-AB18-020B69706E24> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
    0x7fff916dc000 -     0x7fff91716ff7  com.apple.DebugSymbols (132 - 132) <4D22B652-DE7B-3D83-8ED8-F9DE6E387544> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff91717000 -     0x7fff917a4fff  com.apple.CorePDF (4.0 - 4) <B8F79EBA-B99A-3BED-95CF-194E21991506> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff917ef000 -     0x7fff917f3fff  libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib
    0x7fff918b8000 -     0x7fff918b9fff  libsystem_secinit.dylib (20) <0FD11CC2-3B66-396C-BCF8-F9EA4B809756> /usr/lib/system/libsystem_secinit.dylib
    0x7fff918ba000 -     0x7fff9195dff7  com.apple.Bluetooth (4.4.0 - 4.4.0d86) <F8CB9665-1A5D-397D-A663-7D7EE190D375> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff91a4a000 -     0x7fff91a4bffb  libsysmon.dylib (85) <C4440BD5-36DE-31A8-9E5B-042DBBBC234C> /usr/lib/libsysmon.dylib
    0x7fff91a5f000 -     0x7fff91a61fff  com.apple.loginsupport (1.0 - 1) <93B8943F-DFC0-3D0B-AD26-396B6C895A12> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff91a62000 -     0x7fff91a67ff7  libmacho.dylib (875.1) <82C78A1E-3B05-34CC-8160-2D054F5C4168> /usr/lib/system/libmacho.dylib
    0x7fff91a68000 -     0x7fff91a81fff  com.apple.network.statistics.framework (1.2 - 1) <37F35C4D-8A21-3226-B0F8-C004631AFC79> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
    0x7fff91dd7000 -     0x7fff91de2fff  libkxld.dylib (3247.1.78) <84BBEC19-5DC7-31D0-B40D-598E49EB4536> /usr/lib/system/libkxld.dylib
    0x7fff91e02000 -     0x7fff91e05fff  libspindump.dylib (196) <A3C88711-FA72-3BB1-8A2E-2D471FE4F32B> /usr/lib/libspindump.dylib
    0x7fff9274d000 -     0x7fff9274dff7  libunc.dylib (29) <B759A897-B359-30E0-8E99-855BCC8D2F93> /usr/lib/system/libunc.dylib
    0x7fff9275a000 -     0x7fff92762fe7  libsystem_platform.dylib (73) <89357CAA-A2F2-39B1-8FA1-CEC2BEE61DDB> /usr/lib/system/libsystem_platform.dylib
    0x7fff92766000 -     0x7fff92771fff  com.apple.CrashReporterSupport (10.11 - 712) <F5DD9025-EA9B-3703-B7B5-6935238A3E1F> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff9279f000 -     0x7fff92891ff7  libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib
    0x7fff92892000 -     0x7fff928deff7  com.apple.corelocation (1486.17 - 1615.33) <BB6D650F-6692-38FB-A24C-E5525F87CD59> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff928df000 -     0x7fff92908ff7  libxslt.1.dylib (14) <CF5C6F5F-75D6-3C00-B6B2-1032D2799FBC> /usr/lib/libxslt.1.dylib
    0x7fff929e2000 -     0x7fff929fcff3  liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib
    0x7fff92baf000 -     0x7fff92c00ff7  com.apple.CloudDocs (1.0 - 374) <969D7898-2DB0-3B9A-9784-2D49EDBBCC5C> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff92c01000 -     0x7fff92ce8ff7  libcrypto.0.9.8.dylib (59) <58EF83E6-FFEB-3D5D-AAD1-3FCA05BCCFC0> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff92ce9000 -     0x7fff92cebfff  libRadiance.dylib (1426) <76E5D7D4-F202-3784-8BA4-3BE2B727497C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff92cec000 -     0x7fff92cf4fff  libMatch.1.dylib (27) <3AC0BFB8-7E69-3DBE-A175-7F3946FC4554> /usr/lib/libMatch.1.dylib
    0x7fff92e15000 -     0x7fff92e21fff  com.apple.SpeechRecognitionCore (2.2.3 - 2.2.3) <D76A0180-DD13-3D12-BD33-DD9008CBC32C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff92e22000 -     0x7fff92e2dff7  com.apple.CommerceCore (1.0 - 445) <BA481142-25AF-3CB8-BFB7-B6C31F824FB1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff92e2e000 -     0x7fff92e9ffff  com.apple.ApplicationServices.ATS (377 - 390) <98B85338-8EF0-308C-ABF6-6DF2EA19949F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff92ead000 -     0x7fff92f73ff7  com.apple.backup.framework (1.7 - 1.7) <32F71AD6-424A-370D-9270-3507D6745167> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff92f74000 -     0x7fff92f9dffb  libRIP.A.dylib (921.1) <681B9563-DD55-3A49-A452-C57984D061B6> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff92f9e000 -     0x7fff930c0ff7  com.apple.NetworkExtension (1.0 - 1) <04876F9D-8DAB-35BB-99EA-E29A88EB94EA> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
    0x7fff930c1000 -     0x7fff931a1ff7  unorm8_rgba.dylib (2.6.2) <7B4B58A7-A612-3FF3-B44B-24E4F9596353> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib
    0x7fff93214000 -     0x7fff93214fff  com.apple.CoreServices (726.4 - 726.4) <3F1319D1-B28C-3B2D-8ED3-1D2BA4964326> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff93215000 -     0x7fff93226fff  libz.1.dylib (60) <D3B5FAE1-8018-389D-B29E-13C637381740> /usr/lib/libz.1.dylib
    0x7fff9325f000 -     0x7fff93267fff  com.apple.AppleSRP (5.0 - 1) <98592F10-2B24-3C53-99FC-754FF9380644> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff93328000 -     0x7fff9332cfff  libGIF.dylib (1426) <5A3A478B-8313-3ABC-B6EC-4A463FD1F958> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff935e5000 -     0x7fff935fcfff  libsystem_asl.dylib (322) <A28E0F33-B55F-3BED-89A1-EC633986025F> /usr/lib/system/libsystem_asl.dylib
    0x7fff93758000 -     0x7fff939d5fff  com.apple.security (7.0 - 57324) <F3FDCF3E-F553-33B8-A59E-A60225CFBB6C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff939d6000 -     0x7fff93a1bff3  libFontRegistry.dylib (152) <2F6BD616-FEF2-3C1D-AFC3-FB760250B0D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff93a21000 -     0x7fff93a90ffb  com.apple.datadetectorscore (7.0 - 460) <4514E57A-3708-3748-BEBB-CFF781651870> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff93aac000 -     0x7fff93d4eff7  com.apple.CoreData (120 - 634) <F04A7BBB-DAC2-32E1-A656-852DAFBDC0BA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff93de2000 -     0x7fff93e2dff7  com.apple.CoreMediaIO (701.0 - 4788) <FC996798-F87B-3FDE-A5B8-0D22C57B10DE> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff93e2e000 -     0x7fff93e66ff7  com.apple.Accounts (113 - 113) <658D1D61-F503-308D-953C-2F71A32DC7F5> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff93e67000 -     0x7fff93e6aff7  com.apple.help (1.3.3 - 46) <01E3E7CC-B14B-3922-B9F3-38A6E9E1DCB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff93f2e000 -     0x7fff93f4cfff  libsystem_kernel.dylib (3247.1.78) <F88EED0D-833B-3520-907C-8754E483ACDE> /usr/lib/system/libsystem_kernel.dylib
    0x7fff93f50000 -     0x7fff93f63fff  com.apple.CoreBluetooth (1.0 - 1) <89FD585B-ECD1-3D30-AC10-CAD5DA2B3D60> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff93f64000 -     0x7fff94259ffb  com.apple.HIToolbox (2.1.1 - 798) <A0ABDC8A-2D51-397F-BA42-6558E935FC60> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff942c8000 -     0x7fff943b2ff7  com.apple.QuickLookUIFramework (5.0 - 690) <41C0BC1A-4B5E-32C7-A769-FD7C4D5F1586> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff94417000 -     0x7fff94436ff7  com.apple.contacts.vCard (1.0 - 2127.1) <1DD23301-1E11-3831-9655-EA00E7893C43> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff94437000 -     0x7fff9444dff7  libLinearAlgebra.dylib (1159) <E921FF7D-A3D6-34E2-ADE1-8E5C7FE8417C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff94478000 -     0x7fff9447fff7  com.apple.NetFS (6.0 - 4.0) <A308958B-31B5-3093-B645-9D2EEF54B79C> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff94480000 -     0x7fff94489fff  com.apple.icloud.FindMyDevice (1.0 - 1) <807E8666-E05A-31A6-85C8-BD6CF9538737> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff9448a000 -     0x7fff944ddff7  libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
    0x7fff944de000 -     0x7fff9456bfef  libsystem_c.dylib (1081) <FF8528DC-44FB-355B-B3AD-D0E6578815F8> /usr/lib/system/libsystem_c.dylib
    0x7fff9456c000 -     0x7fff94587ff7  libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
    0x7fff94588000 -     0x7fff94592fff  com.apple.NetAuth (6.0 - 6.0) <13C9FF67-FB8E-3BD3-9D69-34D79D460C0D> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff94593000 -     0x7fff94615ffb  com.apple.AVKit (1.1 - 281) <C8BB21F0-B0E4-3D53-9295-A8EED0CAC477> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
    0x7fff9475a000 -     0x7fff94762fff  libGFXShared.dylib (12.0.34.11) <DD5FD5CB-4A50-3A9A-9796-B5B0E6BE280F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff94772000 -     0x7fff949ddff7  com.apple.imageKit (2.6 - 922) <14450626-B4A6-31D0-9A91-8F2EA340F8E0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff949de000 -     0x7fff949f8fff  com.apple.Kerberos (3.0 - 1) <3F1C7BB1-9203-3BA4-967A-C8C048D5975F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff94a97000 -     0x7fff94ac5ff7  com.apple.CoreServicesInternal (248 - 248) <F09EF165-51A5-386B-A2CF-C996DCD561C0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff94ac6000 -     0x7fff94ad4ff7  libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib
    0x7fff94b67000 -     0x7fff94b69fff  com.apple.EFILogin (2.0 - 2) <E4D9A1EA-2C85-386C-88F7-E6C9507859AB> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff94b6c000 -     0x7fff94bf8fff  libCoreStorage.dylib (515.1) <7F2D1832-EE3F-33D1-8F3D-133D60765C77> /usr/lib/libCoreStorage.dylib
    0x7fff94bf9000 -     0x7fff94c3bfff  com.apple.framework.ConfigurationProfiles (8.0 - 839) <090D7D3B-7028-38FC-8605-638FF3CD8C03> /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/ConfigurationProfiles
    0x7fff94c8f000 -     0x7fff94c94ff3  libunwind.dylib (35.3) <5988722D-6A06-37E5-87C9-EEB65738B0A3> /usr/lib/system/libunwind.dylib
    0x7fff94c95000 -     0x7fff958abfff  com.apple.AppKit (6.9 - 1391.12) <9647B64D-2FB8-361D-832C-000CBC0DDD30> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff958d2000 -     0x7fff958e8fff  com.apple.CoreMediaAuthoring (2.2 - 953) <601CEAB1-B550-39D4-8E8E-9EBC76BF2E88> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff958e9000 -     0x7fff9592aff7  libGLU.dylib (12.0.34.11) <4145BA2F-CDCE-324E-8040-DB71AAD9E68D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff95ab0000 -     0x7fff95abcfff  libexslt.0.dylib (14) <66191A7E-1526-39F5-B80E-3F5E5FA03DC5> /usr/lib/libexslt.0.dylib
    0x7fff95abd000 -     0x7fff95b30fff  com.apple.framework.IOKit (2.0.2 - 1178) <67B82DF5-1F9C-330A-8C3E-5DD96EDCFBE1> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff95b3c000 -     0x7fff95b8efff  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <2EF854F0-3341-39B6-8408-C6ED1A3C49E5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff95ba5000 -     0x7fff95badff7  com.apple.CoreServices.FSEvents (1222 - 1222) <092EE5CC-E0CE-3A90-8CE5-6FD9CEE79999> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff95c2d000 -     0x7fff95cd8fff  com.apple.PDFKit (3.1 - 3.1) <F0E585D8-FF6C-3F5F-8890-BFF83E1A9336> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff95d41000 -     0x7fff95d4ffff  com.apple.ToneLibrary (1.0 - 1) <AAA96526-05BE-3A1A-A6C9-93851173DEF5> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff96086000 -     0x7fff96140fff  com.apple.DiscRecording (9.0 - 9000.4.2) <792B471C-64DA-3899-ACB0-AB07B7281877> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff96141000 -     0x7fff9616cff3  libarchive.2.dylib (32) <C0B8981D-B667-39E3-9618-6395BB67BBA2> /usr/lib/libarchive.2.dylib
    0x7fff961db000 -     0x7fff9639bfeb  libBLAS.dylib (1159) <D899CCE8-EAB6-3ED2-8FDD-70B0C986D79C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff963a0000 -     0x7fff9745afff  com.apple.WebCore (11601 - 11601.1.43) <EEB77511-A3E6-3D32-9915-5A0B4063A3AE> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff974c5000 -     0x7fff9770fff7  com.apple.AddressBook.framework (9.0 - 1672) <78055580-E6FE-389E-A2D5-F2BD94EA86CF> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff97718000 -     0x7fff9772dfff  com.apple.AppContainer (4.0 - 261) <A3DA182C-8129-3190-BB66-43362C7BBD8A> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff9772e000 -     0x7fff97730fff  libsystem_coreservices.dylib (19) <4CFA69E4-4305-31FA-BCAB-F10E8B949BDA> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff97796000 -     0x7fff9779bfff  libheimdal-asn1.dylib (451) <4EF3F765-EF99-3034-AE72-D9B4CC20E219> /usr/lib/libheimdal-asn1.dylib
    0x7fff9779c000 -     0x7fff977a2fff  com.apple.IOAccelerator (203.8.0 - 203.8.0) <A641C4C5-A07E-3254-8A7B-AA3C032591DA> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff977a3000 -     0x7fff97816fff  com.apple.Heimdal (4.0 - 2.0) <233C344D-A304-3715-A5AF-C33DA37E08E7> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff9783d000 -     0x7fff97840ffb  libdyld.dylib (360.11) <5D14D076-6D52-380D-97B5-48C664F363A4> /usr/lib/system/libdyld.dylib
    0x7fff978d8000 -     0x7fff9796dfff  com.apple.ink.framework (10.9 - 214) <83A7ADCC-758F-3A81-AF5C-8C01357C1364> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff97984000 -     0x7fff979d7fff  com.apple.ImageCaptureCore (7.0 - 7.0) <52155F82-7C1E-3627-9DE8-4D3C71DA6106> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff97a9a000 -     0x7fff97dd2ffb  com.apple.WebKit (11601 - 11601.1.43) <74500B2C-E693-37DE-894B-252248CE2627> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff97dd3000 -     0x7fff97dd9fff  com.apple.XPCService (2.0 - 1) <AB287431-AC0E-3192-92C9-D9B180EF2C08> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff97dda000 -     0x7fff97dddff7  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <E884DE21-1A24-329F-9D34-A6DA872AF2D2> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff97fd8000 -     0x7fff9825cfff  com.apple.RawCamera.bundle (6.14 - 812) <C7A3EE6E-090F-3198-A890-0730684CCE93> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff9826d000 -     0x7fff98282fff  com.apple.ToneKit (1.0 - 1) <0CA7A303-FA76-33F9-BF08-19C49E99F894> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff98283000 -     0x7fff98283fff  com.apple.Carbon (154 - 157) <E6AA87EE-3331-34DE-A007-7FE76E5CAB2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff98284000 -     0x7fff98284fff  com.apple.IOPlatformPluginFamily (1.0 - 1) <159AEE23-5EAC-3954-B579-80B2E7C34A92> /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/IOPlatformPluginFamily
    0x7fff98285000 -     0x7fff98323fff  com.apple.ViewBridge (149 - 149) <2144EFC7-0399-3942-9AA5-49651B2B7CD3> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff98324000 -     0x7fff98357fff  com.apple.MediaKit (16 - 804) <35598158-4B1B-3201-8DE5-03EF547581E4> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff9835f000 -     0x7fff9838cffb  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <C83D84ED-742F-3B38-B3F4-5549D77A8E98> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff9838d000 -     0x7fff983b0ff7  com.apple.speech.LatentSemanticMappingFramework (2.12.1 - 2.12.1) <0B0EE018-36DD-3FBA-B13B-996EE5451B50> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
    0x7fff983b1000 -     0x7fff983bafff  com.apple.CommonAuth (4.0 - 2.0) <E139102B-3DEC-395D-A65A-971AC13A0AFA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff983bb000 -     0x7fff983befff  libCoreVMClient.dylib (119.2) <51967416-01C8-30EB-8726-819F44F088C9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff983bf000 -     0x7fff9873afff  com.apple.VideoToolbox (1.0 - 1731) <598A7193-1ACB-3060-A5D4-D63712CF22AB> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff9873b000 -     0x7fff98747fff  com.apple.HelpData (2.1.4 - 90) <7CD444E6-AB42-320D-8B94-161C53AD676A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff98748000 -     0x7fff9875ffff  com.apple.ScriptingBridge (1.3.3 - 68) <40532886-F55F-37F6-B4C3-EA23E4373A74> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x7fff987fd000 -     0x7fff98825fff  com.apple.GLKit (1.0 - 55) <A8E64AC3-2B5A-33F8-AFC4-FD3F9F4EBC64> /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit
    0x7fff98826000 -     0x7fff9883fffb  com.apple.openscripting (1.7 - 169) <6950C519-2D78-3F3D-9B08-489E06B82BA0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff98840000 -     0x7fff98865fff  libPng.dylib (1426) <89E7622D-6EF4-3D11-9B11-D87A2B3237C3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff9886f000 -     0x7fff9892bfcf  com.apple.PackageKit (3.0 - 538) <EAFEE8AF-1C30-3E0A-8AD9-8C03A67E95BC> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff989ea000 -     0x7fff989f5ff7  libcommonCrypto.dylib (60074) <7EBC49B8-64E5-34C9-B6C8-633171747B0B> /usr/lib/system/libcommonCrypto.dylib
    0x7fff989fd000 -     0x7fff989ffff7  com.apple.SecCodeWrapper (4.0 - 261) <DD9DDE59-C232-3488-9F7D-00DB7F73FE3B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff98a00000 -     0x7fff98a08fff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <E1DB6329-C1CA-39F9-8512-823DA03DC011> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff98a09000 -     0x7fff98d5cff7  com.apple.Foundation (6.9 - 1229) <064BB222-4124-33AA-8280-EFB1BD455368> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff98d5d000 -     0x7fff98e57fff  libFontParser.dylib (156) <70AA677A-9285-3E8B-B338-C2A597621ABB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff98ea4000 -     0x7fff98ef9fff  com.apple.AE (699 - 699) <433D20F9-AA3C-3E65-BB5D-A9D66FD4FE09> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff98efa000 -     0x7fff98f13fff  com.apple.CFOpenDirectory (10.11 - 194) <EB740F48-A71F-38EE-ABF9-80074D3FD5C1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff98f18000 -     0x7fff98f1afff  libCGXType.A.dylib (921.1) <C532740B-BA59-3415-8EC0-2D2944F74A3E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff98f1b000 -     0x7fff9900afff  libxml2.2.dylib (29) <312693FA-18B9-3351-A9A2-B080680E6E1B> /usr/lib/libxml2.2.dylib
    0x7fff9900b000 -     0x7fff99016fff  libGL.dylib (12.0.34.11) <5991B15F-E777-3958-BD2E-4EB2311C6942> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

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

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

                                  VIRTUAL   REGION 
REGION TYPE                          SIZE    COUNT (non-coalesced) 
===========                       =======  ======= 
Accelerate.framework                 256K        3 
Activity Tracing                    2048K        2 
CG backing stores                   5784K        5 
CG image                            16.6M       78 
CG shared images                     304K        9 
CoreAnimation                       17.3M      133 
CoreData Object IDs                 4100K        3 
CoreUI image data                   1936K       24 
CoreUI image file                    320K        5 
Dispatch continuations              8192K        2 
Foundation                            48K        7 
Image IO                            16.1M       28 
JS JIT generated code              128.0M        5 
JS JIT generated code (reserved)   896.0M        2         reserved VM address space (unallocated)
Kernel Alloc Once                      8K        3 
MALLOC                             344.6M      120 
MALLOC guard page                     32K        7 
MALLOC_LARGE (reserved)              160K        2         reserved VM address space (unallocated)
Memory Tag 242                        12K        2 
Memory Tag 251                        16K        2 
OpenCL                                24K        5 
Process Corpse Info                 2048K        2 
SQLite page cache                   1536K       11 
STACK GUARD                         56.1M       26 
Stack                               19.8M       28 
VM_ALLOCATE                          100K       17 
WebKit Malloc                       8564K       30 
__DATA                              54.2M      487 
__IMAGE                              528K        2 
__LINKEDIT                         131.7M      169 
__TEXT                             386.1M      478 
__UNICODE                            552K        2 
mapped file                        230.8M      212 
shared memory                       16.3M       12 
===========                       =======  ======= 
TOTAL                                2.3G     1889 
TOTAL, minus reserved VM space       1.4G     1889 

Scroll bar on other side of minimap?

In your screens shots, it appears that the scroll bar is on the right side of the minimap. In my version (from alcatraz), the scroll bar is on the left side:
screen shot 2014-04-08 at 12 44 50 pm 2

Is there any option to change it?

overlaped minimap views

screen shot 2014-11-24 at 1 04 40 pm

many minimap views are overlaped in .m files.
.h files are ok.

xcode 6.1, os x 10.10.1, MacBook Pro (Retina, 15-inch, Mid 2014)

Dragging Offset

Unless you click and start dragging in the center of the shaded area, it jumps to center because the dragging offset is not accounted for. This makes fine-tuning adjustments difficult and fussy. Please account for the dragging offset when dragging starts.

( That said, GREAT plugin, by the way. :-) )

Slows down coding

There is definitely a performance drop in the text editor with this plugin enabled. Typing out text becoming very laggy.

XCode 5 Gold Master

The new final version of XCode 5 does not load the plugin.

I found a solution to make it work again, just add the string 63FC1C47-140D-42B0-BB4D-A10B2D225574 to the DVTPlugInCompatibilityUUIDs key in the file SCXcodeMinimap-Info.plist

XCode version editor (comparison) lost previous focus and scrolls to the top

In XCode 6.3.2, MiniMap installed from Alcatraz

Given there are previous focus lines in some source files, and no matter the MiniMap shows or hide,
When every time I switch from the Standard/Assistant editor to Version editor (Comparison mode), or switch between these source files with Version editor (Comparison mode),
Then the previous focus line of the current file will be lost, and both revision windows of the Version editor will scroll to the top.

Further crashes in XCode 5

Apparently the fix in #16 was not enough, as XCode 5 still crashes quite frequently, but now memory issues seem to be the problem and I really don't know where to start fixing that

What mostly happens is a EXC_BAD_ACCESS in SCXCodeMinimap.m in line 100 when accessing miniMapView.

I have no particular steps to reproduce this problem right now (it seems to appear somewhat randomly) but common sources of problems are

  1. Working with Interface Builder and an open Assistant Editor with a counterpart file. Especially when drawing connections between the two
  2. Refactoring across multiple Documents
  3. Other plugins that change your code (e.g. BBUncrustifyPlugin)

Work better with custom fonts

On my Air (10.8.3, Xcode 4.6.2), custom fonts besides the default ones like Menlo translate poorly into the minimap. The resolution ends up being very low. This does not happen on my Mini (same versions). May be worth a look. I can provide screenshot as needed.

Scrollbar has default styling when display is extended.

When Xcode is open on a machine with single display, it is styled in the same colour as the editor.

However, when my display is extend to a second monitor, the scrollbar takes on a grey background and fails to blend with the editor. Once the display is extended, anywhere the editor is placed, it will continue to have a scrollbar with a grey background.

I am experiencing this issue on Xcode5 on Mavericks.

Add option to disable scrolling of the minimap

Hi, can you please add the option to avoid scrolling the minimap? Instead show the entire file fully in the minimap. This scrolling is not only distracting but gives completely wrong feedback when clicking in the minimap to go to specific locations. Because of the scrolling the area of interest goes out of view or at least moves up or down - but always away form the cursor. I recommend to have a look at the same feature in Visual Studio. There's it's really well done.

Causes scroll position to jump unexpectedly

I really like and appreciate your work on this plugin! But I have an issue that may force me to uninstall it.

While switching between previous/next documents, it seems like the plugin will cause the scroll position to jump unexpectedly, so I'm no longer looking at the same section when I return to a given file. Seems to be exacerbated by changes in the editor window height, i.e. due to hiding/revealing the console.

This same issue is easiest to reproduce by doing a global search, aside from any changes to editor heigh. Clicking on search results will sometimes bring you to the wrong scroll position in the target file; clicking again corrects this. Seems to happen most with longer code files, 300 lines+.

Improve speed

Just a heads up, on longer files, it blocks the main thread takes quite a bit of time to construct. I'll have to uninstall it for now, I'm getting 10-20 second wait times switching between files on old legacy code. Otherwise, great work, this is awesome!

Xcode preference "Show live issues" gets jammed

I had Xcode 5.1.1 and Xcode 6.1 coexist on my laptop with SCXcodeMiniMap installed from Alcatraz and everything works fine.
After I upgrade the latter to Xcode 6.2, I can't get live issues and errors on both version even if I reinstall both or clear all DerivedData for re-indexing.
I have to remove SCXcodeMiniMap for a while.

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.