Code Monkey home page Code Monkey logo

hermes's Introduction

Hermes

Build Status

A Pandora client for macOS.

THIS PROJECT IS UNMAINTAINED

This means that bugs will not be fixed and features will not be added unless someone else does so. Unfortunately, the former maintainers no longer have the time and/or resources to work on Hermes further.

If you're interested in fixing up Hermes, please reply to this GitHub issue (237).

Download Hermes

If you would like to compile Hermes, continue reading.

Develop against Hermes

Thanks to the suggestions by blalor, there's a few ways you can develop against Hermes if you really want to.

  1. NSDistributedNotificationCenter - Every time a new song plays, a notification is posted with the name hermes.song under the object hermes with userInfo as a dictionary representing the song being played. See Song.m for the keys available to you.

  2. AppleScript - here's an example script:

     tell application "Hermes"
       play          -- resumes playback, does nothing if playing
       pause         -- pauses playback, does nothing if not playing
       playpause     -- toggles playback between pause/play
       next song     -- goes to the next song
       get playback state
       set playback state to playing
    
       thumbs up     -- likes the current song
       thumbs down   -- dislikes the current song, going to another one
       tired of song -- sets the current song as being "tired of"
    
       raise volume  -- raises the volume partially
       lower volume  -- lowers the volume partially
       full volume   -- raises volume to max
       mute          -- mutes the volume
       unmute        -- unmutes the volume to the last state from mute
    
       -- integer 0 to 100 for the volume
       get playback volume
       set playback volume to 92
    
       -- Working with the current station
       set stationName to the current station's name
       set stationId to station 2's stationId
       set the current station to station 4
    
       -- Getting information from the current song
       set title to the current song's title
       set artist to the current song's artist
       set album to the current song's album
       ... etc
     end tell
    

Want something new/fixed?

  1. Open a ticket! We'll get around to it soon, especially if it sounds appealing to us. We take all suggestions/feedback!

  2. Take a stab at it yourself if you're brave. Just send us a pull request if you've got something fixed. Here's some common things to do at the command line:

     make        # build everything
     make run    # build and run the application (logging to stdout)
     make dbg    # build and run inside LLDB
    
     # Build with the 'Release' configuration instead of 'Debug'
     make CONFIGURATION=Release [run|dbg]
    

    Please note that Media Key shortcuts will not work if compiled with CONFIGURATION=Debug (the default).

License

Code is available under the MIT License.

hermes's People

Contributors

aahung avatar alexcrichton avatar dlh avatar dwaite avatar elemongw avatar ericmason avatar grimreaper avatar jmjones88 avatar kirb avatar nriley avatar obycode avatar paullj1 avatar reedloden avatar sheyne avatar terinjokes avatar tresni avatar vadimpanin avatar viveksjain avatar winny- avatar yerke avatar zachhowe 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

hermes's Issues

Pandora JSON API

Just opening this as a placeholder. Pianobar is switching to the JSON api as it's figured there will be less chance for breakage there due to its use in embedded device. JSON API documentation has been started by PromyLOPh. Also the big set of commit changes from the merge into Pianobar master is pretty easy reading.

Pianobar now has a dependency on gcrypt due to use of blowfish encryption. MulleCipher appears to be an Objective-C implementation of BlowFish and might serve the purpose. Drawback is that it hasn't been updated since 2002 so not sure how nice it'll play with new XCode, ARC, etc. Haven't looked at the code at all. Could just use gcrypt...

Proxy Support

If you can add HTTP or SOCKS proxy support it would be great, especially for those of us living outside of US.

Crash

Got an interesting crash today...I'm not sure what caused it but it happened when Hermes was moving from one song to another. Console message at http://d.pr/n/XEzV.

After deleting station, stations can not be edited

  1. Select a station
  2. Delete it
  3. Hermes automatically selects the next station in the list
  4. Click the cog button to edit the station, nada
  5. Click another station in the list
  6. Click the cog button to edit the station, nada

This fails for me using 1.1.1 on Lion. Reload of stations does not fix. Looks like you have to quit/restart Hermes to edit stations after deleting one.

AppleScript "thumbs up" is translating to "tired of song"

Noticed this happening with 1.0.18 (not sure when it was introduced.) Anyway, if you open Apple Script editor and input the following and hit compile you should notice something odd.

tell application "Hermes" to thumbs up

On compile it becomes:

tell application "Hermes" to tired of song

