Terminal generates so extra lines every time I use a pipe ? Any Ideas ?

I am trying to extract my Public IP using bash, and have figured out several ways to do this, but I am having some unexpected lines in the result.
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 105 100 105 0 0 195 0 --:--:-- --:--:-- --:--:-- 0
Anybody have any idea how to get rid of the extra lines ?
I recently re-installed the OS on my machine, and switched over to bash. Ever since then every time I issue a command that contains a pipe, I am getting some extraneous lines before the result.
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](09:56PM) -> [username] ~ $ curl http://checkip.dyndns.org/
<html><head><title>Current IP Check</title></head><body>Current IP Address: 45.xxx.46.204</body></html>
Comment : Need to get rid of everything except "45.xxx.46.204"
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:03PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | tr '' '\012' | grep '\.'
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 105 100 105 0 0 611 0 --:--:-- --:--:-- --:--:-- 0
45.xxx.46.204
Comment : OK. This returns the correct value but it inserted 3 additional lines prior to the result.
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](09:56PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | tr '<[:alpha:]:/>' ' '
" 45.xxx.46.204 "
Comment : This inserts replaces the unwanted characters with spaces, if I try to replace using '' the empty space, then "45.xxx.46.204" dissapears. It seems like a bug to me that you cannot replace a character with an empty value.
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](09:57PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | tr '<[:alpha:]:/>' ' ' | sed -e 's/ //g'
45.xxx.46.204
Comment : OK. But requires an extra step...
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](09:57PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | tr '<[:alpha:]:/>' ' ' | sed -e 's/ //g' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt
Comment : This works fine, sends the correct result to a file. The three extra lines remain with the terminal and do not go to the output file
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:21PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | sed -e 's/<[^>]*>//g'
Current IP CheckCurrent IP Address: 45.xxx.46.204
Comment : This uses sed instead of tr, but I still have to get rid of "Current IP CheckCurrent IP Address: "
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:22PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | sed -e 's/<[^>]*>//g' -e 's/[a-zA-Z :\r\n]*//g'
45.xxx.46.204
Comment : OK. This returns the correct value but it inserted 3 additional lines.
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](10:37PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | sed -e 's/<[^>]*>//g' -e 's/[a-zA-Z :\r\n]*//g' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt ;
Comment : This works fine, sends the correct result to a file.
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](10:43PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g'
45.xxx.46.204
Comment : OK. This appears to be the easiest way to do this...
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](10:44PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt ;
Comment :
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:41PM) -> [username] ~ $ ifconfig | grep broadcast
inet 192.168.1.102 netmask 0xffff0000 broadcast 192.168.255.255
inet 192.168.1.153 netmask 0xffffff00 broadcast 192.168.1.255
Comment : Now for the Private Addresses, and the netmask...
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:46PM) -> [username] ~ $ ifconfig | grep broadcast | awk '{print $2 }'
192.168.1.102
192.168.1.153
Comment : Now for the Private Addresses...
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:49PM) -> [username] ~ $ curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' ; ifconfig | grep broadcast | awk '{print $2 }'
45.xxx.46.204
192.168.1.102
192.168.1.153
Comment : Here are the Public & Private Addresses
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.14.05](11:50PM) -> [username] ~ $ \
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' ; \
ifconfig | grep broadcast | awk '{print $2 }'
45.xxx.46.204
192.168.1.102
192.168.1.153
Comment : This is a slightly different way to enter one command on each line
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.15.05](12:08AM) -> [username] ~ $ \
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' > ~/Desktop/IP_Address.txt ; \
ifconfig | grep broadcast | awk '{print $2 }' >> ~/Desktop/IP_Address.txt ; \
open ~/Desktop/IP_Address.txt ;
Comment : The Public & Private Addresses are sent to a file, and the file is opened
-- ---------+---------+---------+---------+---------+---------+---------+---------
[2007.15.05](12:08AM) -> [username] ~ $ \
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' \
~/Desktop/IP_Address.txt ; \
ifconfig | grep broadcast | awk '{print $2 }' \
~/Desktop/IP_Address.txt ; \
open ~/Desktop/IP_Address.txt ;
Comment : This is a slightly different way to view the commands
-- ---------+---------+---------+---------+---------+---------+---------+---------
#!/bin/bash
# ip.sh
testfile=/Applications/BBEdit.app/
if [ -d $testfile ] ;
then
# THE NEXT LINE GENERATES AN ERROR -> line 10:  : command not found
  echo ${testfile} exists!
fi
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' > ~/Desktop/IP_Address.txt
ifconfig | grep broadcast | awk '{print $2 }' >> ~/Desktop/IP_Address.txt
if [ -d /Applications/BBEdit.app ]; then
open -a /Applications/BBEdit.app ~/Desktop/IP_Address.txt
else
open ~/Desktop/IP_Address.txt
fi
-- ---------+---------+---------+---------+---------+---------+---------+---------
-- ---------+---------+---------+---------+---------+---------+---------+---------
SUMMARY : [PUBLIC & PRIVATE ADDRESS]
-- ---------+---------+---------+---------+---------+---------+---------+---------
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' ; ifconfig | grep broadcast | awk '{print $2 }'
-- ---------+---------+---------+---------+---------+---------+---------+---------
SUMMARY : [PUBLIC ADDRESS] THESE ALL WORK FINE
-- ---------+---------+---------+---------+---------+---------+---------+---------
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g'
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt ;
curl http://checkip.dyndns.org/ | sed -e 's/<[^>]*>//g' -e 's/[a-zA-Z :\r\n]*//g'
curl http://checkip.dyndns.org/ | sed -e 's/<[^>]*>//g' -e 's/[a-zA-Z :\r\n]*//g' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt ;
curl http://checkip.dyndns.org/ | tr '' '\n' | grep '\.'
curl http://checkip.dyndns.org/ | tr '' '\012' | grep '\.'
curl http://checkip.dyndns.org/ | tr '' '\012' | grep '\.' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt ;
curl http://checkip.dyndns.org/ | tr '<[:alpha:]:/>' ' ' | sed -e 's/ //g'
curl http://checkip.dyndns.org/ | tr '<[:alpha:]:/>' ' ' | sed -e 's/ //g' > ~/Desktop/IP_Address.txt ; open ~/Desktop/IP_Address.txt
-- ---------+---------+---------+---------+---------+---------+---------+---------
SUMMARY : [PRIVATE ADDRESS] THIS WORKS FINE
-- ---------+---------+---------+---------+---------+---------+---------+---------
ifconfig | grep broadcast | awk '{print $2 }'
-- ---------+---------+---------+---------+---------+---------+---------+---------
SUMMARY : [PUBLIC & PRIVATE ADDRESS] THESE WORK FINE
-- ---------+---------+---------+---------+---------+---------+---------+---------
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' ; ifconfig | grep broadcast | awk '{print $2 }'
COPY CONTENT BETWEEN THE DASHED LINES AND PASTE IN THE TERMINAL
curl http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' \
~/Desktop/IP_Address.txt ; \
ifconfig | grep broadcast | awk '{print $2 }' \
~/Desktop/IP_Address.txt ; \
open ~/Desktop/IP_Address.txt ;
PROBLEM : I HAVE NO CLUE HOW TO GET RID OF THE THREE LINES:
They were displayed by the terminal everytime I used a pipe, but I removed them for the sake of clarity
Best Regards,
Bill Hernandez
Plano, Texas

