Launchd.plist not launching according to SetCalendarInterval

I have created a launchd.plist that runs a shell script to connect to a remote server and back up some log files using rsync. I have configured it to run every 15 minutes, but it is running every 10 seconds. I can't figure out why. I have posted my XML to see if anyone can shed light as to why this is happening...
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Disabled</key>
<false/>
<key>Label</key>
<string>com.bgserver.logs</string>
<key>LowPriorityIO</key>
<true/>
<key>Nice</key>
<integer>12</integer>
<key>OnDemand</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/Users/user/Documents/scripts/logs.sh</string>
</array>
<key>RunAtLoad</key>
<false/>
<key>StartCalendarInterval</key>
<dict>
<key>Minute</key>
<integer>15</integer>
</dict>
</dict>
</plist>
Here is what the console is reporting...
10/28/09 3:31:35 PM com.apple.launchd.peruser.501[140] (com.bgserver.logs) Throttling respawn: Will start in 10 seconds
10/28/09 3:31:45 PM com.bgserver.logs[2067] receiving file list ...
10/28/09 3:31:45 PM com.bgserver.logs[2067] done
10/28/09 3:31:45 PM com.bgserver.logs[2067] sent 20 bytes received 6398 bytes 12836.00 bytes/sec
10/28/09 3:31:45 PM com.bgserver.logs[2067] total size is 1008110615 speedup is 157075.51
10/28/09 3:31:45 PM com.apple.launchd.peruser.501[140] (com.bgserver.logs) Throttling respawn: Will start in 10 seconds
10/28/09 3:31:55 PM com.bgserver.logs[2071] receiving file list ...
10/28/09 3:31:55 PM com.bgserver.logs[2071] done
10/28/09 3:31:55 PM com.bgserver.logs[2071] sent 20 bytes received 6398 bytes 12836.00 bytes/sec
10/28/09 3:31:55 PM com.bgserver.logs[2071] total size is 1008110615 speedup is 157075.51
10/28/09 3:31:55 PM com.apple.launchd.peruser.501[140]
Message was edited by: ScottMSEM
Message was edited by: ScottMSEM
Message was edited by: ScottMSEM

Ok, I made the changes you mentioned, and now my plist looks like this....
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Disabled</key>
<false/>
<key>Label</key>
<string>com.bgserver.logs</string>
<key>LowPriorityIO</key>
<true/>
<key>Nice</key>
<integer>12</integer>
<key>Program</key>
<array>
<string>/Users/sford/Documents/scripts/logs.sh</string>
</array>
<key>RunAtLoad</key>
<false/>
<key>StartInterval</key>
<integer>900</integer>
</dict>
</plist>
When I type launchctl list I see com.bgserver.logs is working...
- 0 com.bgserver.logs
If I type launchctl start com.bgserver.logs, it runs perfectly. The script goes, and does what is expected. Then it never runs again...
If I type launchctl list, I get the same message that it is working...
- 0 com.bgserver.logs
Here is my console report again...
10/29/09 11:15:49 AM com.bgserver.logs[556] building file list ...
10/29/09 11:15:49 AM com.bgserver.logs[556] done
10/29/09 11:15:49 AM com.bgserver.logs[556] sent 940 bytes received 20 bytes 1920.00 bytes/sec
10/29/09 11:15:49 AM com.bgserver.logs[556] total size is 231809 speedup is 241.47
You can see it ran at 11:15:49 AM, so I expected it would run at 11:30:49 AM.
Thanks!