Cannot use since a few days before...:(

Dunno why, but now it shows an error message: An error has occurred with Pandora. INCOMPATIBLE_VERSION.
Pleaseee fix this problem, your hermes is definitely the best Pandora client ever.
Thanks in advance!

The new 1.0.22 crashs when I clicked the skipping track button...

Here is the report, I'm using snow leopard 10.6.8:

Process: Hermes [3529]
Path: /Applications/Magical Music/Hermes.app/Contents/MacOS/Hermes
Identifier: com.alexcrichton.Hermes
Version: 1.0.22 (220)
Code Type: X86-64 (Native)
Parent Process: launchd [92]

Date/Time: 2012-05-02 11:50:55.690 +0800
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 3 Dispatch queue: com.apple.root.default-priority

Application Specific Information:
abort() called
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unlocking Focus on wrong view (<NSProgressIndicator: 0x101843d50>), expected <NSView: 0x1018317d0>'
*** Call stack at first throw:
(
0 CoreFoundation 0x00007fff83869784 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x00007fff872eff03 objc_exception_throw + 45
2 CoreFoundation 0x00007fff838695a7 +[NSException raise:format:arguments:] + 103
3 CoreFoundation 0x00007fff83869534 +[NSException raise:format:] + 148
4 AppKit 0x00007fff8848b3b9 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 2465
5 AppKit 0x00007fff88575c2e -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 1230
6 QuartzCore 0x00007fff857ce910 CABackingStoreUpdate + 2427
7 QuartzCore 0x00007fff857cdbaf -[CALayer _display] + 837
8 AppKit 0x00007fff885673bd -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 139
9 AppKit 0x00007fff885674ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
10 AppKit 0x00007fff885674ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
11 AppKit 0x00007fff885670f1 -[NSView(NSLayerKitGlue) _drawRectAsLayerTree:] + 154
12 AppKit 0x00007fff8840201f -[NSView _drawRect:clip:] + 152
13 AppKit 0x00007fff889edb8f -[_NSViewDrawOperation main] + 271
14 Foundation 0x00007fff8990edd0 -[__NSOperationInternal start] + 681
15 Foundation 0x00007fff899ecbd5 ____NSOQSchedule_block_invoke_2 + 129
16 libSystem.B.dylib 0x00007fff812e0d64 _dispatch_call_block_and_release + 15
17 libSystem.B.dylib 0x00007fff812bf2d1 _dispatch_worker_thread2 + 239
18 libSystem.B.dylib 0x00007fff812bec08 _pthread_wqthread + 353
19 libSystem.B.dylib 0x00007fff812beaa5 start_wqthread + 13
)

Thread 0: Dispatch queue: com.apple.main-thread
0 libSystem.B.dylib 0x00007fff812dfa6a __semwait_signal + 10
1 libSystem.B.dylib 0x00007fff812e3881 _pthread_cond_wait + 1286
2 com.apple.Foundation 0x00007fff8991e844 -[__NSOperationInternal waitUntilFinished] + 56
3 com.apple.Foundation 0x00007fff8991e7f2 -[NSOperation waitUntilFinished] + 83
4 com.apple.Foundation 0x00007fff8991e62a -[NSOperationQueue waitUntilAllOperationsAreFinished] + 233
5 com.apple.AppKit 0x00007fff883fc3f6 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2707
6 com.apple.AppKit 0x00007fff88375c0e -[NSView displayIfNeeded] + 969
7 com.apple.AppKit 0x00007fff88370aba _handleWindowNeedsDisplay + 678
8 com.apple.CoreFoundation 0x00007fff83828b07 __CFRunLoopDoObservers + 519
9 com.apple.CoreFoundation 0x00007fff83804434 __CFRunLoopRun + 468
10 com.apple.CoreFoundation 0x00007fff83803d8f CFRunLoopRunSpecific + 575
11 com.apple.HIToolbox 0x00007fff822007ee RunCurrentEventLoopInMode + 333
12 com.apple.HIToolbox 0x00007fff82200551 ReceiveNextEventCommon + 148
13 com.apple.HIToolbox 0x00007fff822004ac BlockUntilNextEventMatchingListInMode + 59
14 com.apple.AppKit 0x00007fff88345eb2 _DPSNextEvent + 708
15 com.apple.AppKit 0x00007fff88345801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
16 com.apple.AppKit 0x00007fff8830b68f -[NSApplication run] + 395
17 com.apple.AppKit 0x00007fff883043b0 NSApplicationMain + 364
18 com.alexcrichton.Hermes 0x00000001000016d4 0x100000000 + 5844

Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x00007fff812bdc0a kevent + 10
1 libSystem.B.dylib 0x00007fff812bfadd _dispatch_mgr_invoke + 154
2 libSystem.B.dylib 0x00007fff812bf7b4 _dispatch_queue_invoke + 185
3 libSystem.B.dylib 0x00007fff812bf2de _dispatch_worker_thread2 + 252
4 libSystem.B.dylib 0x00007fff812bec08 _pthread_wqthread + 353
5 libSystem.B.dylib 0x00007fff812beaa5 start_wqthread + 13

Thread 2: Dispatch queue: com.apple.root.default-priority
0 libSystem.B.dylib 0x00007fff812a4dc2 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x00007fff812aa40d pthread_mutex_lock + 469
2 com.apple.Foundation 0x00007fff898e69ab -[NSLock lock] + 175
3 com.apple.AppKit 0x00007fff8849741b __-[NSUIHeartBeat updateHeartBeatState]_block_invoke_2 + 47
4 com.apple.Foundation 0x00007fff8991e90d -[NSBlockOperation main] + 159
5 com.apple.Foundation 0x00007fff8990edd0 -[__NSOperationInternal start] + 681
6 com.apple.Foundation 0x00007fff899ecbd5 ____NSOQSchedule_block_invoke_2 + 129
7 libSystem.B.dylib 0x00007fff812e0d64 _dispatch_call_block_and_release + 15
8 libSystem.B.dylib 0x00007fff812bf2d1 _dispatch_worker_thread2 + 239
9 libSystem.B.dylib 0x00007fff812bec08 _pthread_wqthread + 353
10 libSystem.B.dylib 0x00007fff812beaa5 start_wqthread + 13

Thread 3 Crashed: Dispatch queue: com.apple.root.default-priority
0 libSystem.B.dylib 0x00007fff813179ce __semwait_signal_nocancel + 10
1 libSystem.B.dylib 0x00007fff813178d0 nanosleep$NOCANCEL + 129
2 libSystem.B.dylib 0x00007fff813743ce usleep$NOCANCEL + 57
3 libSystem.B.dylib 0x00007fff81393a00 abort + 93
4 libstdc++.6.dylib 0x00007fff866095d2 __tcf_0 + 0
5 libobjc.A.dylib 0x00007fff872f3b39 objc_terminate + 100
6 libstdc++.6.dylib 0x00007fff86607ae1 __cxxabiv1::__terminate(void (
)()) + 11
7 libstdc++.6.dylib 0x00007fff86607b16 __cxxabiv1::__unexpected(void (_)()) + 0
8 libstdc++.6.dylib 0x00007fff86607bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
9 libobjc.A.dylib 0x00007fff872effa2 object_getIvar + 0
10 com.apple.CoreFoundation 0x00007fff838c1969 -[NSException raise] + 9
11 com.apple.AppKit 0x00007fff88575cc6 -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 1382
12 com.apple.QuartzCore 0x00007fff857ce910 CABackingStoreUpdate + 2427
13 com.apple.QuartzCore 0x00007fff857cdbaf -[CALayer _display] + 837
14 com.apple.AppKit 0x00007fff885673bd -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 139
15 com.apple.AppKit 0x00007fff885674ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
16 com.apple.AppKit 0x00007fff885674ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
17 com.apple.AppKit 0x00007fff885670f1 -[NSView(NSLayerKitGlue) _drawRectAsLayerTree:] + 154
18 com.apple.AppKit 0x00007fff8840201f -[NSView _drawRect:clip:] + 152
19 com.apple.AppKit 0x00007fff889edb8f -[_NSViewDrawOperation main] + 271
20 com.apple.Foundation 0x00007fff8990edd0 -[__NSOperationInternal start] + 681
21 com.apple.Foundation 0x00007fff899ecbd5 ____NSOQSchedule_block_invoke_2 + 129
22 libSystem.B.dylib 0x00007fff812e0d64 _dispatch_call_block_and_release + 15
23 libSystem.B.dylib 0x00007fff812bf2d1 _dispatch_worker_thread2 + 239
24 libSystem.B.dylib 0x00007fff812bec08 _pthread_wqthread + 353
25 libSystem.B.dylib 0x00007fff812beaa5 start_wqthread + 13

Thread 4:
0 libSystem.B.dylib 0x00007fff812a4dda semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x00007fff812e3772 _pthread_cond_wait + 1015
2 com.apple.CoreVideo 0x00007fff8353cde6 CVDisplayLink::waitUntil(unsigned long long) + 252
3 com.apple.CoreVideo 0x00007fff8353c2a2 CVDisplayLink::runIOThread() + 644
4 com.apple.CoreVideo 0x00007fff8353bfe3 startIOThread(void*) + 139
5 libSystem.B.dylib 0x00007fff812ddfd6 _pthread_start + 331
6 libSystem.B.dylib 0x00007fff812dde89 thread_start + 13

Thread 5:
0 libSystem.B.dylib 0x00007fff812bea2a __workq_kernreturn + 10
1 libSystem.B.dylib 0x00007fff812bee3c _pthread_wqthread + 917
2 libSystem.B.dylib 0x00007fff812beaa5 start_wqthread + 13

Thread 6:
0 libSystem.B.dylib 0x00007fff812a4d7a mach_msg_trap + 10
1 libSystem.B.dylib 0x00007fff812a53ed mach_msg + 59
2 com.apple.CoreFoundation 0x00007fff83804902 CFRunLoopRun + 1698
3 com.apple.CoreFoundation 0x00007fff83803d8f CFRunLoopRunSpecific + 575
4 com.apple.Foundation 0x00007fff8996514f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
5 com.apple.Foundation 0x00007fff898e6114 __NSThread__main
+ 1429
6 libSystem.B.dylib 0x00007fff812ddfd6 _pthread_start + 331
7 libSystem.B.dylib 0x00007fff812dde89 thread_start + 13

Thread 7: com.apple.CFSocket.private
0 libSystem.B.dylib 0x00007fff812e8932 select$DARWIN_EXTSN + 10
1 com.apple.CoreFoundation 0x00007fff83826468 __CFSocketManager + 824
2 libSystem.B.dylib 0x00007fff812ddfd6 _pthread_start + 331
3 libSystem.B.dylib 0x00007fff812dde89 thread_start + 13

Thread 8:
0 libSystem.B.dylib 0x00007fff812bea2a __workq_kernreturn + 10
1 libSystem.B.dylib 0x00007fff812bee3c _pthread_wqthread + 917
2 libSystem.B.dylib 0x00007fff812beaa5 start_wqthread + 13

Thread 9:
0 libSystem.B.dylib 0x00007fff812a4d7a mach_msg_trap + 10
1 libSystem.B.dylib 0x00007fff812a53ed mach_msg + 59
2 ....audio_hijack_server.hermes 0x000000010028b0d6 ah_serv_loop + 118
3 libSystem.B.dylib 0x00007fff812ddfd6 _pthread_start + 331
4 libSystem.B.dylib 0x00007fff812dde89 thread_start + 13

Thread 10:
0 libSystem.B.dylib 0x00007fff812dfa6a semwait_signal + 10
1 libSystem.B.dylib 0x00007fff812df8f9 nanosleep + 148
2 libSystem.B.dylib 0x00007fff812df863 usleep + 57
3 com.apple.AppKit 0x00007fff884913a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
4 com.apple.Foundation 0x00007fff898e6114 __NSThread__main
+ 1429
5 libSystem.B.dylib 0x00007fff812ddfd6 _pthread_start + 331
6 libSystem.B.dylib 0x00007fff812dde89 thread_start + 13

Thread 11:
0 libSystem.B.dylib 0x00007fff812a4d7a mach_msg_trap + 10
1 libSystem.B.dylib 0x00007fff812a53ed mach_msg + 59
2 com.apple.CoreFoundation 0x00007fff83804902 CFRunLoopRun + 1698
3 com.apple.CoreFoundation 0x00007fff83803d8f CFRunLoopRunSpecific + 575
4 com.apple.Foundation 0x00007fff89920b74 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
5 com.alexcrichton.Hermes 0x0000000100017509 0x100000000 + 95497
6 com.apple.Foundation 0x00007fff898e6114 __NSThread__main
+ 1429
7 libSystem.B.dylib 0x00007fff812ddfd6 _pthread_start + 331
8 libSystem.B.dylib 0x00007fff812dde89 thread_start + 13

Thread 3 crashed with X86 Thread State (64-bit):
rax: 0x000000000000003c rbx: 0x00000001137f81a0 rcx: 0x00000001137f8158 rdx: 0x0000000000000001
rdi: 0x0000000000000c03 rsi: 0x0000000000000000 rbp: 0x00000001137f8190 rsp: 0x00000001137f8158
r8: 0x0000000000000000 r9: 0x0000000000989680 r10: 0x0000000000000001 r11: 0x0000000000000246
r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000101893c90 r15: 0x0000000000000020
rip: 0x00007fff813179ce rfl: 0x0000000000000247 cr2: 0x00000001011e7fd8

Binary Images:
0x100000000 - 0x100028fff +com.alexcrichton.Hermes 1.0.22 (220) /Applications/Magical Music/Hermes.app/Contents/MacOS/Hermes
0x10004a000 - 0x100079fff +com.growl.growlframework 1.3.1 (1.3.1) <81F2E452-20C8-3F2D-94B2-B58FA5DE1ECE> /Applications/Magical Music/Hermes.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
0x1000a0000 - 0x1000b7fff +org.andymatuschak.Sparkle 1.5 Beta 6 (313) <7D298003-0E13-7E27-8237-9C0E1D621133> /Applications/Magical Music/Hermes.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
0x1000d0000 - 0x1001b6fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
0x100240000 - 0x10024ffe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <50541300-118F-BE28-86DB-0F42738A9338> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
0x100286000 - 0x100293ff7 +com.rogueamoeba.audio_hijack_server.hermes 4.1.0 (4.1.0) <433F809A-A350-3DC8-21C5-1F94D356C6C3> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
0x1139cd000 - 0x113b60fe7 GLEngine ??? (???) /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x113b91000 - 0x113fb4fef libclh.dylib 3.1.1 C (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
0x114038000 - 0x11405efff GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0x115add000 - 0x115ae0ff7 +net.culater.SIMBL.osax 0.9.9.1 (0.9.9.1) <0319B449-028F-C6A9-9F4B-8C8D1742C3A9> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
0x115d65000 - 0x115d84ff7 +net.infinite-labs.Afloat 2.4 (2.4) /Users/auess/Library/Application Support/SIMBL/Plugins/Afloat.bundle/Contents/MacOS/Afloat
0x1166c5000 - 0x1166c9fff com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
0x1166ce000 - 0x1166d4ff7 com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x1166d9000 - 0x1166defff +com.Bongiovi.iTunesPlugIn ??? (2.3.1) <7E38D002-0654-9CAE-BB8E-165A6B8B5FFB> /Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea
0x1166e9000 - 0x11670efef +com.prosofteng.hear.plugin 1.1.3 (831) <1764BCDA-35FF-3A80-36AD-FF0CC20216EF> /Library/Audio/Plug-Ins/HAL/Hear.plugin/Contents/MacOS/Hear
0x116721000 - 0x116726fff +com.srslabs.iwow ??? (3.3.1) <7E38D002-0654-9CAE-BB8E-165A6B8B5FFB> /Library/Audio/Plug-Ins/HAL/iWow.plugin/Contents/MacOS/iTea
0x1167a4000 - 0x11686ffef com.apple.audio.units.Components 1.6.5 (1.6.5) <7786F079-E0CE-39BC-0CE9-EAE1097AF851> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x116eaf000 - 0x1170a1ff7 com.apple.audio.codecs.Components 2.0.4 (2.0.4) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
0x200000000 - 0x200787fe7 com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) /usr/lib/dyld
0x7fff80003000 - 0x7fff80006fff com.apple.help 1.3.2 (41.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff8011e000 - 0x7fff801befff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff80222000 - 0x7fff8024dff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
0x7fff803ef000 - 0x7fff80436ff7 com.apple.coreui 2 (114) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff804b3000 - 0x7fff804b3ff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff804b4000 - 0x7fff804c1fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x7fff80c58000 - 0x7fff80c5efff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x7fff80c5f000 - 0x7fff80c64fff libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff80c65000 - 0x7fff80d9afff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff80d9b000 - 0x7fff80deaff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x7fff80deb000 - 0x7fff80df9ff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
0x7fff80e2a000 - 0x7fff80e68fe7 libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff80e69000 - 0x7fff80e7eff7 com.apple.LangAnalysis 1.6.6 (1.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff80ea9000 - 0x7fff80eadff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
0x7fff80f30000 - 0x7fff80f37fff com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff810ae000 - 0x7fff810effef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff810f0000 - 0x7fff81145ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff811c2000 - 0x7fff811c5ff7 libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff81259000 - 0x7fff812a3ff7 com.apple.Metadata 10.6.3 (507.15) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff812a4000 - 0x7fff81465fef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
0x7fff81466000 - 0x7fff81942fef com.apple.RawCamera.bundle 3.12.0 (614) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff8195f000 - 0x7fff81b1dff7 com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff81b30000 - 0x7fff81b30ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff81b81000 - 0x7fff81b85ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff81c4c000 - 0x7fff81cacfe7 com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff81cad000 - 0x7fff81cbcfff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff81cbd000 - 0x7fff81cc0ff7 com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff81cc1000 - 0x7fff81cf4ff7 libTrueTypeScaler.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff81dda000 - 0x7fff81dfbfff libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
0x7fff81dfc000 - 0x7fff81e37fff com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff81e59000 - 0x7fff81e93fff libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
0x7fff82013000 - 0x7fff821d1fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
0x7fff821d2000 - 0x7fff824d0fff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff824d1000 - 0x7fff8350bfff com.apple.WebCore 6534 (6534.50) <8B0BB24A-C84C-A4F2-5544-C8071A35BBC5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff8350c000 - 0x7fff83522fef libbsm.0.dylib ??? (???) <37BFB2A4-EBD3-ACBB-89F2-3C158B262A72> /usr/lib/libbsm.0.dylib
0x7fff83523000 - 0x7fff83524ff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff83525000 - 0x7fff83539ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff8353a000 - 0x7fff8355fff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff836a0000 - 0x7fff837b7fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
0x7fff837b8000 - 0x7fff8392ffe7 com.apple.CoreFoundation 6.6.6 (550.44) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff8398a000 - 0x7fff8398fff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff83d66000 - 0x7fff83d68fff libRadiance.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff83d69000 - 0x7fff83d9afff libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff83d9b000 - 0x7fff83de7fff libauto.dylib ??? (???) /usr/lib/libauto.dylib
0x7fff83de8000 - 0x7fff83deeff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff83def000 - 0x7fff83e3efef libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff83e3f000 - 0x7fff83e4aff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff83e4b000 - 0x7fff83f30fef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff83f62000 - 0x7fff83fe1fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff83fe2000 - 0x7fff84005fff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff84006000 - 0x7fff84015fef com.apple.opengl 1.6.14 (1.6.14) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8410f000 - 0x7fff8410fff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff841c8000 - 0x7fff841c9ff7 com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff841ca000 - 0x7fff841e5ff7 com.apple.openscripting 1.3.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff841e6000 - 0x7fff84324fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8433f000 - 0x7fff84356fff com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff843c4000 - 0x7fff843caff7 IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff843cb000 - 0x7fff843dcff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) /usr/lib/libz.1.dylib
0x7fff8444f000 - 0x7fff8444fff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff84450000 - 0x7fff84450ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff84451000 - 0x7fff84501fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff84c98000 - 0x7fff84fccfef com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff84fcd000 - 0x7fff84fcefff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib
0x7fff8528d000 - 0x7fff8534efef com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff85391000 - 0x7fff8540fff7 com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff85781000 - 0x7fff85b1efe7 com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff85bcc000 - 0x7fff85c8efe7 libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff85e72000 - 0x7fff85f02fff com.apple.SearchKit 1.3.0 (1.3.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff85f03000 - 0x7fff85fc0fff com.apple.CoreServices.OSServices 359.2 (359.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff86053000 - 0x7fff862ddfe7 com.apple.security 6.1.2 (55002) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff862de000 - 0x7fff862deff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff862df000 - 0x7fff862ffff7 com.apple.DirectoryService.Framework 3.6 (621.11) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff863cc000 - 0x7fff86568fff com.apple.WebKit 6534 (6534.50) <05AEA122-3F31-0F56-4AA6-E84140C53785> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff86569000 - 0x7fff8657dfff libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff865bd000 - 0x7fff8663afef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
0x7fff8663b000 - 0x7fff86755fff libGLProgrammability.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff86756000 - 0x7fff8677efff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff868eb000 - 0x7fff86a0afe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
0x7fff86a0b000 - 0x7fff86a97fef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff86ade000 - 0x7fff86adeff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff86adf000 - 0x7fff86b98fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
0x7fff86c21000 - 0x7fff86c48ff7 libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff86c49000 - 0x7fff86c92fef libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff86c93000 - 0x7fff870d7fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff870d8000 - 0x7fff872e5ff7 com.apple.JavaScriptCore 6534 (6534.49) <1D418EF7-CDBE-3832-0157-D853073948D0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff872e6000 - 0x7fff8739cff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
0x7fff8739d000 - 0x7fff87a99ff7 com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff87ae4000 - 0x7fff87b4efe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <514D400C-50A5-C196-83AA-1035DDC8FBBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff87b8a000 - 0x7fff87c24fff com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff87c25000 - 0x7fff87c6dff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff87c6e000 - 0x7fff87c80fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
0x7fff88092000 - 0x7fff880d3fff com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff880d4000 - 0x7fff881b1fff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff881be000 - 0x7fff88292fe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff882be000 - 0x7fff88301ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff88302000 - 0x7fff88cfcff7 com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff88cff000 - 0x7fff88d1cff7 libPng.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff88d1d000 - 0x7fff88da2ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff88da3000 - 0x7fff88dbcfff com.apple.CFOpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff88dbd000 - 0x7fff895c7fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff89612000 - 0x7fff89665ff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff89666000 - 0x7fff8967cfe7 com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8967d000 - 0x7fff89682fff libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8985e000 - 0x7fff89860fff com.apple.print.framework.Print 6.1 (237.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff898ce000 - 0x7fff898d4ff7 com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff898d5000 - 0x7fff89b57fff com.apple.Foundation 6.6.8 (751.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff89b5b000 - 0x7fff89c10fe7 com.apple.ink.framework 1.3.3 (107) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

Log tracks to Last.fm

I use Pianobar now and have it configured log each track to my Last.fm account. Hermes is way better but I'd still like to log each track to Last.fm.

update fails due to signature check

My install of Hermes just asked to be updated to 1.0.4. When I click Install Update it downloads, but then says "The update is improperly signed." and the only button is Cancel Update.

broken with "INCOMPATIBLE_VERSION"?

Hi,

I downloaded Hermes yesterday, Sep 21, and it worked great for several hours during the day. Later last night I tried to use it again and got this error:

"An error has occurred with Pandora."
(exclamation point symbol)
"INCOMPATIBLE_VERSION"

I got the same error this morning. I'm wondering if Pandora broke Hermes with a change?

Thanks,
Jamie

Crash skipping track

Got a crash when skipping a track, using the button in the toolbar.

Crash reporter log

syslog output:

Tue Nov 22 09:49:52 BOS75ML-4U0AAGU Hermes[16923] <Error>: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unlocking Focus on wrong view (<NSProgressIndicator: 0x100627cd0>), expected <NSView: 0x1006150c0>'\n*** Call stack at first throw:\n(\n\t0   CoreFoundation                      0x00007fff83a43784 __exceptionPreprocess + 180\n\t1   libobjc.A.dylib                     0x00007fff8828df03 objc_exception_throw + 45\n\t2   CoreFoundation                      0x00007fff83a435a7 +\[NSException raise:format:arguments:\] + 103\n\t3   CoreFoundation                      0x00007fff83a43534 +\[NSException raise:format:\] + 148\n\t4   AppKit                              0x00007fff841c13b9 -\[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:\] + 2465\n\t5   AppKit                              0x00007fff842abc2e -\[NSView(NSLayerKitGlue) drawLayer:inContext:\] + 1230\n\t6   QuartzCore                          0x00007fff812e1910 CABackingStoreUpdate + 2427\n\t7   QuartzCore                          0x00007fff812e0baf -\[CALayer _display\] + 837\n\t8   AppKit                              0x00007fff8429d3bd -\[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded\] + 139\n\t9   AppKit                              0x00007fff8429d4ae -\[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded\] + 380\n\t10  AppKit                              0x00007fff8429d4ae -\[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded\] + 380\n\t11  AppKit                              0x00007fff8429d0f1 -\[NSView(NSLayerKitGlue) _drawRectAsLayerTree:\] + 154\n\t12  AppKit                              0x00007fff8413801f -\[NSView _drawRect:clip:\] + 152\n\t13  AppKit                              0x00007fff84723b8f -\[_NSViewDrawOperation main\] + 271\n\t14  Foundation                          0x00007fff84e8fdd0 -\[__NSOperationInternal start\] + 681\n\t15  Foundation                          0x00007fff84f6dbd5 ____NSOQSchedule_block_invoke_2 + 129\n\t16  libSystem.B.dylib                   0x00007fff85467d64 _dispatch_call_block_and_release + 15\n\t17  libSystem.B.dylib                   0x00007fff854462d1 _dispatch_worker_thread2 + 239\n\t18  libSystem.B.dylib                   0x00007fff85445c08 _pthread_wqthread + 353\n\t19  libSystem.B.dylib                   0x00007fff85445aa5 start_wqthread + 13\n)
Tue Nov 22 09:49:52 BOS75ML-4U0AAGU \[0x0-0x2da0d9e\].com.alexcrichton.Hermes[16923] <Notice>: terminate called after throwing an instance of 'NSException'
Tue Nov 22 09:49:55 BOS75ML-4U0AAGU com.apple.launchd.peruser.1030503679[1375] (\[0x0-0x2da0d9e\].com.alexcrichton.Hermes[16923]) <Warning>: Job appears to have crashed: Abort trap

An error has occured with Pandora

Updated to most recent version (was happening before that), main window says:

An error has occured with Pandora

LISTENER_NOT_AUTHORIZED

Switch to new station when created

Hermes should automatically switch to a new station when it is created. I tried implementing this myself, but I couldn't find a nice easy way to do it.

Growl Integration

Hermes is the best Pandora player I've found yet. However, having support for Growl (providing a notification whenever a new song starts playing) would make it far better.

license?

It's not immediately obvious what license you're providing this code under. If you have yet to make this decision, might I suggest NOT GPL? MIT or BSD 2-clause perhaps?

Pandora not loading: OUT_OF_SYNC

Whenever I open Hermes, it gives an error saying "An error has occurred with Pandora. OUT_OF_SYNC". I've tried deleting Hermes' configuration files in ~/Library and using v1.0.14b, but the error still shows up.

Requires OS X 10.7

I just downloaded the latest version (1.0.6) and I get this error message when trying to open it up:

"You have Mac OS X 10.6.8. The application requires Mac OS X 10.7 or later."

On your website it says this works for 10.5+, is this no longer the case?

Unable to collapse list of stations

There doesn't appear to be a way to collapse the list of stations. The drawer opens and closes as Hermes gains and loses focus. It'd be nice if it kept its state regardless of focus and could be closed.

last.fm scrobbling broken

Looks like switching between tracks no longer scrobbles...

2012-03-16 12:25:09.721 Hermes[4081:307] Found saved sessionn token found for last.fm
...
2012-03-16 12:25:11.285 Hermes[4081:307] no songs, fetching some more
2012-03-16 12:25:11.285 Hermes[4081:307] Getting fragment for 498856100629246128...
...
2012-03-16 12:25:12.101 Hermes[4081:307] http://audio-sjl-t1-1.pandora.com/access/3279504244355879336?version=4&lid=716976&token=qFoLb6TGthic%2FByCbDoH%2BkwhKSqdbdzY0FPtKOA5x%2FrS74Ii6Ooa0js2dqwQ%2BvB8FSTrq7zJ9UE9ki5fNb3Rw3kR8P6fF0kv%2BizL9QsD2PxSdciDoGwndz6atcTnZG0I9oYqfi%2FeWZMr4ZmBdku7PCpKsmXKt76Y3a8VXDaSU3%2ByFZg4CyfdiT9qt1jbIYt4KRVsbgBTx9Dvvg1vY094KQVWrrTYjRUwlJZvWrJPeO387UHaONo2%2FdJkJwC3enryfpuwonnFB8XGHLJgV3HvkWqh248AxjW%2BbRI6m8Tw6ISTwnMCQh21yv6z9AsJClLQAIzkSej44cfCs03l
2012-03-16 12:25:12.102 Hermes[4081:307] http://audio-sv5-t1-3.pandora.com/access/5451270002327916077?version=4&lid=716976&token=qFoLb6TGthic%2FByCbDoH%2BkwhKSqdbdzY0FPtKOA5x%2FrS74Ii6Ooa0js2dqwQ%2BvB8FSTrq7zJ9UE9ki5fNb3Rw4NeQqsgZUA0SBkLYNOe0m0U5XifjorobspIpoymMv%2BhUX8gNn3FVkuegiJJgdIbfvAMi7e%2BJxfvamLn%2FG1S3oSa8GGFnCj43MUUG6H5Cg2uqrViIfmC74qWm5vIC8XZefCIxBpoKd6yoixiXcJHYA3%2Ffg5DLFupAS3kfAP41QZSeD0vvrvMUGyRwO%2F73z%2BSKCIMPpuRdQCU0iupk4abaGCAEZZ%2BLGhnOfH46WdSokAZ8iLBbqQn9BbTyJnz
2012-03-16 12:25:12.103 Hermes[4081:307] http://audio-dc6-t1-1.pandora.com/access/?version=4&lid=716976&token=qFoLb6TGthic%2FByCbDoH%2BkwhKSqdbdzY0FPtKOA5x%2FrS74Ii6Ooa0js2dqwQ%2BvB8FSTrq7zJ9UE9ki5fNb3Rw4lei5w2IG1dJuML9nQeICPV1LXFMSL3mBYwf9joPmx8Rb45DacY6zZnIpgofuPZ3C2mdF981XLjuejWNGI%2FbxzhLdyxPPvfwlk7qq7DH%2Fdki5YWdc9ntrGQojcNxmk41W11QjGS4NxBoDah46QHEhsv%2FG%2FnooGZaYt54Bl3k8s8bQi0h0hhkk5gxcTWWrBwqbND1P3cxKh9f6zX8gJIiZG2VnyPtUojEamKdNq0Ui%2FK%2FKCvakHCBRKeRWwP
2012-03-16 12:25:12.104 Hermes[4081:307] http://audio-dc6-t1-1.pandora.com/access/?version=4&lid=716976&token=qFoLb6TGthic%2FByCbDoH%2BkwhKSqdbdzY0FPtKOA5x%2FrS74Ii6Ooa0js2dqwQ%2BvB8FSTrq7zJ9UE9ki5fNb3Rw7xqAs5CzqaX2WT7ejEn1Dg1xQTUeF471E9Rh0%2FyIaIQo69l5OqSl0dk7931CwAYhsVXhxBthfAk%2FYfBK4NbYNs4uErbpcSk6L8bdvKM73aM8Skd4NV%2BwHqVErcfC7EM98lNBHSM8hew7Knalj%2BtOn1k6sgSFljqD7L3V2Yoj%2BIQVw4F8j6q3v1%2FncM3ssKZkiYllkN2R5lo4vR7KJGVk90h8j0sKLeQsRwRGmCvPSccwoxcDlg38X5s
2012-03-16 12:25:12.105 Hermes[4081:307] unknown state...
2012-03-16 12:25:12.164 Hermes[4081:307] unknown state...
2012-03-16 12:25:12.467 Hermes[4081:307] unknown state...
2012-03-16 12:25:12.528 Hermes[4081:307] Stream playing now...
2012-03-16 12:25:14.000 Hermes[4081:307] Got disconnected: Error Domain=GCDAsyncSocketErrorDomain Code=4 "Read operation timed out" UserInfo=0x10205cc90 {NSLocalizedDescription=Read operation timed out}
2012-03-16 12:28:43.360 Hermes[4081:307] unknown state...
2012-03-16 12:28:46.402 Hermes[4081:307] unknown state...
2012-03-16 12:28:46.649 Hermes[4081:307] Stream idle, nexting...
2012-03-16 12:28:46.653 Hermes[4081:307] unknown state...
2012-03-16 12:28:46.677 Hermes[4081:307] unknown state...
2012-03-16 12:28:47.004 Hermes[4081:307] unknown state...
2012-03-16 12:28:47.043 Hermes[4081:307] Stream playing now...
2012-03-16 12:28:48.410 Hermes[4081:307] Got disconnected: Error Domain=GCDAsyncSocketErrorDomain Code=4 "Read operation timed out" UserInfo=0x104c364d0 {NSLocalizedDescription=Read operation timed out}

Play/Pause support via AppleScript

Please add support for play/pause (and more, if you're feeling up to it) for AppleScript. I have scripts that run when my screen saver activates, and one of the things I like to do is pause what's playing.

App do not show my station after sign in

After I sign in with my pandora account I get a window with a message " Choose a station". I do not get any option to choose or select my station. Application do not show any of my stations.

Please let me know how to fix this issue.

Enhance Applescript volume support

A couple of things I noticed with the Applescript volume support:

  • No way to get current volume levels
  • No way to set volume at a specific level
  • Can not unmute (ie toggle back to volume before mute)

Plan for previous OS support

Alex:

What's your plan for continuing to support previous OSes?

With Lion, Apple brought over AVFoundation from iOS, which I feel is better in Hermes's use case than the CoreAudio backed AudioStreamer, and removes "processing an audio stream in real time" from the tasks that must be looked after.

However, this isn't available in Snow Leopard, so as long you're planning on supporting that, then you'll have to stick with CoreAudio. With Mountain Lion around the corner, Snow Leopard will be 2 version behind, however.

Pause music when computer is restarted

It's a nice touch that Hermes pauses music when your computer sleeps, but in OSX Lion if you shut down and choose to "reopen windows when logging back in", when you start the computer again, Hermes starts playing immediately. It would be better if Hermes started up in a paused state.

Check for updates doesn't work

When running version 1.0.21, I used the check for software updates feature to see if a newer version of Hermes was out that addressed the INCOMPATIBLE_VERSION issue I was receiving. It wasn't upon going to the site that I noticed there was actually a newer version available for me to download.

Enhance Applescript volume support

A couple of things I noticed with the Applescript volume support:

  • No way to get current volume levels
  • No way to set volume at a specific level
  • Can not unmute (ie toggle back to volume before mute)

Leaking NSCFDate instances

I'm getting tons of these warnings via syslog:

Hermes[65668] <Warning>: *** __NSAutoreleaseNoPool(): Object 0x1006cdc50 of class __NSCFDate autoreleased with no pool in place - just leaking

Hermes Fails to update stations

On OS X Lion, after logging in the stations are not loading.

Pandora is currently set to use their new HTML5 interface (not sure if this actually matters for your app).

Hermes: No audio data found.

I've been seeing a lot of these in the log file when Hermes goes to a song and just does not play. Usually hitting the "next" button works, but other times the button goes grey and I cannot move forward. I'm not sure if this is specific to the Pandora service, or Hermes.

API hiccup

I hit next and got an error message saying Pandora couldn't give me a song.

AppleScript: player state

Can you add a mechanism to query player state? Playing, Paused, and maybe Stopped (when no channel is selected) as a response would be great.

No support for "Tired of Song" in AppleScript

I have an [Alfred.app|http://www.alfredapp.com] [extension|https://github.com/tresni/Hermes-Controller] which was previously using System Events to send key strokes to Hermes. The new AppleScript support is great, but it doesn't have an "I'm tired of this song" command.

Crashes after 4 skips

Hermes crashes after I skip 4 times in a station.
Fiddled with moving to different stations, then skipping, etc.
Positively reproducible after skipping 4 times in a row within a station.

Only started happening after Hermes updated to 1.1.0.

Crash log: https://gist.github.com/2732134
OS X 10.7.4
Hermes 1.1.0

Crash/Large Kaboom

Interesting problem I'm having:


Process:         Hermes [25067]
Path:            /Applications/Hermes.app/Contents/MacOS/Hermes
Identifier:      com.alexcrichton.Hermes
Version:         1.0.10 (100)
Code Type:       X86-64 (Native)
Parent Process:  launchd [110]

Date/Time:       2011-11-14 08:24:33.025 -0800
OS Version:      Mac OS X 10.7.2 (11C74)
Report Version:  9
Sleep/Wake UUID: 03144A47-C737-4821-B7EF-E573A843F365

Interval Since Last Report:          32134 sec
Crashes Since Last Report:           12
Per-App Interval Since Last Report:  14355 sec
Per-App Crashes Since Last Report:   1
Anonymous UUID:                      F8B3BB3B-7865-4DE9-A5C2-A6A6BD004022

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

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: 0x000000000000000d, 0x0000000000000000

VM Regions Near 0:
--> 
    __TEXT                 000000010ad6c000-000000010ad88000 [  112K] r-x/rwx SM=COW  /Applications/Hermes.app/Contents/MacOS/Hermes

Application Specific Information:
objc_msgSend() selector name: imageLoaded:
objc[25067]: garbage collection is OFF

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libobjc.A.dylib                 0x00007fff97602e90 objc_msgSend + 16
1   com.apple.Foundation            0x00007fff98205de2 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
2   com.apple.CoreFoundation        0x00007fff948c2e0a _CFXNotificationPost + 2634
3   com.apple.Foundation            0x00007fff981f2097 -[NSNotificationCenter postNotificationName:object:userInfo:] + 65
4   com.apple.Foundation            0x00007fff98257712 ___NSURLConnectionDidFinishLoading_block_invoke_1 + 122
5   com.apple.Foundation            0x00007fff98257692 _NSURLConnectionDidFinishLoading + 81
6   com.apple.CFNetwork             0x00007fff997caee2 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnectionEventQueue*) + 296
7   com.apple.CFNetwork             0x00007fff9987ad0e URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayload(XConnectionEventInfo*, long) + 862
8   com.apple.CFNetwork             0x00007fff997a5dfd URLConnectionClient::processEvents() + 185
9   com.apple.CFNetwork             0x00007fff997a5ca2 MultiplexerSource::perform() + 212
10  com.apple.CoreFoundation        0x00007fff94888b51 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
11  com.apple.CoreFoundation        0x00007fff948883bd __CFRunLoopDoSources0 + 253
12  com.apple.CoreFoundation        0x00007fff948af1a9 __CFRunLoopRun + 905
13  com.apple.CoreFoundation        0x00007fff948aeae6 CFRunLoopRunSpecific + 230
14  com.apple.HIToolbox             0x00007fff945203d3 RunCurrentEventLoopInMode + 277
15  com.apple.HIToolbox             0x00007fff9452763d ReceiveNextEventCommon + 355
16  com.apple.HIToolbox             0x00007fff945274ca BlockUntilNextEventMatchingListInMode + 62
17  com.apple.AppKit                0x00007fff905463f1 _DPSNextEvent + 659
18  com.apple.AppKit                0x00007fff90545cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
19  com.apple.AppKit                0x00007fff9054262d -[NSApplication run] + 470
20  com.apple.AppKit                0x00007fff907c180c NSApplicationMain + 867
21  com.alexcrichton.Hermes         0x000000010ad6e134 0x10ad6c000 + 8500

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib          0x00007fff941f77e6 kevent + 10
1   libdispatch.dylib               0x00007fff943395be _dispatch_mgr_invoke + 923
2   libdispatch.dylib               0x00007fff9433814e _dispatch_mgr_thread + 54

Thread 2:
0   libsystem_kernel.dylib          0x00007fff941f7192 __workq_kernreturn + 10
1   libsystem_c.dylib               0x00007fff935ce594 _pthread_wqthread + 758
2   libsystem_c.dylib               0x00007fff935cfb85 start_wqthread + 13

Thread 3:
0   libsystem_kernel.dylib          0x00007fff941f7192 __workq_kernreturn + 10
1   libsystem_c.dylib               0x00007fff935ce594 _pthread_wqthread + 758
2   libsystem_c.dylib               0x00007fff935cfb85 start_wqthread + 13

Thread 4:
0   libsystem_c.dylib               0x00007fff935cfb78 start_wqthread + 0

Thread 5:
0   libsystem_kernel.dylib          0x00007fff941f7192 __workq_kernreturn + 10
1   libsystem_c.dylib               0x00007fff935ce594 _pthread_wqthread + 758
2   libsystem_c.dylib               0x00007fff935cfb85 start_wqthread + 13

Thread 6:: CVDisplayLink
0   libsystem_kernel.dylib          0x00007fff941f6bca __psynch_cvwait + 10
1   libsystem_c.dylib               0x00007fff935d02a6 _pthread_cond_wait + 890
2   com.apple.CoreVideo             0x00007fff94d3063f CVDisplayLink::waitUntil(unsigned long long) + 279
3   com.apple.CoreVideo             0x00007fff94d2faa5 CVDisplayLink::runIOThread() + 559
4   com.apple.CoreVideo             0x00007fff94d2f85d _ZL13startIOThreadPv + 148
5   libsystem_c.dylib               0x00007fff935cc8bf _pthread_start + 335
6   libsystem_c.dylib               0x00007fff935cfb75 thread_start + 13

Thread 7:
0   libsystem_kernel.dylib          0x00007fff941f7192 __workq_kernreturn + 10
1   libsystem_c.dylib               0x00007fff935ce594 _pthread_wqthread + 758
2   libsystem_c.dylib               0x00007fff935cfb85 start_wqthread + 13

Thread 8:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib          0x00007fff941f567a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff941f4d71 mach_msg + 73
2   com.apple.CoreFoundation        0x00007fff948a6b6c __CFRunLoopServiceMachPort + 188
3   com.apple.CoreFoundation        0x00007fff948af2d4 __CFRunLoopRun + 1204
4   com.apple.CoreFoundation        0x00007fff948aeae6 CFRunLoopRunSpecific + 230
5   com.apple.Foundation            0x00007fff982550ab +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
6   com.apple.Foundation            0x00007fff982497fe -[NSThread main] + 68
7   com.apple.Foundation            0x00007fff98249776 __NSThread__main__ + 1575
8   libsystem_c.dylib               0x00007fff935cc8bf _pthread_start + 335
9   libsystem_c.dylib               0x00007fff935cfb75 thread_start + 13

Thread 9:: com.apple.CFSocket.private
0   libsystem_kernel.dylib          0x00007fff941f6df2 __select + 10
1   com.apple.CoreFoundation        0x00007fff948f7f9b __CFSocketManager + 1355
2   libsystem_c.dylib               0x00007fff935cc8bf _pthread_start + 335
3   libsystem_c.dylib               0x00007fff935cfb75 thread_start + 13

Thread 10:
0   libsystem_kernel.dylib          0x00007fff941f567a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff941f4d71 mach_msg + 73
2   com.apple.CoreFoundation        0x00007fff948a6b6c __CFRunLoopServiceMachPort + 188
3   com.apple.CoreFoundation        0x00007fff948af2d4 __CFRunLoopRun + 1204
4   com.apple.CoreFoundation        0x00007fff948aeae6 CFRunLoopRunSpecific + 230
5   com.apple.Foundation            0x00007fff981fb04f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
6   com.alexcrichton.Hermes         0x000000010ad73970 0x10ad6c000 + 31088
7   com.apple.Foundation            0x00007fff982497fe -[NSThread main] + 68
8   com.apple.Foundation            0x00007fff98249776 __NSThread__main__ + 1575
9   libsystem_c.dylib               0x00007fff935cc8bf _pthread_start + 335
10  libsystem_c.dylib               0x00007fff935cfb75 thread_start + 13

Thread 11:: com.apple.appkit-heartbeat
0   libsystem_kernel.dylib          0x00007fff941f6e42 __semwait_signal + 10
1   libsystem_c.dylib               0x00007fff93582dea nanosleep + 164
2   libsystem_c.dylib               0x00007fff93582bb5 usleep + 53
3   com.apple.AppKit                0x00007fff9077d97f -[NSUIHeartBeat _heartBeatThread:] + 1727
4   com.apple.Foundation            0x00007fff982497fe -[NSThread main] + 68
5   com.apple.Foundation            0x00007fff98249776 __NSThread__main__ + 1575
6   libsystem_c.dylib               0x00007fff935cc8bf _pthread_start + 335
7   libsystem_c.dylib               0x00007fff935cfb75 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007ff509e28700  rbx: 0x00007ff5099f37e0  rcx: 0x00000000000f449a  rdx: 0x00007ff5099f37e0
  rdi: 0x00007ff509e28780  rsi: 0x000000010ad7e932  rbp: 0x00007fff6a96a0f0  rsp: 0x00007fff6a96a0d0
   r8: 0x00007ff509a09050   r9: 0x00007ff509a09050  r10: 0x0000000000000010  r11: 0x9000000000000000
  r12: 0x00007ff509099000  r13: 0x00000000000f449b  r14: 0x000000010ad7e932  r15: 0x0000000000000111
  rip: 0x00007fff97602e90  rfl: 0x0000000000010246  cr2: 0x000000011194dff8
Logical CPU: 2

Binary Images:
       0x10ad6c000 -        0x10ad87ff7 +com.alexcrichton.Hermes (1.0.10 - 100)  /Applications/Hermes.app/Contents/MacOS/Hermes
       0x10ad98000 -        0x10ada4ff7 +com.growl.growlframework (1.2.2 - 1.2.2)  /Applications/Hermes.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
       0x10adb4000 -        0x10adcbfff +org.andymatuschak.Sparkle (1.5 Beta 6 - 313) <7D298003-0E13-7E27-8237-9C0E1D621133> /Applications/Hermes.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
       0x10adeb000 -        0x10adf4ff7 +org.brautaset.JSON (3.0beta1 - 1.1.1)  /Applications/Hermes.app/Contents/Frameworks/JSON.framework/Versions/A/JSON
       0x10ae08000 -        0x10aeebfff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
       0x10d88d000 -        0x10da25ff7  GLEngine (??? - ???)  /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x10da59000 -        0x10db52fff  libGLProgrammability.dylib (??? - ???)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
       0x10dbaa000 -        0x10df9dfff  com.apple.driver.AppleIntelHDGraphicsGLDriver (7.14.5 - 7.1.4)  /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHDGraphicsGLDriver
       0x10e1aa000 -        0x10e1d8ff7  GLRendererFloat (??? - ???) <16DF14A0-7264-31A4-83F6-E6F96CF4AB3D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x110527000 -        0x110527ff5 +cl_kernels (??? - ???)  cl_kernels
       0x11062c000 -        0x11062fff7  libCoreFSCache.dylib (??? - ???)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
       0x1110bb000 -        0x11114dff7  com.apple.xquery (1.3 - 29) <02B0E724-CC18-3D60-8FBE-8BDB458C155A> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
       0x1111a5000 -        0x1111abfef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0)  /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
       0x1111c1000 -        0x111254ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
       0x200000000 -        0x2007e3fff  com.apple.GeForceGLDriver (7.14.5 - 7.1.4)  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff6a96c000 -     0x7fff6a9a0ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
    0x7fff8e38f000 -     0x7fff8e395fff  com.apple.DiskArbitration (2.4.1 - 2.4.1)  /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8e396000 -     0x7fff8e5b0fef  com.apple.CoreData (104 - 358.12) <33B1FA75-7970-3751-9DCC-FF809D3E1FA2> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8e817000 -     0x7fff8e825fff  com.apple.NetAuth (1.0 - 3.0)  /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8e826000 -     0x7fff8e89bff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0)  /usr/lib/libc++.1.dylib
    0x7fff8e89c000 -     0x7fff8eb0ffff  com.apple.CoreImage (7.82 - 1.0.1) <282801B6-5D80-3E2C-88A4-00FE29906D5A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff8eb10000 -     0x7fff8ebaaff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff8ebab000 -     0x7fff8ebadfff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
    0x7fff8ebcc000 -     0x7fff8ebd1fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0)  /usr/lib/libpam.2.dylib
    0x7fff8ebd2000 -     0x7fff8ebeffff  libPng.dylib (??? - ???) <3C70A94C-9442-3E11-AF51-C1B0EF81680E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8ebf0000 -     0x7fff8ebf2fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff8ebf3000 -     0x7fff8ec0fff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff8ec9b000 -     0x7fff8ed05fff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8ed17000 -     0x7fff8ed56ff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8f9fa000 -     0x7fff8fa7dfef  com.apple.Metadata (10.7.0 - 627.20)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff8fadd000 -     0x7fff901b8ff7  libclh.dylib (4.0.3 - 4.0.3)  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x7fff901b9000 -     0x7fff901c4fff  com.apple.CommonAuth (2.1 - 2.0)  /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff901d2000 -     0x7fff902c7fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff9030c000 -     0x7fff90339ff7  com.apple.opencl (1.50.63 - 1.50.63)  /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff9037d000 -     0x7fff9051cfff  com.apple.QuartzCore (1.7 - 270.0)  /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff9051d000 -     0x7fff9052afff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff90537000 -     0x7fff9053cfff  libcache.dylib (47.0.0 - compatibility 1.0.0)  /usr/lib/system/libcache.dylib
    0x7fff9053d000 -     0x7fff9113eff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff9113f000 -     0x7fff91163fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff9119f000 -     0x7fff911d2ff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff911d3000 -     0x7fff911fafff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff9125a000 -     0x7fff9125afff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff9125b000 -     0x7fff9125cff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0)  /usr/lib/system/libremovefile.dylib
    0x7fff9147f000 -     0x7fff9147ffff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff915f7000 -     0x7fff91667fff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff917fe000 -     0x7fff918b1fff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff918b7000 -     0x7fff918f2ff7  libsystem_info.dylib (??? - ???) <9C8C2DCB-96DB-3471-9DCE-ADCC26BE2DD4> /usr/lib/system/libsystem_info.dylib
    0x7fff918f3000 -     0x7fff91905ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff91906000 -     0x7fff91919ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff9191a000 -     0x7fff91937ff7  com.apple.openscripting (1.3.3 - ???)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff9196e000 -     0x7fff9196ffff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
    0x7fff91cc9000 -     0x7fff91cdffff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff91cfd000 -     0x7fff922e1fff  libBLAS.dylib (??? - ???)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff92321000 -     0x7fff92326ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff92329000 -     0x7fff92482fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff92489000 -     0x7fff92490fff  com.apple.NetFS (4.0 - 4.0)  /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff92491000 -     0x7fff924cbfe7  com.apple.DebugSymbols (2.1 - 87)  /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff92506000 -     0x7fff92612fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff92613000 -     0x7fff9261dff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
    0x7fff92aa3000 -     0x7fff92aa3fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff92bd0000 -     0x7fff92c38ff7  com.apple.Symbolication (1.2 - 89) <1D7F9E72-B1B6-30CF-AC8A-23A763930A92> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff92d18000 -     0x7fff92d1dfff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff92d1e000 -     0x7fff92d5ffff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff92e1d000 -     0x7fff92e1dfff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff92e1e000 -     0x7fff93020fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff93021000 -     0x7fff93024fff  libRadiance.dylib (??? - ???)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff93500000 -     0x7fff93509ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0)  /usr/lib/system/libsystem_notify.dylib
    0x7fff9357e000 -     0x7fff9365bfef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0)  /usr/lib/system/libsystem_c.dylib
    0x7fff9365c000 -     0x7fff93660fff  libdyld.dylib (195.5.0 - compatibility 1.0.0)  /usr/lib/system/libdyld.dylib
    0x7fff93661000 -     0x7fff93675ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff93676000 -     0x7fff93695fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
    0x7fff93696000 -     0x7fff93696fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff93dda000 -     0x7fff93df7ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
    0x7fff93f06000 -     0x7fff93f81ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff941e0000 -     0x7fff94200fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    0x7fff94201000 -     0x7fff9430efff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff9430f000 -     0x7fff94326fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff94334000 -     0x7fff94335ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff94336000 -     0x7fff94344fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff943dc000 -     0x7fff944bafff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <13E549F8-5BD6-3BAE-8C33-1D0BD269C081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff944bb000 -     0x7fff94516ff7  com.apple.HIServices (1.10 - ???)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff94517000 -     0x7fff9451cfff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff9451d000 -     0x7fff9451dfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9451e000 -     0x7fff94842fff  com.apple.HIToolbox (1.8 - ???)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff94843000 -     0x7fff94847ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff94876000 -     0x7fff94a4afff  com.apple.CoreFoundation (6.7.1 - 635.15)  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94a4d000 -     0x7fff94a8cfff  com.apple.AE (527.7 - 527.7)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff94a8d000 -     0x7fff94adfff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff94ae0000 -     0x7fff94b64ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff94b65000 -     0x7fff94c68fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
    0x7fff94c69000 -     0x7fff94cdcfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff94cdd000 -     0x7fff94cf3ff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff94d2e000 -     0x7fff94d56ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff94e9c000 -     0x7fff94ea7ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff94f26000 -     0x7fff94f4aff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff94f4b000 -     0x7fff94f4eff7  com.apple.securityhi (4.0 - 1)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff94f56000 -     0x7fff94fadfff  libTIFF.dylib (??? - ???)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff95010000 -     0x7fff954d7fff  FaceCoreLight (1.4.7 - compatibility 1.0.0)  /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x7fff954f7000 -     0x7fff95520fff  com.apple.CoreServicesInternal (113.8 - 113.8)  /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff95521000 -     0x7fff9565afef  com.apple.vImage (5.1 - 5.1)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff9565b000 -     0x7fff95661fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff95662000 -     0x7fff956caff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff956cb000 -     0x7fff963d1fef  com.apple.WebCore (7534.51 - 7534.51.22) <352D30ED-1D1D-390E-B7CB-18E954485FD3> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff963d5000 -     0x7fff96802fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff96813000 -     0x7fff96822ff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff968b1000 -     0x7fff968b7ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff968b8000 -     0x7fff968bdfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff9691d000 -     0x7fff96948ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
    0x7fff96949000 -     0x7fff9694cfff  com.apple.help (1.3.2 - 42)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff9694d000 -     0x7fff9697afe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
    0x7fff96a44000 -     0x7fff96a98ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
    0x7fff96a99000 -     0x7fff96afbfff  com.apple.coreui (1.2.1 - 164.1)  /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff96cbc000 -     0x7fff96cbffff  libCoreVMClient.dylib (??? - ???)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff97109000 -     0x7fff9720bff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0)  /usr/lib/libxml2.2.dylib
    0x7fff9720c000 -     0x7fff9720dfff  liblangid.dylib (??? - ???)  /usr/lib/liblangid.dylib
    0x7fff9720e000 -     0x7fff97234ff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff97238000 -     0x7fff9728bfff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff9728c000 -     0x7fff97564ff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff975f8000 -     0x7fff975f8fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff975f9000 -     0x7fff976dddef  libobjc.A.dylib (228.0.0 - compatibility 1.0.0)  /usr/lib/libobjc.A.dylib
    0x7fff976de000 -     0x7fff9771eff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0)  /usr/lib/libcups.2.dylib
    0x7fff9781e000 -     0x7fff9781efff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff97866000 -     0x7fff978cefff  com.apple.CoreSymbolication (2.1 - 71) <0715BF39-D53C-3BFE-BBEA-B8EBF7274850> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff980c4000 -     0x7fff980edfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff980ee000 -     0x7fff980eefff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff980ef000 -     0x7fff980fdff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
    0x7fff980fe000 -     0x7fff98113fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff98127000 -     0x7fff981eeff7  com.apple.ColorSync (4.7.0 - 4.7.0)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff981ef000 -     0x7fff98508ff7  com.apple.Foundation (6.7.1 - 833.20)  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff985d4000 -     0x7fff98616ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0)  /usr/lib/system/libcommonCrypto.dylib
    0x7fff98617000 -     0x7fff986f8fff  com.apple.CoreServices.OSServices (478.29 - 478.29)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff988d0000 -     0x7fff988d2fff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff988fd000 -     0x7fff988fefff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff98b9e000 -     0x7fff98c34ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff98c35000 -     0x7fff98c3cfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff98c48000 -     0x7fff98c4efff  libmacho.dylib (800.0.0 - compatibility 1.0.0)  /usr/lib/system/libmacho.dylib
    0x7fff98c6b000 -     0x7fff98c71fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff9910b000 -     0x7fff99395fff  com.apple.JavaScriptCore (7534.51 - 7534.51.21)  /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff99396000 -     0x7fff9943afef  com.apple.ink.framework (1.3.2 - 110)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff9943b000 -     0x7fff99443fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff99444000 -     0x7fff9944bff7  com.apple.CommerceCore (1.0 - 17)  /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff9944c000 -     0x7fff994ebfff  com.apple.LaunchServices (480.21 - 480.21) <6BFADEA9-5BC1-3B53-A013-488EB7F1AB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff996ef000 -     0x7fff996faff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff996fb000 -     0x7fff9979dff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff9979e000 -     0x7fff99904fff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff99905000 -     0x7fff99953fff  libauto.dylib (??? - ???)  /usr/lib/libauto.dylib
    0x7fff99958000 -     0x7fff9995aff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff9995b000 -     0x7fff9a06e587  com.apple.CoreGraphics (1.600.0 - ???)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff9a06f000 -     0x7fff9a0cffff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff9a0d0000 -     0x7fff9a11bff7  com.apple.SystemConfiguration (1.11.1 - 1.11)  /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff9a11c000 -     0x7fff9a11dfff  libunc.dylib (24.0.0 - compatibility 1.0.0)  /usr/lib/system/libunc.dylib
    0x7fff9a146000 -     0x7fff9a5b4fff  com.apple.RawCamera.bundle (3.8.2 - 579) <3D4EBC1A-4139-3E22-B407-0D4887D8D208> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff9a5b5000 -     0x7fff9a73fff7  com.apple.WebKit (7534.51 - 7534.51.22)  /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff9a740000 -     0x7fff9a744fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff9a745000 -     0x7fff9a74cfff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff9a74d000 -     0x7fff9a865ff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff9a8ca000 -     0x7fff9a9cfff7  libFontParser.dylib (??? - ???)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff9a9d0000 -     0x7fff9a9d1fff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9aa1b000 -     0x7fff9aa4bff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff9aaa0000 -     0x7fff9aaa4fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0)  /usr/lib/system/libmathCommon.A.dylib
    0x7fff9aaf4000 -     0x7fff9ab0bfff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1)  /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff9ab53000 -     0x7fff9ab65ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff9ab66000 -     0x7fff9ae82ff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff9ae83000 -     0x7fff9af08ff7  com.apple.Heimdal (2.1 - 2.0)  /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff9af09000 -     0x7fff9af4cff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib

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