Thank You Very Much for enlightening me to the "-s" flag, that solved the problem...
[2007.15.05](06:16PM) -> [username] ~ $ curl -s http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g'
45.xxx.46.204
( 1 ) Sure enough I was missing the "-s" flag, I kept thinking it was something to do with the pipes because if I just entered
[2007.15.05](06:21PM) -> [username] ~ $ curl http://checkip.dyndns.org
<html><head><title>Current IP Check</title></head><body>Current IP Address: 45.xxx.46.204</body></html>
( 2 ) It did not add the extra lines. They only appeared when I added a pipe. How bizarre...
( 3 ) Once I looked at the man pages the "-s" became more obvious. It is still odd...
[2007.15.05](06:21PM) -> [username] ~ $ man curl
-s/--silent
Silent mode. Don't show progress meter or error messages. Makes Curl mute.
If this option is used twice, the second will again disable mute.
THIS SOLVES THE PROBLEM :
[2007.15.05](06:21PM) -> [username] ~ $ \
curl -s http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' ; ifconfig | grep broadcast | awk '{print $2 }'
ANYWAY HERE'S THE FINAL SCRIPT...
-- ---------+---------+---------+---------+---------+---------+---------+---------
#!/bin/bash
# ScriptName : myip
# Author : Bill Hernandez
# Location : Plano, Texas
# Modified : Tuesday, May 15, 2007 (6:32 PM)
curl -s http://checkip.dyndns.org/ | sed -e 's/[^0-9\.]*//g' > ~/Desktop/IP_Address.txt
ifconfig | grep broadcast | awk '{print $2 }' >> ~/Desktop/IP_Address.txt
if [ -d /Applications/BBEdit.app ]; then
open -a /Applications/BBEdit.app ~/Desktop/IP_Address.txt
else
open ~/Desktop/IP_Address.txt
fi
-- ---------+---------+---------+---------+---------+---------+---------+---------
Best Regards,
Bill Hernandez
Plano, texas