Similar Messages

  • ITunes will not Launch 10.6 Snow Leopard

    I just upgraded to 10.6 last night and now my iTunes will not launch. I removed all my extra plugins and am trying to start fresh. Here's the error message that pops up in the Console:
    8/29/09 10:26:15 AM [0x0-0xbddbdd].com.apple.iTunes[9902] [Deprecated] CocoaJava: com.apple.cocoa.foundation.NSRuntime
    8/29/09 10:26:15 AM [0x0-0xbddbdd].com.apple.iTunes[9902] -[NSJavaVirtualMachine initWithClassPath:] FATAL: cannot initialize ObjCJava. Exit
    8/29/09 10:26:15 AM com.apple.launchd.peruser.501[237] ([0x0-0xbddbdd].com.apple.iTunes[9902]) Exited with exit code: 255
    Any ideas?

    OK, this solution worked for me:
    Quit all programs, force-quit iTunes if it is locked up.
    Disconnect any iPhone or iPods
    Go to: Macintosh HD/users/"your user name"/library/preferences, and drag to trash the preference panels: with itunes in the name: including>com.apple.iTunes.plist, com.apple.iTunes.eq.plist
    Download iTunes 8.2.1 from theApple website,
    Run the iTunes 8.2.1 installer
    It will have you set up iTunes as if for the first time.
    Launch iTunes after it is set up, it will take a bit as it creates new prefence files.
    Quit iTunes>restart the mac>Launch iTunes and after it loads plug in your iPod or iPhone.

  • Can someone give me an example of a very simple launchd.plist file that...

    Launches an agent and allows the agent general internet access?
    I have this simple plist but what happens is that launchd launches it and then kills it (abort) and then launches it again and does the same thing 10 times and quits. I have traced the 'action' that causes this. As soon as my app tries to get a socket and connect, it is killed.
    I did put in a socket thing in the launchd plist file, but then it seems that launchd answers the call, not the thing I want to, then my app gets stuck on a recv call thinking it has sent data to a server and is waiting for an answer which will never come.
    I do not know if they have these for macs (I am sure they do), but imagine a tool like ICQ or Instant Messenger. It loads when the user logs on, you have your contacts list, and it coordinates via some foreign server, although once a match is made direct connects to person you are chatting with.
    How would you launch an agent like that? I can't figure out the plist entries needed. I can either launch my app and have it get "locked" by a recv call cause launchd answered the connect, and accepted the send, or I can remove the socket stuff and get in this cycle of launches and aborts.
    A simple example would be of great help.

    An object is a good way to implement this. For the first, the object would look like this:
    var oT1 = {
        "5" : 0.1,
        "50" : 2,
        "75" : 6,
        "100" : 12
    To get the value associated with the 100 property, the code would look something like:
    var val = oT1["100"];
    The variable "val" would then contain the number 12.
    For the second, the value of each object property could be an array, something like:
    var oT2 = {
        "Debbie" : [5, 0, 16],
        "Carl" : [0, 20, 4],
        "Josh" : [2, 8, 19]
    To get the second item in the array for the "Josh" array, the code would look like:
    var val = oT2["Josh"][1];
    To get the last item in the "Debbie" array, you could do this:
    var val = oT2["Debbie"][2];
    Array indexes are zero-based, so the second item has an index of 1, third item is 2, etc..
    Good luck

  • Launchd .plist breaks when periodic daily runs

    Why does my launchd .plist break when periodic daily runs?
    I wrote a script basically like this
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>GroupName</key>
    <string>wheel</string>
    <key>Label</key>
    <string>MacPeter.thingy</string>
    <key>Program</key>
    <string>/usr/local/sbin/my_script</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/sbin/my_script</string>
    </array>
    <key>StandardErrorPath</key>
    <string>/dev/null</string>
    <key>StandardOutPath</key>
    <string>/var/log/myotherlog.log</string>
    <key>UserName</key>
    <string>root</string>
    <key>WatchPaths</key>
    <array>
    <string>/var/log/my_log.log</string>
    </array>
    </dict>
    </plist>
    I had to do some of this at the command line with sudo to get this .plist file into /Library/LaunchAgents and launch it. The idea is that watches the log file
    my_log.log (which I have created) and when there is activity on this log file it runs my_script, outputting the results to myotherlog.log.
    In order to avoid my_log simply growing unmanageably I also modified the /etc/daily file to add my_log to the list of logs which are rotated daily at 3:15 a.m. At 3.15, periodic daily runs, it moves and gzips my_log.log to my_log.log.0.gz and it creates a fresh my_log.log using touch.
    At this point my .plist remains loaded but stops working: it nolonger watches the new my_log.log.
    As a workaround I have put the following lines in /etc/daily.local:
    launchctl unload /Library/LaunchAgents/MacPeter.thingy.plist
    launchctl load /Library/LaunchAgents/MacPeter.thingy.plist
    This solves the problem. My question:
    Is my workaround really necessary or am I missing some other point about
    using launchd and .plist files?
    G5 single processor   Mac OS X (10.4)  

    Just as a quick guess, I would say that nothing actually breaks, you just need to keep in mind that if you roll the log you need to also reopen the file handle that points to the log file. If you don't reopen the file it will continue to look at the old, possible unlinked file pointer until the process is restarted.
    Not having much to do with launchd I would assume that this is what is happening. You need to get it to reopen the log file after is it rolled.
    Seeya...Q

  • Launchd.plist quandry

    Per an earlier post, I finally got Snort® NIDS v2.8.3 compiled, installed, and configured on my Mac Pro running OS 10.5.4. It runs fine if invoked from the keyboard, in either daemon mode or non-daemon mode. I am having problems with launching it via launchd.plist, though, and am hoping that someone can look at my plist with a fresh set of eyes and perhaps be able to immediately tell me why snort isn't launching at computer bootup.
    I want to launch an occurrence of Snort in daemon mode via launchd at bootup. The command that I use to invoke Snort in daemon mode from Terminal's command line is:
      /usr/local/bin/snort -DdevI -i en2 -l /var/log/snort/ -c /usr/local/snort-2.8.3/etc/snort.conf
    This command works fine from Terminal's command line, and launches snort in daemon mode, when root.
    My /Library/LaunchDaemons/snort.plist is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>snort</string>
    <key>ServiceDescription</key>
    <string>launch SNORT® network intrusion detection system at bootup</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/bin/snort</string>
    <string>-DdevI</string>
    <string>-i en2</string>
    <string>-l /var/log/snort/</string>
    <string>-c /usr/local/snort-2.8.3/etc/snort.conf</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    </dict>
    </plist> 
    Other info of interest:
    -rwxr-xr-x 1 root wheel /usr/local/bin/snort
    -rw-r--r-- 1 root wheel /usr/local/snort-2.8.3/snort.plist
    lrwxr-xr-x 1 root wheel /Library/LaunchDaemons/snort.plist -> /usr/local/snort-2.8.3/snort.plist 
    (Note: It is common practice of mine to keep my homebrew launchd plists with the scripts or binaries themselves, and put sym links in /Library/LaunchDaemons/ or ~/Library/LaunchAgents/)
    Thanx, anybody, in advance for any help that you can provide.

    1. You should get rid of the "®" in your plist for reasons both legal and syntactic--the Snort logo is a registered trademark on the PTO's principal register, the word "snort" is not.
    It would seem that the ServiceDescription functionality, recognized in Tiger, is no longer recognized as a valid launchd.plist keyword in Leopard. The console log indicates that this is now an unrecognized key word -- in each and every one of my launchd items. That keyword, along with its string, was removed. It didn't help, however.
    2. You should not be symlinking anything.
    Symlinking launchd plists has never, ever caused me problems before, and I have probably a half dozen symlinked plists. But, in the interest of trying to get this to work properly, I rm'ed the symlink, and mv'ed the actual plist to /Library/LaunchDaemons. Didn't cure the problem, though.
    3. You should be using *launchctl load* for immediate feedback.
    Thanks for that. I can never remember that command name!
    4. You should read these cover-to-cover:
    http://developer.apple.com/macosx/launchd.html
    http://developer.apple.com/technotes/tn2005/tn2083.html
    OK - done - nothing there jumped out at me as problems with what I was doing, but, handy references to have lying around. I'm already practicing the convention discussed therein that non-user-specific, homebrew, faceless jobs should go in the /Library/LaunchDaemons folder, as would make sense for a NIDS. So I'm not sure if you had something specific in mind when citing these articles or not....

  • Script inside launchd plist

    Hi,
    playing with lauchd plists to get some feeling about how certain things works I came up with this script inside the plist
    <key>ProgramArguments</key>
    <array>
    <string>/bin/sh</string>
    <string>-c</string>
    <string>/bin/df -k| /usr/bin/grep /dev/ | /usr/bin/awk '{ OFS="     "; "date +%d-%b-%Y-%I:%M| getline; print $6, $1, $4, $5;}'</string>
    </array>
    Its close to what I try to do in my trial stage one (1), but see some unwanted and unexpected issues
    1. why is there a tab at the first line?
    2. Where is the first Item, is it replaced with the date or just ignored?
    3. Should I see the result(s) of date as a multi word? If I keep a space between +%d-%b-%Y and %I:%M i get a wrong result.
    *this is what I get*
    29-May-2010-10:53
    /Volumes/TimeMachine /dev/disk5s3 303667180 69%
    /Volumes/RAID01 /dev/disk4 55598552 93%
    /Volumes/Repository /dev/disk0s3 96066032 2%
    /Volumes/Data /dev/disk0s4 506853520 40%
    /Volumes/Applications /dev/disk1s4 11657776 73%
    *This what I actually did expect with the current script ( not what I want );*
    29-May-2010-10:53 / /dev/disk1s3 16190024 62%
    29-May-2010-10:53 /Volumes/TimeMachine /dev/disk5s3 303667180 69%
    29-May-2010-10:53 /Volumes/RAID01 /dev/disk4 55598552 93%
    29-May-2010-10:53 /Volumes/Repository /dev/disk0s3 96066032 2%
    29-May-2010-10:53 /Volumes/Data /dev/disk0s4 506853520 40%
    29-May-2010-10:53 /Volumes/Applications /dev/disk1s4 11657776 73%
    I thought that the date line will get printed every time for each line from the previous piped command
    *This is what I want ( stage 1 )*
    29-May-2010 10:53
    / /dev/disk1s3 16190024 62%
    /Volumes/TimeMachine /dev/disk5s3 303667180 69%
    /Volumes/RAID01 /dev/disk4 55598552 93%
    /Volumes/Repository /dev/disk0s3 96066032 2%
    /Volumes/Data /dev/disk0s4 506853520 40%
    /Volumes/Applications /dev/disk 1s4 11657776 73%
    *This is what I finally want ( stage 2 )*
    29-May-2010 10:53
    / 1s3 16190024 62%
    TimeMachine 5s3 303667180 69%
    RAID01 4 55598552 93%
    Repository 0s3 96066032 2%
    Data 0s4 506853520 40%
    Applications 1s4 11657776 73%
    Any help or ideas are welcome.
    Thanks
    PS.
    Here the total launchd plist script for copy>test ( check output path )
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Debug</key>
    <true/>
    <key>InitGroups</key>
    <false/>
    <key>Label</key>
    <string>net.test.PlayWithMeScript2</string>
    <key>LowPriorityIO</key>
    <true/>
    <key>ProgramArguments</key>
    <array>
    <string>/bin/sh</string>
    <string>-c</string>
    <string>/bin/df -k| /usr/bin/grep /dev/ | /usr/bin/awk '{ OFS="     "; "date+%d-%b-%Y-%I:%M"| getline; print $6, $1, $4, $5;}'</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>ServiceDescription</key>
    <string>Play With me script</string>
    <key>StandardOutPath</key>
    <string>/Volumes/TestBedDevelopment/TestLogs/log3.txt</string>
    <key>StartInterval</key>
    <integer>60</integer>
    <key>WorkingDirectory</key>
    <string>/</string>
    </dict>
    </plist>

    Absolutely true, but to learn the effects of the shell created by the launchd and a comment somewhere on the web about "if it can in launchd do it there" and that I dont want to install to much, I choose for this, for now.
    Then, with all due respect to whoever wrote that article, he's an idiot
    Launchd has many uses, but it's not the right place to put a multi-step script with umpteen pipes and dependencies.
    Besides, I'm actually surprised it even remotely works, since launchd normally requires each element in the command to be in a separate <ProgramArguments> array element. In other words, your original:
    <key>ProgramArguments</key>
    <array>
    <string>/bin/sh</string>
    <string>-c</string>
    <string>/bin/df -k| /usr/bin/grep /dev/ | /usr/bin/awk '{ OFS="\t"; "date+%d-%b-%Y-%I:%M"| getline; print $6, $1, $4, $5;}'</string>
    </array>
    should really be more like:
    <key>ProgramArguments</key>
    <array>
    <string>/bin/sh</string>
    <string>-c</string>
    <string>/bin/df</string>
    <string>-k</string>
    <string>|</string>
    <string>/usr/bin/grep</string>
    <string>/dev/</string>
    <string>|</string>
    <string>/usr/bin/awk</string>
    <string>'{</string>
    <string>OFS="\t";</string>
    <string>"date+%d-%b-%Y-%I:%M"</string>
    <string>|</string>
    <string>getline;</string>
    <string>print</string>
    <string>$6,</string>
    <string>$1,</string>
    <string>$4,</string>
    <string>$5;}'</string>
    </array>
    and now you can see why it's a really, really bad idea to do. Far easier to just:
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/bin/myscript.sh</string>
    </array>
    and put all the logic in a separate file.
    The first line is gone because you're using getline within your awk statement, which tells awk to skip to the next line.
    I did hoped that didn't effect everything after the ;
    No. As per man awk:
    The ``function'' getline sets $0 to the next input record from the current input file;
    so getline moves onto the next line.
    How can I return a value from a launchd?
    What do you mean 'return a value from launchd'? You don't normally interact with launchd, so getting a return value from it doesn't make much sense.
    And why does my script keep running?
    because that's what launchd is for. By default, launchd is tasked with launching a process and keeping it running. So if a process fails it automatically gets restarted. This is normally what you want for system-level processes.
    Now, that said, launchd has a number of variations that you can use to tell it to launch processes at specific times, or when certain events happen, or only at boot time, etc., but you need to add them to your .plist so that launchd knows when (and when not) to launch/restart your process.

  • Launchd isn't launching my app

    I used Lingon to create this plist file, but launchd is never launching the application. The intent of the StartCalendarInterval specification is to have it run every hour, on the hour. Activity Monitor shows that launchd is active, and running as "root". My own user is the owner of the .app file (and every other .app file, for that matter).
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>org.mark92630.myCalendarBackup</string>
      <key>ProgramArguments</key>
      <array>
      <string>/Users/mark92630/Applications/CalendarBackup</string>
      </array>
      <key>RunAtLoad</key>
      <false/>
      <key>StartCalendarInterval</key>
      <dict>
      <key>Minute</key>
      <integer>0</integer>
      </dict>
    </dict>
    </plist>
    Thanks in advance for any ideas,
    Mark

    Every hour on the hour, I want the app to START, execute, and then STOP (go to end of task). I do not want it to be running (or idling) constantly in the background. Please tell me how making it a login item is going to accomplish that.
    Think of Time Machine backups for something that works the same way that I want my app to. Time Machine is not a login item.
    The way I did this years ago in Unix was to use the "cron" subsystem, but Apple documentation says that cron has been deprecated in favor of launchd.
    P.S. Looking at the system .plist files, lots of apps are being launched this way, by vendors such as Google and Oracle.

  • Request for additional functionality of launchd.plist

    Currently, launchd isn't designed to be event-driven via the launchd.plist. To remove the burden from developers, and to make launchd actually useful (cool!) for system administrators, here's a list of useful event options that could be added to launchd.
    OnGUILogin, to launch jobs when a new GUI session starts, with options to specify Aqua or an X11 session.
    OnGUILogout, like OnGUILogin, to launch jobs when logout is done (optionally to wait until exit before loginwindow is shown), or when the Apple's rootless X11 application is given the Quit command.
    OnGUISession, to launch jobs when a user logs in via the loginwindow as a result of fast user switching.
    OnGUISessionSwtich, to launch jobs when a user switches away from his or her desktop as a result of OnGUISession being triggered, with options for the switched-to GUI session to wait to get to the desktop until the job exits.
    OnConsoleLogin, to launch jobs when login(1) is run via a console.
    OnConsoleExit, to launch jobs to completion before exit(1), well, exits.
    OnShutdown, to replace the functionality (or lack of) that SystemStarter provides by supporting the rc.shutdown.local script.
    OnVolumeMount, with options for specifying GUID, Volume Name, Mount Point, or Media Type (USB, CD, DVD), Device Node, or Bus, so that a process can launch as a result of any, or a specific, volume mounting.
    OnVolumeUnmount, like OnVolumeMount, with option to block umount from finishing so that a job can access the volume before it's gone
    OnVolumeEject, for responding to media ejects
    Properly, OnVolumeMount, OnVolumeDismount, and OnVolumeEject would have its plist published to the specified volume upon being run, and launchd would publish the current version before the media is unmounted.
    This way, a removable device may act as a source or destination repository of launchd jobs, across multiple machines. In a way, this makes the volume "intelligent", and can become self-aware.
    Imagine a flash drive that installs system updates via Installer on machines that need them. Or a CD that checks itself for integrity against a volume MD5 checksum when its inserted.
    Or better yet, a volume that uses Time Machine and asks for an update if its stale. Taking that idea further, imagine a flash drive, formatted as XFS (that Time Machine should use in the future), that takes snapshots of a user's files for instant get-away, gotta go situations where certain files are needed. Kind of like a Back-To-My-Mac via removable media. On top of that, publish a resource on the volume to make it a mobile standalone equivalent of Window's System Restore.
    Integrating this functionality for those three options with securityd's user-agent would allow a user to permit such programs to to run or not (and flag them safe as when Internet downloaded files are launched for the first time, or as when Application sandboxing signs the executable).
    I hope this interests the Apple developers that make launchd. It seems all too often Apple's administration tools could be taken so much further to make our Macs true delight.
    Hope you enjoyed reading.

    I see now that the "StartOnMount" option in the plist can respond to a volume mounting.
    After further reading the man page, trying to decipher the -S and -D options to launchtl, this is what I understand, some or all of which may be wrong:
    1. The Aqua session is created when a user initially logs in. Jobs can be sarted as a result via the RunAtLoad option.
    2. The LoginWindow session is created when a user returns to the login window. I wonder is this is triggered by Logout, Fast User Switching, and/or the Screen Saver methods.
    3. The Background, StandardIO, and System session types aren't defined beyond having their names mentioned in the manual.
    4. The -S option, in combination with the -D option, requires plists exist in the LaunchAgents folder, not the LaunchDaemons folder of the domain.
    5. The session option enables the "user" domain, which based upon the manual example probably means jobs defined in ~/Library/LaunchAgents/.
    As a response to (3) above, how does one create or manage the sessions?

  • Terminal 2.0.1 will not launch.

    Since I upgraded to Leopard, Terminal 2.0.1 will not launch. I don't remember if this started with the original upgrade from 10.4.11 to 10.5 or one of the subsequent upgrades. I replaced Terminal 2.0.1 with Terminal 1.5.1 from 10.4.11 and it works fine. I extracted Terminal 2.0.1 again from the 10.5.4 Combo upgrade to my Desktop with Pacifist and it still did not launch. Something is conflicting with it but what?

    Thanks for the reply. I renamed Terminal 1.5.1 (from 10.4.11) and extracted and installed Terminal 2.0.1 from the 10.5.4 upgrade with Pacifist. I removed com.apple.Terminal.plist from ~Library.Preferences. Terminal 2.0.1 still refused to launch and system.log gave the following entry:
    Jul 5 09:46:25 Macintosh Terminal[1246]: Unable to load nib file: MainMenu, exiting
    Jul 5 09:46:26 Macintosh com.apple.launchd[600] ([0x0-0x85085].com.apple.Terminal[1246]): Exited with exit code: 1
    Jul 5 09:47:28 Macintosh Terminal[1256]: Unable to load nib file: MainMenu, exiting
    Jul 5 09:47:29 Macintosh com.apple.launchd[600] ([0x0-0x86086].com.apple.Terminal[1256]): Exited with exit code: 1
    Jul 5 09:48:40 Macintosh Terminal[1261]: Unable to load nib file: MainMenu, exiting
    Jul 5 09:48:40 Macintosh com.apple.launchd[600] ([0x0-0x87087].com.apple.Terminal[1261]): Exited with exit code: 1
    It did not generate a new .plist file.
    I removed it to the trash and renamed Terminal 1.5.1 and it launches normally.
    I copied Terminal 2.0.1 from a backup drive (last backup to this drive was June 10th) and it launched fine. I wonder if the original Terminal 2.0.1 I had in my Utilities folder somehow got damaged.
    Thanks again for your help.

  • XCode does not launch

    XCode does not launch.
    Disk Util has been run. Prefs plist files deleted. XCode completely un-installed. Installed XCode 3.2.1 with iPhone SDK. XCode never launches. Never installed Safari 4 Beta. Here are details, any suggestions?
    Process: Xcode [221]
    Path: /Developer/Applications/Xcode.app/Contents/MacOS/Xcode
    Identifier: com.apple.Xcode
    Version: ??? (???)
    Build Info: DevToolsIDE-16130000~2
    Code Type: PPC (Translated)
    Parent Process: launchd [103]
    Date/Time: 2009-12-29 18:18:53.203 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 278382 sec
    Crashes Since Last Report: 31
    Per-App Crashes Since Last Report: 30
    Anonymous UUID: 8AE0A0FC-243F-48A7-BE32-6AF7F0CE79FA
    Exception Type: EXC_CRASH (SIGTRAP)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x801bc612 _pthreadkill + 10
    1 libSystem.B.dylib 0x801bbebf pthread_kill + 95
    2 com.apple.Xcode 0xb80bfcb4 0xb8000000 + 785588
    3 com.apple.Xcode 0xb80c01bb 0xb8000000 + 786875
    4 com.apple.Xcode 0xb80dda6c 0xb8000000 + 907884
    5 com.apple.Xcode 0xb814551b spinlockwrapper + 1791
    6 com.apple.Xcode 0xb801d03b 0xb8000000 + 118843
    Thread 1:
    0 libSystem.B.dylib 0x800c58da machmsgtrap + 10
    1 libSystem.B.dylib 0x800c6047 mach_msg + 68
    2 com.apple.Xcode 0xb819448f CallPPCFunctionAtAddressInt + 206155
    3 libSystem.B.dylib 0x800f2fbd pthreadstart + 345
    4 libSystem.B.dylib 0x800f2e42 thread_start + 34
    Thread 2:
    0 com.apple.Xcode 0xb815aa83 spinlockwrapper + 89191
    1 com.apple.Xcode 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.apple.Xcode 0xb80c6c97 0xb8000000 + 814231
    3 com.apple.Xcode 0xb80c01bb 0xb8000000 + 786875
    4 com.apple.Xcode 0xb80dda6c 0xb8000000 + 907884
    5 com.apple.Xcode 0xb814551b spinlockwrapper + 1791
    6 com.apple.Xcode 0xb801d03b 0xb8000000 + 118843
    Thread 3:
    0 com.apple.Xcode 0xb815ae44 spinlockwrapper + 90152
    1 com.apple.Xcode 0xb8179d27 CallPPCFunctionAtAddressInt + 97763
    2 com.apple.Xcode 0xb80c6c97 0xb8000000 + 814231
    3 com.apple.Xcode 0xb80c01bb 0xb8000000 + 786875
    4 com.apple.Xcode 0xb80dda6c 0xb8000000 + 907884
    5 com.apple.Xcode 0xb814551b spinlockwrapper + 1791
    6 com.apple.Xcode 0xb801d03b 0xb8000000 + 118843
    Thread 4:
    0 com.apple.Xcode 0xb815aa83 spinlockwrapper + 89191
    1 com.apple.Xcode 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.apple.Xcode 0xb80c6c97 0xb8000000 + 814231
    3 com.apple.Xcode 0xb80c01bb 0xb8000000 + 786875
    4 com.apple.Xcode 0xb80dda6c 0xb8000000 + 907884
    5 com.apple.Xcode 0xb814551b spinlockwrapper + 1791
    6 com.apple.Xcode 0xb801d03b 0xb8000000 + 118843
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x8027c500 ecx: 0xb7fff9ac edx: 0x801bc612
    edi: 0xb8211620 esi: 0x00000005 ebp: 0xb7fff9d8 esp: 0xb7fff9ac
    ss: 0x0000001f efl: 0x00000286 eip: 0x801bc612 cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xffe2af24
    Binary Images:
    0x80000000 - 0x8006afe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x800c5000 - 0x80269feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x802e9000 - 0x802ecfe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0xb8000000 - 0xb81defff com.apple.Xcode 3.2.1 (1613) <3E4E06B8-E1FC-B232-1371-643DC0FBE8C9> /Developer/Applications/Xcode.app/Contents/MacOS/Xcode
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Translated Code Information:
    NO CRASH REPORT
    Model: MacBook1,1, BootROM MB11.0061.B03, 2 processors, Intel Core Duo, 2 GHz, 1 GB, SMC 1.4f12
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), Atheros 5424: 2.0.19.8
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK1234GSX, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0217, 0x1d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000

    I downloaded the combo, restarted, than used repair and it didn't help.
    Some odd bits though is the last three times I've used repair permissions I've gotten the same result. I don't know if this accounts as weird, but the rest of my computer hasn't had a problem:
    2009-12-30 11:55:48 -0500: Disk Utility started.
    2009-12-30 11:56:31 -0500: Repairing permissions for “Macintosh HD”
    2009-12-30 12:02:19 -0500: Permissions differ on "usr/share/derby", should be drwxr-xr-x , they are lrwxr-xr-x .
    2009-12-30 12:02:19 -0500: Repaired "usr/share/derby".
    2009-12-30 12:02:56 -0500: Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    2009-12-30 12:07:07 -0500:
    2009-12-30 12:07:07 -0500: Permissions repair complete
    2009-12-30 12:07:07 -0500:
    2009-12-30 12:07:07 -0500:

  • Safari will not launch

    When I try to launch safari I get a very long winded report with the heading 'Safari Quit Unexpectedly'.
    I recently took my MBP to the Genius bar to get it formatted and Lion 10.7.. reinstalled. Safari used to run before that, but the rest of the system was slow.  Now the computer seems to be running better, but the browser will not launch.  Never used to have all these issues with my PC
    Anybody with any suggestions/help would be gratefully heard, thanks!
    Process:         Safari [6602]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.3 (7534.53.10)
    Build Info:      WebBrowser-7534053010000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [247]
    Date/Time:       2012-12-31 16:02:28.864 +0000
    OS Version:      Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Interval Since Last Report:          66098 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  20 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      0B303341-2DA3-4F6B-AD01-24C97047E20B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[6602]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: (index >= 0) && (index < [_itemArray count])'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff871e6fc6 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff88ac3d5e objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff871e6dfa +[NSException raise:format:arguments:] + 106
              3   Foundation                          0x00007fff87f62743 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
              4   AppKit                              0x00007fff8b52fe13 -[NSMenu itemAtIndex:] + 165
              5   AppKit                              0x00007fff8b52ff6c -[NSMenu removeItemAtIndex:] + 63
              6   Safari                              0x000000010d708c2e -[AppController awakeFromNib] + 387
              7   CoreFoundation                      0x00007fff871de021 -[NSObject performSelector:] + 49
              8   CoreFoundation                      0x00007fff871ddfa2 -[NSSet makeObjectsPerformSelector:] + 274
              9   AppKit                              0x00007fff8b517b2f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
              10  AppKit                              0x00007fff8b50e09f loadNib + 322
              11  AppKit                              0x00007fff8b50d59c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
              12  AppKit                              0x00007fff8b50d4b7 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
              13  AppKit                              0x00007fff8b50d3fa +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
              14  AppKit                              0x00007fff8b7809b3 NSApplicationMain + 398
              15  Safari                              0x000000010d90b806 SafariMain + 166
              16  Safari                              0x000000010d6f6f24 Safari + 3876
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8f369ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8678f7d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff86780a7a abort + 143
    3   libc++abi.dylib                         0x00007fff878b77bc abort_message + 214
    4   libc++abi.dylib                         0x00007fff878b4fcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff88ac41b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x00007fff878b5001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x00007fff878b505c std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff878b6152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x00007fff88ac3e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff871e6dfa +[NSException raise:format:arguments:] + 106
    11  com.apple.Foundation                    0x00007fff87f62743 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    12  com.apple.AppKit                        0x00007fff8b52fe13 -[NSMenu itemAtIndex:] + 165
    13  com.apple.AppKit                        0x00007fff8b52ff6c -[NSMenu removeItemAtIndex:] + 63
    14  com.apple.Safari.framework              0x000000010d708c2e -[AppController awakeFromNib] + 387
    15  com.apple.CoreFoundation                0x00007fff871de021 -[NSObject performSelector:] + 49
    16  com.apple.CoreFoundation                0x00007fff871ddfa2 -[NSSet makeObjectsPerformSelector:] + 274
    17  com.apple.AppKit                        0x00007fff8b517b2f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    18  com.apple.AppKit                        0x00007fff8b50e09f loadNib + 322
    19  com.apple.AppKit                        0x00007fff8b50d59c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    20  com.apple.AppKit                        0x00007fff8b50d4b7 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    21  com.apple.AppKit                        0x00007fff8b50d3fa +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    22  com.apple.AppKit                        0x00007fff8b7809b3 NSApplicationMain + 398
    23  com.apple.Safari.framework              0x000000010d90b806 SafariMain + 166
    24  com.apple.Safari                        0x000000010d6f6f24 0x10d6f6000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8f36a7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff87dd95be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff87dd814e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8f36a192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8678f594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff86790b85 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.CFURLCACHE_work_queue
    0   libsystem_kernel.dylib                  0x00007fff8f36a0ea __unlink + 10
    1   libsystem_kernel.dylib                  0x00007fff8f369322 unlink + 14
    2   libsqlite3.dylib                        0x00007fff8d060ec1 unixDelete + 33
    3   libsqlite3.dylib                        0x00007fff8d03d9e7 pager_end_transaction + 1127
    4   libsqlite3.dylib                        0x00007fff8d0767cb pager_playback + 107
    5   libsqlite3.dylib                        0x00007fff8d001657 sqlite3PagerSharedLock + 1607
    6   libsqlite3.dylib                        0x00007fff8d000a47 sqlite3BtreeBeginTrans + 1191
    7   libsqlite3.dylib                        0x00007fff8cff8427 sqlite3InitOne + 2391
    8   libsqlite3.dylib                        0x00007fff8cff7a44 sqlite3Init + 116
    9   libsqlite3.dylib                        0x00007fff8cff2dcf sqlite3Pragma + 10287
    10  libsqlite3.dylib                        0x00007fff8cfeae4f yy_reduce + 3967
    11  libsqlite3.dylib                        0x00007fff8cfe9a2d sqlite3Parser + 253
    12  libsqlite3.dylib                        0x00007fff8cfe86fd sqlite3RunParser + 413
    13  libsqlite3.dylib                        0x00007fff8cfe7fe8 sqlite3Prepare + 1032
    14  libsqlite3.dylib                        0x00007fff8cfe7b23 sqlite3LockAndPrepare + 355
    15  libsqlite3.dylib                        0x00007fff8cfe6f42 sqlite3_exec + 418
    16  com.apple.CFNetwork                     0x00007fff8d9becfa __CFURLCache::OpenDatabase() + 188
    17  com.apple.CFNetwork                     0x00007fff8d9be800 ProcessCacheTasks(__CFURLCache*, bool) + 265
    18  com.apple.CFNetwork                     0x00007fff8d9be232 _ZL24_CFURLCacheTimerCallbackPv + 662
    19  libdispatch.dylib                       0x00007fff87dd78ba _dispatch_call_block_and_release + 18
    20  libdispatch.dylib                       0x00007fff87dd910a _dispatch_queue_drain + 264
    21  libdispatch.dylib                       0x00007fff87dd8f66 _dispatch_queue_invoke + 54
    22  libdispatch.dylib                       0x00007fff87dd8760 _dispatch_worker_thread2 + 198
    23  libsystem_c.dylib                       0x00007fff8678f3da _pthread_wqthread + 316
    24  libsystem_c.dylib                       0x00007fff86790b85 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8f369bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86791274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x000000010e7a71fc WebCore::IconDatabase::syncThreadMainLoop() + 124
    3   com.apple.WebCore                       0x000000010e7a4d50 WebCore::IconDatabase::iconDatabaseSyncThread() + 496
    4   com.apple.JavaScriptCore                0x000000010e0ea11f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8678d8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff86790b75 thread_start + 13
    Thread 5:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8f36867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8f367d71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff901c35c9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff901c3509 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8678d8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff86790b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff6d2f4428  rdx: 0x0000000000000000
      rdi: 0x000000000000060b  rsi: 0x0000000000000006  rbp: 0x00007fff6d2f4450  rsp: 0x00007fff6d2f4428
       r8: 0x00007fff74c24fb8   r9: 0x00007fff6d2f3eb8  r10: 0x00007fff8f369d0a  r11: 0xffffff80002d8220
      r12: 0x00007fb9b945def0  r13: 0x0000000000000007  r14: 0x00007fff74c27960  r15: 0x00007fff6d2f45a0
      rip: 0x00007fff8f369ce2  rfl: 0x0000000000000246  cr2: 0x00007fb9bb009dfe
    Logical CPU: 0
    Binary Images:
           0x10d6f6000 -        0x10d6f6fff  com.apple.Safari (5.1.3 - 7534.53.10) <FBA8DD1F-7A44-3018-8ACC-BBCDF38E0321> /Applications/Safari.app/Contents/MacOS/Safari
           0x10d6fc000 -        0x10db96ff7  com.apple.Safari.framework (7536 - 7536.25) <C95F0D4E-6984-3D2F-B0BA-5D12A164EAC8> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x10deb7000 -        0x10e146fff  com.apple.JavaScriptCore (7536 - 7536.24) <C613502E-BC98-3269-A25C-4BDB2D87590B> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x10e1f5000 -        0x10e377ff7  com.apple.WebKit (7536 - 7536.25) <8D171955-A1CA-31AA-B701-B9D4F760B10B> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x10e466000 -        0x10e63ffff  com.apple.WebKit2 (7536 - 7536.25) <15991DAF-D0C9-3D65-A96B-AF7428ADCC4E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x10e7a1000 -        0x10f746ff7  com.apple.WebCore (7536 - 7536.24) <F2C26660-05D7-34A7-9158-9C3D21BEB32F> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
        0x7fff6d2f6000 -     0x7fff6d32abaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff848bd000 -     0x7fff84ea1fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8502d000 -     0x7fff8503bfff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8503c000 -     0x7fff850deff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff852b6000 -     0x7fff852f8ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff852f9000 -     0x7fff85300fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff85301000 -     0x7fff85355ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff853df000 -     0x7fff853f6fff  com.apple.CFOpenDirectory (10.7 - 146) <E6D4F114-678B-3957-9C59-9206ECDA756E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff85408000 -     0x7fff8540aff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8540b000 -     0x7fff85446fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8545c000 -     0x7fff8550ffff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff855e7000 -     0x7fff855f4fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff85762000 -     0x7fff859d5fff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff859d6000 -     0x7fff859d6fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff859d7000 -     0x7fff859d8fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff85a98000 -     0x7fff85ad8fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff85af5000 -     0x7fff85b65fff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff85b66000 -     0x7fff85b6cfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85b78000 -     0x7fff85b84ff7  com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85eec000 -     0x7fff85eecfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff85f90000 -     0x7fff85f97ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85fe3000 -     0x7fff85ff2ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff85ff3000 -     0x7fff8614cfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8614d000 -     0x7fff86176fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff86641000 -     0x7fff86699fff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8669a000 -     0x7fff8673efff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8673f000 -     0x7fff8681cfef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff86873000 -     0x7fff86885ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff86886000 -     0x7fff86909fef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8690a000 -     0x7fff8693aff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8693b000 -     0x7fff8693ffff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff86940000 -     0x7fff86973ff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff869da000 -     0x7fff86ea1fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff87094000 -     0x7fff87099ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8709a000 -     0x7fff870a8ff7  libkxld.dylib (??? - ???) <B779CF25-496C-31B0-B336-3E4E3E1C32CC> /usr/lib/system/libkxld.dylib
        0x7fff870a9000 -     0x7fff870bdff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff87143000 -     0x7fff87317fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87318000 -     0x7fff873dfff7  com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff873e2000 -     0x7fff873e8fff  IOSurface (??? - ???) <8114F62C-F75D-3123-99E9-268CB3AE74F7> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff874d7000 -     0x7fff877b9fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff877ba000 -     0x7fff877bafff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff87818000 -     0x7fff878aeff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff878af000 -     0x7fff878baff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff878bb000 -     0x7fff878bcfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff878bd000 -     0x7fff87941ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87dd6000 -     0x7fff87de4fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff87e97000 -     0x7fff881b0ff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8829c000 -     0x7fff8829efff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff88a34000 -     0x7fff88a82fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff88a88000 -     0x7fff88a88fff  com.apple.Carbon (153 - 153) <AF0F9910-E3C3-3922-AA92-A39000655E0F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff88a89000 -     0x7fff88a9efff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff88aad000 -     0x7fff88b91e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff88bd7000 -     0x7fff88bdafff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8945b000 -     0x7fff894d0ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff89619000 -     0x7fff8967fff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff89680000 -     0x7fff89762fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff89763000 -     0x7fff89858fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff89859000 -     0x7fff8995bff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
        0x7fff89961000 -     0x7fff89970fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff89a91000 -     0x7fff89aa7fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff89aa8000 -     0x7fff89ac5ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89af0000 -     0x7fff89afbfff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89b08000 -     0x7fff89b12ff7  liblaunch.dylib (392.36.0 - compatibility 1.0.0) <CB8B5808-80C0-318E-AE12-96CA916442FE> /usr/lib/system/liblaunch.dylib
        0x7fff89b89000 -     0x7fff89bddff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff89bde000 -     0x7fff89be3fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff89be4000 -     0x7fff89c4cff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89c4d000 -     0x7fff89c8dff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
        0x7fff89c9b000 -     0x7fff89ca8ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff89d2b000 -     0x7fff89d2cff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff89d2d000 -     0x7fff89d4afff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
        0x7fff89d4b000 -     0x7fff8a075ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8a076000 -     0x7fff8a077fff  libdnsinfo.dylib (395.10.0 - compatibility 1.0.0) <2301DE05-6950-3AFF-A8A6-DA76D4C079B5> /usr/lib/system/libdnsinfo.dylib
        0x7fff8a078000 -     0x7fff8a0c1ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <B254CC2C-F1A4-3A87-96DE-B6A4113D2811> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8a0c2000 -     0x7fff8a0f7fff  com.apple.securityinterface (5.0 - 55007) <D46E73F4-D8E9-3F53-A083-B9D71ED74492> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8a8c0000 -     0x7fff8a8c1ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8a8c2000 -     0x7fff8a93dff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8a93e000 -     0x7fff8ab40fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8ac20000 -     0x7fff8ac6cff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8ac79000 -     0x7fff8ad13ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8ad14000 -     0x7fff8adb4fff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8adb5000 -     0x7fff8adbafff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8adbb000 -     0x7fff8adc3fff  libsystem_dnssd.dylib (??? - ???) <D0CEBE0E-956F-3CCF-9808-25FDEA42B9AF> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8add2000 -     0x7fff8aeb0fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8b4b6000 -     0x7fff8b4d5fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8b4d6000 -     0x7fff8b4d7fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b4d8000 -     0x7fff8b4fcfff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b4fd000 -     0x7fff8c101fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c23e000 -     0x7fff8c23efff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c23f000 -     0x7fff8c252ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8c253000 -     0x7fff8c35ffff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c5d7000 -     0x7fff8c8f3ff7  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8c900000 -     0x7fff8c917fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8c94e000 -     0x7fff8c9a0ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8c9a1000 -     0x7fff8caa6fff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8cabb000 -     0x7fff8cabbfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8cabe000 -     0x7fff8cb28ff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8cb29000 -     0x7fff8cb89fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8cb8b000 -     0x7fff8cca4fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8cca5000 -     0x7fff8cce7fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8cf55000 -     0x7fff8cf60ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8cf68000 -     0x7fff8cf68fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8cf69000 -     0x7fff8cf91ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8cfa7000 -     0x7fff8cfaaff7  com.apple.securityhi (4.0 - 1) <37DF1BF8-ACE0-3C4A-81AA-BBA9744EB0A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8cfab000 -     0x7fff8cfcbfff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8cfcc000 -     0x7fff8cfd1fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8cfd2000 -     0x7fff8cfd8ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8cfdc000 -     0x7fff8d0e3fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8d160000 -     0x7fff8d164fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff8d165000 -     0x7fff8d272fff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8d273000 -     0x7fff8d276fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8d47a000 -     0x7fff8d6a2fe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8d6cc000 -     0x7fff8d6d2fff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8d6fb000 -     0x7fff8d771fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d804000 -     0x7fff8d845fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8d846000 -     0x7fff8d86afff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8d86b000 -     0x7fff8d86efff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8d86f000 -     0x7fff8d8a9fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d8aa000 -     0x7fff8d8aeff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d90a000 -     0x7fff8d913ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d9bb000 -     0x7fff8db22ff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8db23000 -     0x7fff8db24ff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8db25000 -     0x7fff8db50ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
        0x7fff8dbc6000 -     0x7fff8dbccfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8dbcd000 -     0x7fff8dc40fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8dc41000 -     0x7fff8dca3ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8e0d3000 -     0x7fff8e0e3ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8e0e4000 -     0x7fff8e100ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8e101000 -     0x7fff8e15cff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e15d000 -     0x7fff8e183ff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8e184000 -     0x7fff8e18bfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff8e18c000 -     0x7fff8e1cbfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8e1e4000 -     0x7fff8eb747a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8ee31000 -     0x7fff8ee33fff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ee96000 -     0x7fff8ee9bfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f21c000 -     0x7fff8f352fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f353000 -     0x7fff8f373fff  libsystem_kernel.dylib (1699.24.23 - compatibility 1.0.0) <80927C55-D4D9-31B6-9CF3-6134FCF1E1CA> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f460000 -     0x7fff8f462fff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
        0x7fff8fce4000 -     0x7fff8fce4fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8fd39000 -     0x7fff8fd64ff7  com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8fd65000 -     0x7fff8fd92ff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8fd93000 -     0x7fff901c0fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff901c1000 -     0x7fff90360fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff9038d000 -     0x7fff903b6ff7  com.apple.framework.Apple80211 (7.1.2 - 712.1) <B4CD34B3-D555-38D2-8FF8-E3C6A93B94EB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff903b7000 -     0x7fff903bcfff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff903bd000 -     0x7fff903fcff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff904d7000 -     0x7fff90504fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff90505000 -     0x7fff9058aff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9058b000 -     0x7fff905a1ff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff905a2000 -     0x7fff905b4ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff905d0000 -     0x7fff905d0fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff905d1000 -     0x7fff90adaff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff917f0000 -     0x7fff91817ff7  com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 9237
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=185.2M resident=83.1M(45%) swapped_out_or_unallocated=102.2M(55%)
    Writable regions: Total=1.1G written=4124K(0%) resident=6972K(1%) swapped_out=0K(0%) unallocated=1.1G(99%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                      128K
    CoreServices                         2128K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    MALLOC                               43.1M
    MALLOC guard page                      48K
    SQLite page cache                      96K
    STACK GUARD                          56.0M
    Stack                                10.5M
    VM_ALLOCATE                            60K
    __CI_BITMAP                            80K
    __DATA                               17.0M
    __IMAGE                               528K
    __LINKEDIT                           59.7M
    __RC_CAMERAS                          248K
    __TEXT                              125.5M
    __UNICODE                             544K
    mapped file                          24.6M
    shared memory                         312K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      340.6M
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.68f98
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.19)
    Bluetooth: Version 4.0.3f12, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd120000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    Hmmm... I was quite hopeful this would work, but sadly not!  At least I am running 10.7.5 now
    Process:         Safari [256]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.7 (7534.57.7)
    Build Info:      WebBrowser-7534057007000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [114]
    Date/Time:       2013-01-01 17:17:29.029 +0000
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          180 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  14 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      168FD981-1AAF-46DC-A088-513FDA8D0AC9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[256]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: (index >= 0) && (index < [_itemArray count])'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff8d5aff56 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8e1e8d5e objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8d5afd8a +[NSException raise:format:arguments:] + 106
              3   Foundation                          0x00007fff8a66271f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
              4   AppKit                              0x00007fff8674a62b -[NSMenu itemAtIndex:] + 165
              5   AppKit                              0x00007fff8674a784 -[NSMenu removeItemAtIndex:] + 63
              6   Safari                              0x000000010b5e5c2e -[AppController awakeFromNib] + 387
              7   CoreFoundation                      0x00007fff8d5a6fb1 -[NSObject performSelector:] + 49
              8   CoreFoundation                      0x00007fff8d5a6f32 -[NSSet makeObjectsPerformSelector:] + 274
              9   AppKit                              0x00007fff86732347 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
              10  AppKit                              0x00007fff867288bb loadNib + 322
              11  AppKit                              0x00007fff86727db8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
              12  AppKit                              0x00007fff86727cd3 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
              13  AppKit                              0x00007fff86727c16 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
              14  AppKit                              0x00007fff86998cd7 NSApplicationMain + 398
              15  Safari                              0x000000010b7e8806 SafariMain + 166
              16  Safari                              0x000000010b5d1f24 Safari + 3876
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8802cce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8d4427d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff8d433a7a abort + 143
    3   libc++abi.dylib                         0x00007fff8d3b37bc abort_message + 214
    4   libc++abi.dylib                         0x00007fff8d3b0fcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8e1e91b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x00007fff8d3b1001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x00007fff8d3b105c std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff8d3b2152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x00007fff8e1e8e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff8d5afd8a +[NSException raise:format:arguments:] + 106
    11  com.apple.Foundation                    0x00007fff8a66271f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    12  com.apple.AppKit                        0x00007fff8674a62b -[NSMenu itemAtIndex:] + 165
    13  com.apple.AppKit                        0x00007fff8674a784 -[NSMenu removeItemAtIndex:] + 63
    14  com.apple.Safari.framework              0x000000010b5e5c2e -[AppController awakeFromNib] + 387
    15  com.apple.CoreFoundation                0x00007fff8d5a6fb1 -[NSObject performSelector:] + 49
    16  com.apple.CoreFoundation                0x00007fff8d5a6f32 -[NSSet makeObjectsPerformSelector:] + 274
    17  com.apple.AppKit                        0x00007fff86732347 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    18  com.apple.AppKit                        0x00007fff867288bb loadNib + 322
    19  com.apple.AppKit                        0x00007fff86727db8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    20  com.apple.AppKit                        0x00007fff86727cd3 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    21  com.apple.AppKit                        0x00007fff86727c16 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    22  com.apple.AppKit                        0x00007fff86998cd7 NSApplicationMain + 398
    23  com.apple.Safari.framework              0x000000010b7e8806 SafariMain + 166
    24  com.apple.Safari                        0x000000010b5d1f24 0x10b5d1000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8802d7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff87393786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff87392316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8802d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d442594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8d443b85 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.CFURLCACHE_work_queue
    0   libsystem_kernel.dylib                  0x00007fff8802d5b6 fsync + 10
    1   libsqlite3.dylib                        0x00007fff85051e38 unixSync + 72
    2   libsqlite3.dylib                        0x00007fff85051309 sqlite3PagerCommitPhaseOne + 3545
    3   libsqlite3.dylib                        0x00007fff8503c11e sqlite3BtreeCommitPhaseOne + 478
    4   libsqlite3.dylib                        0x00007fff8503b735 vdbeCommit + 981
    5   libsqlite3.dylib                        0x00007fff84ffe55a sqlite3VdbeHalt + 4442
    6   libsqlite3.dylib                        0x00007fff850301a6 sqlite3VdbeExec + 51958
    7   libsqlite3.dylib                        0x00007fff85022a5b sqlite3_step + 1883
    8   libsqlite3.dylib                        0x00007fff84fe5fb5 sqlite3_exec + 533
    9   com.apple.CFNetwork                     0x00007fff881f1f04 __CFURLCache::RecreateEmptyPersistentStoreOnDiskAndOpen_NoLock() + 172
    10  com.apple.CFNetwork                     0x00007fff881f23dd __CFURLCache::RecreateEmptyPersistentStoreOnDiskAndOpen() + 75
    11  com.apple.CFNetwork                     0x00007fff8815a42b __CFURLCache::OpenDatabase() + 221
    12  com.apple.CFNetwork                     0x00007fff88159f10 ProcessCacheTasks(__CFURLCache*, bool) + 265
    13  com.apple.CFNetwork                     0x00007fff88159942 _ZL24_CFURLCacheTimerCallbackPv + 662
    14  libdispatch.dylib                       0x00007fff87391a82 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff873932d2 _dispatch_queue_drain + 264
    16  libdispatch.dylib                       0x00007fff8739312e _dispatch_queue_invoke + 54
    17  libdispatch.dylib                       0x00007fff87392928 _dispatch_worker_thread2 + 198
    18  libsystem_c.dylib                       0x00007fff8d4423da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff8d443b85 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8802cbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d444274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x000000010c68c1fc WebCore::IconDatabase::syncThreadMainLoop() + 124
    3   com.apple.WebCore                       0x000000010c689d50 WebCore::IconDatabase::iconDatabaseSyncThread() + 496
    4   com.apple.JavaScriptCore                0x000000010bfc611f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff8d4408bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8d443b75 thread_start + 13
    Thread 5:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8802b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8802ad71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff8de55df5 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff8de55d35 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8d4408bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8d443b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff6b1cf428  rdx: 0x0000000000000000
      rdi: 0x000000000000060b  rsi: 0x0000000000000006  rbp: 0x00007fff6b1cf450  rsp: 0x00007fff6b1cf428
       r8: 0x00007fff72844fb8   r9: 0x00007fff6b1ceeb8  r10: 0x00007fff8802cd0a  r11: 0xffffff80002dad60
      r12: 0x00007f9253a0ced0  r13: 0x0000000000000005  r14: 0x00007fff72847960  r15: 0x00007fff6b1cf5a0
      rip: 0x00007fff8802cce2  rfl: 0x0000000000000246  cr2: 0x000000010c683000
    Logical CPU: 0
    Binary Images:
           0x10b5d1000 -        0x10b5d1fff  com.apple.Safari (5.1.7 - 7534.57.7) <72510CA8-DEAF-3CA8-A9EC-C6FB872CE6E4> /Applications/Safari.app/Contents/MacOS/Safari
           0x10b5d9000 -        0x10ba73ff7  com.apple.Safari.framework (7536 - 7536.25) <C95F0D4E-6984-3D2F-B0BA-5D12A164EAC8> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x10bd93000 -        0x10c022fff  com.apple.JavaScriptCore (7536 - 7536.24) <C613502E-BC98-3269-A25C-4BDB2D87590B> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x10c0d4000 -        0x10c256ff7  com.apple.WebKit (7536 - 7536.25) <8D171955-A1CA-31AA-B701-B9D4F760B10B> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x10c34a000 -        0x10c523fff  com.apple.WebKit2 (7536 - 7536.25) <15991DAF-D0C9-3D65-A96B-AF7428ADCC4E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x10c686000 -        0x10d62bff7  com.apple.WebCore (7536 - 7536.24) <F2C26660-05D7-34A7-9158-9C3D21BEB32F> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
        0x7fff6b1d1000 -     0x7fff6b205baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff81307000 -     0x7fff81314fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff81315000 -     0x7fff813f9ff7  com.apple.CoreServices.OSServices (478.49 - 478.49) <E5BF2069-ED1A-31F5-AFC2-4A530BD467AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff81417000 -     0x7fff81418ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff81496000 -     0x7fff81496fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff81497000 -     0x7fff8153cfff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8153d000 -     0x7fff81767fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81779000 -     0x7fff8177eff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff81792000 -     0x7fff81aaefff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff82280000 -     0x7fff8228aff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff822ca000 -     0x7fff822cffff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff822d0000 -     0x7fff822edfff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff825ac000 -     0x7fff825acfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff825ad000 -     0x7fff825b8fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff825b9000 -     0x7fff825bafff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff825c3000 -     0x7fff825c4ff7  libsystem_sandbox.dylib (??? - ???) <2A09E4DA-F47C-35CB-B70C-E0492BA9F20E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff83636000 -     0x7fff836d7fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8374e000 -     0x7fff8377aff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8377b000 -     0x7fff837ffff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff83800000 -     0x7fff83809ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff83e15000 -     0x7fff83e16fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff83e17000 -     0x7fff83e6bff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff842fd000 -     0x7fff84304fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff843f2000 -     0x7fff84408ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff84418000 -     0x7fff84466fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff84467000 -     0x7fff844c3ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff844c4000 -     0x7fff84504ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
        0x7fff84582000 -     0x7fff84588ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff84589000 -     0x7fff84590fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff845b0000 -     0x7fff845b4fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff845b5000 -     0x7fff845b8ff7  com.apple.securityhi (4.0 - 1) <37DF1BF8-ACE0-3C4A-81AA-BBA9744EB0A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84633000 -     0x7fff84660fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <6E5C8AC3-DBB7-31CB-BEB7-D6ED8E6DE0CE> /usr/lib/libSystem.B.dylib
        0x7fff84661000 -     0x7fff84677fff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff84678000 -     0x7fff8496dff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8496e000 -     0x7fff849c6ff7  libTIFF.dylib (??? - ???) <4DA86D53-8977-351D-9DC5-C7AE8F0FD423> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff849c7000 -     0x7fff84a10ff7  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <D2101093-0B35-3B90-B511-E9272400ED9B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff84f13000 -     0x7fff84fdaff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff84fdb000 -     0x7fff850e2fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff850e5000 -     0x7fff8539dfff  com.apple.RawCamera.bundle (4.00 - 658) <789BC5C7-F03A-388C-B540-070FF5574B0C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8539e000 -     0x7fff853d3fff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff85436000 -     0x7fff8554ffff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff85550000 -     0x7fff8555fff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff85591000 -     0x7fff855b2fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff855b3000 -     0x7fff857b5fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff85963000 -     0x7fff8597afff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <559C1AFB-E0B4-3D23-9189-18DE09C06FFE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8597b000 -     0x7fff8599ffff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff859a0000 -     0x7fff859a3fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff859a4000 -     0x7fff859e5fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff85ad0000 -     0x7fff85bd5fff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff85cb5000 -     0x7fff85cc0ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff85cc1000 -     0x7fff85cfbfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff85cfc000 -     0x7fff85d01fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff85d02000 -     0x7fff85d16ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff85f8f000 -     0x7fff85f9cff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff86348000 -     0x7fff86674fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff866ec000 -     0x7fff86717ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff86718000 -     0x7fff8731efff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8731f000 -     0x7fff8738ffff  com.apple.datadetectorscore (3.0 - 179.4) <4AB32B7F-8EC2-327E-BAC8-80129AA36E7B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff87390000 -     0x7fff8739efff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
        0x7fff873a7000 -     0x7fff873c4ff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff873c5000 -     0x7fff874a4fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <E982B3FF-4788-3FA2-B9F1-53E44E2EA9BA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff874a5000 -     0x7fff874a5fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff876e5000 -     0x7fff87701ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff87702000 -     0x7fff87710ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff87711000 -     0x7fff87719fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8771a000 -     0x7fff8771ffff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff87720000 -     0x7fff87720fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff87a48000 -     0x7fff87afbff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff88016000 -     0x7fff88036fff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
        0x7fff88054000 -     0x7fff88156fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff88157000 -     0x7fff882befff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff884eb000 -     0x7fff884eefff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff884ef000 -     0x7fff8853bff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <131780ED-E8DD-3153-81F2-5FEC4F6554C2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff88627000 -     0x7fff88734fff  libJP2.dylib (??? - ???) <053950A7-6B92-320E-A6D7-808CE424F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff88774000 -     0x7fff88778ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8917c000 -     0x7fff89180fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff89181000 -     0x7fff89190fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8919f000 -     0x7fff8919ffff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff891a0000 -     0x7fff891bffff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff891c8000 -     0x7fff891eefff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff89243000 -     0x7fff89267fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff899ea000 -     0x7fff89a13fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff89a14000 -     0x7fff89a7fff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff89a80000 -     0x7fff89aa8fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff89b01000 -     0x7fff89b77fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff89b78000 -     0x7fff89bcaff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff89cd3000 -     0x7fff89cd5fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff89cfe000 -     0x7fff8a2e2fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a4f4000 -     0x7fff8a596fff  com.apple.securityfoundation (5.0 - 55116) <70CDC3ED-39AA-3784-8715-F0F5E2CB9754> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a597000 -     0x7fff8a8b0fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8a91f000 -     0x7fff8a922fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8a9d5000 -     0x7fff8aa17ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8aa18000 -     0x7fff8aa80ff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8aa81000 -     0x7fff8abdefff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8abdf000 -     0x7fff8ac62fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8ac63000 -     0x7fff8ac6aff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8ac6b000 -     0x7fff8acaafff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8acab000 -     0x7fff8ace6fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8adaf000 -     0x7fff8ae45ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8ae46000 -     0x7fff8b7e4a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8b7e5000 -     0x7fff8b7e5fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8ba5f000 -     0x7fff8baa1fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8baa2000 -     0x7fff8bb02fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8bb97000 -     0x7fff8bccdfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8bcce000 -     0x7fff8bd30ff7  com.apple.Symbolication (1.3 - 91) <98A0662F-26ED-3B10-871B-07747127C7E9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8bd31000 -     0x7fff8be26fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff8be27000 -     0x7fff8be29ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8c29d000 -     0x7fff8c2a3fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8c2ba000 -     0x7fff8c2cdff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8c313000 -     0x7fff8c315fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c318000 -     0x7fff8c319fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8c31a000 -     0x7fff8c3b4ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c3fc000 -     0x7fff8c43cfe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8c43d000 -     0x7fff8c4b0fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8c4b1000 -     0x7fff8c4b3fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff8c508000 -     0x7fff8c516fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8c517000 -     0x7fff8c547ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8c54d000 -     0x7fff8c54efff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8c54f000 -     0x7fff8c555fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8c56b000 -     0x7fff8c5d3ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8c5d4000 -     0x7fff8c64fff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c79f000 -     0x7fff8c79ffff  com.apple.Carbon (153 - 153) <AF0F9910-E3C3-3922-AA92-A39000655E0F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8c7a0000 -     0x7fff8c7c9ff7  com.apple.framework.Apple80211 (7.4.1 - 741.1) <F60DA830-84ED-3473-8DE8-611A9D9B56FF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c7ca000 -     0x7fff8c7dffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c7e0000 -     0x7fff8c7edfff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8c7f3000 -     0x7fff8c878ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8c879000 -     0x7fff8c8efff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
        0x7fff8c8f0000 -     0x7fff8c94bff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8cca0000 -     0x7fff8d0cdfff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d0ce000 -     0x7fff8d342fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8d343000 -     0x7fff8d349fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d34c000 -     0x7fff8d35eff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8d35f000 -     0x7fff8d35ffff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8d3ab000 -     0x7fff8d3b6ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8d3f1000 -     0x7fff8d3f1fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8d3f2000 -     0x7fff8d4cffef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8d4d0000 -     0x7fff8d4d5fff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d4e2000 -     0x7fff8d50bfff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8d50c000 -     0x7fff8d6e0ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8d6e1000 -     0x7fff8d735fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8d736000 -     0x7fff8dbfdfff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8dc11000 -     0x7fff8dc44ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8dc45000 -     0x7fff8dc57ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8dcaf000 -     0x7fff8dcbefff  libxar.1.dylib (??? - ???) <9E05C939-6CBF-38E7-8915-86278F7DB6C7> /usr/lib/libxar.1.dylib
        0x7fff8dcbf000 -     0x7fff8ddcbfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8de27000 -     0x7fff8de28ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8de3b000 -     0x7fff8de52fff  com.apple.CFOpenDirectory (10.7 - 146) <E6D4F114-678B-3957-9C59-9206ECDA756E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8de53000 -     0x7fff8dff3ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8dff4000 -     0x7fff8dff9fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8dffa000 -     0x7fff8e03afff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8e1d2000 -     0x7fff8e2b6e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8e2e8000 -     0x7fff8e2effff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8e2f0000 -     0x7fff8e2f0fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 272
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=184.7M resident=130.0M(70%) swapped_out_or_unallocated=54.7M(30%)
    Writable regions: Total=1.1G written=4308K(0%) resident=5104K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                       96K
    CoreServices                         2384K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    MALLOC                               44.2M
    MALLOC guard page                      64K
    SQLite page cache                     288K
    STACK GUARD                          56.0M
    Stack                                10.5M
    VM_ALLOCATE                            60K
    __CI_BITMAP                            80K
    __DATA                               16.6M
    __IMAGE                               528K
    __LINKEDIT                           61.1M
    __TEXT                              123.7M
    __UNICODE                             544K
    mapped file                          24.7M
    shared memory                         312K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      341.0M
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.68f98
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 7
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 4
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

  • Mac iTunes 10.6.1 Will Now Not Launch For Any User Under MacOS 10.7.4.

    My MacBookPro4,1 (Spring 2008) went in for repairs to have a mother board replaced.
    During the repair, I pulled the hard drive with system 10.7.4 installed and booted from it using the newest MacBookPro.
    After the repair, I re-installed the hard drive in the MacBookPro4,1.  Now iTunes 10.6.1 will not launch.
    This happens for *all* users on my system.
    I looked in /Library for anything "iTunes" in the file name and removed it, but still, it crashes.
    Any ideas on where else to look and/or what could be going on here?
    Thanks!
    iTunes is crashing on the main thread...
    Process:         iTunes [782]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.6.1 (10.6.1)
    Build Info:      iTunes-10610701~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [353]
    Date/Time:       2012-05-19 13:42:57.849 -0700
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 000000010d5c2000-000000010e762000 [ 17.6M] r-x/rwx SM=COW  /Applications/iTunes.app/Contents/MacOS/iTunes
    Application Specific Information:
    objc_msgSend() selector name: respondsToSelector:
    objc[782]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8302e150 objc_msgSend_vtable5 + 16
    1   com.apple.Foundation                    0x00007fff8d529382 _NSDescriptionWithLocaleFunc + 50
    2   com.apple.CoreFoundation                0x00007fff8dca0e75 __CFStringAppendFormatCore + 11365
    3   com.apple.CoreFoundation                0x00007fff8dcf368b _CFStringCreateWithFormatAndArgumentsAux + 107
    4   com.apple.CoreFoundation                0x00007fff8dd6be52 _CFLogvEx + 114
    5   com.apple.Foundation                    0x00007fff8d5a3a9f NSLogv + 89
    6   com.apple.Foundation                    0x00007fff8d5a3a3d NSLog + 130
    7   com.apple.AppKit                        0x00007fff8cb7d3a3 -[NSApplication reportException:] + 56
    8   com.apple.iTunes                        0x000000010d5ca5c9 0x10d5c2000 + 34249
    9   com.apple.Foundation                    0x00007fff8d535d0e __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    10  com.apple.CoreFoundation                0x00007fff8dce67ba _CFXNotificationPost + 2634
    11  com.apple.Foundation                    0x00007fff8d521fc3 -[NSNotificationCenter postNotificationName:object:userInfo:] + 65
    12  com.apple.AppKit                        0x00007fff8c8c9366 -[NSApplication finishLaunching] + 333
    13  com.apple.AppKit                        0x00007fff8c8c8f18 -[NSApplication run] + 125
    14  com.apple.iTunes                        0x000000010d5c5c38 0x10d5c2000 + 15416
    15  com.apple.iTunes                        0x000000010d5c5a78 0x10d5c2000 + 14968

    Appreciate the comments and I have done a bit more reasearch.  I have eight computers on the network.  Six Macs and two PCs.  All but one have iTunes on them.  Of the six that have iTunes, the two Macs running OS 10.7.4 and iTunes 10.6.3 (25) do not see the Apple TV when I attempt to connect to a computer from the Apple TV.  The other four Macs see the connect request in the devices on iTunes.  The Windows PC running Windows 7 on an AMD processor and iTunes 10.6.3 can also see the connect request.
    Of the two systems running MacOS 10.7.4, one is an Intel Core i5 and the other is an Intel Core 2 Duo.  Baring some other evidence,  my conclusion is that there is a problem with the MacOS 10.7.4 and iTunes 10.6.3 combination.
    Fall back position is  move my iTunes and iPhoto libraries back to my older Mac mini and sync the AppleTV to that computer.

  • Why does iPhoto not launch after update to version 9.3.2?

    Double clicking the application icon causes it to bounce 3 or 4 times in the dock and then quits. Trying to open with command + option will not launch for a rebuild. Holding down the option key illicits the same behavior.
    How can I downgrade to 9.3.1 or make 9.3.2 work? It was working perfectly before the upgrade.
    My other computer (a recent MacBook Pro) shows 9.3.1 version and software update shows it's up to date. It works great.

    Still will not launch in new user account.
    Downloaded a fresh copy of iPhoto 9.3.2 from Apple's website and updated. Did show error this time when it failed to launch.
    Here it the short version.
    Process:         iPhoto [1614]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.3.2 (9.3.2)
    Build Info:      iPhotoProject-670063000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [134]
    Date/Time:       2012-07-25 14:10:19.541 -0500
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
      Referenced from: /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
      Reason: image not found

  • Kdcmond could not launch, after security update Nov 09,OS 10.5,Powerbook g4

    Powerbook G4 will not boot past the grey screen with spinning wheel after latest security update from Apple.
    In safe mode: kdcmond could not launch is reported.
    I DO NOT HAVE EASY ACCESS TO INSTALLATION DISKS.
    Please post suggestions that are viable using rm or vi in safe mode.
    It will take the IT department weeks to get around to fixing this so I am hoping for usable responses in the short term.
    Powerbook G4 1GB os 10.5.7 to 8 Grey Screen/crash with exceptions after security update.
    Took corrective actions using Disk Utility then Applejack with no success. Deleted Library/Prefernces/SystemConfiguration files: NetworkInterfaces.plist, com.apple.airport.preferences.plist, and preferences.plist to get them to regenerate. The exception is gone but now, kdcmond could not launch is reported due to no localhost name found.

    No suggestions from anyone so I am giving up and returning the PC to IT. I will leave the thread open in case anyone comes up with any ideas for future reference.

  • Capturing Flip Video to Final Cut Express Will not launch Flip Video

    I have done this many times before. I am using Final Cut Express and I am plugging my Flip Video camera into my MacBook Pro and the Flip Video software does not launch. It does not seem to be the
    Flip Video software that is the problem. I have upgraded the Flip Video software. The prompt I get says Flip Video quit unexpectely. I have no idea what is going on. I get a huge log of computer terms which I do not understand. Any ideas? Wish I knew more.
    Here is a screen shot of what I am getting after I attempt to open Flip Video Share Capture etc./Users/Tim/Desktop/Screen shot 2010-08-04 at 11.36.11 PM.png
    Message was edited by: dubdroid 1

    The problem is with your Flip Video software. It is launching but then crashing - that's what the message means:
    The prompt I get says Flip Video quit unexpectely.
    "Quit Unexpectedly" is a nice way to say "Crashed".
    You could try trash the Flip Software.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards.)
    *What's the plist file?*
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.
    If that doesn't help you need to contact the makers of the Flip software.
    Regards
    TD

Maybe you are looking for

  • The parallax effect is back in iOS 8. How to get rid of it on iPhone 6?

    How do I turn of this effect like it was done in iOS 7.  Does anyone know how to do this?

  • Lumia 620 Video Recording Issues

    I recorded this video today (link below) with my 620 and it came out horrible. I thought it might have been the shakiness of my filming but I even tried recording a steady pan of my living room afterwards and the video and audio were still choppy. An

  • Replace square brackets in SQL queries against ODBC

    We use PowerPivot to access an ODBC provider. PowerPivot generates queries with square brackets, which is not ANSI compliant and incompatible with this ODBC provider. In Office 2010, we had a workaround by modifying this file: C:\Program Files\Micros

  • Can anyone help me cut a word into an image?

    I believe it is called merge?? I am new to illustrator and am working on learning new tricks,  I have come to a road block here.   Here is a set up: I have font image with a tail connected to the font,  Inside the tail i have another font that i want

  • Are JPEG 3504x2336 pixel pictures too high resolution for the photo books?

    Hi, I am done creating my photo book and I am ready to order, but I'd like to know if my pictures are too high resolution. They are professional wedding pictures so they are 7.4 mb each JPEG 3504x2336 pixel pictures. (Last time, I printed through MyP