VM Region Summary:
ReadOnly portion of Libraries: Total=186.2M resident=117.7M(63%) swapped_out_or_unallocated=68.5M(37%)
Writable regions: Total=110.6M written=9.9M(9%) resident=60.7M(55%) swapped_out=0K(0%) unallocated=49.9M(45%)
 
REGION TYPE                      VIRTUAL
===========                      =======
CG backing stores                   848K
CG image                              4K
CG raster data                      244K
CG shared images                   3440K
CoreAnimation                       344K
CoreGraphics                         16K
CoreImage                             4K
CoreServices                       2376K
IOKit                              31.8M
MALLOC                             46.6M
MALLOC guard page                    32K
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=243                       12K
Memory tag=251                        8K
OpenCL                                8K
OpenGL GLSL                        1372K
OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
SQLite page cache                   192K
STACK GUARD                        56.0M
Stack                              13.1M
VM_ALLOCATE                        16.4M
__CI_BITMAP                          80K
__DATA                             20.4M
__IMAGE                            1256K
__LINKEDIT                         50.3M
__TEXT                            135.9M
__UNICODE                           544K
mapped file                        33.6M
shared memory                       892K
===========                      =======
TOTAL                             415.9M
TOTAL, minus reserved VM space    415.7M

Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f16
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533641465238432D47372020
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533641465238432D47372020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.100.98.75.18)
Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: M4-CT256M4SSD2, 256.06 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: SATAWire, 0x0984  (Apricorn), 0x0040, 0xfa140000 / 6
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: hub_device, 0x0409  (NEC Corporation), 0x005a, 0xfd130000 / 5
USB Device: Keyboard Hub, apple_vendor_id, 0x1005, 0xfd131000 / 7
USB Device: Apple Keyboard, apple_vendor_id, 0x021d, 0xfd131200 / 8
USB Device: Apple Keyboard, apple_vendor_id, 0x021d, 0xfd134000 / 6
USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