Similar Messages

  • I installed OX S Lion today but now my safari quits every time I open it. Any ideas why and how I can resolve?

    I installed OX S Lion today but now my safari quits every time I open it. Any ideas why and how I can resolve?

    Yes done that several times. Went online with with my service provider, O2. Spoke to a "Guru" sent me an E-Mail with the settings so I could put them in manually incase the reset did'nt work.

  • HT201272 when i start downloading a CD purchase it downloads approx 3 to 4 songs then just stops says downloading waited a hour still downloading had to force quit iTunes then reopen to complete download keeps doing this every time i purchase a cd any ide

    when i start downloading a CD purchase it downloads approx 3 to 4 songs then just stops says downloading waited a hour still downloading had to force quit iTunes then reopen to complete download keeps doing this every time i purchase a cd any ideas ?

    I too am facing this problem, however a little differently. I am in the process of uploading my vinyl collection to digital format in Audacity and am having this problem with multiple tracks when played in iTunes. The first few albums I ripped play just fine in iTunes, but the last few skip over about the last minute of every song and go to the next song. As you said, if you drag the time marker past the skipping point though, the rest of the song will play to the end just fine. I then synced these songs onto my iPod and they play perfectly straight through. I was leaning toward a bad mp3 encoding process that was maybe creating a glitch but I'm not sure at this point if they play correctly on my iPod. In quicktime the song will just stop playing at that specfic point, but if you hit play again, it will continue to the end. I can say though, I haven't seen this problem with any iTunes download, or ripped CD that I have ever put into iTunes (which makes my situation a tad different than yours), it's been purely the songs that I have imported via Audacity from LP's.

  • My email is crashing every time I open it. Any idea how to fix this?

    1 day ago my iPhone started crashing every time I opened my email. I've tried deleting suspicious emails (quickly before it crashes) but that didn't work. I went out to the web server and deleted the same emails and that didn't fix it either. I've restarted my phone and my phone is up to date on updates. Any suggestions on how to fix this? It's also now happening on my iPad and my husband's iPhone.

    Hi, I finally got it fixed and I think that I figured it out. I am sure it was a bid emial that got onto my server so I went to (For Me) comcast.net and cleared my server of all the emails then plugged my phone in and backed it up and then reset it to original settings. That solved all the problems and have not come back. Hope this helps. Phil

  • Logic quitting unexpectedly every time at 'Core Audio' bit, any ideas?

    Process:         Logic Pro [142]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [103]
    Date/Time:       2013-07-16 22:12:02.263 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          421755 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  2251 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      C8CCF031-AA1B-4E2F-8597-371C7466E814
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  10
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x9460a08a sem_wait$NOCANCEL$UNIX2003 + 10
    1   ...lodyneEssentialRewireDevice          0x4bba41b4 GNCondition::waitForSignal() + 32
    2   ...lodyneEssentialRewireDevice          0x4bba3d4f GNMessagePort::registerMessagePortWithName(GNString*, GNData* (*)(GNMessagePort*, GNData*), int, int, GNDictionary*) + 315
    3   ...lodyneEssentialRewireDevice          0x4bb45dbe GNReWire2AudioDeviceHost::create() + 172
    4   ...lodyneEssentialRewireDevice          0x4bb43f3f RWDEFOpenDevice + 89
    5   ...opellerheads.rewire.library          0x4baca7ec 0x4baad000 + 120812
    6   ...opellerheads.rewire.library          0x4bacaa06 0x4baad000 + 121350
    7   ...opellerheads.rewire.library          0x4bad088b RWIsReWireMixerAppRunningImp + 6811
    8   ...opellerheads.rewire.library          0x4bace9dd RWM2OpenDeviceImp + 77
    9   ...le.music.apps.MAAudioEngine          0x02b2c7da ReWireUpdateMIDIInfos() + 3226
    10  ...le.music.apps.MAAudioEngine          0x02b13e2b MD::Init(int, bool) + 2555
    11  ...le.music.apps.MAAudioEngine          0x02b1e5f2 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 12066
    12  com.apple.logic.pro                     0x000b7bbb std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 505915
    13  com.apple.logic.pro                     0x000ba721 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 517025
    14  com.apple.logic.pro                     0x003e7175 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3845621
    15  com.apple.logic.pro                     0x001c67ce std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1614926
    16  com.apple.logic.pro                     0x001cad7c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1632764
    17  com.apple.logic.pro                     0x0061b893 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6157587
    18  com.apple.Foundation                    0x925c5e53 _nsnote_callback + 176
    19  com.apple.CoreFoundation                0x95c04793 __CFXNotificationPost + 947
    20  com.apple.CoreFoundation                0x95c0419a _CFXNotificationPostNotification + 186
    21  com.apple.Foundation                    0x925bacf0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    22  com.apple.Foundation                    0x925c80fd -[NSNotificationCenter postNotificationName:object:] + 56
    23  com.apple.AppKit                        0x95d9d216 -[NSApplication _postDidFinishNotification] + 125
    24  com.apple.AppKit                        0x95d9d126 -[NSApplication _sendFinishLaunchingNotification] + 74
    25  com.apple.AppKit                        0x95ef4339 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    26  com.apple.AppKit                        0x95ef3f59 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    27  com.apple.Foundation                    0x925fb298 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    28  com.apple.Foundation                    0x925fb05c _NSAppleEventManagerGenericHandler + 228
    29  com.apple.AE                            0x95465f5c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    30  com.apple.AE                            0x95465e5b dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    31  com.apple.AE                            0x95465d65 aeProcessAppleEvent + 197
    32  com.apple.HIToolbox                     0x96793197 AEProcessAppleEvent + 50
    33  com.apple.AppKit                        0x95d6d7d2 _DPSNextEvent + 1420
    34  com.apple.AppKit                        0x95d6cdd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35  com.apple.AppKit                        0x95d2f1f3 -[NSApplication run] + 821
    36  com.apple.prokit                        0x00fcd3f6 NSProApplicationMain + 326
    37  com.apple.logic.pro                     0x0002bad5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x945ba382 kevent + 10
    1   libSystem.B.dylib                       0x945baa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x945b9f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x945b9cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x945b9781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x945b95c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x94593afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x94594267 mach_msg + 68
    2   com.apple.CoreFoundation                0x95be630f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x95be53f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x95be5221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x925ff2c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x925c6564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x925c6514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    9   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x945b2ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x95c25c83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    3   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x945b9412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x945b99a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x945b95c6 start_wqthread + 30
    Thread 5:
    0   libSystem.B.dylib                       0x945c1aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x945c175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x945c33f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a4c838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a4c901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    6   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x945c1aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x945c175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x945c33f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a4c838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a4c901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    6   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x94593b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x945c16e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x945f05a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x9104f3ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x910523dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x9104fcda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x9104f571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x9104f488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    9   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x94593b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x945c16e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x945f05a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x9104f3ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x910523dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x9104fcda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x9104f571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x9104f488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    9   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x94593c0e mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore          0x96cec7f0 MPDelayUntil + 43
    2   ...ple.CoreServices.CarbonCore          0x96cfc226 Delay + 107
    3   ...opellerheads.rewire.library          0x4bad7274 RWIsReWireMixerAppRunningImp + 33924
    4   ...opellerheads.rewire.library          0x4bae5208 RWIsReWireMixerAppRunningImp + 91160
    5   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    6   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 10 Crashed:
    0   ???                                     0000000000 0 + 0
    1   ...lodyneEssentialRewireDevice          0x4bb858ea GNThreadHandler(void*) + 94
    2   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    3   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 10 crashed with X86 Thread State (32-bit):
      eax: 0x47487490  ebx: 0x4bba3988  ecx: 0x03c9e794  edx: 0x474872d0
      edi: 0x03c9e790  esi: 0xb05d2000  ebp: 0xb05d1f48  esp: 0xb05d1f1c
       ss: 0x0000001f  efl: 0x00010206  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro 9.1.8 (1700.67) <94981650-518B-2288-F07D-F28F27103100> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe84000 -   0xe84ff7  libgenkit.dylib ??? (???) <84BB06AA-B775-417E-055E-4A40AB03771F> /usr/lib/libgenkit.dylib
      0xe88000 -   0xea6fef  com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeb5000 -   0xee8fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <E8A99468-7726-CCFE-8D26-DDBC9D5E1AC3> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xef5000 -   0xf26ff3  com.apple.musicaudiodataservices 1.1 (251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf35000 -   0xf93ff3  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <0075F2D0-7A48-A362-2D49-4FECA5E9DF8E> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfa9000 -  0x11e1fff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12e9000 -  0x1363fff  com.apple.music.apps.MACore 9.1.8 (477.58) <8025A098-49AF-AFF3-4B8E-4C30C06123FF> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1383000 -  0x13cfffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13f4000 -  0x144aff7  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <448DD823-9EF9-8F88-FFF1-2C7EBD9647B1> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1461000 -  0x187bfeb  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <9EBA5689-ECE1-E66B-6A0D-DE3F9C7867E4> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a99000 -  0x1b7bfeb  com.apple.music.apps.OMF 9.1.8 (109.7) <65E724BA-01DB-68E1-9661-E9B96DA76300> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b8f000 -  0x21e0fe3  com.apple.music.apps.MADSP 9.1.8 (588.98) <93C7306D-07A8-DED0-C59B-B333A475E6DB> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28c5000 -  0x28e6ff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <DB122163-0F15-2E23-16AE-3DCAE41D1870> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28ef000 -  0x2968ff7  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <AFAED0FE-A81D-8204-3633-B6DEF6455B8A> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x297c000 -  0x299dff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <B23133C5-90D1-4B22-7421-375F9374C9EA> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x29a2000 -  0x29a7ff7  com.apple.music.apps.MAResources 9.1.8 (212.66) <EEB8FFEB-61A3-69E2-D6AC-AB5C7B8337E2> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29ab000 -  0x29d4fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29e5000 -  0x29f5ff7  com.apple.AERegistration 1.2 (401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a09000 -  0x2a15ff3  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <1B77FF0E-ABF2-ABC4-5D7E-638D56A24C69> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a1d000 -  0x2ad3fff  com.apple.music.apps.MAFiles 9.1.8 (144.87) <23D65681-872A-1E6B-91E5-B93643CCB375> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2aec000 -  0x2b64fe3  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6ADDBB03-0D41-4473-AFC3-385EFA574B87> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bcb000 -  0x2bd6ff7  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <FEEF1A62-CB87-8FD2-F724-0BB660D63146> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bda000 -  0x2beeff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <FAFE71CD-0FC8-69F4-6FEE-9E873D9F5DD5> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c01000 -  0x2cb6fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2cfc000 -  0x2d98ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2e88000 -  0x2ebdff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <FF2667E3-621B-071C-77D4-9C3125A9298C> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x2edf000 -  0x2ee1ff3  com.apple.music.apps.anvil.resources 9.1.8 (280.4) <AFA90574-C724-880F-9C99-52E064F5B3E8> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x2ee5000 -  0x2ee7ff3  com.apple.music.apps.common.resources 9.1.8 (280.4) <579C1A3C-3636-9A69-185E-819DC01E1083> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x2eeb000 -  0x2eedff3  com.apple.music.apps.ebp.resources 9.1.8 (280.4) <95A85BC0-7D35-B965-2026-1A44E96DC653> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x2ef1000 -  0x2ef3ff3  com.apple.music.apps.efx.resources 9.1.8 (280.4) <FB5BBFF8-DF5E-32BC-4F4C-C5A2DA3FB1A6> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x2ef7000 -  0x2ef9ff3  com.apple.music.apps.egt.resources 9.1.8 (280.4) <11B09E42-9FC4-A372-8738-057CAB888671> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x40100000 - 0x40102ff3  com.apple.music.apps.emx.resources 9.1.8 (280.4) <A3C65CFE-2BBF-DB8C-D4C8-5950284E44CF> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x420a5000 - 0x420b2ff7  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <665A3308-8C50-655A-ED3F-49AF695A408E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x4256d000 - 0x42571ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x42576000 - 0x4257cff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x425a8000 - 0x425b0ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x425f3000 - 0x42617fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4434e000 - 0x444c7ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x444f9000 - 0x448fefe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x44976000 - 0x45467fff  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.36 (6.3.6) <E5776D7C-4999-5409-387B-C844C26D658A> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0x4606b000 - 0x4606dff3  com.apple.music.apps.es1.resources 9.1.8 (280.4) <DB1CD8D6-2C8F-32EE-266B-A28C00B2DFB7> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x46071000 - 0x46073ff3  com.apple.music.apps.es2.resources 9.1.8 (280.4) <7E91D13E-87CF-0B50-14A7-9B7A1E3D345C> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x46077000 - 0x46079ff3  com.apple.music.apps.esp.resources 9.1.8 (280.4) <C5284B25-3250-2201-D4EE-523FE37B9E6B> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x4607d000 - 0x4607fff3  com.apple.music.apps.evb3.resources 9.1.8 (280.4) <068F656F-6CA6-37E9-96F5-1F8E10546A43> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x46090000 - 0x46092ff3  com.apple.music.apps.evd6.resources 9.1.8 (280.4) <B15F044D-60BB-FD36-6A49-685C7DCA7FB4> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x46096000 - 0x46098ff3  com.apple.music.apps.evoc.resources 9.1.8 (280.4) <E361301A-56EF-FF6C-67E5-AC3D9F15E190> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x4609c000 - 0x4609eff3  com.apple.music.apps.evp88.resources 9.1.8 (280.4) <6E1152B4-E9F3-3F6E-7246-A10456888210> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x460a2000 - 0x460a4ff3  com.apple.music.apps.exs24.resources 9.1.8 (280.4) <DC363BF8-D15A-6049-F148-7804EADF7539> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x460a8000 - 0x460aaff3  com.apple.music.apps.guitaramp.resources 9.1.8 (280.4) <27F67C33-C9BA-D9CE-DC89-A33A7F674F2C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x460ae000 - 0x460b0ff3  com.apple.music.apps.guitarcontrols.resources 9.1.8 (280.4) <DAD1836E-F4DD-EB95-2F48-A8AF8552D087> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x460b4000 - 0x460b6ff3  com.apple.music.apps.mutapdel.resources 9.1.8 (280.4) <555A65F0-E35D-0F5F-76EC-7C83D06C68AB> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x460ba000 - 0x460bcff3  com.apple.music.apps.pedalboard.resources 9.1.8 (280.4) <9923C7F7-E681-EE64-06CE-A0C8AABF7E65> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x460c0000 - 0x460c2ff3  com.apple.music.apps.revolver.resources 9.1.8 (280.4) <9AE36A7E-5D8F-681C-ABFD-4BCFE5048FF4> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x460c6000 - 0x460c8ff3  com.apple.music.apps.sphere.resources 9.1.8 (280.4) <FF758F38-414E-5BFD-97CF-778DF8F52EAE> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x4baad000 - 0x4bb34fff +se.propellerheads.rewire.library 1.8.2 build 127 (1.8.2) <17CB1860-29BA-0AA9-332A-E8457724A75B> /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x4bb42000 - 0x4bbe0ff7 +com.celemony.MelodyneEssentialRewireDevice 1.5.3.0 (1.5.3.0) <2CDBD471-D01E-4AFE-A1CE-C3BBB7D7FFDD> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90145ff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90146000 - 0x901d8fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x901e4000 - 0x90f3efe7  com.apple.WebCore 6534 (6534.50) <492FD955-DCB6-2E2D-3F51-CF295516877A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90f3f000 - 0x90f82ff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90f83000 - 0x90f83ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90fcc000 - 0x90fe0fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9101a000 - 0x9102effb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9102f000 - 0x910a9fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x910aa000 - 0x910b5ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x910b6000 - 0x910d7fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x910d8000 - 0x910e0ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91125000 - 0x91127ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91128000 - 0x9112cff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9112d000 - 0x91427fef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91428000 - 0x91434ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x92388000 - 0x92440feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92474000 - 0x92496fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92541000 - 0x925afff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x925b0000 - 0x92821fef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92822000 - 0x929a4fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x929a5000 - 0x92b87fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92b88000 - 0x92b92ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92b93000 - 0x92bd1ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92bd2000 - 0x92c25ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92c26000 - 0x92c26ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92c27000 - 0x92c46fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x92c47000 - 0x92c8effb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92c8f000 - 0x92c92ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c93000 - 0x92cf7ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92cf8000 - 0x92d10ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92d11000 - 0x92de2fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x92de3000 - 0x931f9ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x931fa000 - 0x9321afe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x9321b000 - 0x9321dff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93221000 - 0x9325eff7  com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93316000 - 0x93459fef  com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9345a000 - 0x9345dff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9345e000 - 0x93560fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x93561000 - 0x9359eff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x935ca000 - 0x935cbff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93759000 - 0x9378aff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93843000 - 0x9387cfe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9387d000 - 0x938beff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x938f4000 - 0x93955fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93956000 - 0x93956ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93c51000 - 0x93c57fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93c58000 - 0x93c92ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x93cac000 - 0x93cacff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93cad000 - 0x93d48fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93d49000 - 0x93d89ff3  com.apple.securityinterface 4.0.1 (40418) <FED0C1B5-469E-ADFF-308E-C10B6A68AE45> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93d8a000 - 0x93d8aff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93d93000 - 0x93dd8ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93dd9000 - 0x93de6ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x93dfa000 - 0x93e4aff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93e4b000 - 0x93e9bff7  com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x93e9c000 - 0x94207ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94208000 - 0x94224fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94273000 - 0x942ddfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x942de000 - 0x9438bfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x943cd000 - 0x9447bff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94481000 - 0x944bcfeb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x944bd000 - 0x944e1ff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x944e2000 - 0x94556fef  com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x94557000 - 0x94576ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94577000 - 0x94592ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94593000 - 0x9473aff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9473b000 - 0x94784fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94785000 - 0x948abfe7  com.apple.WebKit 6534 (6534.50) <219E2787-ED6D-5358-6659-35A9D62955F9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9493f000 - 0x9494efe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x9494f000 - 0x94bb5ff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94cf5000 - 0x94d37ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94d5f000 - 0x94ddafff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x95457000 - 0x95461fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95462000 - 0x95495ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95496000 - 0x95497ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95498000 - 0x9549afe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9549b000 - 0x954cbff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x954e2000 - 0x954f3ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95564000 - 0x95644fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95822000 - 0x9592eff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9593c000 - 0x95982ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x95983000 - 0x95a3cfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95a3d000 - 0x95b3efe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x95b47000 - 0x95b48ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95b49000 - 0x95b49ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95b4a000 - 0x95b55ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95b56000 - 0x95b63ff7  com.apple.AppleFSCompression 24.4 (1.0) <09E7FA6D-4BE8-5CA6-732F-D70EDF0E3910> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95b70000 - 0x95ba8ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95ba9000 - 0x95d24fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95d25000 - 0x96608ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96757000 - 0x96a7bfef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96a7c000 - 0x96a80ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96aa4000 - 0x96af1feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96af2000 - 0x96c20fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96c21000 - 0x96c21ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96c22000 - 0x96f42ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96f43000 - 0x96f53ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96f68000 - 0x96f6cff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9712e000 - 0x97154ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97155000 - 0x971d7ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97226000 - 0x97269ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9726a000 - 0x97277fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <828CCEAB-F193-90F1-F48C-54E3C88B29BC> /usr/lib/libbz2.1.0.dylib
    0x97278000 - 0x974a3ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97afe000 - 0x97bd8fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97bd9000 - 0x97c14fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x97c15000 - 0x97cadfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97cae000 - 0x97caeff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97caf000 - 0x97d28ff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97d29000 - 0x97d81fe7  com.apple.datadetectorscore 2.0 (80.7) <58C659CA-72CC-31D2-9732-09BF1A0CAAF6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97d82000 - 0x97e4dfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97e54000 - 0x97e69fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97e6a000 - 0x97ed9ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97f11000 - 0x97f1ffe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x97f8e000 - 0x9806bfe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9806c000 - 0x98071ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98072000 - 0x980cfff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x980d0000 - 0x9820dfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9820e000 - 0x98310fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x98311000 - 0x98318ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x98319000 - 0x987d4ff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x987d5000 - 0x9882bff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9882c000 - 0x988a9ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x988aa000 - 0x988d2ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x988d3000 - 0x988deff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x988df000 - 0x98ae6feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98ae7000 - 0x98b41fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98b42000 - 0x98b45fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98b46000 - 0x98b80fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x98b81000 - 0x98bf8ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98bf9000 - 0x98c07ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98c08000 - 0x98c0bff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98c0c000 - 0x98deafe3  libType1Scaler.dylib ??? (???) <97A2DBFA-C50B-266C-E63A-D6644F3B737C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x98e0d000 - 0x98e16ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98e17000 - 0x99268fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x99269000 - 0x9969eff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9979b000 - 0x997cefff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x997cf000 - 0x9987bfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9987c000 - 0x998a3ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x998a4000 - 0x99a66feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x99a67000 - 0x99a79ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x99a7a000 - 0x99a7aff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x99aa6000 - 0x99b43fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x99b45000 - 0x99b89fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x99b8a000 - 0x99c46fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99c47000 - 0x99cc7feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99d10000 - 0x99e3dffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99f74000 - 0x99fb8ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x99fb9000 - 0x99fbffe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x99ff9000 - 0x9a0a1ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9a0a2000 - 0x9a891557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9a892000 - 0x9a8a2ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a8fd000 - 0x9ab18ff7  com.apple.JavaScriptCore 6534 (6534.49) <B8523DCA-B8EC-4E44-4E0C-6354BA2E67AB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /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: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 3

    Process:         Logic Pro [142]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [103]
    Date/Time:       2013-07-16 22:12:02.263 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          421755 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  2251 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      C8CCF031-AA1B-4E2F-8597-371C7466E814
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  10
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x9460a08a sem_wait$NOCANCEL$UNIX2003 + 10
    1   ...lodyneEssentialRewireDevice          0x4bba41b4 GNCondition::waitForSignal() + 32
    2   ...lodyneEssentialRewireDevice          0x4bba3d4f GNMessagePort::registerMessagePortWithName(GNString*, GNData* (*)(GNMessagePort*, GNData*), int, int, GNDictionary*) + 315
    3   ...lodyneEssentialRewireDevice          0x4bb45dbe GNReWire2AudioDeviceHost::create() + 172
    4   ...lodyneEssentialRewireDevice          0x4bb43f3f RWDEFOpenDevice + 89
    5   ...opellerheads.rewire.library          0x4baca7ec 0x4baad000 + 120812
    6   ...opellerheads.rewire.library          0x4bacaa06 0x4baad000 + 121350
    7   ...opellerheads.rewire.library          0x4bad088b RWIsReWireMixerAppRunningImp + 6811
    8   ...opellerheads.rewire.library          0x4bace9dd RWM2OpenDeviceImp + 77
    9   ...le.music.apps.MAAudioEngine          0x02b2c7da ReWireUpdateMIDIInfos() + 3226
    10  ...le.music.apps.MAAudioEngine          0x02b13e2b MD::Init(int, bool) + 2555
    11  ...le.music.apps.MAAudioEngine          0x02b1e5f2 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 12066
    12  com.apple.logic.pro                     0x000b7bbb std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 505915
    13  com.apple.logic.pro                     0x000ba721 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 517025
    14  com.apple.logic.pro                     0x003e7175 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3845621
    15  com.apple.logic.pro                     0x001c67ce std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1614926
    16  com.apple.logic.pro                     0x001cad7c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1632764
    17  com.apple.logic.pro                     0x0061b893 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6157587
    18  com.apple.Foundation                    0x925c5e53 _nsnote_callback + 176
    19  com.apple.CoreFoundation                0x95c04793 __CFXNotificationPost + 947
    20  com.apple.CoreFoundation                0x95c0419a _CFXNotificationPostNotification + 186
    21  com.apple.Foundation                    0x925bacf0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    22  com.apple.Foundation                    0x925c80fd -[NSNotificationCenter postNotificationName:object:] + 56
    23  com.apple.AppKit                        0x95d9d216 -[NSApplication _postDidFinishNotification] + 125
    24  com.apple.AppKit                        0x95d9d126 -[NSApplication _sendFinishLaunchingNotification] + 74
    25  com.apple.AppKit                        0x95ef4339 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    26  com.apple.AppKit                        0x95ef3f59 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    27  com.apple.Foundation                    0x925fb298 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    28  com.apple.Foundation                    0x925fb05c _NSAppleEventManagerGenericHandler + 228
    29  com.apple.AE                            0x95465f5c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    30  com.apple.AE                            0x95465e5b dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    31  com.apple.AE                            0x95465d65 aeProcessAppleEvent + 197
    32  com.apple.HIToolbox                     0x96793197 AEProcessAppleEvent + 50
    33  com.apple.AppKit                        0x95d6d7d2 _DPSNextEvent + 1420
    34  com.apple.AppKit                        0x95d6cdd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35  com.apple.AppKit                        0x95d2f1f3 -[NSApplication run] + 821
    36  com.apple.prokit                        0x00fcd3f6 NSProApplicationMain + 326
    37  com.apple.logic.pro                     0x0002bad5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x945ba382 kevent + 10
    1   libSystem.B.dylib                       0x945baa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x945b9f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x945b9cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x945b9781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x945b95c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x94593afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x94594267 mach_msg + 68
    2   com.apple.CoreFoundation                0x95be630f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x95be53f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x95be5221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x925ff2c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x925c6564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x925c6514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    9   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x945b2ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x95c25c83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    3   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x945b9412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x945b99a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x945b95c6 start_wqthread + 30
    Thread 5:
    0   libSystem.B.dylib                       0x945c1aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x945c175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x945c33f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a4c838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a4c901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    6   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x945c1aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x945c175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x945c33f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a4c838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a4c901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    6   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x94593b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x945c16e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x945f05a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x9104f3ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x910523dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x9104fcda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x9104f571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x9104f488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    9   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x94593b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x945c16e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x945f05a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x9104f3ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x910523dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x9104fcda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x9104f571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x9104f488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    9   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x94593c0e mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore          0x96cec7f0 MPDelayUntil + 43
    2   ...ple.CoreServices.CarbonCore          0x96cfc226 Delay + 107
    3   ...opellerheads.rewire.library          0x4bad7274 RWIsReWireMixerAppRunningImp + 33924
    4   ...opellerheads.rewire.library          0x4bae5208 RWIsReWireMixerAppRunningImp + 91160
    5   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    6   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 10 Crashed:
    0   ???                                     0000000000 0 + 0
    1   ...lodyneEssentialRewireDevice          0x4bb858ea GNThreadHandler(void*) + 94
    2   libSystem.B.dylib                       0x945c1259 _pthread_start + 345
    3   libSystem.B.dylib                       0x945c10de thread_start + 34
    Thread 10 crashed with X86 Thread State (32-bit):
      eax: 0x47487490  ebx: 0x4bba3988  ecx: 0x03c9e794  edx: 0x474872d0
      edi: 0x03c9e790  esi: 0xb05d2000  ebp: 0xb05d1f48  esp: 0xb05d1f1c
       ss: 0x0000001f  efl: 0x00010206  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro 9.1.8 (1700.67) <94981650-518B-2288-F07D-F28F27103100> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe84000 -   0xe84ff7  libgenkit.dylib ??? (???) <84BB06AA-B775-417E-055E-4A40AB03771F> /usr/lib/libgenkit.dylib
      0xe88000 -   0xea6fef  com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeb5000 -   0xee8fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <E8A99468-7726-CCFE-8D26-DDBC9D5E1AC3> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xef5000 -   0xf26ff3  com.apple.musicaudiodataservices 1.1 (251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf35000 -   0xf93ff3  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <0075F2D0-7A48-A362-2D49-4FECA5E9DF8E> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfa9000 -  0x11e1fff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12e9000 -  0x1363fff  com.apple.music.apps.MACore 9.1.8 (477.58) <8025A098-49AF-AFF3-4B8E-4C30C06123FF> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1383000 -  0x13cfffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13f4000 -  0x144aff7  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <448DD823-9EF9-8F88-FFF1-2C7EBD9647B1> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1461000 -  0x187bfeb  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <9EBA5689-ECE1-E66B-6A0D-DE3F9C7867E4> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a99000 -  0x1b7bfeb  com.apple.music.apps.OMF 9.1.8 (109.7) <65E724BA-01DB-68E1-9661-E9B96DA76300> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b8f000 -  0x21e0fe3  com.apple.music.apps.MADSP 9.1.8 (588.98) <93C7306D-07A8-DED0-C59B-B333A475E6DB> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28c5000 -  0x28e6ff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <DB122163-0F15-2E23-16AE-3DCAE41D1870> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28ef000 -  0x2968ff7  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <AFAED0FE-A81D-8204-3633-B6DEF6455B8A> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x297c000 -  0x299dff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <B23133C5-90D1-4B22-7421-375F9374C9EA> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x29a2000 -  0x29a7ff7  com.apple.music.apps.MAResources 9.1.8 (212.66) <EEB8FFEB-61A3-69E2-D6AC-AB5C7B8337E2> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29ab000 -  0x29d4fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29e5000 -  0x29f5ff7  com.apple.AERegistration 1.2 (401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a09000 -  0x2a15ff3  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <1B77FF0E-ABF2-ABC4-5D7E-638D56A24C69> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a1d000 -  0x2ad3fff  com.apple.music.apps.MAFiles 9.1.8 (144.87) <23D65681-872A-1E6B-91E5-B93643CCB375> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2aec000 -  0x2b64fe3  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6ADDBB03-0D41-4473-AFC3-385EFA574B87> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bcb000 -  0x2bd6ff7  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <FEEF1A62-CB87-8FD2-F724-0BB660D63146> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bda000 -  0x2beeff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <FAFE71CD-0FC8-69F4-6FEE-9E873D9F5DD5> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c01000 -  0x2cb6fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2cfc000 -  0x2d98ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2e88000 -  0x2ebdff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <FF2667E3-621B-071C-77D4-9C3125A9298C> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x2edf000 -  0x2ee1ff3  com.apple.music.apps.anvil.resources 9.1.8 (280.4) <AFA90574-C724-880F-9C99-52E064F5B3E8> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x2ee5000 -  0x2ee7ff3  com.apple.music.apps.common.resources 9.1.8 (280.4) <579C1A3C-3636-9A69-185E-819DC01E1083> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x2eeb000 -  0x2eedff3  com.apple.music.apps.ebp.resources 9.1.8 (280.4) <95A85BC0-7D35-B965-2026-1A44E96DC653> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x2ef1000 -  0x2ef3ff3  com.apple.music.apps.efx.resources 9.1.8 (280.4) <FB5BBFF8-DF5E-32BC-4F4C-C5A2DA3FB1A6> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x2ef7000 -  0x2ef9ff3  com.apple.music.apps.egt.resources 9.1.8 (280.4) <11B09E42-9FC4-A372-8738-057CAB888671> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x40100000 - 0x40102ff3  com.apple.music.apps.emx.resources 9.1.8 (280.4) <A3C65CFE-2BBF-DB8C-D4C8-5950284E44CF> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x420a5000 - 0x420b2ff7  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <665A3308-8C50-655A-ED3F-49AF695A408E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x4256d000 - 0x42571ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x42576000 - 0x4257cff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x425a8000 - 0x425b0ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x425f3000 - 0x42617fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4434e000 - 0x444c7ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x444f9000 - 0x448fefe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x44976000 - 0x45467fff  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.36 (6.3.6) <E5776D7C-4999-5409-387B-C844C26D658A> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0x4606b000 - 0x4606dff3  com.apple.music.apps.es1.resources 9.1.8 (280.4) <DB1CD8D6-2C8F-32EE-266B-A28C00B2DFB7> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x46071000 - 0x46073ff3  com.apple.music.apps.es2.resources 9.1.8 (280.4) <7E91D13E-87CF-0B50-14A7-9B7A1E3D345C> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x46077000 - 0x46079ff3  com.apple.music.apps.esp.resources 9.1.8 (280.4) <C5284B25-3250-2201-D4EE-523FE37B9E6B> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x4607d000 - 0x4607fff3  com.apple.music.apps.evb3.resources 9.1.8 (280.4) <068F656F-6CA6-37E9-96F5-1F8E10546A43> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x46090000 - 0x46092ff3  com.apple.music.apps.evd6.resources 9.1.8 (280.4) <B15F044D-60BB-FD36-6A49-685C7DCA7FB4> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x46096000 - 0x46098ff3  com.apple.music.apps.evoc.resources 9.1.8 (280.4) <E361301A-56EF-FF6C-67E5-AC3D9F15E190> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x4609c000 - 0x4609eff3  com.apple.music.apps.evp88.resources 9.1.8 (280.4) <6E1152B4-E9F3-3F6E-7246-A10456888210> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x460a2000 - 0x460a4ff3  com.apple.music.apps.exs24.resources 9.1.8 (280.4) <DC363BF8-D15A-6049-F148-7804EADF7539> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x460a8000 - 0x460aaff3  com.apple.music.apps.guitaramp.resources 9.1.8 (280.4) <27F67C33-C9BA-D9CE-DC89-A33A7F674F2C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x460ae000 - 0x460b0ff3  com.apple.music.apps.guitarcontrols.resources 9.1.8 (280.4) <DAD1836E-F4DD-EB95-2F48-A8AF8552D087> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x460b4000 - 0x460b6ff3  com.apple.music.apps.mutapdel.resources 9.1.8 (280.4) <555A65F0-E35D-0F5F-76EC-7C83D06C68AB> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x460ba000 - 0x460bcff3  com.apple.music.apps.pedalboard.resources 9.1.8 (280.4) <9923C7F7-E681-EE64-06CE-A0C8AABF7E65> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x460c0000 - 0x460c2ff3  com.apple.music.apps.revolver.resources 9.1.8 (280.4) <9AE36A7E-5D8F-681C-ABFD-4BCFE5048FF4> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x460c6000 - 0x460c8ff3  com.apple.music.apps.sphere.resources 9.1.8 (280.4) <FF758F38-414E-5BFD-97CF-778DF8F52EAE> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x4baad000 - 0x4bb34fff +se.propellerheads.rewire.library 1.8.2 build 127 (1.8.2) <17CB1860-29BA-0AA9-332A-E8457724A75B> /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x4bb42000 - 0x4bbe0ff7 +com.celemony.MelodyneEssentialRewireDevice 1.5.3.0 (1.5.3.0) <2CDBD471-D01E-4AFE-A1CE-C3BBB7D7FFDD> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90145ff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90146000 - 0x901d8fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x901e4000 - 0x90f3efe7  com.apple.WebCore 6534 (6534.50) <492FD955-DCB6-2E2D-3F51-CF295516877A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90f3f000 - 0x90f82ff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90f83000 - 0x90f83ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90fcc000 - 0x90fe0fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9101a000 - 0x9102effb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9102f000 - 0x910a9fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x910aa000 - 0x910b5ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x910b6000 - 0x910d7fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x910d8000 - 0x910e0ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91125000 - 0x91127ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91128000 - 0x9112cff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9112d000 - 0x91427fef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91428000 - 0x91434ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x92388000 - 0x92440feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92474000 - 0x92496fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92541000 - 0x925afff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x925b0000 - 0x92821fef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92822000 - 0x929a4fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x929a5000 - 0x92b87fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92b88000 - 0x92b92ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92b93000 - 0x92bd1ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92bd2000 - 0x92c25ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92c26000 - 0x92c26ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92c27000 - 0x92c46fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x92c47000 - 0x92c8effb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92c8f000 - 0x92c92ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c93000 - 0x92cf7ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92cf8000 - 0x92d10ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92d11000 - 0x92de2fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x92de3000 - 0x931f9ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x931fa000 - 0x9321afe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x9321b000 - 0x9321dff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93221000 - 0x9325eff7  com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93316000 - 0x93459fef  com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9345a000 - 0x9345dff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9345e000 - 0x93560fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x93561000 - 0x9359eff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x935ca000 - 0x935cbff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93759000 - 0x9378aff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93843000 - 0x9387cfe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9387d000 - 0x938beff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x938f4000 - 0x93955fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93956000 - 0x93956ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93c51000 - 0x93c57fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93c58000 - 0x93c92ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x93cac000 - 0x93cacff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93cad000 - 0x93d48fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93d49000 - 0x93d89ff3  com.apple.securityinterface 4.0.1 (40418) <FED0C1B5-469E-ADFF-308E-C10B6A68AE45> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93d8a000 - 0x93d8aff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93d93000 - 0x93dd8ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93dd9000 - 0x93de6ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x93dfa000 - 0x93e4aff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93e4b000 - 0x93e9bff7  com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x93e9c000 - 0x94207ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94208000 - 0x94224fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94273000 - 0x942ddfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x942de000 - 0x9438bfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x943cd000 - 0x9447bff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94481000 - 0x944bcfeb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x944bd000 - 0x944e1ff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x944e2000 - 0x94556fef  com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x94557000 - 0x94576ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94577000 - 0x94592ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94593000 - 0x9473aff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9473b000 - 0x94784fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94785000 - 0x948abfe7  com.apple.WebKit 6534 (6534.50) <219E2787-ED6D-5358-6659-35A9D62955F9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9493f000 - 0x9494efe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x9494f000 - 0x94bb5ff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94cf5000 - 0x94d37ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94d5f000 - 0x94ddafff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x95457000 - 0x95461fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95462000 - 0x95495ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95496000 - 0x95497ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95498000 - 0x9549afe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9549b000 - 0x954cbff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x954e2000 - 0x954f3ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95564000 - 0x95644fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95822000 - 0x9592eff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9593c000 - 0x95982ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x95983000 - 0x95a3cfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95a3d000 - 0x95b3efe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x95b47000 - 0x95b48ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95b49000 - 0x95b49ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95b4a000 - 0x95b55ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95b56000 - 0x95b63ff7  com.apple.AppleFSCompression 24.4 (1.0) <09E7FA6D-4BE8-5CA6-732F-D70EDF0E3910> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95b70000 - 0x95ba8ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95ba9000 - 0x95d24fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95d25000 - 0x96608ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96757000 - 0x96a7bfef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96a7c000 - 0x96a80ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96aa4000 - 0x96af1feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96af2000 - 0x96c20fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96c21000 - 0x96c21ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96c22000 - 0x96f42ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96f43000 - 0x96f53ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96f68000 - 0x96f6cff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9712e000 - 0x97154ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97155000 - 0x971d7ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97226000 - 0x97269ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9726a000 - 0x97277fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <828CCEAB-F193-90F1-F48C-54E3C88B29BC> /usr/lib/libbz2.1.0.dylib
    0x97278000 - 0x974a3ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97afe000 - 0x97bd8fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97bd9000 - 0x97c14fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x97c15000 - 0x97cadfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97cae000 - 0x97caeff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97caf000 - 0x97d28ff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97d29000 - 0x97d81fe7  com.apple.datadetectorscore 2.0 (80.7) <58C659CA-72CC-31D2-9732-09BF1A0CAAF6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97d82000 - 0x97e4dfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97e54000 - 0x97e69fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97e6a000 - 0x97ed9ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97f11000 - 0x97f1ffe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x97f8e000 - 0x9806bfe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9806c000 - 0x98071ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98072000 - 0x980cfff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x980d0000 - 0x9820dfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9820e000 - 0x98310fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x98311000 - 0x98318ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x98319000 - 0x987d4ff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x987d5000 - 0x9882bff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9882c000 - 0x988a9ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x988aa000 - 0x988d2ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x988d3000 - 0x988deff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x988df000 - 0x98ae6feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98ae7000 - 0x98b41fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98b42000 - 0x98b45fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98b46000 - 0x98b80fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x98b81000 - 0x98bf8ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98bf9000 - 0x98c07ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98c08000 - 0x98c0bff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98c0c000 - 0x98deafe3  libType1Scaler.dylib ??? (???) <97A2DBFA-C50B-266C-E63A-D6644F3B737C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x98e0d000 - 0x98e16ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98e17000 - 0x99268fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x99269000 - 0x9969eff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9979b000 - 0x997cefff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x997cf000 - 0x9987bfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9987c000 - 0x998a3ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x998a4000 - 0x99a66feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x99a67000 - 0x99a79ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x99a7a000 - 0x99a7aff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x99aa6000 - 0x99b43fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x99b45000 - 0x99b89fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x99b8a000 - 0x99c46fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99c47000 - 0x99cc7feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99d10000 - 0x99e3dffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99f74000 - 0x99fb8ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x99fb9000 - 0x99fbffe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x99ff9000 - 0x9a0a1ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9a0a2000 - 0x9a891557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9a892000 - 0x9a8a2ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a8fd000 - 0x9ab18ff7  com.apple.JavaScriptCore 6534 (6534.49) <B8523DCA-B8EC-4E44-4E0C-6354BA2E67AB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /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: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 3

  • HT4623 my iPhone 5 keeps freezing every time i use the device. any suggestions ?

       .

    Delete background apps from memory and then Reset. Press the home button twice quickly, in the new row of icons at the bottom of the screen, touch and hold on an icon. When the Red Minus Signs appear, tap them all. When done Reset, hold both the home and power buttons until the iPhone restarts itself, ignore the "slide to power off" let the iPhone restart itself. Usually takes about 10 seconds of holding both buttons.

  • Macbook froze every time I use an application.

    Okay here is the problem. I have a Macbook Pro 15 inch laptop that freezes every time I use or click any application. The problem seems to be continuing for about 3 days now. I have no clue if there is a corrupted file, but should I reinstall the Mac OS X Install DVD to fix the problem?

    Start by checking how much free space you have on your HD; open a Finder window and read the "xxGB available" message at the bottom. (may be at the top if you have the sidebar collapsed).

  • Hello.  I have an old G4 Tower at 10.4.11.  The password for Keychain has been lost.  How can I generate a new password for Keychain?  Every time I use Safari it want me to enter the password.  Any suggestions?  Thank you

    Hello.  I have an old G4 Tower at 10.4.11.  The password for Keychain has been lost.  How can I generate a new password for Keychain?  Every time I use Safari it wants me to enter the keychain password.  Any suggestions?  Thank you

    See if this helps...
    Open Keychain Access in Utilities, use Keychain First Aid under the Keychain Menu item, then either check the Password under that item, change it, or delete it and start over.
    Keychain Access asks for keychain "login" after changing login password...
    http://support.apple.com/kb/HT1631
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • Every time I use PSE 10 to organize my photos, it says it has encountered a problem and has to close

    Every time I use PSE 10 to organize my photos, it says it has encountered a problem and has to close.  How can I reinstall it without going to a newer version?

    Generate another of those errors, and click the "Click here" link in the error message box.
    What modname and modver do you see for the error? (Precise spelling, please.)
    If the error is a BEX and you thus aren't seeing a modname or modver, let us know what P1 through P9 items are being listed for the error.

  • I installed the updated iphoto 11 software and now every time I use it my computer shuts down.  Please help

    I bought iphoto 11 for my mac book pro.  I already had an older version of iphoto.  Every time I use iphoto 11 is turns my computer off abruptly.  Please advise. Thank you.

    Do you get this type of screen:
    If so  boot into Safe Mode, Mac OS X: Starting up in Safe Mode, and try launching iPhoto again.  If that's successful reboot normally and try iPhoto again.
    If the window isn't as shown above as a quick test try this: Try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iPhoto folder (Snow Leopard and Earlier).
    or with Mt. Lion from the User/Library/Containers/com.apple.iPhoto/
    Data/Library/Caches/com.apple.iPhoto folder
    3 - launch iPhoto and try again.
    NOTE 1: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    OT

  • Skype disconnects my Wifi every time I use video.

    Skype disconnects my Wifi every time I use video. About a minute or so after using video as opposed to just voice my Internet connection fails. Little red X telling my home network dosen't exist.  I have to use the diagnose problems feature to get it back and sometimes that dosent even work. Shutting down my wifi card is a pretty extreme glitch. I have no other connection issues, have 30+mbps and run a pretty standard setup: Firefox windows 7 etc. Any help would be appreciated. thanks

    Skype doesn't attack Internet connections.  It doesn't do anything abnormal that your computer/network shouldn't be able to handle.  If you Internet connection is failing the issue lies either in your router, your line, or locally on your computer due to lack of resources/power when using simultaneous devices in your computer (audio, video, wireless card all being USB based).  If it's only related to the wireless card then it's going to be a USB resource (USB bandwidth/power) or driver issue.  Distance is also a consideration if it can't sustain a connection so you can always try to move closer to your wireless router to see if it makes any difference.
    You need to isolate the issue to one of the things I mentioned above.  Try wired instead of wireless, try to bypass the router, or disable uPnP in Skype or your router as it may have issues with it.

  • I have a MacBook Air mid 2012 11" that keeps freezing every time I use it

    Hi Everyone
    I have a MacBook Air mid 2012 11" that keeps freezing every time I use it
    It's running a i7 2ghz with 8gb ram And OS X 10.8.4
    I have had the Air around 11 months and the last week is the first time it has ever frozen , now it will do it after about 15 min use
    It seems a little warmer than usual and it will freeze no matter what is running , or just idle .
    And just to add , no google chrome installed 

    The next time you have the problem, note the exact time: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Scroll back in the log to the time you noted above. Select any messages timestamped from then until the end of the episode, or until they start to repeat. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Before every time I use to open a new tab it comes as top site. Now not anymore and instead is an automatically website calle Only Search. I went to Safari preference I change everything and when I quit Safari all the changes are gone.

    Every time I used to open a new tab it comes as top site. Now not anymore , instead it open in a website called Only Search, I went to safari preferences and made all changes but after I quit Safari and open again all changes are gone. I can not change anything and new tab comes by it self with other website.

    There is no need to download anything to solve this problem.
    You may have installed the "Downlite" or "VSearch" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the support article, you may also need to remove this item in the same way:
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This malware is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • I recently bought two iMac quad core i5 processor speed 2.5 Ghz. Every time I use Air Drop and I send a file from one iMac to the other, a black curtain drops and I am asked to restart the computer!!! What can I do?

    I recently bought two iMac quad core i5 processor speed 2.5 Ghz. Every time I use Air Drop and I send a file from one iMac to the other, a black curtain drops and I am asked to restart the computer!!! What can I do?

    That's a kernel panic and indicates some sort of problem either with the computer's hardware or software. Visit The XLab FAQs and read the FAQ on diagnosing kernel panics. It would help to post the panic log: Mac OS X- How to log a kernel panic.
    Meanwhile, try booting the computers into Safe Mode then restarting normally. If this is simply a disk repair or cache file problem then this may fix it.
    You can also try creating a new admin account on each computer then booting into the new account. This would help determine if the problem is related to a bad file in the user accounts.

  • Just recently getting error message when downloading podcasts.  Says "The iTunes Library file cannot be save.  You do not have enough access privileges for this operation."  Doesn't happen every time.  Using Windows 7.  What can I do?

    Just recently getting error message when downloading podcasts.  Says "The iTunes Library file cannot be save.  You do not have enough access privileges for this operation."  Doesn't happen every time.  Using Windows 7.  What can I do?  The files seem to be there but I don't know if they are being backed up to cloud.

    Hi, DickmoAZ.  
    Thank you for visiting Apple Support Communities.
    This sounds like a permission issue most likely with the iTunes Media folder.  Here is an article that will help you troubleshoot this issue.
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/ts1277
    Cheers,
    Jason H.

Maybe you are looking for

  • External Hard drive won't read on iMac

    I recently got a new pc and I was using an external hard drive to transfer the files that I wanted from my mac to my pc. I put all the files on that I needed and when I went to copy them to my pc, apparently I did something I shouldn't have? I need t

  • What is a good case for iPhone 5? both stylish and protective.

    I want a new case for my iphone 5 i want something thats both good looking and can protect my Phone. especialy shock absorbing. my phone fell like 7 times including 1 hard fall ever since Google app is messed up ( letters override eachother) so yeah.

  • I cant be heard on my iphone 4 during calls. Any suggestions??

    will i have to take it back to the store or is there an alternative method?

  • HT2731 Setting up apple ID

    i am living in germany. I enter my visa card informations to setup Apple ID. but it says this is not valid. but it is valid. may be it is not accepting the german card system. what is the problem. please help

  • Accessing imported CSS

    All, I easily imported a custom CSS, but now am having trouble accessing it. According to the docs (http://otn.oracle.com/products/database/htmldb/pdf/html_db_templates_white_paper.pdf page 10 sample code) I should be able to access it via #WORKSPACE