Crash

Hm, how to describe this… I fired up Hermes, logged in, started listening to a station. Poking around, I tried reloading stations, which took me back to the login window and forced me to log back in (that's a bug). When I logged back in, my stations list was populated and the last-playing station was selected and had a playing icon next to it, but the activity indicator was spinning. Then I selected another station, which began playing immediately. Then I went back to the first station and the app crashed.

Process:         Hermes [88658]
Path:            /Users/ulalobr/Downloads/Hermes.app/Contents/MacOS/Hermes
Identifier:      com.alexcrichton.Hermes
Version:         1.0.11 (110)
Code Type:       X86-64 (Native)
Parent Process:  launchd [1375]

Date/Time:       2011-11-18 08:40:22.777 -0500
OS Version:      Mac OS X 10.6.8 (10K549)
Report Version:  6

Interval Since Last Report:          442991 sec
Crashes Since Last Report:           1
Per-App Interval Since Last Report:  144 sec
Per-App Crashes Since Last Report:   1
Anonymous UUID:                      D49501B6-FBE8-4788-ADE6-A59112350131

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread:  7  Dispatch queue: com.apple.root.default-priority

Application Specific Information:
abort() called
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unlocking Focus on wrong view (<NSProgressIndicator: 0x112f0e680>), expected <NSView: 0x100616950>'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x00007fff83a43784 __exceptionPreprocess + 180
    1   libobjc.A.dylib                     0x00007fff8828df03 objc_exception_throw + 45
    2   CoreFoundation                      0x00007fff83a435a7 +[NSException raise:format:arguments:] + 103
    3   CoreFoundation                      0x00007fff83a43534 +[NSException raise:format:] + 148
    4   AppKit                              0x00007fff841c13b9 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 2465
    5   AppKit                              0x00007fff842abc2e -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 1230
    6   QuartzCore                          0x00007fff812e1910 CABackingStoreUpdate + 2427
    7   QuartzCore                          0x00007fff812e0baf -[CALayer _display] + 837
    8   AppKit                              0x00007fff8429d3bd -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 139
    9   AppKit                              0x00007fff8429d4ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
    10  AppKit                              0x00007fff8429d4ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
    11  AppKit                              0x00007fff8429d0f1 -[NSView(NSLayerKitGlue) _drawRectAsLayerTree:] + 154
    12  AppKit                              0x00007fff8413801f -[NSView _drawRect:clip:] + 152
    13  AppKit                              0x00007fff84723b8f -[_NSViewDrawOperation main] + 271
    14  Foundation                          0x00007fff84e8fdd0 -[__NSOperationInternal start] + 681
    15  Foundation                          0x00007fff84f6dbd5 ____NSOQSchedule_block_invoke_2 + 129
    16  libSystem.B.dylib                   0x00007fff85467d64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                   0x00007fff854462d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                   0x00007fff85445c08 _pthread_wqthread + 353
    19  libSystem.B.dylib                   0x00007fff85445aa5 start_wqthread + 13
)


Thread 0:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib               0x00007fff85466a6a __semwait_signal + 10
1   libSystem.B.dylib               0x00007fff8546a881 _pthread_cond_wait + 1286
2   com.apple.Foundation            0x00007fff84e9f844 -[__NSOperationInternal waitUntilFinished] + 56
3   com.apple.Foundation            0x00007fff84e9f7f2 -[NSOperation waitUntilFinished] + 83
4   com.apple.Foundation            0x00007fff84e9f62a -[NSOperationQueue waitUntilAllOperationsAreFinished] + 233
5   com.apple.AppKit                0x00007fff841323f6 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2707
6   com.apple.AppKit                0x00007fff840abc0e -[NSView displayIfNeeded] + 969
7   com.apple.AppKit                0x00007fff840a6aba _handleWindowNeedsDisplay + 678
8   com.apple.CoreFoundation        0x00007fff83a02b07 __CFRunLoopDoObservers + 519
9   com.apple.CoreFoundation        0x00007fff839de434 __CFRunLoopRun + 468
10  com.apple.CoreFoundation        0x00007fff839ddd8f CFRunLoopRunSpecific + 575
11  com.apple.HIToolbox             0x00007fff885b07ee RunCurrentEventLoopInMode + 333
12  com.apple.HIToolbox             0x00007fff885b0551 ReceiveNextEventCommon + 148
13  com.apple.HIToolbox             0x00007fff885b04ac BlockUntilNextEventMatchingListInMode + 59
14  com.apple.AppKit                0x00007fff8407beb2 _DPSNextEvent + 708
15  com.apple.AppKit                0x00007fff8407b801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
16  com.apple.AppKit                0x00007fff8404168f -[NSApplication run] + 395
17  com.apple.AppKit                0x00007fff8403a3b0 NSApplicationMain + 364
18  com.alexcrichton.Hermes         0x00000001000019e4 0x100000000 + 6628

Thread 1:  Dispatch queue: com.apple.libdispatch-manager
0   libSystem.B.dylib               0x00007fff85444c0a kevent + 10
1   libSystem.B.dylib               0x00007fff85446add _dispatch_mgr_invoke + 154
2   libSystem.B.dylib               0x00007fff854467b4 _dispatch_queue_invoke + 185
3   libSystem.B.dylib               0x00007fff854462de _dispatch_worker_thread2 + 252
4   libSystem.B.dylib               0x00007fff85445c08 _pthread_wqthread + 353
5   libSystem.B.dylib               0x00007fff85445aa5 start_wqthread + 13

Thread 2:
0   libSystem.B.dylib               0x00007fff8542bd7a mach_msg_trap + 10
1   libSystem.B.dylib               0x00007fff8542c3ed mach_msg + 59
2   com.apple.CoreFoundation        0x00007fff839de902 __CFRunLoopRun + 1698
3   com.apple.CoreFoundation        0x00007fff839ddd8f CFRunLoopRunSpecific + 575
4   com.apple.Foundation            0x00007fff84ee614f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
5   com.apple.Foundation            0x00007fff84e67114 __NSThread__main__ + 1429
6   libSystem.B.dylib               0x00007fff85464fd6 _pthread_start + 331
7   libSystem.B.dylib               0x00007fff85464e89 thread_start + 13

Thread 3:  com.apple.CFSocket.private
0   libSystem.B.dylib               0x00007fff8546f932 select$DARWIN_EXTSN + 10
1   com.apple.CoreFoundation        0x00007fff83a00468 __CFSocketManager + 824
2   libSystem.B.dylib               0x00007fff85464fd6 _pthread_start + 331
3   libSystem.B.dylib               0x00007fff85464e89 thread_start + 13

Thread 4:  JavaScriptCore::BlockFree
0   libSystem.B.dylib               0x00007fff85466a6a __semwait_signal + 10
1   libSystem.B.dylib               0x00007fff8546a881 _pthread_cond_wait + 1286
2   com.apple.JavaScriptCore        0x00007fff87b9a957 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 151
3   com.apple.JavaScriptCore        0x00007fff87dc679f JSC::Heap::blockFreeingThreadMain() + 319
4   com.apple.JavaScriptCore        0x00007fff87dc67d9 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
5   libSystem.B.dylib               0x00007fff85464fd6 _pthread_start + 331
6   libSystem.B.dylib               0x00007fff85464e89 thread_start + 13

Thread 5:
0   libSystem.B.dylib               0x00007fff85466a6a __semwait_signal + 10
1   libSystem.B.dylib               0x00007fff8546a881 _pthread_cond_wait + 1286
2   com.apple.CoreVideo             0x00007fff81637342 CVDisplayLink::runIOThread() + 804
3   com.apple.CoreVideo             0x00007fff81636fe3 startIOThread(void*) + 139
4   libSystem.B.dylib               0x00007fff85464fd6 _pthread_start + 331
5   libSystem.B.dylib               0x00007fff85464e89 thread_start + 13

Thread 6:
0   libSystem.B.dylib               0x00007fff85445a2a __workq_kernreturn + 10
1   libSystem.B.dylib               0x00007fff85445e3c _pthread_wqthread + 917
2   libSystem.B.dylib               0x00007fff85445aa5 start_wqthread + 13

Thread 7 Crashed:  Dispatch queue: com.apple.root.default-priority
0   libSystem.B.dylib               0x00007fff854fb395 usleep$NOCANCEL + 0
1   libSystem.B.dylib               0x00007fff8551aa00 abort + 93
2   libstdc++.6.dylib               0x00007fff824c85d2 __tcf_0 + 0
3   libobjc.A.dylib                 0x00007fff88291b39 _objc_terminate + 100
4   libstdc++.6.dylib               0x00007fff824c6ae1 __cxxabiv1::__terminate(void (*)()) + 11
5   libstdc++.6.dylib               0x00007fff824c6b16 __cxxabiv1::__unexpected(void (*)()) + 0
6   libstdc++.6.dylib               0x00007fff824c6bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
7   libobjc.A.dylib                 0x00007fff8828dfa2 object_getIvar + 0
8   com.apple.CoreFoundation        0x00007fff83a9b969 -[NSException raise] + 9
9   com.apple.AppKit                0x00007fff842abcc6 -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 1382
10  com.apple.QuartzCore            0x00007fff812e1910 CABackingStoreUpdate + 2427
11  com.apple.QuartzCore            0x00007fff812e0baf -[CALayer _display] + 837
12  com.apple.AppKit                0x00007fff8429d3bd -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 139
13  com.apple.AppKit                0x00007fff8429d4ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
14  com.apple.AppKit                0x00007fff8429d4ae -[NSView(NSInternal) _recursiveDisplayViewsIntoLayersIfNeeded] + 380
15  com.apple.AppKit                0x00007fff8429d0f1 -[NSView(NSLayerKitGlue) _drawRectAsLayerTree:] + 154
16  com.apple.AppKit                0x00007fff8413801f -[NSView _drawRect:clip:] + 152
17  com.apple.AppKit                0x00007fff84723b8f -[_NSViewDrawOperation main] + 271
18  com.apple.Foundation            0x00007fff84e8fdd0 -[__NSOperationInternal start] + 681
19  com.apple.Foundation            0x00007fff84f6dbd5 ____NSOQSchedule_block_invoke_2 + 129
20  libSystem.B.dylib               0x00007fff85467d64 _dispatch_call_block_and_release + 15
21  libSystem.B.dylib               0x00007fff854462d1 _dispatch_worker_thread2 + 239
22  libSystem.B.dylib               0x00007fff85445c08 _pthread_wqthread + 353
23  libSystem.B.dylib               0x00007fff85445aa5 start_wqthread + 13

Thread 8:
0   libSystem.B.dylib               0x00007fff85445a2a __workq_kernreturn + 10
1   libSystem.B.dylib               0x00007fff85445e3c _pthread_wqthread + 917
2   libSystem.B.dylib               0x00007fff85445aa5 start_wqthread + 13

Thread 9:
0   libSystem.B.dylib               0x00007fff85445a2a __workq_kernreturn + 10
1   libSystem.B.dylib               0x00007fff85445e3c _pthread_wqthread + 917
2   libSystem.B.dylib               0x00007fff85445aa5 start_wqthread + 13

Thread 10:
0   libSystem.B.dylib               0x00007fff8542bd7a mach_msg_trap + 10
1   libSystem.B.dylib               0x00007fff8542c3ed mach_msg + 59
2   com.apple.CoreFoundation        0x00007fff839de902 __CFRunLoopRun + 1698
3   com.apple.CoreFoundation        0x00007fff839ddd8f CFRunLoopRunSpecific + 575
4   com.apple.Foundation            0x00007fff84ea1b74 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
5   com.alexcrichton.Hermes         0x0000000100009524 0x100000000 + 38180
6   com.apple.Foundation            0x00007fff84e67114 __NSThread__main__ + 1429
7   libSystem.B.dylib               0x00007fff85464fd6 _pthread_start + 331
8   libSystem.B.dylib               0x00007fff85464e89 thread_start + 13

Thread 7 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00007fff70a032f8  rcx: 0x00007fff8547a0b6  rdx: 0x0000000000000000
  rdi: 0x0000000000002710  rsi: 0x0000000000000006  rbp: 0x000000011c0911d0  rsp: 0x000000011c0911b8
   r8: 0x00007fff70a06a60   r9: 0x0000000000000063  r10: 0x00007fff854760fa  r11: 0x0000000000000202
  r12: 0x00007fff83ac8b09  r13: 0x0000000000000000  r14: 0x00000001006c7580  r15: 0x0000000000000020
  rip: 0x00007fff854fb395  rfl: 0x0000000000010202  cr2: 0x00000001145551c4

Binary Images:
       0x100000000 -        0x10002aff7 +com.alexcrichton.Hermes 1.0.11 (110) <75412AA0-7049-3CAE-86DB-35DE5FA4716F> /Users/ulalobr/Downloads/Hermes.app/Contents/MacOS/Hermes
       0x10003f000 -        0x10004bff7 +com.growl.growlframework 1.2.2 (1.2.2) <C76D2B1C-5455-CFCA-6470-B8B171C14A16> /Users/ulalobr/Downloads/Hermes.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
       0x100057000 -        0x10006efff +org.andymatuschak.Sparkle 1.5 Beta 6 (313) <7D298003-0E13-7E27-8237-9C0E1D621133> /Users/ulalobr/Downloads/Hermes.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
       0x100087000 -        0x10016dfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
       0x114e83000 -        0x115016fe7  GLEngine ??? (???) <53A8A7E8-4846-D236-F3D9-DA3F2AF686D8> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x116107000 -        0x11652afef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
       0x1165ae000 -        0x11761ffe7  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.36 (6.3.6) <E69BB2E5-EA06-BA68-CB81-C1493787E8D8> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHDGraphicsGLDriver
       0x117e90000 -        0x117eb6fff  GLRendererFloat ??? (???) <490221DD-53D9-178E-3F31-3A4974D34DCD> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x11aa83000 -        0x11ab11fff  com.apple.xquery 1.3 (29) <71FD97A3-4B78-7F8C-70AD-9449A499E486> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
       0x11cb7f000 -        0x11cb83fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
       0x11cb88000 -        0x11cb8eff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x11cd5c000 -        0x11ce27fef  com.apple.audio.units.Components 1.6.5 (1.6.5) <98E3D066-C3A9-FF74-C623-D152708EDBCF> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
       0x11ce40000 -        0x11d032ff7  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <9C486CBC-47B6-6703-EE2A-34F28C1FE023> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
       0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld
    0x7fff80061000 -     0x7fff8011efff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff801a0000 -     0x7fff801e1fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff80a89000 -     0x7fff81293fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff81294000 -     0x7fff81631fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81632000 -     0x7fff81634fff  libRadiance.dylib ??? (???) <A9DB4D5D-4072-971B-DEF6-DDE645F415EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff81635000 -     0x7fff8165aff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8165b000 -     0x7fff818e3fef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff81a9f000 -     0x7fff81aa5ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff81c40000 -     0x7fff81c8ffef  libTIFF.dylib ??? (???) <1E2593D1-A7F6-84C6-DF8F-0B46AE445926> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff81c9c000 -     0x7fff81d81fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff81e15000 -     0x7fff81e18ff7  libCoreVMClient.dylib ??? (???) <E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff82018000 -     0x7fff82132fef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff82133000 -     0x7fff821f4fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff821f5000 -     0x7fff8223efef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8223f000 -     0x7fff82253fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8228e000 -     0x7fff82290fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff82420000 -     0x7fff82424ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8247c000 -     0x7fff824f9fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff824fa000 -     0x7fff8253dff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8253e000 -     0x7fff82554fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff8259d000 -     0x7fff825baff7  libPng.dylib ??? (???) <6D8E515B-E0A2-2BA1-9CAC-8CB8A8B35879> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff825cf000 -     0x7fff82688fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x7fff82689000 -     0x7fff82689ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8268a000 -     0x7fff82709fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff82719000 -     0x7fff82783fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff82784000 -     0x7fff8278aff7  IOSurface ??? (???) <EAD87C9F-BADC-7116-4ADD-0B0679459D24> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff82846000 -     0x7fff82ce3fff  com.apple.RawCamera.bundle 3.8.0 (577) <38481531-657E-DFFA-1EF4-ADFCA15DAC49> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff83512000 -     0x7fff8354cfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
    0x7fff8354d000 -     0x7fff83991fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff83992000 -     0x7fff83b09fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff83c0d000 -     0x7fff83c0dff7  com.apple.Carbon 150 (152) <191B4F4B-8D06-796B-CA0C-782F06DD7BC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff83c68000 -     0x7fff83ca9fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff83caa000 -     0x7fff83e68fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
    0x7fff83e69000 -     0x7fff83e6fff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff83ea5000 -     0x7fff83ec5ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff83ee7000 -     0x7fff84025fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff84038000 -     0x7fff84a32ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff84e06000 -     0x7fff84e49fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x7fff84e4a000 -     0x7fff84e55ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff84e56000 -     0x7fff850d8fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff850d9000 -     0x7fff850dcff7  com.apple.securityhi 4.0 (36638) <87868A3E-9341-1078-F00C-5E5972F01A4A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff850dd000 -     0x7fff851b1fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff851fa000 -     0x7fff8521dfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8528e000 -     0x7fff85294fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff852fc000 -     0x7fff85312fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
    0x7fff85313000 -     0x7fff8542afef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
    0x7fff8542b000 -     0x7fff855ecfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    0x7fff855ed000 -     0x7fff855edff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8585b000 -     0x7fff8688cff7  com.apple.WebCore 6534.51 (6534.51.22) <7B51D5D9-55E4-610C-0FBD-E04C9D3F87BA> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff8688d000 -     0x7fff868bdfef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff868be000 -     0x7fff868beff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff868bf000 -     0x7fff869defe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff869df000 -     0x7fff86a32ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff86a33000 -     0x7fff8712fff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff87130000 -     0x7fff87151fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
    0x7fff871b1000 -     0x7fff871f9ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff871fa000 -     0x7fff87215ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff87216000 -     0x7fff8723dff7  libJPEG.dylib ??? (???) <46A413EA-4FD1-A050-2EF0-6279F3EAD581> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8723e000 -     0x7fff87243ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff87244000 -     0x7fff872d0fef  SecurityFoundation ??? (???) <F43FDB02-CAA5-F8FF-C8D7-6665E7403ECE> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff872d1000 -     0x7fff873aefff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff873e8000 -     0x7fff8771cfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff878cb000 -     0x7fff878e2fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff878e3000 -     0x7fff878e3ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff878fa000 -     0x7fff87994fff  com.apple.ApplicationServices.ATS 275.19 (???) <FBC907AF-C3EF-CAF1-3705-13DC91B29114> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff87995000 -     0x7fff879c0ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
    0x7fff879c1000 -     0x7fff879c6fff  libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff879c7000 -     0x7fff87afcfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff87afd000 -     0x7fff87afeff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff87aff000 -     0x7fff87b8ffff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff87b90000 -     0x7fff87e1afff  com.apple.JavaScriptCore 6534.51 (6534.51.21) <848CAF7C-CDC4-A280-378C-24A701BA6F1A> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff87e1b000 -     0x7fff87e28fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff87e29000 -     0x7fff87fc6fe7  com.apple.WebKit 6534.51 (6534.51.22) <957BAD21-4FC4-9A9D-6E8F-644F474D7E30> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff87fc7000 -     0x7fff87fc7ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88192000 -     0x7fff881e7ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff881fa000 -     0x7fff8820eff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8820f000 -     0x7fff88220ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
    0x7fff8826c000 -     0x7fff88281ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff88282000 -     0x7fff88283ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff88284000 -     0x7fff8833aff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
    0x7fff8833b000 -     0x7fff883c0ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff88403000 -     0x7fff8844dff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff8848e000 -     0x7fff88499ff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff88582000 -     0x7fff88880fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff88afa000 -     0x7fff88b78ff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff88b79000 -     0x7fff88b7cfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff88b7d000 -     0x7fff88b8ffe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff88b90000 -     0x7fff88b9ffef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff88bee000 -     0x7fff88c4efe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff88d82000 -     0x7fff88dcefff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x7fff88dcf000 -     0x7fff88dddff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
    0x7fff89048000 -     0x7fff89057fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff89159000 -     0x7fff89209fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff899ac000 -     0x7fff89a6dfef  com.apple.ColorSync 4.6.6 (4.6.6) <BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff89a6e000 -     0x7fff89c2cff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <0A4F51A1-4502-767B-8A4E-F14C6214EF88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff89ce4000 -     0x7fff89cfdfff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff89cfe000 -     0x7fff89d2ffff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff89d30000 -     0x7fff89dd0fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff89dd1000 -     0x7fff89dd2fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff89dd3000 -     0x7fff89e10ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff89e97000 -     0x7fff89e97ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff89e98000 -     0x7fff89ec0fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff89f73000 -     0x7fff89f7afff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8a218000 -     0x7fff8a24bff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff8a24c000 -     0x7fff8a287fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8a288000 -     0x7fff8a2cfff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8a2d0000 -     0x7fff8a2d4ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff8a2d5000 -     0x7fff8a324ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x7fff8a685000 -     0x7fff8a73afe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff8a73b000 -     0x7fff8a740fff  libGIF.dylib ??? (???) <201B8077-B5CC-11AA-E1B0-1D057ABE416A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f16
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: Hitachi HTS545032B9SA02, 298.09 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 5
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 6
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000 / 3
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd130000 / 5
USB Device: USB Optical Mouse, 0x046d  (Logitech Inc.), 0xc064, 0xfd132000 / 7
USB Device: Logitech USB Keyboard, 0x046d  (Logitech Inc.), 0xc309, 0xfd131000 / 6
USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 4
USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
FireWire Device: d2 quadra (button), LaCie, Up to 800 Mb/sec

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.