Ab initio

Can any one tell me what is the role of Ab initio (ETL) in data warehousing , data mining and Business Intelligence?
and who all these are integrated, migrated.what is the procedure with ETL(Ab initio)?

AbInitio is simply an ETL tool running on its own so-called file system (multi fs is a kind of wrapper on your actual underlying fs like Veritas) and co-operating system (like Oracle RDBMS kernel). It has some capabilities (extra licensed) like continuous ETL. Basic ETL process might be though to Extract data from source system with suitable adapters (for exampe when it comes to Oracle it uses well know rowid partitioning trick to parallelise extraction) then to do Transform data using AB Initio modules drawn in by EME ( Graphical interface for developers which is licensed per developer). In the final step is to load data into target system (when it comes to oracle it uses basically sql*loader)
Here are some tips I can give as a large site of ABInitio (running ABInitio on 100+ UltraSparc core platform):
- When it comes to ease of development,developers love AB Initio due to EME, a simple visio like tool to draw flows.
- Licensing cost of the tool is extremely high for large sites. Due to company regulations I can not give any number.
- As a computer software, it is much primitive with compared to Oracle core features. Here are a few of them:
-- ABInitio co-operating system has still has only 32-bit version. Due to this reason for memory addressing on giant machines it swaps thousands of processes.
-- Join ,group by algorithms are so primitive that we had required to move our CDR ETL back into Oracle because of its great scalability in group by with hash as it is compared to AB Initio.
-- ABInitio is not a full package like Oracle (consisting of DQ modules, mining, real time ETL,etc). Either every new component is extra licensed or not available :)
And finally recently I have join two benchmarks within my company to choose the right tool for flat file processing. I have developed two different 100-200 lines of code in python2.6 for CDR data processing (300 million at a time) On a half sized machine my simple python codes were x3.5 and x40 times faster than AB Initio for the cases respectively.
Husnu Sensoy
http://husnusensoy.wordpress.com

Similar Messages

  • Com.Initio.driver.SimpleTech_Button not loading?

    Hi there. Running 10.5.2 on my MacPro. 2 x 2.66 Dual Core Intel Xeons. 2GB ram. Anyway, my computer locked up on me. Had to hard reboot my machine. Restarted and locks up during the boot process. Grey gear stops spinning and that's it. Stays on the Apple logo screen with the gear there but not spinning. Booted in safe mode. I then disabled startup items. Problem not solved. Rebooted in Verbose mode. Got the message "Failed to load extension com.Initio.driver.SimpleTech_Button. Anyone know what that's for?

    Just a guess, but do you have a SimpleTech external hard drive? Sounds like it could be software that enables the one-button backup feature.

  • Initio INI-9090U SCSI controller not detected

    I'm having a problem with my G4 and it detecting my Initio INI-9090U controller. From what I've read so far, it doesn't look promising to get it running on OSX 10.3.9. I'm new to MAC (PC tech) but I am getting around and feel more comfortable with using it. Initio is not clear on how to update the firmware if at all possble within 10.3.9. I have tried updating the firmware witn 0S 9.1 with no luck yet.
    http://www.initio.com/support/index-download.htm
    On a side note, I have an Advansys ABP-915 that is MAC compatible but can't get that to run either. It looks like this one first needs a firmware update too. I ran there install app and it loaded a bunch of drivers and utilities on the root of my startup disk (chosen localtion) but none of the utilities seem to be correct for the card I have.
    To explain before anyone asks, I am not really that interested in buying a new card. The G4 was given to me from work for learning opportunities in my spare time. I will admit this, its been fun so far.
    Any help would be appriciated.

    I don't have URLs, but a number of SCSI cards don't detect well. As an example, if I open System Profiler, it doesn't detect the card or drives attached to it. At least in the "bus" section, in the PCI card section it does see the card (Adaptec 2906)
    But, the drives mount at boot and Disk Utility see's the drives and the drives mount and dismount just fine.
    A lot of these cards (like mine) will NOT support booting from SCSI for that reason.
    I hope this is a little help

  • File not found error

    I get the following error, but don't know why it can't find the file. Is there anything in this script that would call "\" instead of "/"? Is there any line of code that will switch a wayward "\" back?
    01-09-24 09:37:02 - path="" :jsp: init
    2001-09-24 09:43:42 - path="" :LoginServlet: init
    2001-09-24 09:44:15 - path="" :CourseServlet: init
    2001-09-24 09:46:48 - path="" :LessonServlet: init
    2001-09-24 09:46:54 - path="" :Error: /usr/local/apache/sites/tesco.spinweb.net/htdocs/cmi/courses\Food Service/Intro/AU00.html (No such file or directory)
    The script is below. Thanks for any help anyone can provide me.
    import cmi.xml.AU;
    import cmi.xml.Block;
    import cmi.xml.CourseReader;
    import cmi.xml.CSFElement;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.PrintWriter;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.Vector;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import javax.servlet.http.HttpServlet;
    import org.jdom.JDOMException;
    public class LessonServlet extends HttpServlet
    public void init (ServletConfig config) throws ServletException
    super.init (config);
    try {
                   Class.forName (GlobalData.DatabaseDriverName);
                   _jdbcConnection = DriverManager.getConnection (GlobalData.DatabaseName, "tesco", "scorm");
    _jdbcConnection.setAutoCommit (true);
    //should I do this?
    //_jdbcConnection.setAutoCommit (false);
    //load serialized course data
    loadCourseData();
              catch (Exception xcp) {
                   xcp.printStackTrace();     
                   getServletContext().log("Error: " + xcp.getMessage());     
    public void doGet( HttpServletRequest request,
                             HttpServletResponse response)
              throws ServletException, IOException
    boolean normalMode = true;
    try {
    HttpSession session = request.getSession (true);
    //can I load the session given the id??
    //System.out.println ("Lesson.valid session " + session.getId() + ": " + request.isRequestedSessionIdValid());
    response.setContentType ("text/html");
    JDBCHelper dbHelper = new JDBCHelper (_jdbcConnection);
    //get student ID
    Integer studentID = (Integer) session.getAttribute ("studentID");
    //get course ID
    Integer courseID = (Integer) session.getAttribute ("courseID");
    //get lesson ID
    String lessonID = request.getParameter ("lessonID");
    if (lessonID == null) {
    lessonID = (String) session.getAttribute ("lessonID");
    if (studentID == null || courseID == null || lessonID == null) {
    //reset session data by re-logging the user
    sendProfileError (response.getOutputStream());
    return;
    //store lesson ID in session
    session.setAttribute ("lessonID", lessonID);
    String auID = request.getParameter ("auID");
    String mode = request.getParameter ("mode");
    if (mode != null) {
    session.setAttribute ("mode", mode);
    else {
    mode = (String) session.getAttribute ("mode");
    if (mode.equalsIgnoreCase ("review")) {
    normalMode = false;
    else {
    normalMode = true;
    //synchronize access to course hash table
    synchronized (_courseHash)
    //make sure _courseHash is in tact
    if (_courseHash == null) {
    //try reloading it....
    loadCourseData();
    if (_courseHash == null) {
    //error
    response.getOutputStream().close();
    throw new IOException ("Corrupt course data");
    if (! _courseHash.containsKey (courseID.toString())) {
    //try reloading it....
    loadCourseData();
    if (! _courseHash.containsKey (courseID.toString())) {
    //error
    response.getOutputStream().close();
    throw new IOException ("Corrupt course data (course not found)");
    if (auID == null) {
    //show course menu
    Hashtable hash = (Hashtable) _courseHash.get (courseID.toString());
    sendAvailableAUs (hash, studentID.intValue(), courseID.intValue(), lessonID, response.getOutputStream(), response, dbHelper);
    return;
    //if AU has not been attempted, initialize it
    Integer auDataID = new Integer (getAUDataID (studentID.intValue(), courseID.intValue(), lessonID, auID, dbHelper));
    //if (getAUDataID (studentID.intValue(), courseID.intValue(), lessonID, auID, dbHelper) == -1) {
    if (auDataID.intValue() == -1) {
    int newID = initializeAUData (studentID.intValue(), courseID.intValue(), lessonID, auID, dbHelper);
    dbHelper.addAUToPath (studentID.intValue(), courseID.intValue(), lessonID, auID);
    auDataID = new Integer (newID);
    session.setAttribute ("AUID", auID);
    session.setAttribute ("AUDataID", auDataID);
    sendAU (studentID.intValue(), courseID.intValue(), lessonID, auID, auDataID.intValue(), normalMode, response.getOutputStream(), dbHelper);
    //to do: detailed messages should be sent to the client depending on which
    // exception was thrown. Don't have one try/catch....have one for each situation
    catch (Exception e) {
    e.printStackTrace();
                   getServletContext().log("Error: " + e.getMessage());
    public void destroy()
              try {
                   if (_jdbcConnection != null) {
                        _jdbcConnection.close();
              catch (Exception ignored) {}
    private int initializeAUData (int studentID, int courseID, String lessonID, String auID, JDBCHelper dbHelper)
    String sqlQuery = null;
    ResultSet results = null;
    try {
    //get student's name
    sqlQuery = "SELECT Full_Name" +
    " FROM " + GlobalData.StudentTable +
    " WHERE Student_ID = " + studentID;
    results = dbHelper.doQuery (sqlQuery);
    if (! results.next()) {
    //error
    return -1;
    String studentName = results.getString (1);
    results.close();
    //the lock prevents CMIServlet from reading AU_ID before it's committed
    //sqlQuery = "LOCK TABLES " + GlobalData.AUDataTable + " WRITE;";
    //System.out.println (sqlQuery);
    //dbHelper.executeUpdate (sqlQuery);
    sqlQuery = "Insert Into " + GlobalData.AUDataTable +
    "(Course_ID, Lesson_ID, AU_ID, student_id, student_name, lesson_location, credit," +
    " lesson_status, entry, exit, score_raw, score_max, score_min, total_time," +
    " session_time, lesson_mode, suspend_data, launch_data, Evaluation_ID, Objective_ID)" +
    " Values (" + courseID + ", '" + lessonID + "', '" + auID + "', " + studentID + ", '" + studentName + "'," +
    " 'NA', 'credit'," + " 'not attempted', 'ab-initio', " + "'NA', " + 0 + ", " + 0 + ", " + 0 +
    ", '00:00:00.0', '00:00:00.0', " + " 'normal'" + ", 'NA', " + "'NA', " + 0 + ", " + 0 + ");";
    dbHelper.executeUpdate (sqlQuery);
    return getAUDataID (studentID, courseID, lessonID,auID, dbHelper);
    //sqlQuery = "UNLOCK TABLES;";
    //System.out.println (sqlQuery);
    //dbHelper.executeUpdate (sqlQuery);
    catch (Exception e) {
    e.printStackTrace();
                   getServletContext().log("Error: " + e.getMessage());
    return -1;
    private int getAUDataID (int studentID, int courseID, String lessonID, String auID, JDBCHelper dbHelper)
    throws SQLException
    String sqlQuery = "SELECT AUData_ID, lesson_status, lesson_mode, exit" +
                                  " FROM " + GlobalData.AUDataTable +
                                  " WHERE student_id = " + studentID +
                                  " AND Course_ID = " + courseID +
    " AND Lesson_ID = " + "'" + lessonID + "'" +
    " AND AU_ID = '" + auID + "';";
    ResultSet results = dbHelper.doQuery (sqlQuery);
    if (results.next()) {
    return results.getInt ("AUData_ID");
    return -1;
    private void sendAU (int studentID, int courseID, String lessonID, String auID, int auDataID, boolean normalMode, ServletOutputStream htmlOut, JDBCHelper dbHelper)
    throws IOException, ClassNotFoundException
    Hashtable hash = null;
    synchronized (_courseHash)
    hash = (Hashtable) _courseHash.get (String.valueOf (courseID));       
    if (hash == null) {
    loadCourseData();
    hash = (Hashtable) _courseHash.get (String.valueOf (courseID));
    if (hash == null) {
    throw new IOException ("Corrupt course data (course not found)");
    AU au = (AU) hash.get (auID);
    try {
    if (! normalMode) {
    dbHelper.setReviewMode (auDataID);
    String courseFileName = getFileName (String.valueOf (courseID), dbHelper);
    File file = new File (courseFileName);
    //create absolute path to file so we can resolve relative URLs
    String newFileName = file.getParent() + "\\" + au.getLaunchParams();
                   BufferedReader buf = new BufferedReader (new FileReader (newFileName));
    PrintWriter htmlWriter = new PrintWriter (htmlOut);
                   String temp;
    htmlWriter.write (getAUHtml (au.getLaunchParams()));
    htmlWriter.flush();
    htmlWriter.close();
    catch (Exception e) {
    e.printStackTrace();
                   getServletContext().log("Error: " + e.getMessage());
    private String getAUHtml (String path){
    path = path.replace ('\\','/');
    String response;
    response = "<html>\n" +
                        "<head>\n" +
    "</head>\n" +
    "<body>\n" +
    "<script language=\"JavaScript\">\n" +
    "document.location = \"/cmi/courses/" + path + "\"\n" +
    //"win = window.open ('','displayWindow','menubar=yes,scrollbars=yes,status=yes,width=300,height=300');\n" +
    //"window.onload = \"win.close();\"" +
    "</script>\n" +
    "</body>\n" +
    "</html>\n";
    return response;
    private void sendAvailableAUs (Hashtable hash, int studentID, int courseID, String lessonID, ServletOutputStream out, HttpServletResponse response, JDBCHelper dbHelper)
    StringBuffer buf = new StringBuffer (200);
    Block block = (Block) hash.get (lessonID);
    AU au = null;
    try {
    Vector completedAUs = dbHelper.getCompletedAUs (studentID, courseID, lessonID);
    buf.append ("<html>\n" +
                        "<head>\n" +
    "<title>" + block.getTitle() + " units</title>\n" +
    "<script language=\"JavaScript\">\n" +
    "function go() {\n" +
    " var form = document.goForm;\n" +
    " var index = form.gotoSelect.selectedIndex;\n" +
    " if (index == 0) {\n" +
    " document.location = \"/servlet/CourseServlet?courseID=" + courseID + "\";\n" +
    " }\n" +
    " else if (index == 1) {\n" +
    " top.restart();\n" +
    " }\n" +
    "}\n" +
    "</script>\n" +
    "</head>\n" +
    "<body background=\"/cmi/images/marble.jpg\">\n" +
    "<center><h1><b><u>" + block.getTitle() + "</u></b></h1></center>\n" +
    "<p></p>\n<p></p>\n" +
    "<b>" + block.getTitle() + " contains the following units: </b>\n" +
    "<dl>\n");
    Enumeration enum = block.getChildren();
    while (enum.hasMoreElements()) {
    String temp = (String) enum.nextElement();
    CSFElement element = (CSFElement) hash.get (temp);
    if (element.getType().equals ("au")) {
    au = (AU) element;
    if (completedAUs.contains (au.getID())) {
    buf.append ("<dt><p><img src=\"/cmi/images/node2.gif\"><a href=\"/servlet/LessonServlet?lessonID=" + block.getID() + "&auID=" + au.getID() + "&mode=review\">" + au.getTitle() + " (<i>review</i>) </a></p></dt>\n");
    else {
    buf.append ("<dt><p><img src=\"/cmi/images/node.gif\"><a href=\"" + response.encodeURL ("/servlet/LessonServlet?lessonID=" + block.getID() + "&auID=" + au.getID() + "&mode=normal") + "\">" + au.getTitle() + "</a></p></dt>\n");
    else if (element.getType().equals ("block")) {
    buf.append ("<dt><p><img src=\"/cmi/images/folder.gif\"><a href=\"" + response.encodeURL ("/servlet/LessonServlet?lessonID=" + element.getID() + "&mode=normal") + "\">" + element.getTitle() + "</a></p></dt>\n");
    buf.append ("</dl>\n" +
    "<br><br>\n" +
    "<form name=\"goForm\">\n" +
    "<select name=\"gotoSelect\">\n" +
    " <option value=\"lesson\">Lesson Menu</option>\n" +
    " <option value=\"exit\">Exit LMS</option>\n" +
    "</select>\n" +
    "<input type=\"button\" value=\"Go\" onClick=\"go()\">\n" +
    "</form>\n" +
    "</body>\n" +
    "</html>");
    PrintWriter writer = new PrintWriter (out);
    writer.write (buf.toString());
    writer.flush();
    writer.close();
    catch (Exception e) {
    e.printStackTrace();
                   getServletContext().log("Error: " + e.getMessage());
    private String getFileName (String courseID, JDBCHelper dbHelper)
    throws ClassNotFoundException, SQLException
              ResultSet results = null;
              String fileName = null;
    String sqlQuery = "SELECT CourseFile" +
                                  " FROM Course" +
                                  " WHERE Course_ID = " + Integer.parseInt (courseID) + ";";
    results = dbHelper.doQuery (sqlQuery);
              if (results.next()) {
                   fileName = results.getString (1);
              else {
    //need to do more than this :)
                   System.out.println("crap");
    results.close();
    return fileName;
    private void loadCourseData()
    throws IOException, ClassNotFoundException
    //load serialized course data
    File file = new File (GlobalData.DataFileName);
    if (! file.exists()) {
    //error
    throw new FileNotFoundException (GlobalData.DataFileName + " not found.");
    FileInputStream fis = new FileInputStream (GlobalData.DataFileName);
    ObjectInputStream ois = new ObjectInputStream (fis);
    _courseHash = (Hashtable) ois.readObject();
    ois.close();
    private void sendProfileError (ServletOutputStream out)
    String html = "<html>\n" +
    "<body>\n" +
    "<p>An error has occurred with your profile. Please " +
    "<a href=\"\" onClick=\"top.restart(); return true\">login again</a>" +
    "</body>\n" +
    "</html>\n";
    PrintWriter writer = new PrintWriter (out);
    writer.write (html);
    writer.flush();
    writer.close();
    private Connection _jdbcConnection;
    private Hashtable _courseHash;

    I know that is where my error is, but why and where is
    the script calling it up way?You wrote it right? check out the sendAU() method, there is line
    String newFileName = file.getParent() + "\\" + au.getLaunchParams();

  • Mid-2010 Macbook Pro Unexpected Shutdown, Please help!!

    Hello, I have a mid-2010 Macbook Pro and I have been having trouble with sudden shutdowns. The screen will go black, but I can hear the fans still running. Then I have to hold down the power button to restart. Here is the error message I received, any help would be much appreciated. Thanks!!
    Interval Since Last Panic Report:  20043 sec
    Panics Since Last Report:          1
    Anonymous UUID: E6BF7276-A12C-86C7-0CB3-5CDACDDBF7E6
    Tue Nov 27 23:14:01 2012
    panic(cpu 2 caller 0xffffff7f999d4b25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff812d1c1000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8109f9b260 : 0xffffff801921d626
    0xffffff8109f9b2d0 : 0xffffff7f999d4b25
    0xffffff8109f9b360 : 0xffffff7f99ace4b3
    0xffffff8109f9b3c0 : 0xffffff7f99ace527
    0xffffff8109f9b430 : 0xffffff7f99de3853
    0xffffff8109f9b570 : 0xffffff7f99af4659
    0xffffff8109f9b5a0 : 0xffffff7f999de8da
    0xffffff8109f9b650 : 0xffffff7f999d9fac
    0xffffff8109f9b840 : 0xffffff7f999dbade
    0xffffff8109f9b920 : 0xffffff7f9a9efad5
    0xffffff8109f9b960 : 0xffffff7f9aa05507
    0xffffff8109f9b980 : 0xffffff7f9aa24353
    0xffffff8109f9b9c0 : 0xffffff7f9aa243b1
    0xffffff8109f9ba00 : 0xffffff7f9aa0ac43
    0xffffff8109f9ba50 : 0xffffff7f9a9c50fc
    0xffffff8109f9bae0 : 0xffffff7f9a9c0efa
    0xffffff8109f9bb10 : 0xffffff7f9a9beaab
    0xffffff8109f9bb40 : 0xffffff80196650c3
    0xffffff8109f9bbc0 : 0xffffff8019667153
    0xffffff8109f9bc20 : 0xffffff8019664b8f
    0xffffff8109f9bd70 : 0xffffff80192981e1
    0xffffff8109f9be80 : 0xffffff8019220aed
    0xffffff8109f9beb0 : 0xffffff8019210448
    0xffffff8109f9bf00 : 0xffffff801921961b
    0xffffff8109f9bf70 : 0xffffff80192a5b16
    0xffffff8109f9bfb0 : 0xffffff80192ced53
          Kernel Extensions in backtrace:
    com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9996d 000->0xffffff7f99c6ffff
    dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f99814000
    dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f99959000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f99916000
    com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f9 9c7d000->0xffffff7f99f9ffff
    dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f999 6d000
    dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f99814000
    com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f9a9a6000 ->0xffffff7f9aa68fff
    dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f999 6d000
    dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f99959000
    dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f99814000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f99916000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000019000000
    Kernel text base: 0xffffff8019200000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 27539845338264
    last loaded kext at 8205610036124: com.apple.filesystems.smbfs            1.8 (addr 0xffffff7f9b553000, size 229376)
    last unloaded kext at 183478279400: com.apple.driver.AppleUSBUHCI            5.2.5 (addr 0xffffff7f9a1f1000, size 65536)
    loaded kexts:
    com.serato.usb.kext            2.3.0
    com.apple.filesystems.smbfs            1.8
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager            4.0.9f33
    com.apple.driver.AudioAUUC            1.60
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AGPM            100.12.69
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport            4.0.9f33
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.AppleLPC            1.6.0
    com.apple.driver.AppleIntelHDGraphics            8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB            8.0.0
    com.apple.driver.AppleMikeyHIDDriver            122
    com.apple.driver.AppleHDA            2.3.1f2
    com.apple.driver.AppleMikeyDriver            2.3.1f2
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.driver.AppleMuxControl            3.2.11
    com.apple.driver.AppleUpstreamUserClient            3.5.10
    com.apple.driver.AppleMCCSControl            1.0.33
    com.apple.GeForce            8.0.0
    com.apple.driver.AppleSMCLMU            2.0.2d0
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.ApplePolicyControl            3.2.11
    com.apple.driver.SMCMotionSensor            3.0.2d6
    com.apple.driver.AppleUSBTCButtons            235.4
    com.apple.driver.AppleIRController            320.15
    com.apple.driver.AppleUSBTCKeyboard            235.4
    com.apple.driver.Oxford_Semi            3.1.0
    com.apple.driver.AppleUSBCardReader            3.1.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.iokit.SCSITaskUserClient            3.5.1
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.2.2
    com.apple.driver.AirPort.Brcm4331            602.15.22
    com.apple.driver.AppleFWOHCI            4.9.6
    com.apple.driver.AppleUSBHub            5.2.5
    com.apple.driver.AppleAHCIPort            2.4.1
    com.apple.iokit.AppleBCM5701Ethernet            3.2.5b3
    com.apple.driver.AppleUSBEHCI            5.4.0
    com.apple.driver.AppleEFINVRAM            1.6.1
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.6
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.7
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.6
    com.apple.driver.AppleAPIC            1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient            196.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2
    com.apple.driver.AppleIntelCPUPowerManagement            196.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard            165.5
    com.apple.driver.IOBluetoothHIDDriver            4.0.9f33
    com.apple.driver.AppleHIDKeyboard            165.5
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.kext.triggers            1.0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport            4.0.9f33
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.DspFuncLib            2.3.1f2
    com.apple.iokit.IOAudioFamily            1.8.9fc10
    com.apple.kext.OSvKernDSPLib            1.6
    com.apple.driver.AppleSMBusPCI            1.0.10d0
    com.apple.driver.IOPlatformPluginFamily            5.2.0d16
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleSMBusController            1.0.10d0
    com.apple.nvidia.nv50hal            8.0.0
    com.apple.NVDAResman            8.0.0
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.driver.AppleHDAController            2.3.1f2
    com.apple.iokit.IOHDAFamily            2.3.1f2
    com.apple.iokit.IOSurface            86.0.3
    com.apple.iokit.IOBluetoothFamily            4.0.9f33
    com.apple.driver.AppleGraphicsControl            3.2.11
    com.apple.iokit.IONDRVSupport            2.3.5
    com.apple.iokit.IOGraphicsFamily            2.3.5
    com.apple.driver.AppleSMC            3.1.4d2
    com.apple.driver.AppleUSBMultitouch            235.7
    com.apple.iokit.IOUSBHIDDriver            5.2.5
    com.apple.iokit.IOFireWireSerialBusProtocolTransport            2.1.1
    com.apple.iokit.IOFireWireSBP2            4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.1
    com.apple.iokit.IOUSBMassStorageClass            3.5.0
    com.apple.driver.AppleUSBMergeNub            5.2.5
    com.apple.driver.AppleUSBComposite            5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.1
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOAHCISerialATAPI            2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.1
    com.apple.iokit.IO80211Family            500.15
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBUserClient            5.2.5
    com.apple.iokit.IOAHCIFamily            2.2.1
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.iokit.IOUSBFamily            5.4.0
    com.apple.driver.AppleEFIRuntime            1.6.1
    com.apple.iokit.IOHIDFamily            1.8.0
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            344
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.6
    com.apple.iokit.IOPCIFamily            2.7.2
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x04CD, 0x46332D3130363636434C392D344742535100
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x04CD, 0x46332D3130363636434C392D344742535100
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST95005620AS, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: INIC-1610P, 0x13fd  (Initio Corporation), 0x1e40, 0xfa140000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 9
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd130000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3
    FireWire Device: 1394B/1394A Drive, PI-263, 800mbit_speed

    You're welcome. Your panic report seems to have the same references mine did regarding the graphics card. I went to the Genius Bar because everything I tried to solve the problem didn't help. These are 2 of the links to info. that gave me hope that I might get the problem "permanently" solved without having to pay for repairs.
    http://oleb.net/blog/2012/05/15-inch-mbp-mid-2010-crashing-to-black-screen/
    http://reviews.cnet.com/8301-13727_7-20119849-263/apple-acknowledges-2010-macboo k-pro-black-screen-bug/
    Good luck.
    Boy am I bad at this. I left out the Apple link that specifically addresses the issue: http://support.apple.com/kb/TS4088.
    Message was edited by: n m u

  • Trying to figure out what's using my RAM

    A couple of weeks ago I starting to notice that my memory was getting chewed up slowly until I'd hit around 20MB remaining. the only way that I could free up the space is through 3rd party memory utilities such as FreeMemory. It appears on further inspection memory appears to go inactive, but this isn't very healthy, yet very odd, so I'm trying to figure out if there's a memory leak somewhere.
    Any help would be wonderful. Below is my Etracheck log. I've attempted to remove alll external hard drives and other devices connected via either thunderbolt and USB with no change. Rebooted a few times however the memory gets eaten right up again.
    My initial thought was that it's somehow VMWare however my Windows 7 instance is running at a fixed rate, and even with the instance shut down, my computer would still eat up any available memory.
    Thank you!
    Hardware Information:
        iMac (27-inch, Mid 2011)
        iMac - model: iMac12,2
        1 3.4 GHz Intel Core i7 CPU: 4 cores
        16 GB RAM
    Video Information:
        AMD Radeon HD 6970M - VRAM: 2048 MB
    System Software:
        OS X 10.9.2 (13C64) - Uptime: 0 days 19:6:22
    Disk Information:
        ST31000528AS disk0 : (1 TB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) / [Startup]: 999.35 GB (609.08 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        OPTIARC DVD RW AD-5680H 
    USB Information:
        HP External HDD 2 TB
            HP SimpleSave (disk8s1) /Volumes/HP SimpleSave: 2 TB (202.96 GB free)
        Western Digital Ext HDD 1021 2 TB
            WD (disk6s1) /Volumes/WD: 2 TB (683.89 GB free)
        Initio   WD20EARX-32PASB0 2 TB
            EFI (disk2s1) <not mounted>: 209.7 MB
            disk2s2 (disk2s2) <not mounted>: 2 TB
            Boot OS X (disk2s3) <not mounted>: 134.2 MB
        Initio   WD15EARS-00Z5B1  1.5 TB
            MUSIC (disk1s1) /Volumes/MUSIC: 1.5 TB (347.84 GB free)
        Western Digital Ext HDD 1021 1 TB
            Elements (disk5s1) /Volumes/Elements: 1 TB (119.86 GB free)
        Seagate FreeAgent 500.11 GB
            EFI (disk4s1) <not mounted>: 209.7 MB
            FA (disk4s2) /Volumes/FA: 499.76 GB (350.5 GB free)
        Western Digital My Passport 0748 1 TB
            My Passport (disk7s1) /Volumes/My Passport: 1 TB (710.73 GB free)
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. iPad
        Brother MFC-495CW
        Logitech USB Receiver
        Logitech USB Receiver
        Apple Computer, Inc. IR Receiver
        Apple Internal Memory Card Reader
    FireWire Information:
    Thunderbolt Information:
        Apple Inc. thunderbolt_bus
    Configuration files:
        /etc/hosts - Count: 30
    Kernel Extensions:
        com.kaspersky.kext.klif    (3.0.3a40)
        com.kaspersky.nke    (1.6.3a13)
        com.logmein.driver.LogMeInSoundDriver    (1.0.0)
        com.splashtop.driver.SRXDisplayCard    (1.6 - SDK 10.7)
        com.silex.driver.sxuptp    (1.5.1)
        com.splashtop.driver.SRXFrameBufferConnector    (1.6 - SDK 10.7)
        com.kaspersky.kext.kimul.44    (44)
        com.kaspersky.kext.mark.1.0.5    (1.0.5)
        com.regularrateandrhythm.driver.RowmoteIREmu    (1.0)
        com.tuxera.filesystems.tufsfs.fusefs_txantfs    (2012.4.17)
        com.vmware.kext.vmci    (90.5.7)
        com.vmware.kext.vsockets    (90.5.7)
        com.vmware.kext.vmnet    (0133.15.45)
        com.vmware.kext.vmx86    (0133.15.45)
        com.vmware.kext.vmioplug.12.1.12    (12.1.12)
    Launch Daemons:
        [System]    com.adobe.fpsaud.plist 3rd-Party support link
        [System]    com.adobe.SwitchBoard.plist 3rd-Party support link
        [System]    com.bjango.istatmenusdaemon.plist 3rd-Party support link
        [System]    com.disc-soft.DAEMONTools.PrivilegedHelper.plist 3rd-Party support link
        [System]    com.google.keystone.daemon.plist 3rd-Party support link
        [System]    com.kaspersky.kav.plist 3rd-Party support link
        [System]    com.logmein.logmeinserver.plist 3rd-Party support link
        [System]    com.logmein.raupdate.plist 3rd-Party support link
        [System]    com.microsoft.office.licensing.helper.plist 3rd-Party support link
        [System]    com.oracle.java.Helper-Tool.plist 3rd-Party support link
        [System]    com.parallels.desktop.launchdaemon.plist 3rd-Party support link
        [System]    com.splashtop.streamer-daemon.plist 3rd-Party support link
        [System]    com.teamviewer.teamviewer_service.plist 3rd-Party support link
        [System]    com.timesoftware.timemachineeditor.backupd-auto.plist 3rd-Party support link
        [System]    org.macosforge.xquartz.privileged_startx.plist 3rd-Party support link
        [System]    xxx.qnation.PeerGuardian.kextload.plist 3rd-Party support link
    Launch Agents:
        [System]    com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
        [System]    com.Affinegy.InstaLANa.plist 3rd-Party support link
        [System]    com.bjango.istatmenusagent.plist 3rd-Party support link
        [System]    com.google.keystone.agent.plist 3rd-Party support link
        [System]    com.kaspersky.kav.gui.plist 3rd-Party support link
        [System]    com.logmein.logmeingui.plist 3rd-Party support link
        [System]    com.logmein.logmeinguiagent.plist 3rd-Party support link
        [System]    com.logmein.logmeinguiagentatlogin.plist 3rd-Party support link
        [System]    com.oracle.java.Java-Updater.plist 3rd-Party support link
        [System]    com.parallels.desktop.launch.plist 3rd-Party support link
        [System]    com.parallels.DesktopControlAgent.plist 3rd-Party support link
        [System]    com.parallels.vm.prl_pcproxy.plist 3rd-Party support link
        [System]    com.splashtop.streamer-for-root.plist 3rd-Party support link
        [System]    com.splashtop.streamer-for-user.plist 3rd-Party support link
        [System]    com.teamviewer.teamviewer.plist 3rd-Party support link
        [System]    com.teamviewer.teamviewer_desktop.plist 3rd-Party support link
        [System]    net.culater.SIMBL.Agent.plist 3rd-Party support link
        [System]    org.macosforge.xquartz.startx.plist 3rd-Party support link
    User Launch Agents:
        [not loaded]    com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
        [not loaded]    com.adobe.ARM.[...].plist 3rd-Party support link
        [not loaded]    com.adobe.ARM.[...].plist 3rd-Party support link
        [not loaded]    com.eltima.Folx.Agent.plist 3rd-Party support link
        [not loaded]    com.macpaw.CleanMyMac.helperTool.plist 3rd-Party support link
        [not loaded]    com.macpaw.CleanMyMac.trashSizeWatcher.plist 3rd-Party support link
        [not loaded]    com.macpaw.CleanMyMac.volumeWatcher.plist 3rd-Party support link
        [not loaded]    com.spotify.webhelper.plist 3rd-Party support link
        [not loaded]    com.valvesoftware.steamclean.plist 3rd-Party support link
        [not loaded]    ws.agile.1PasswordAgent.plist 3rd-Party support link
    User Login Items:
        Adium
        Firefox
        Thunderbird
        Vidalia
        [PC ~ Multi9] Football Manager 2010.iso
        iTunesHelper
        MagiCal
        Connect360Helper
        Kodak EasyShare Wireless Listener
        GrowlHelperApp
        Microsoft Database Daemon
        Weather Vane
        VMware Fusion Helper
        Dropbox
        Spotify
        Octoshape
        SIMBL Agent
        iSkysoft Helper Compact
        pCloud
        OpenDNS Updater
        smcFanControl
        TSPrint Client
        Rowmote Helper
    Internet Plug-ins:
        AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 3rd-Party support link
        Flash Player: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
        AdobePDFViewer: Version: 11.0.06 - SDK 10.6 3rd-Party support link
        LogMeInSafari32: Version: 1.0.530 3rd-Party support link
        googletalkbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 3rd-Party support link
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        LogMeInSafari64: Version: 1.0.530 3rd-Party support link
        FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
        NPTWCP: Version: (null) - SDK 10.5 3rd-Party support link
        CitrixICAClientPlugIn: Version: 11.2.0 3rd-Party support link
        Silverlight: Version: 5.1.20513.0 - SDK 10.6 3rd-Party support link
        LogMeIn: Version: 1.0.530 3rd-Party support link
        FolxNetscapePlugIn: Version: Unknown
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 3.0.0.126   - SDK 10.8 3rd-Party support link
        o1dbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
        SharePointBrowserPlugin: Version: 14.3.6 - SDK 10.6 3rd-Party support link
        JavaAppletPlugin: Version: Java 7 Update 21 Outdated! Update
        z: Version: (null) - SDK 10.5 3rd-Party support link
    Safari Extensions:
        Dashlane: Version: 2.3.2.52081
        iTube Studio: Version: 4.1.0.2
        Kaspersky URL Advisor: Version: 8.0.5
        Virtual Keyboard: Version: 14.0
        YouTube Downloader: Version: 4.8.0.0
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 2.0 - SDK 10.9
        AppleAVBAudio: Version: 203.2 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
        TuneUp Visualizer: Version: 2.2.0 3rd-Party support link
        AudioScrobbler: Version: 3.0.4 3rd-Party support link
    User Internet Plug-ins:
        Dashlane: Version: Dashlane 1.0.0 - SDK 10.7 3rd-Party support link
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 3rd-Party support link
        FolxNetscapePlugIn: Version: Unknown
        OctoshapeWeb: Version: 1.0 - SDK 10.8 3rd-Party support link
    3rd Party Preference Panes:
        Citrix Online Plug-in  3rd-Party support link
        Connect360  3rd-Party support link
        Flash Player  3rd-Party support link
        Flip4Mac WMV  3rd-Party support link
        Growl  3rd-Party support link
        Java  3rd-Party support link
        MacFUSE  3rd-Party support link
        Perian  3rd-Party support link
        Tuxera NTFS  3rd-Party support link
    Old Applications:
        Microsoft Language Register:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
        /Users/[redacted]/Library/Application Support/Helper
            iSkysoft Helper Compact:    Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
            Aimersoft Helper Compact:    Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
        SLLauncher:    Version: 1.0 - SDK 10.5 3rd-Party support link
            /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        PwnageTool:    Version: 4.3.3 - SDK 10.4 3rd-Party support link
            /Users/[redacted]/Desktop/iOS4 Jailbreaking/PwnageTool.app
        /Applications/Microsoft Office 2011
            Microsoft PowerPoint:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Excel:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Outlook:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Word:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Document Connection:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
        DockPlistEdit:    Version: 7.0 - SDK 10.5 3rd-Party support link
            /Library/Parallels/Uninstaller/Parallels Hypervisor/DockPlistEdit.app
        /Applications/Microsoft Office 2011/Office
            Microsoft Graph:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Database Utility:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Office Reminders:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Upload Center:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            My Day:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            SyncServicesAgent:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Open XML for Excel:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Alerts Daemon:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Database Daemon:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Chart Converter:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
            Microsoft Clip Gallery:    Version: 14.3.6 - SDK 10.5 3rd-Party support link
        Meteorologist:    Version: 1.5.6 - SDK 10.4 3rd-Party support link
        Lithium Core Admin:    Version: 5.0.15 - SDK 10.5 3rd-Party support link
        Microsoft Communicator:    Version: 13.1.3 - SDK 10.5 3rd-Party support link
        Lithium Console:    Version: 5.0.15 - SDK 10.5 3rd-Party support link
        SpotiMy:    Version: 1.1 - SDK 10.0 3rd-Party support link
        Rowmote Helper:    Version: 3.4.1 - SDK 10.5 3rd-Party support link
        iPhone Explorer:    Version: 2.1.0.1 - SDK 10.0 3rd-Party support link
        Data Rescue 3:    Version: 3.2 - SDK 10.4 3rd-Party support link
        Rivet:    Version: 2.8.0 - SDK 10.5 3rd-Party support link
        Remote Desktop Connection:    Version: 2.1.2 - SDK 10.5 3rd-Party support link
        Solver:    Version: 1.0 - SDK 10.5 3rd-Party support link
            /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        dynamiclinkmanager:    Version: 6.0.0 - SDK 10.5 3rd-Party support link
            /Library/Application Support/Adobe/Common/dynamiclink/CS6/dynamiclinkmanager.app
        dynamiclinkmediaserver:    Version: 6.0.1 - SDK 10.5 3rd-Party support link
            /Library/Application Support/Adobe/Common/dynamiclinkmediaserver/1.0/dynamiclinkmediaserver.app
        iSkysoft Helper Compact:    Version: 2.2.5.6 - SDK 10.5 3rd-Party support link
            /Applications/iSkysoft Helper Compact/iSkysoft Helper Compact.app
        Microsoft AutoUpdate:    Version: 2.3.6 - SDK 10.4 3rd-Party support link
            /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
        Audacity:    Version: 1.3.13.0 - SDK 10.4 3rd-Party support link
            /Applications/Audacity/Audacity.app
        /Library/Application Support/Microsoft/MERP2.0
            Microsoft Error Reporting:    Version: 2.2.9 - SDK 10.4 3rd-Party support link
            Microsoft Ship Asserts:    Version: 1.1.4 - SDK 10.4 3rd-Party support link
        SA Color Finesse 3 UI:    Version: 3.0.6(275) - SDK 10.5 3rd-Party support link
            /Applications/Adobe After Effects CS6/Plug-ins/Effects/Synthetic Aperture/(CF3 Support)/SA Color Finesse 3 UI.app
    Time Machine:
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 930.71 GB Disk used: 363.47 GB
        Destinations:
            Untitled [Local] (Last used)
            Total size: 2 
            Total number of backups: 59
            Oldest backup: 2013-12-15 08:32:21 +0000
            Last backup: 2014-03-23 19:01:48 +0000
            Size of backup disk: Adequate
                Backup size 2  > (Disk used 363.47 GB X 3)
        Time Machine details may not be accurate.
        All volumes being backed up may not be listed.
    Top Processes by CPU:
           158%    vmware-vmx
           139%    Adium
            38%    plugin-container
             7%    thunderbird
             6%    firefox
    Top Processes by Memory:
        3.55 GB    vmware-vmx
        1.01 GB    firefox
        410 MB    thunderbird
        262 MB    kav
        229 MB    plugin-container
    Virtual Memory Information:
        1.03 GB    Free RAM
        5.20 GB    Active RAM
        5.07 GB    Inactive RAM
        4.44 GB    Wired RAM
        5.09 GB    Page-ins
        1.01 GB    Page-outs

    You have waaaaaay, waaaaaay too much software and "garbageware" installed on your Mac!
    Plus, you are treating your Mac too, tooo much like a Windows PC!
    Are you a former WindowsPC user?
    You do not need all of this software crap and "garbageware" you have installed on your Mac.
    How many applications do you run simultaneously in the background while working in another application?
    With 16 GBs of RAM, you should not be experiencing any memory Page out issues. Yet, you have over a GB of memory Page outs!
    You are, probably running tooo many applications at once. You need to cut back the amount of open applications that you have up and running concurrently OR install even MORE RAM!
    Your year and model Mac can take up to 32 GBs of RAM.
    Correct and reliable Mac RAM can be purchased from online Mac RAM sources Crucial memory or OWC (macsales.com).
    Unless you are running Kaspersky antivirus software under your Windows setup, completely uninstall this from OS X per instructions on the developer's website.
    OS X does not need antivirus software. Antivirus software can slow down the normal operation of OS X and have adverse and negative effects on performance and operation of OS X.
    Compleley uninstall CleanMyMac per the instructions on the developer's website.
    http://macpaw.com/support/cleanmymac/knowledgebase/how-to-uninstall-cleanmymac-2
    Again, you have waaaaay toooo many user startup/login items!
    You need to really, REALLY, look at these at determine what you need to have launch at startup or Login.
    You really need to whittle this waaaay down!
    All of these items launching at startup/login is causing a large part of your Mac slowdowns.
    Add or remove automatic items
    Choose Apple menu > System Preferences, then click Users & Groups.
    Select your user account, then click Login Items.
    Do one of the following:
    Click Add below the list on the right, select an app, document, folder, or disk, then click Add.If you don’t want an item’s windows to be visible after login, select Hide. (Hide does not apply to servers, which always appear in the Finder after login.)
    Select the name of the item you want to prevent from opening automatically, then click Delete below the list on the right.
    Google software is ,currently, not 100% compatible/compliant with OS X Mavericks. Especially Google Chrome and Drive.
    So, uninstall all Google software per the instructions on Google's website until Google posts an "official" fix/update for these.
    If you do not like Apple's Safari Web browser, try using Mozilla Firefox, instead. Mozilla constantly updates FireFox and there is a new update available.
    Also, Telestream Flip4Mac plugin is an issue on OS X Mavericks. If there is no Mavericks update for this plugin, then completely unistall this plugin per instructions on the Telestream website. Use the newest version of VLC player, instead.
    Completely Uninstall MacFUSE. There hasn't been any updates for this in a couple of years and is outdated and incompatible with Mavericks. Uninstall per instructions on the developer's website, also.
    You need to update all of your third party software if there are OS X Mavericks updates that can be applied.
    You may need to,ACTUALLY,  go to the third party developers' websites if there are no updates through the Mac App Store.
    Update all of your Web browser Internet plugins, extensions and add ons, also.
    Also, if you have any connected third party devices, like non-Apple keyboards, mice, drawing tablets, hubs, card  readers, etc, you need to go to the device makers' websites' and update the drivers for these devices to OS X Mavericks compatible versions, if available, applicable and needed.
    Good Luck to you!

  • IMac 27" Late 2013 Wi Fi Log in Issue

    Hello everyone,
    I apologize if my questions have been asked in the past. I'm completely new to the Apple Mac OS. I bought a new iMac 27" in the middle of 2014 and use it about once or twice a week and have had no issues to-date. I'm still in the process of learning though so my use of it is limited to basic emailing, web browsing and Skype.
    In the last 2 weeks I have had problems logging into my Wifi network at home. It would not log on even after I had reset the modem. After trying and rebooting my iMac 3-4 times it would finally do so without changing anything in the it. I'm not sure what is causing it, but thought I would ask here.
    What would be causing the log in issue to my Wi Fi network?
    Do I need to be concern with the findings in the Etre check?
    Startup after logging in my password would take longer than usual...what would be causing it?
    Here is the result from the Etre scan. I guess what concerns me is in red...and also if it shows the Wi Fi log in issue.
    Thank you in advance for your help and advice.
    EtreCheck version: 2.1.8 (121)
    Report generated 9 February 2015 11:23:18 am AEST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (27-inch, Late 2013) (Technical Specifications)
        iMac - model: iMac14,2
        1 3.4 GHz Intel Core i5 CPU: 4-core
        32 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 0/DIMM1
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM1
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        NVIDIA GeForce GTX 780M - VRAM: 4096 MB
            iMac 2560 x 1440
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Time since boot: 0:24:23
    Disk Information: ℹ️
        APPLE SSD SD0128F disk0 : (121.33 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Boot OS X (disk0s3) <not mounted> : 134 MB
            Macintosh HD (disk2) / : 1.11 TB (1.04 TB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 120.99 GB Online
                Core Storage: disk1s2 999.35 GB Online
        APPLE HDD ST1000DM003 disk1 : (1 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            Recovery HD (disk1s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk2) / : 1.11 TB (1.04 TB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 120.99 GB Online
                Core Storage: disk1s2 999.35 GB Online
    USB Information: ℹ️
        VIA Labs, Inc.          USB3.0 Hub             
            VIA Labs, Inc.          USB3.0 Hub             
                Seagate  Backup+  SL 2 TB
            EFI (disk3s1) <not mounted> : 210 MB
            Seagate Backup Plus Drive (disk3s2) /Volumes/Seagate Backup Plus Drive : 2.00 TB (1.82 TB free)
            Recovery HD (disk3s3) <not mounted>  [Recovery]: 650 MB
                Initio   INIC-3609       
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Logitech Inc. Logitech USB Headset H340
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        VIA Labs, Inc.          USB2.0 Hub             
            VIA Labs, Inc.          USB2.0 Hub             
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Startup Items: ℹ️
        ProTec6b: Path: /Library/StartupItems/ProTec6b
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.bombich.ccc.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    com.spotify.webhelper.plist [Click for support]
        [not loaded]    jp.co.canon.Inkjet_Extended_Survey_Agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Alfred 2    Application  (/Applications/Alfred 2.app)
        Spotify 08-26-32-444    Application  (/Users/[redacted]/.Trash/Spotify 08-26-32-444.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Canon IJ Network Scanner Selector EX    Application Hidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
        Speech Startup    Application  (/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogn ition.framework/Versions/A/Speech Startup.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 16.0.0.296 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        Flash Player: Version: 16.0.0.296 - SDK 10.6 Outdated! Update
        EPPEX Plugin: Version: 3.0.5.0 [Click for support]
        Default Browser: Version: 537 - SDK 10.9
        SharePointBrowserPlugin: Version: 14.4.3 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.20125.0 - SDK 10.6 [Click for support]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 1.11 TB Disk used: 75.54 GB
        Destinations:
            Seagate Backup Plus Drive [Local]
            Total size: 2.00 TB
            Total number of backups: 33
            Oldest backup: 2014-04-16 03:45:27 +0000
            Last backup: 2015-02-09 01:07:51 +0000
            Size of backup disk: Adequate
                Backup size 2.00 TB > (Disk used 75.54 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             2%    Safari
             2%    Google Chrome
             1%    fontd
             1%    coreaudiod
    Top Processes by Memory: ℹ️
        481 MB    WindowServer
        309 MB    Airmail
        206 MB    mds_stores
        206 MB    Safari
        172 MB    Google Chrome
    Virtual Memory Information: ℹ️
        27.13 GB    Free RAM
        4.39 GB    Active RAM
        1.08 GB    Inactive RAM
        1.75 GB    Wired RAM
        912 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 9, 2015, 10:58:33 AM    Self test - pass

    Hi, Jiyujin.  
    Thank you for visiting Apple Support Communities.
    I would need some clarification of the reference to log on and a little more information about the behavior to provide a better answer.  However, here is a troubleshooting article that may help.  
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    http://support.apple.com/HT202222
    Cheers,
    Jason H.

  • Pages quit unexpectedly... and Numbers...

    My iWork '09 apps are giving me major grief. It was all three, but it's only Pages and Numbers now. I've tried every trick that I know of to try and resolve this, but all to no avail.
    This all started a week ago when I reinstalled my OS and the using Migration Assistant migrated all my user setting and files back from my external HD that I had everything backed up to.
    Basically, the apps open as far as the template chooser pane, but then only a couple of seconds later they just crash with the whole "Pages quit unexpectedly" deal. Comes up with the report to Apple (yeah, I'm sure they really care) and the report states a crashed thread, but it's a different thread each time. I've pasted a report at the bottom. Not cool. Numbers is the same.
    Keynote was the same too, but now it actually is working, the other two still aren't though. Very weird.
    Here's what I've done to try and solve it...
    1. Removed all iWork .plist files from both my user library and the root library
    2. Removed the apps themselves and reinstalled them from the disks
    3. Removed all iWork folders, prefs, application support folders, everything I could find related to iWork and then reinstalled
    4. Used FontDoctor to check and fix all fonts
    5. Went into Font Book and manually removed all duplicate fonts
    6. Used Terminal command <mdfind "comapple_ats_fontinvalid == 1"> to manually remove all invalid fonts
    7. Used TinkerTool System to clean all font caches, user caches, blah, blah, blah...
    8. Removed the /etc/cups/printers.conf file. As suggested by some genius at http://discussions.apple.com/thread.jspa?threadID=2422190&tstart=0 . Great idea, it just made all my printers all vanish. Funny that, being a printers config file and all. Didn't make a shred of difference to iWork though
    9. Removed iWork '09 again. Downgraded to iWork '08. iWork '08 apps open but don't run correctly, the templates are missing all their graphics and colours. And they don't open any iWork '09 files anyway. Way to protect your upgrades income Apple!
    I then upgraded back to iWork '09, and installed updates 1, 2 and 3 one by one, trying the apps between each. Keynote began working during this process, but Pages and Numbers still won't.
    I've tried opening a new User account, and they do work in that. But I don't want to set up a new account and then have to migrate all my settings and files manually to that. Obviously I don't want to use the Migration Assistant because that's what started this whole nonsense.
    The other discussion thread I've checked for all this is http://discussions.apple.com/thread.jspa?threadID=1856278&start=15&tstart=0 . Please don't suggest anything obvious from that, I've done it already.
    Someone will want to see a report I guess so I've pasted that below. I can't read those things.
    If anyone can help by suggesting anything new that might help then I'd be very grateful. I'm sorry if I sound pretty grouchy and sarcastic in this question, but to be totally honest I'm pretty ticked off with this. I really would be genuinely grateful for any help though
    Oh, and in a delightful twist, it would seem it is contagious. My wife's MacBook Pro 13" Unibody won't open any iWork '09 apps now either. Hooray for Apple. Bring on Office 2010...
    Process: Pages [1488]
    Path: /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    Identifier: com.apple.iWork.Pages
    Version: 4.0.3 (766)
    Build Info: Pages-7660000~2
    Code Type: X86 (Native)
    Parent Process: launchd [108]
    Date/Time: 2010-05-18 20:28:28.011 +1200
    OS Version: Mac OS X 10.6.3 (10D573)
    Report Version: 6
    Interval Since Last Report: 18473 sec
    Per-App Interval Since Last Report: 34 sec
    Per-App Crashes Since Last Report: 4
    Anonymous UUID: BF6A2A9C-8DE6-4658-A354-237DE55D5E85
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000004
    Crashed Thread: 5
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x907d62fa machmsgtrap + 10
    1 libSystem.B.dylib 0x907d6a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x9739200f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x973910f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x97390f21 CFRunLoopRunInMode + 97
    5 com.apple.HIToolbox 0x9547c0fc RunCurrentEventLoopInMode + 392
    6 com.apple.HIToolbox 0x9547beb1 ReceiveNextEventCommon + 354
    7 com.apple.HIToolbox 0x9547bd36 BlockUntilNextEventMatchingListInMode + 81
    8 com.apple.AppKit 0x9117f135 _DPSNextEvent + 847
    9 com.apple.AppKit 0x9117e976 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    10 com.apple.AppKit 0x91140bef -[NSApplication run] + 821
    11 com.apple.AppKit 0x91138c85 NSApplicationMain + 574
    12 com.apple.iWork.Pages 0x0000d0a1 _gnu_cxx::newallocator<std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> >::construct(std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI)>, std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> const&) + 497
    13 com.apple.iWork.Pages 0x0000cfa0 _gnu_cxx::newallocator<std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> >::construct(std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI)>, std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> const&) + 240
    14 com.apple.iWork.Pages 0x0007cb7d _gnu_cxx::newallocator<std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> >::construct(std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI)>, std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> const&) + 457933
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x907fcb42 kevent + 10
    1 libSystem.B.dylib 0x907fd25c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x907fc719 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x907fc4be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x907fbf41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x907fbd86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x907fbbd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x907fc168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x907fbd86 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x907d635a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90803ea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90832a28 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90a68a88 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x90a217f9 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x90a216dc -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Keynote.SFControls 0x02333d4d -[SFCImageCollectionUpdateQueue(Private) thread:] + 98
    7 com.apple.Foundation 0x90a2c8dc -[NSThread main] + 45
    8 com.apple.Foundation 0x90a2c88c _NSThread__main_ + 1499
    9 libSystem.B.dylib 0x90803a19 pthreadstart + 345
    10 libSystem.B.dylib 0x9080389e thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90804262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90803f1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x90805bb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.CoreVideo 0x95921c3e CVDisplayLink::runIOThread() + 1016
    4 com.apple.CoreVideo 0x9592182a startIOThread(void*) + 156
    5 libSystem.B.dylib 0x90803a19 pthreadstart + 345
    6 libSystem.B.dylib 0x9080389e thread_start + 34
    Thread 5 Crashed:
    0 libTrueTypeScaler.dylib 0x95366e64 fntSH_Common(fntLocalGraphicStateType*, long*, long*, int*) + 61
    1 libTrueTypeScaler.dylib 0x95366e11 fntSHP(fntLocalGraphicStateType*) + 29
    2 libTrueTypeScaler.dylib 0x9536354a fntInnerExecute(fntLocalGraphicStateType*, unsigned char*, unsigned char*) + 59
    3 libTrueTypeScaler.dylib 0x95363c36 fntCALL(fntLocalGraphicStateType*) + 139
    4 libTrueTypeScaler.dylib 0x9536354a fntInnerExecute(fntLocalGraphicStateType*, unsigned char*, unsigned char*) + 59
    5 libTrueTypeScaler.dylib 0x953634c9 fntExecute(fntElementType**, fnt_GlobalGraphicStateType*, unsigned char*, unsigned char*, void (*)(), memoryContext*, unsigned char, unsigned char, unsigned char) + 438
    6 libTrueTypeScaler.dylib 0x95363a12 RunPreProgram(fsg_SplineKey*, transformState const*, void (*)()) + 310
    7 libTrueTypeScaler.dylib 0x95363215 CreateGlyphElement(fsg_SplineKey*, long, unsigned char, unsigned char) + 344
    8 libTrueTypeScaler.dylib 0x9535f649 CreateScalerGlyphBlock(fsg_SplineKey*, memoryContext*, scalerGlyph const*) + 229
    9 libTrueTypeScaler.dylib 0x9535f4b3 AssureGlyphBlock(fsg_SplineKey*, memoryContext*, transformBlockCacheNode*, scalerGlyph*) + 180
    10 libTrueTypeScaler.dylib 0x9535b6fd TTGetStrikeSpecs + 598
    11 libFontParser.dylib 0x9671561a TConcreteFontScaler::GetFontMetrics() const + 46
    12 libFontParser.dylib 0x9675f85f TConcreteFontScaler::GetATSCompatibleMetrics(int&, int&, int&, int&, int&, int&, int&) const + 25
    13 libFontParser.dylib 0x967168bc FPFontGetGlyphsForUnichars + 428
    14 com.apple.CoreText 0x9007fd56 TBaseFont::CalculateFontMetrics(bool) const + 342
    15 com.apple.CoreText 0x9007fbad TBaseFont::InitFontMetrics() const + 51
    16 com.apple.CoreText 0x9007f9b1 TBaseFont::GetStrikeMetrics(float, CGAffineTransform const*, bool) const + 81
    17 com.apple.CoreText 0x9007f923 TFont::InitStrikeMetrics() const + 55
    18 com.apple.CoreText 0x90083323 CTFontGetAscent + 49
    19 com.apple.AppKit 0x911916b0 __NSFontInstanceInfoInitializeMetricsInfo + 48
    20 com.apple.AppKit 0x91191664 -[__NSSharedFontInstanceInfo _defaultLineHeight:] + 40
    21 com.apple.AppKit 0x912383fc -[NSATSTypesetter _layoutLineFragmentStartingWithGlyphAtIndex:characterIndex:atPoint:renderingCon text:] + 1079
    22 com.apple.AppKit 0x913dd3bb -[NSSingleLineTypesetter createRenderingContextForCharacterRange:typesetterBehavior:usesScreenFonts:hasS trongRight:maximumWidth:] + 451
    23 com.apple.AppKit 0x912431af __NSCreateRenderingContextForAttributedString + 324
    24 com.apple.AppKit 0x91242ce8 -[NSAttributedString(NSExtendedStringDrawing) boundingRectWithSize:options:] + 1377
    25 com.apple.AppKit 0x9133745b -[NSAttributedString(NSStringDrawing) size] + 73
    26 com.apple.Keynote.sfinspectors 0x026a285f ImageForFontName(NSString*, NSString*, NSDate**) + 281
    27 com.apple.Keynote.sfinspectors 0x0265adc9 -[SFIFontCache imageForFamily:face:] + 969
    28 com.apple.Keynote.sfinspectors 0x026a25c3 -[SFIFontCache _backgroundThread:] + 609
    29 com.apple.Foundation 0x90a2c8dc -[NSThread main] + 45
    30 com.apple.Foundation 0x90a2c88c _NSThread__main_ + 1499
    31 libSystem.B.dylib 0x90803a19 pthreadstart + 345
    32 libSystem.B.dylib 0x9080389e thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x907fbbd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x907fc168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x907fbd86 start_wqthread + 30
    Thread 7:
    0 libSystem.B.dylib 0x907fbbd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x907fc168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x907fbd86 start_wqthread + 30
    Thread 5 crashed with X86 Thread State (32-bit):
    eax: 0xb02a7d48 ebx: 0xb02a7c40 ecx: 0xb02a7b48 edx: 0xb02a7b4c
    edi: 0x00000009 esi: 0x00000000 ebp: 0xb02a7b28 esp: 0xb02a7af0
    ss: 0x0000001f efl: 0x00010283 eip: 0x95366e64 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000004
    Binary Images:
    0x1000 - 0x30afe0 com.apple.iWork.Pages 4.0.3 (766) <27708BB3-B7D6-CEB5-478A-96325025592E> /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    0x384000 - 0xe69ffe +SFCompatibility ??? (???) <E81FAD85-7A01-B091-77DD-4FEA6778363C> /Library/Application Support/iWork '09/Frameworks/SFCompatibility.framework/Versions/A/SFCompatibility
    0x158d000 - 0x15a6ffe com.apple.Keynote.sfstyles 1.0 (1.0) <D56EF867-7E9E-522B-A1BD-9751A76E4AA6> /Library/Application Support/iWork '09/Frameworks/SFStyles.framework/Versions/A/SFStyles
    0x15b7000 - 0x1a66ff5 com.apple.SFTabular 1.0 (1.0) <BB7F15F6-5815-CF52-125B-A1467F5CA1E2> /Library/Application Support/iWork '09/Frameworks/SFTabular.framework/Versions/A/SFTabular
    0x1c30000 - 0x1ce1ff7 com.apple.Keynote.sfutility 1.0 (0.0.1d1) <3EE1713F-84E5-553E-B715-F233A8C7FA07> /Library/Application Support/iWork '09/Frameworks/SFUtility.framework/Versions/A/SFUtility
    0x1d4f000 - 0x1edeff2 com.apple.Keynote.sfdrawables 2.0 (2.0) <9AE9A6AE-C7E1-7202-2C16-4BAF48C4875A> /Library/Application Support/iWork '09/Frameworks/SFDrawables.framework/Versions/A/SFDrawables
    0x1f9c000 - 0x2209fef +SFWordProcessing ??? (???) <9987F6AD-6BF8-E0EB-7C65-317CF1EA9602> /Library/Application Support/iWork '09/Frameworks/SFWordProcessing.framework/Versions/A/SFWordProcessing
    0x232d000 - 0x2377ff4 com.apple.Keynote.SFControls 1.0 (20030306_1) <978E2AEB-3643-FA18-1570-D88DA44A8136> /Library/Application Support/iWork '09/Frameworks/SFControls.framework/Versions/A/SFControls
    0x23a4000 - 0x23fafef com.apple.Keynote.sfarchiving 1.0 (0.0.1d1) <43B82C65-8218-E9D4-37B9-4C9D014F3FBE> /Library/Application Support/iWork '09/Frameworks/SFArchiving.framework/Versions/A/SFArchiving
    0x242b000 - 0x2538feb com.apple.Keynote.sfrendering 1.0 (1.0) <462C3895-BFFB-AE84-1460-0D8960F42AB7> /Library/Application Support/iWork '09/Frameworks/SFRendering.framework/Versions/A/SFRendering
    0x259b000 - 0x2623ff9 com.apple.Keynote.proofreader 0 (1) <8E1B3F70-DC06-FC1E-C14E-139CECD7BCF6> /Library/Application Support/iWork '09/Frameworks/SFProofReader.framework/Versions/A/SFProofReader
    0x2631000 - 0x26e7ff2 com.apple.Keynote.sfinspectors 1.0 (1.0) <A15F48EC-0290-045C-F21E-53C1C56B47A0> /Library/Application Support/iWork '09/Frameworks/SFInspectors.framework/Versions/A/SFInspectors
    0x2742000 - 0x2aa3ffa com.apple.Keynote.sfcharts 2.0 (2.0) <F8B8D581-9432-C1DF-3E64-E797BA0AB8B4> /Library/Application Support/iWork '09/Frameworks/SFCharts.framework/Versions/A/SFCharts
    0x2cd5000 - 0x2d0dffb com.apple.Keynote.SFAnimation 1.0 (0.0.1d1) <6A1C89D1-3231-F4E8-E385-878AD93E349C> /Library/Application Support/iWork '09/Frameworks/SFAnimation.framework/Versions/A/SFAnimation
    0x2d37000 - 0x2d61ff3 com.apple.Keynote.sflicense 1.0 (0.0.1d1) <88DE54B0-738C-9D91-88E4-254EFFF96286> /Library/Application Support/iWork '09/Frameworks/SFLicense.framework/Versions/A/SFLicense
    0x2d7d000 - 0x2e25ff8 com.apple.sf.sfapplication 1.0 (1.0) <E1DF5F54-4906-F9E0-FF72-097FB07960D2> /Library/Application Support/iWork '09/Frameworks/SFApplication.framework/Versions/A/SFApplication
    0x2e86000 - 0x2f3bfe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x2f81000 - 0x2fbdff7 com.apple.OSAKit 1.2.1 (76) <6F598EE9-9973-5983-2A71-56FF1AB0081B> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x2fe1000 - 0x307dffc com.apple.MobileMe 6 (1.0) <1C97CCA6-57E8-D0F5-20DE-32DAD3D17C1C> /Library/Application Support/iWork '09/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x30dc000 - 0x30e8fe7 libexslt.0.dylib 9.13.0 (compatibility 9.0.0) <43856244-CC36-9DE9-3D60-D4F4D6F2825C> /usr/lib/libexslt.0.dylib
    0x377d000 - 0x3780fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xd559000 - 0xd5befde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0xd5de000 - 0xd66cfff +net.sourceforge.webcam-osx.common 0.8.8 (0.8.8) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x11245000 - 0x113b8fe7 GLEngine ??? (???) <F0181B85-962E-508D-4912-056D87F8E96E> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x113ea000 - 0x11621fff com.apple.ATIRadeonX1000GLDriver 1.6.10 (6.1.0) <F96F39A1-0262-D4EC-D415-D930A0C9C59D> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x11644000 - 0x11667fe7 GLRendererFloat ??? (???) <65E1E174-28E0-3FA9-E391-504891B69818> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x3e000000 - 0x3e046ff7 com.apple.glut 3.4.4 (GLUT-3.4.4) <DF15FD36-E1F5-D745-1BF6-DD3AEA2897E4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x3f000000 - 0x3f41bfee +org.coin3d.Coin.framework 3.0.0a (3.0.0a) /Library/Application Support/iWork '09/Frameworks/Inventor.framework/Versions/C/Inventor
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90076fff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90077000 - 0x900d8fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x900d9000 - 0x9011cff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9011d000 - 0x9015dff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9015e000 - 0x9016aff7 libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x9016b000 - 0x901a9ff7 com.apple.CoreMedia 0.484.5 (484.5) <35725D22-4549-5568-8E8C-62E0AD0E90F7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x901aa000 - 0x901b0fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x901b1000 - 0x90261ff3 com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90262000 - 0x902fffe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90300000 - 0x904dbff3 libType1Scaler.dylib ??? (???) <944F686E-9CC2-03F0-A139-8F322F0AC49F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x904dc000 - 0x9051fff7 libGLU.dylib ??? (???) <CE02968E-930D-E63B-7B21-B87205F8B19A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90520000 - 0x90520ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90521000 - 0x90556ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <458E819A-4E3F-333E-28CE-671281B318D3> /usr/lib/libcups.2.dylib
    0x905de000 - 0x905fbfe7 com.apple.DotMacSyncManager 2.0.2 (446.8) <EFCEF228-E07F-E3E0-5C72-686185783289> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x905fc000 - 0x90602ff7 libCGXCoreImage.A.dylib 543.33.0 (compatibility 64.0.0) <DD359830-97D4-0CD4-8666-DFE450E8D633> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x9062e000 - 0x90669fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9066a000 - 0x906a2fe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <9029FA55-4F07-28B9-C1B4-06AD70D8DC8A> /usr/lib/libcurl.4.dylib
    0x906a3000 - 0x906cdff7 com.apple.framework.Admin 4.1 (4.1) <8B647D47-2F09-2873-757A-3122BA994783> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x906ce000 - 0x906e2fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x906e3000 - 0x90733ff7 com.apple.framework.familycontrols 2.0.1 (2010) <50E74916-19A5-F2FC-AB57-76F2C8DDF0A7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90734000 - 0x9077dfe7 libTIFF.dylib ??? (???) <E45B169E-253E-E865-1501-97777D2702F2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9077e000 - 0x907d4ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x907d5000 - 0x9097afeb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x9097b000 - 0x9097dff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9097e000 - 0x9097eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9097f000 - 0x909f6ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x909f7000 - 0x90a02ff7 com.apple.CrashReporterSupport 10.6.3 (250) <E2835962-67A2-CA10-4016-467175851348> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90a03000 - 0x90a15ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <6BB58E90-21FA-C491-F0E4-54B69CCDBBC0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90a16000 - 0x90c86ffb com.apple.Foundation 6.6.2 (751.21) <DA7A173A-4435-ECD6-F4AF-977D722FD2F7> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c8c000 - 0x90c9afe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x90c9b000 - 0x910b1ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x910b2000 - 0x910b7ff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x910da000 - 0x910e1ff7 com.apple.NSServerNotificationCenter 2 (1.0) <63EAE599-362C-CD27-CC18-1F211C12B8B8> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x910e2000 - 0x910edff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <F914F427-98EA-98BC-923D-47274A90D441> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x910f8000 - 0x91136ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91137000 - 0x91a16ff7 com.apple.AppKit 6.6.5 (1038.29) <E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91a2a000 - 0x91a98ff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x91a99000 - 0x91a99ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91a9a000 - 0x91aa7fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x91aa8000 - 0x91aecfe7 com.apple.Metadata 10.6.3 (507.8) <53BB360A-1813-170D-827F-C1863EF15537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91aed000 - 0x91af3ff7 com.apple.DisplayServicesFW 2.2.2 (251) <D8BB3A1F-29C7-A957-C781-794CC9550525> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91af4000 - 0x91bf6fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x91bf7000 - 0x91c68ff7 com.apple.AppleVAFramework 4.8.11 (4.8.11) <BDDDFA36-4B53-4B57-B3D4-427DA8226A80> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91c82000 - 0x91cc8ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91cc9000 - 0x924b8537 com.apple.CoreGraphics 1.543.33 (???) <C57E2964-80AF-6346-6D3E-23AED9D26977> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92501000 - 0x92502ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92503000 - 0x92550ff7 com.apple.ExchangeWebServices 1.2 (60) <AA36F562-FBA8-8D9A-D4E7-1E6B0657467F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x92551000 - 0x92657ff3 com.apple.DiskImagesFramework 10.6.3 (283) <25E58865-CC3A-8707-1C4C-F86ED1514A09> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x92658000 - 0x9267fff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92680000 - 0x9268dff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9268e000 - 0x9269cff7 com.apple.opengl 1.6.7 (1.6.7) <3C529790-DEE9-AC27-A879-806E4C23323C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9269d000 - 0x92a1cff3 com.apple.RawCamera.bundle 3.0.2 (527) <981AB834-6C34-6FA5-F886-01DF06C56609> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x92a1d000 - 0x92a5fff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92a76000 - 0x92a81ff7 libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92a82000 - 0x92c04fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x92cb4000 - 0x92cc5ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92cc6000 - 0x92d48ffb SecurityFoundation 36840.0.0 (compatibility 1.0.0) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92d49000 - 0x92e75fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92ebd000 - 0x92f9aff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92f9b000 - 0x92fd8ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <830FED9E-3E24-004C-35D5-2C1273F79734> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92fd9000 - 0x93014feb libFontRegistry.dylib ??? (???) <F50A60E1-3757-D007-A20D-A5504C17334C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x93015000 - 0x930beff7 com.apple.CFNetwork 454.9.4 (454.9.4) <2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x930bf000 - 0x93107fff com.apple.iCalendar 1.0.1 (51) <3FF8D7DB-CA31-ADC2-23E9-E1254EAF8BB2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x93108000 - 0x9310cff7 IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9310d000 - 0x9319ffe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93295000 - 0x932bbfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x932bc000 - 0x93309feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9330a000 - 0x9330aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9330b000 - 0x9340cfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9340d000 - 0x93471ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93472000 - 0x93472ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93473000 - 0x936d5ff3 com.apple.security 6.1.1 (37594) <1AC07F75-7E27-9662-21DA-B05DFF047B26> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x936d6000 - 0x936d6ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x936d7000 - 0x936f8fe7 com.apple.opencl 12.1 (12.1) <1BCA4F60-E612-5C1B-EF50-A810D70CDF05> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9370d000 - 0x93a02fe7 com.apple.MessageFramework 4.2 (1078) <15971C83-555D-E3F3-4E01-E90BFA7CAFEA> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x93a31000 - 0x93d98ff7 com.apple.QuartzCore 1.6.1 (227.18) <8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93d99000 - 0x93daefff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93daf000 - 0x93e2ffeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93e30000 - 0x93e32ff7 libRadiance.dylib ??? (???) <9358E1EF-F802-B76E-8E23-2D0695787CFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93e33000 - 0x93e79ffb com.apple.CoreMediaIOServices 130.0 (1035) <397101F4-BA80-C8C2-F816-E2FBE5E15D4F> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93e7a000 - 0x93e7fff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93e80000 - 0x93e80ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93e81000 - 0x93e84ff7 libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x93e85000 - 0x93e85ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93e86000 - 0x93f21ff7 com.apple.ApplicationServices.ATS 4.2 (???) <3BEB7210-4C85-7309-B22D-695765526524> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93f22000 - 0x93f3aff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x93f3b000 - 0x94047ff7 libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94048000 - 0x9415eff7 com.apple.PubSub 1.0.4 (65.12.1) <1B79C698-A2A1-6B74-A137-67516ABE088E> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9415f000 - 0x94594ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94595000 - 0x945b1fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x945b2000 - 0x945c4ff7 com.apple.syncservices.syncservicesui 5.2 (578.3) <D3B86149-3466-B202-DBC1-06C575D451EB> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x945c5000 - 0x9462ffe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94630000 - 0x946a4fef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x946a5000 - 0x946c9ff7 libJPEG.dylib ??? (???) <EDA86712-F49C-760C-BE55-9B899A4A5D1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x946e3000 - 0x946e6ff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <69BE578C-A364-A150-35E3-53EE00F56F05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x946e7000 - 0x947cbff7 com.apple.WebKit 6531.22 (6531.22.7) <87C81D6F-77B1-C517-93E6-5DEF214326A7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x947cc000 - 0x948fafe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x948fb000 - 0x9494cff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9495a000 - 0x94a35ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <142D8613-C609-F6F0-92D4-209A58FA52DE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94bcb000 - 0x94c39ff7 com.apple.ISSupport 1.9.3 (51) <9BB37FBA-E379-8D12-11C6-B9C5C9683D27> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94c3a000 - 0x94c8aff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x94c8b000 - 0x94c95ff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x94c96000 - 0x94c97ff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94c98000 - 0x94ccefff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x94ccf000 - 0x9518cffb com.apple.VideoToolbox 0.484.5 (484.5) <DA9B4FA8-B91C-43AC-1D84-0BFF46BB5BCE> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9518d000 - 0x951d1ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x951d2000 - 0x9522afe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9522b000 - 0x9522cff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9522d000 - 0x9524dfe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <03019DD7-993D-AC88-6636-179F92F315C4> /usr/lib/libresolv.9.dylib
    0x952ff000 - 0x95359fe7 com.apple.CorePDF 1.1 (1.1) <E4608FF6-A27D-7DFC-5620-D86762502AC0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9535a000 - 0x9538bff3 libTrueTypeScaler.dylib ??? (???) <F6A32C01-CD82-54F6-218E-0406D40D1D9A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x95436000 - 0x95446ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x95447000 - 0x9576bfef com.apple.HIToolbox 1.6.2 (???) <F5F99E78-5377-DD54-6138-9FC84467F938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9576c000 - 0x95814ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9581c000 - 0x9581ffe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95820000 - 0x9585fff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <A03C5D7E-54CD-D56D-E120-9B35EBC9D8F1> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x95860000 - 0x958f8fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x958f9000 - 0x9591ffe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x95920000 - 0x9593eff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9593f000 - 0x959b9fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <4EFE08C4-6F2B-D7F2-BD2B-3DFF26799B24> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x959ba000 - 0x959caff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x959cb000 - 0x959dfffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x959e0000 - 0x95a8dfe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x95a93000 - 0x95b0cff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95b0d000 - 0x95b7bff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x95b7c000 - 0x95b7cff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95b7d000 - 0x95b8aff7 com.apple.AppleFSCompression 24.0.1 (1.0) <62870D1B-4A67-B744-5930-8257E16D9247> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95b8b000 - 0x95d6dfff com.apple.imageKit 2.0.3 (1.0) <56AE34CD-4406-8AA2-DDBF-DBF902BD0E0A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95d6e000 - 0x95d90fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95d91000 - 0x95d9bffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95d9c000 - 0x960bcfeb com.apple.CoreServices.CarbonCore 861.6 (861.6) <D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x960bd000 - 0x960c1ff7 libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x960c2000 - 0x96204ff7 com.apple.syncservices 5.2 (578.3) <16A29689-1A80-3065-C4E7-AEC6A3C05C2E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x96205000 - 0x964fefef com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x965de000 - 0x966d0ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7482933B-4AF6-ED55-AD72-4FBD1E134958> /usr/lib/libcrypto.0.9.8.dylib
    0x966d1000 - 0x966d8ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9670c000 - 0x967c2fff libFontParser.dylib ??? (???) <5935E105-1E45-886C-6420-C1CCA886C375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x967c3000 - 0x9689efe7 com.apple.DesktopServices 1.5.5 (1.5.5) <ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9689f000 - 0x96a1ffeb com.apple.MediaToolbox 0.484.5 (484.5) <6996E5E1-18B6-C734-8335-FE43670C1F9C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x96a20000 - 0x96a2aff7 com.apple.bsd.ServiceManagement 1.0 (1.0) <B007CBE8-2539-CC71-9675-9EC04196921F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x96a2d000 - 0x96afefe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <0A608513-31AD-D533-8386-10245FD62057> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x96aff000 - 0x96b32ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96b33000 - 0x96d39feb com.apple.AddressBook.framework 5.0.1 (868) <2CCD7801-F3B8-CED3-D5D7-096AF8DC004D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96d3a000 - 0x96effff7 com.apple.CalendarStore 4.0.1 (976) <D2568750-0010-590F-96AF-6D90DEBEF785> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x96f00000 - 0x97042fe3 com.apple.QTKit 7.6.6 (1729) <1EC021FB-AB8F-F8BF-0434-78C0A7B78EB2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x970d3000 - 0x9710bff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97152000 - 0x97186ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <5FEC74CA-1D3C-B6E3-E046-3970095C44BC> /usr/lib/libssl.0.9.8.dylib
    0x97187000 - 0x97325feb com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97355000 - 0x974ceffb com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97530000 - 0x97571ff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <C6E50C7E-EBEE-32AF-FF07-8E325E21A838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97572000 - 0x97620ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x97621000 - 0x98572fe7 com.apple.QuickTimeComponents.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98573000 - 0x985ceff7 com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x985cf000 - 0x987faff3 com.apple.QuartzComposer 4.1 (156.13) <FE0BF06B-8D32-C712-7CCD-63D8918B8B6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x987fc000 - 0x9883dfe7 com.apple.MediaKit 10.2 (482) <C795AEBE-DCA8-1680-0100-C540FBC85B15> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9883e000 - 0x98845ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98846000 - 0x9887ffe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x98880000 - 0x988b0ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x988b1000 - 0x9897bfef com.apple.CoreServices.OSServices 357 (357) <764872C3-AE30-7F54-494D-4BA3CE4F4DFB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9897c000 - 0x98a35fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x98a36000 - 0x98b6dff7 com.apple.CoreAUC 6.04.00 (6.04.00) <0551FB8D-0894-B40B-B924-4AF51E3648AF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x98b8e000 - 0x993c1fe7 com.apple.WebCore 6531.22 (6531.22.7) <952A0D34-63F5-F7F7-D6E5-D0AD78002F89> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x993c2000 - 0x993f3ff7 libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x993f4000 - 0x993f6fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x993f7000 - 0x993fbff7 libGIF.dylib ??? (???) <03880BA1-7A86-0F2B-617A-C66B1D05DD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x993fc000 - 0x995b8ff3 com.apple.ImageIO.framework 3.0.2 (3.0.1) <CB39B067-58B8-70DB-3E40-160604664A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x995b9000 - 0x995f9fe7 com.apple.DAVKit 4.0.1 (730) <2F07D7D0-9D31-67BC-8000-FAFF7EBB8643> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x995fa000 - 0x99603ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99604000 - 0x9961fff7 libPng.dylib ??? (???) <929FE8EE-277D-F6EB-D672-E6F4CEBF1504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99620000 - 0x99648ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x99649000 - 0x99650ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x99651000 - 0x996c0ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x996e3000 - 0x996edfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x996ee000 - 0x996f1ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Model: MacBookPro1,1, BootROM MBP11.0055.B08, 2 processors, Intel Core Duo, 2 GHz, 2 GB, SMC 1.2f10
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.1f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in FireWire, FireWire, fw0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500325AS, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857
    USB Device: 1394/USB20 Drive, 0x13fd (Initio Corporation), 0x0540, 0xfd100000
    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

    Hi Marc,
    i run into the same problem, my solution was a damaged font, which was not installed into the font manager index. So all applications like fontdoctor or font manager didn't tell me that there is a damaged font. During the start of pages/numbers/keynote the user specific font folder is read by the several frameworks and on of these crash and kill the whole application.
    To solve this i've opened every font in my font folder with the font manager by double click on it. If font manager crash, i 've moved these font to trash. After this all iWork applications runs perfect.
    (see http://bit.ly/aRzWXB)

  • "Final Cut Pro Unexpectedly Quit" : CAN anyone help me?  (Apple techs?)

    "Final Cut Pro Unexpectedly Quit" error
    (I had set this project aside for a number of weeks due to the frustration of it all).
    I have Edited about seven sequences in total. Now it seems that i could only export the last three without Final Cut crashing. It's so bizarre because I had been editing all of the sequences fine before. What is going on? It continues to crash only a couple minutes after I open any sequence.
    "Final Cut Pro Unexpectedly Quit"
    ** The error report threads below always stop on a QuicktimeMPEG2.component thread. Any guesses out there? AND it always crashed between Threads 11 and 13.
    help.
    Respectfully,
    Brett
    (below is the FCP error report)...I have received about twelve of these at least.
    **ALSO, when I attempt to "register my serial number" for Final Cut Studio, it says my serial number is invalid (i have attempted this at least twice). I am required to do this supposedly to get Final Cut Pro update 5.1.4
    I really need help.
    ===================================================
    Date/Time: 2008-01-24 12:04:46.523 -0400
    OS Version: 10.4.8 (Build 8N1250)
    Report Version: 4
    Command: Final Cut Pro
    Path: /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Parent: WindowServer [58]
    Version: 5.1 (5.1)
    Build Version: 4
    Project Name: FCPApp
    Source Version: 602161028
    PID: 300
    Thread: 11
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0f470dc8
    Thread 0:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 ...le.QuickTimeMPEG2.component 0x2d9ec1e9 QTYieldToThread + 459
    2 ...le.QuickTimeMPEG2.component 0x2da1be2e MPEGVideoIdle + 1881
    3 ...le.QuickTimeMPEG2.component 0x2da1c953 MPEGVideoDispatcher + 201
    4 ...ple.CoreServices.CarbonCore 0x903f5a3c CallComponentDispatch + 34
    5 com.apple.QuickTime 0x9164741e SHDecodeIdle + 43
    6 ...le.QuickTimeMPEG2.component 0x2d9f1b26 DecodeFrameForThisTime + 1054
    7 ...le.QuickTimeMPEG2.component 0x2d9f2af7 ReallyIdle + 1480
    8 ...le.QuickTimeMPEG2.component 0x2d9edb5f MPEGMediaIdle + 240
    9 ...le.QuickTimeMPEG2.component 0x2d9ee2ac MPEGMediaDispatcher + 1027
    10 ...ple.CoreServices.CarbonCore 0x903f5a3c CallComponentDispatch + 34
    11 ...ickTimeComponents.component 0x99a2dc02 MediaIdle + 61
    12 ...ickTimeComponents.component 0x9910c868 doGenericIdle + 2091
    13 ...ickTimeComponents.component 0x9910dfc8 GenericMoviesTask + 337
    14 ...ple.CoreServices.CarbonCore 0x903f5f13 CallComponentFunctionCommon + 957
    15 ...ickTimeComponents.component 0x9910d9b5 GenericComponentDispatch + 170
    16 ...le.QuickTimeMPEG2.component 0x2d9ee39f MPEGMediaDispatcher + 1270
    17 ...ple.CoreServices.CarbonCore 0x903f5a3c CallComponentDispatch + 34
    18 com.apple.QuickTime 0x914ba5fe MediaMoviesTask + 61
    19 com.apple.QuickTime 0x914b94eb TaskMovie_priv + 5236
    20 com.apple.QuickTime 0x914e88da MoviesTask_priv + 94
    21 ...alCutPro.Plugins.QTM Reader 0x01fd2990 AudioExtractor::Extract(void*, unsigned long&) + 19026
    22 ...alCutPro.Plugins.QTM Reader 0x01fde9b0 PluginMainEntry(long, long, KGDictInt*, void*) + 4390
    23 com.apple.FinalCutPro 0x00210bb8 pKGGetFileVideo(double, long, unsigned char, KGCanvasRec*, KGRect*, KGDictInt*, KGFileRec*, unsigned long long) + 2058
    24 com.apple.FinalCutPro 0x00217bf8 GetItemFrame(KGDictInt*, KGClipItemType, WhenRec*, double, BufferInfoRec*, KGCanvasRec*, KGRect*, renderStackInfo*) + 622
    25 com.apple.FinalCutPro 0x00219221 GetSpeedFrame(KGDictInt*, KGClipItemType, WhenRec*, double, BufferInfoRec*, KGCanvasRec*, KGRect*, renderStackInfo*, unsigned char*) + 2839
    26 com.apple.FinalCutPro 0x002193cf GetFilterFrame(KGDictInt*, KGClipItemType, long, unsigned char, WhenRec*, double, BufferInfoRec*, KGCanvasRec*, KGRect*, renderStackInfo*, unsigned char*) + 359
    27 com.apple.FinalCutPro 0x0021a7af DoVImageMotion(KGDictInt*, KGClipItemType, KGMotionPointInstance*, BufferInfoRec*, KGCanvasRec*, KGRect*, int, KGFieldType*, unsigned char, KGRect, KGRect, KGRect, unsigned char, renderStackInfo*, WhenRec*, double, unsigned char*, KGFloatPt*, KGFloatPt*, KGRect*, CGAffineTransform*, KGAffineTransformQuality, unsigned char*) + 169
    28 com.apple.FinalCutPro 0x0021d0a4 GetMotionFrame(KGDictInt*, KGClipItemType, WhenRec*, double, BufferInfoRec*, KGCanvasRec*, KGRect*, renderStackInfo*, unsigned char*) + 6090
    29 com.apple.FinalCutPro 0x0021f4b4 GetBlurFrame(KGDictInt*, KGClipItemType, WhenRec*, double, BufferInfoRec*, KGCanvasRec*, KGRect*, renderStackInfo*, unsigned char*) + 2642
    30 com.apple.FinalCutPro 0x00220989 GetTrackItemFrame(KGDictInt*, TrackInfoRec*, BufferInfoRec*, KGCanvasRec*, KGRect*, renderStackInfo*) + 5317
    31 com.apple.FinalCutPro 0x00216cfb CompositeLoop(KGDictInt*, WhenRec*, KGCanvasRec*, KGRect*, BufferInfoRec*, renderStackInfo*, unsigned char*, TrackItemAtTimeCache*) + 1319
    32 com.apple.FinalCutPro 0x002221c9 pKGGetClipVideoWithAlpha(double, long, KGCanvasRec*, KGRect*, long, KGDictInt*, AlphaType*, unsigned long long) + 5003
    33 com.apple.FinalCutPro 0x002148ce pKGGetClipVideo(double, long, KGCanvasRec*, KGRect*, long, KGDictInt*, unsigned long long) + 80
    34 ...alCutPro.Plugins.Transcoder 0x0617ca3c RenderVideo(void*, RenderVideoParams const*) + 254
    35 ...e.compressor.MediaServerAPI 0x9fe765fb CVideoMediaServerIPCHandler::handleMessage(MediaServerIPCParams&) + 177
    36 com.apple.AECore 0x9fd90a3b CPipeBasedIPCServer::beginMessageReceive() + 449
    37 ...e.compressor.MediaServerAPI 0x9fe767bc PluginReadyToRecieveRenderVideo + 116
    38 ...alCutPro.Plugins.Transcoder 0x0617920e PluginReadyToRecieveRenderVideo + 44
    39 ...alCutPro.Plugins.Transcoder 0x0617b8d7 DictForNamedProjectAndSequence(char const*, char const*) + 909
    40 com.apple.FinalCutPro 0x00134832 KGTimerInvoke(__EventLoopTimer*, void*) + 184
    41 com.apple.HIToolbox 0x91c19c41 TimerVector + 31
    42 com.apple.CoreFoundation 0x902a6822 CFRunLoopRunSpecific + 3341
    43 com.apple.CoreFoundation 0x902a5b0e CFRunLoopRunInMode + 61
    44 com.apple.HIToolbox 0x91be1bef RunCurrentEventLoopInMode + 285
    45 com.apple.HIToolbox 0x91be12fd ReceiveNextEventCommon + 385
    46 com.apple.HIToolbox 0x91c29c8f _AcquireNextEvent + 58
    47 com.apple.HIToolbox 0x91c29ad0 RunApplicationEventLoop + 150
    48 com.apple.FinalCutPro 0x00137f94 KGMainEvent(void*) + 46
    49 com.apple.FinalCutPro 0x00285ac9 main + 59
    50 com.apple.FinalCutPro 0x00003692 _start + 228
    51 com.apple.FinalCutPro 0x000035ad start + 41
    Thread 1:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.FinalCutPro 0x003cfedf Synchronizable::Wait() + 47
    2 com.apple.FinalCutPro 0x003c036a DisplayQueue::Run() + 702
    3 com.apple.FinalCutPro 0x003f6650 Thread::RunHelper(void*) + 20
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.FinalCutPro 0x003cfedf Synchronizable::Wait() + 47
    2 com.apple.FinalCutPro 0x0046cbf7 WorkUnitPerformer::Run() + 55
    3 com.apple.FinalCutPro 0x003f6650 Thread::RunHelper(void*) + 20
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.FinalCutPro 0x003cfedf Synchronizable::Wait() + 47
    2 com.apple.FinalCutPro 0x0046cbf7 WorkUnitPerformer::Run() + 55
    3 com.apple.FinalCutPro 0x003f6650 Thread::RunHelper(void*) + 20
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.FinalCutPro 0x003cfedf Synchronizable::Wait() + 47
    2 com.apple.FinalCutPro 0x0046cbf7 WorkUnitPerformer::Run() + 55
    3 com.apple.FinalCutPro 0x003f6650 Thread::RunHelper(void*) + 20
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x902a62f3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x902b71c8 CFRunLoopRun + 60
    3 com.apple.DVCPROHDMuxer 0x0d097507 AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 285
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x902a62f3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x902a5b0e CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x9082941e HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x90829239 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x902a62f3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x902b71c8 CFRunLoopRun + 60
    3 com.apple.AVCVideoServices 0x9ffda319 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 149
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90048a27 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x904070ab TSWaitOnSemaphoreCommon + 163
    2 ...ickTimeComponents.component 0x990a418a ReadSchedulerThreadEntryPoint + 4723
    3 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x9002689c kevent + 12
    1 ...ple.CoreServices.CarbonCore 0x903ddf84 PrivateMPEntryPoint + 51
    2 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x903de129 MPWaitOnQueue + 198
    2 com.apple.DesktopServices 0x90992b5b TNodeSyncTask::SyncTaskProc(void*) + 143
    3 ...ple.CoreServices.CarbonCore 0x903ddf84 PrivateMPEntryPoint + 51
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 11 Crashed:
    0 ...le.QuickTimeMPEG2.component 0x2da1771c Add2_W8 + 104
    1 ...le.QuickTimeMPEG2.component 0x2da17331 ReconstructBTypeBlock + 808
    2 ...le.QuickTimeMPEG2.component 0x2da1112e ReallyDecodeThePicture + 3457
    3 ...le.QuickTimeMPEG2.component 0x2da07d20 VideoThreadEntry + 2008
    4 ...le.QuickTimeMPEG2.component 0x2d9ec4ec MacThreadFunc + 136
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x90048a27 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x904070ab TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90410ff0 AIOFileThread(void*) + 1068
    3 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 11 crashed with X86 Thread State (32-bit):
    eax: 0x000000ff ebx: 0x2da103be ecx: 0x000000fe edx: 0x0f470dc8
    edi: 0x000000fe esi: 0x000000fe ebp: 0xb0633c78 esp: 0xb0633c64
    ss: 0x0000001f efl: 0x00010206 eip: 0x2da1771c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x5e8fff com.apple.FinalCutPro 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    0x921000 - 0x926fff com.apple.proapps.ProTimecode 1.0 /Applications/Final Cut Pro.app/Contents/Frameworks/ProTimecode.framework/Versions/A/ProTimecode
    0x92d000 - 0x951fff com.apple.proapps.MIO 1.0 /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x96c000 - 0x96ffff KGCore /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
    0x985000 - 0x98afff com.apple.FinalCutPro.Plugins.Cache Manager 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0xece000 - 0xecefff com.apple.FinalCutPro.Plugins.Vector Accelerator 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xf0d000 - 0xf10fff com.apple.FinalCutPro.Plugins.AudioGroupsExport 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0xf14000 - 0xf1bfff com.apple.FinalCutPro.Plugins.Effect Builder 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0xf25000 - 0xf50fff com.apple.FinalCutPro.Plugins.AfterEffects 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0xf58000 - 0xf6efff com.apple.FinalCutPro.Plugins.AudioMixer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0xf7b000 - 0xf8ffff com.apple.proapps.ControlSurfaceSupport 2.0 (54) /Applications/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0xfb4000 - 0xfc7fff com.apple.FinalCutPro.CinemaTools 3.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0xfd0000 - 0xfdafff com.apple.FinalCutPro.Plugins.CTHelper 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0xfe0000 - 0xfebfff com.apple.FinalCutPro.Plugins.FCPExtPluginSupport 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0xff3000 - 0xff6fff com.apple.FinalCutPro.Plugins.LayerFileReader 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0xffa000 - 0xffbfff com.apple.FinalCutPro.Plugins.Text Window 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0x18d1000 - 0x18f3fff com.apple.FinalCutPro.Plugins.EditTape 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0x1b05000 - 0x1baefff com.apple.FinalCutPro.Plugins.Browser 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0x1bc2000 - 0x1bf1fff com.apple.FinalCutPro.Plugins.FCS Engine 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0x1bf8000 - 0x1bfbfff com.apple.FinalCutPro.Plugins.MolokiniSupport 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0x1d05000 - 0x1d49fff com.apple.FinalCutPro.Plugins.EDL Export 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0x1d5d000 - 0x1d6efff com.apple.FinalCutPro.Plugins.FilterCustomEd 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0x1d72000 - 0x1d85fff com.apple.FinalCutPro.Plugins.FilterViewer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0x1d89000 - 0x1da7fff com.apple.FinalCutPro.Plugins.Flash 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0x1db6000 - 0x1dc1fff com.apple.FinalCutPro.Plugins.GenViewer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0x1dc5000 - 0x1e11fff com.apple.FinalCutPro.Plugins.Media Manager 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0x1e1c000 - 0x1e30fff com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 /Applications/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0x1e3d000 - 0x1e50fff com.apple.FinalCutPro.Plugins.Motion Viewer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0x1e54000 - 0x1e6dfff com.apple.FinalCutPro.Plugins.Movie Analyzer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0x1e78000 - 0x1e86fff com.apple.FinalCutPro.Plugins.Movie Viewer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0x1e8a000 - 0x1e8efff com.apple.FinalCutPro.Plugins.NuggetExport 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0x1e92000 - 0x1f48fff com.apple.FinalCutPro.Plugins.OMF Audio Export 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0x1f64000 - 0x1f74fff com.apple.FinalCutPro.Plugins.P2Support 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/P2Support.bundle/Contents/MacOS/P2Support
    0x1f7d000 - 0x1f85fff com.apple.FinalCutPro.Plugins.Perf Analyzer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0x1f89000 - 0x1f99fff com.apple.FinalCutPro.Plugins.ProAppsIntegration 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0x1fa5000 - 0x1fb0fff com.apple.FinalCutPro.Plugins.Pulldown Support 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0x1fb6000 - 0x1feafff com.apple.FinalCutPro.Plugins.QTM Reader 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0x1ff3000 - 0x1ffbfff com.apple.FinalCutPro.Plugins.QuickView 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0x60e6000 - 0x60f2fff com.apple.FinalCutPro.Plugins.Relink Media 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0x60f6000 - 0x616efff com.apple.FinalCutPro.Plugins.Timeline Editor 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0x6177000 - 0x617dfff com.apple.FinalCutPro.Plugins.Transcoder 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0x6182000 - 0x6193fff com.apple.FinalCutPro.Plugins.Transition Viewer 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0x6197000 - 0x61abfff com.apple.FinalCutPro.Plugins.Trimming 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0x61af000 - 0x61b6fff com.apple.FinalCutPro.Plugins.VDUSupport 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0x61bb000 - 0x61cbfff com.apple.FinalCutPro.Plugins.VideoLog 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0x61cf000 - 0x61e6fff com.apple.FinalCutPro.Plugins.VoiceOver 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0x61eb000 - 0x61fafff com.apple.FinalCutPro.Plugins.Waveform Monitor 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Waveform Monitor.bundle/Contents/MacOS/Waveform Monitor
    0x61fe000 - 0x6257fff com.apple.FinalCutPro.Plugins.XML Support 5.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0x6a57000 - 0x6a73fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x6aee000 - 0x6af1fff com.apple.LiveType.component 2.1.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x6dfc000 - 0x6e61fff com.apple.LiveType.framework 2.1.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x6e81000 - 0x6e84fff com.apple.motion.component 1.0 /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x6e89000 - 0x6fe2fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x700e000 - 0x71fcfff com.apple.ATIRadeonX1000GLDriver 1.4.46 (4.4.6) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x7238000 - 0x725cfff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x7263000 - 0x7275fff com.apple.FCP Uncompressed 422.component 1.4 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x728b000 - 0x72cffff com.apple.DVCPROHDCodec 1.3 (228) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x72e4000 - 0x7338fff com.apple.AppleHDVCodec 1.2 (206) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x7341000 - 0x735afff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x735f000 - 0x737efff com.apple.IMXCodec 1.2 (140) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x7396000 - 0x73affff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x74e3000 - 0x74fafff com.apple.motion.MotionBundle 2.1 /Library/Application Support/ProApps/Bundles/Motion.bundle/Contents/MacOS/Motion
    0x75db000 - 0x7614fff com.apple.soundtrackpro.integration 1.0.1 /Library/Application Support/ProApps/Bundles/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0x7d05000 - 0x843afff com.borisfx.TextScrambler ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0x93ab000 - 0x93acfff com.apple.Helium 2.0.5 /System/Library/PrivateFrameworks/Helium.framework/Versions/A/Helium
    0x9505000 - 0x9c37fff com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0xa675000 - 0xada5fff com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0xbf05000 - 0xc63bfff com.borisfx.VectorShape ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0xd086000 - 0xd0cdfff com.apple.DVCPROHDMuxer 1.2 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0xd205000 - 0xd257fff com.apple.DVCPROHDAudio 1.2 /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0xd43d000 - 0xd451fff com.apple.fcp.DVOutputUnit 1.3 /Applications/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xd602000 - 0xd60dfff com.apple.fcp.TundraOutputUnit 1.3 /Applications/Final Cut Pro.app/Contents/Resources/TundraOutputUnit.bundle/Contents/MacOS/TundraOutputU nit
    0xd617000 - 0xd61cfff com.apple.audio.AppleHDAHALPlugIn 1.2.7 (1.2.7a11) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xd620000 - 0xd62afff com.apple.DVCPROHDVideoOutput 1.2 /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0xd638000 - 0xd662fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xd667000 - 0xd6a3fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xd71e000 - 0xd723fff com.apple.DesktopVideoOut 1.2.4 /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0xd728000 - 0xd731fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xdf40000 - 0xdf51fff com.apple.fxplugframework 1.1 /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0xdf7a000 - 0xdf86fff com.apple.PluginManager 1.6 (28) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xe1a1000 - 0xe1a6fff com.apple.fxmetaplug.ImageUnit 1.1 /Library/Application Support/ProApps/Internal Plug-Ins/FxMetaPlug/ImageUnit.fxmetaplug/Contents/MacOS/ImageUnit
    0xe1ac000 - 0xe1aefff com.apple.Helium.HCache 2.0.5 /System/Library/PrivateFrameworks/Helium.framework/Plug-ins/HCache.bundle/Conte nts/MacOS/HCache
    0x10000000 - 0x10055fff com.apple.proapps.AudioMixEngine 2.0 (54) /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x2a600000 - 0x2adc3fff com.apple.ozone.framework 2.1 /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Ozone
    0x2adc4000 - 0x2ae3bfff ProCore /Library/Frameworks/ProCore.framework/Versions/A/ProCore
    0x2ae5e000 - 0x2aebcfff ProMedia /Library/Frameworks/ProMedia.framework/Versions/A/ProMedia
    0x2af1f000 - 0x2af33fff ThirdPartyPlugins /Library/Frameworks/ThirdPartyPlugins.framework/Versions/A/ThirdPartyPlugins
    0x2af48000 - 0x2af71fff ProGraphics /Library/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
    0x2d9ea000 - 0x2da23fff com.apple.QuickTimeMPEG2.component 6.4.1 /System/Library/QuickTime/QuickTimeMPEG2.component/Contents/MacOS/QuickTimeMPEG 2
    0x70000000 - 0x700f9fff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x7ffd0000 - 0x7ffd7fff com.apple.AEProfiling 1.2 (14) /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x7fff0000 - 0x80001fff com.apple.AERegistration 1.2 (58) /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x8fe00000 - 0x8fe49fff dyld 46.1 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90219000 - 0x90256fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90284000 - 0x9034cfff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x903a3000 - 0x90649fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x906cc000 - 0x9073ffff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90758000 - 0x907c0fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90815000 - 0x90815fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90818000 - 0x9088efff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x908e0000 - 0x908e0fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x908e3000 - 0x90962fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90990000 - 0x90a0dfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a58000 - 0x90c88fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90db1000 - 0x90dc8fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90ddd000 - 0x90e35fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90e50000 - 0x90e76fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90e8b000 - 0x90e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90e8e000 - 0x90e99fff com.apple.opengl 1.4.13 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ea1000 - 0x90ebcfff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90f32000 - 0x90f32fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90f6f000 - 0x90fb7fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90fc2000 - 0x91000fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x9102b000 - 0x91041fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91054000 - 0x91060fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9106b000 - 0x910cefff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x910fe000 - 0x911a7fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x911e6000 - 0x91259fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x912a5000 - 0x912adfff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x912b9000 - 0x912d7fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x912f0000 - 0x91300fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91317000 - 0x9131bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91321000 - 0x91326fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9132f000 - 0x91335fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9133f000 - 0x91345fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91351000 - 0x91392fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x913c4000 - 0x913d3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x913dd000 - 0x913e8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9143d000 - 0x91457fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9145f000 - 0x91719fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x918a2000 - 0x918bdfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918d0000 - 0x91a6ffff com.apple.security 4.4.1 (27569) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91b83000 - 0x91bc0fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91bd8000 - 0x91eccfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92034000 - 0x9207ffff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x920b3000 - 0x92769fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92aeb000 - 0x92f40fff com.apple.CoreGraphics 1.258.51 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93020000 - 0x93036fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9303c000 - 0x93182fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x932ae000 - 0x932d7fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x932e3000 - 0x932f3fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9348b000 - 0x934a8fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x934b1000 - 0x93530fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x935a3000 - 0x93681fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x936b1000 - 0x93742fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93e3b000 - 0x94244fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9441c000 - 0x947d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94808000 - 0x94861fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94df5000 - 0x94ee8fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x94f50000 - 0x95002fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x9505f000 - 0x95084fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9509b000 - 0x95188fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9518e000 - 0x9519dfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x951e3000 - 0x951ebfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x951f4000 - 0x95206fff libauto.dylib /usr/lib/libauto.dylib
    0x953f8000 - 0x95471fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95573000 - 0x95591fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x955a1000 - 0x955ddfff com.apple.QTKit 7.1.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95972000 - 0x959b3fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x95a55000 - 0x95a57fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x95a5d000 - 0x95b31fff com.apple.ColorSync 4.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95b7a000 - 0x95b89fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95b92000 - 0x95ba0fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95bbd000 - 0x95be9fff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x95c07000 - 0x95c45fff com.apple.CFNetwork 129.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95c5d000 - 0x95c5dfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95c60000 - 0x95d32fff com.apple.prokit 3.1.1 (591) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x95d6a000 - 0x95df8fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95e69000 - 0x95f3efff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95fa6000 - 0x95fadfff libbsm.dylib /usr/lib/libbsm.dylib
    0x966f9000 - 0x9672ffff com.apple.audio.midi.CoreMIDI 1.5.1 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x96b4a000 - 0x96b4afff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96bd6000 - 0x96bd6fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96c62000 - 0x96c9dfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96cb2000 - 0x96cb6fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96cb9000 - 0x96d17fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x96d2b000 - 0x96d49fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96e1c000 - 0x96e36fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96e3c000 - 0x96e3efff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96e41000 - 0x96ebefff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x96ec3000 - 0x96f00fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96fc2000 - 0x96ffcfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9700e000 - 0x970e4fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9710e000 - 0x9710ffff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97112000 - 0x97117fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97139000 - 0x971f1fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9723c000 - 0x9723cfff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9723f000 - 0x97411fff com.apple.QuartzCore 1.4.10 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9754d000 - 0x9756ffff com.apple.AppleVAFramework 3.3.7 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9908d000 - 0x99b6dfff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99d88000 - 0x99d8afff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99e79000 - 0x9a022fff QuickTimeH264.scalar /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x9a028000 - 0x9a087fff com.apple.QuickTimeMPEG.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTimeMPEG
    0x9a094000 - 0x9a151fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9a179000 - 0x9a2cafff com.apple.QuickTimeStreaming.component 7.1.3 /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x9aa47000 - 0x9aa47fff com.apple.iokit.dvcomponentglue 1.9.0 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x9aa57000 - 0x9aa9dfff com.apple.viceroy.codec 32.1 /System/Library/Components/VCH263Codec.component/VCH263Codec
    0x9d643000 - 0x9d643fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9d66c000 - 0x9d6d0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9dda6000 - 0x9ddcafff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9e07d000 - 0x9e084fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9e8c5000 - 0x9e8d3fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9f774000 - 0x9f77efff com.apple.qmaster.SwampExecutor 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampExecutor.frame work/Versions/A/SwampExecutor
    0x9f78c000 - 0x9f7a5fff com.apple.qmaster.SwampUI 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/V ersions/A/SwampUI
    0x9f7b9000 - 0x9f7c5fff com.apple.qmaster.ClusterManager 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.fram ework/Versions/A/ClusterManager
    0x9f7d8000 - 0x9f873fff com.apple.qmaster.JobControl 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/JobControl.framewor k/Versions/A/JobControl
    0x9f8f9000 - 0x9f928fff com.apple.qmaster.ContentControl 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ContentControl.fram ework/Versions/A/ContentControl
    0x9f94f000 - 0x9f95afff com.apple.qmaster.ServiceControl 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.fram ework/Versions/A/ServiceControl
    0x9f96b000 - 0x9f972fff com.apple.qmaster.RequestProcessing 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.f ramework/Versions/A/RequestProcessing
    0x9f97f000 - 0x9f98afff com.apple.qmaster.Status 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Ve rsions/A/Status
    0x9f9a1000 - 0x9f9a9fff com.apple.qmaster.SwampService 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framew ork/Versions/A/SwampService
    0x9f9b4000 - 0x9f9fbfff com.apple.qmaster.do 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects. framework/Versions/A/DistributedObjects
    0x9fa4a000 - 0x9fa71fff com.apple.qmaster.SwampTypes 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampTypes.framewor k/Versions/A/SwampTypes
    0x9fa9d000 - 0x9faa7fff com.apple.qmaster.SwampUtil 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework /Versions/A/SwampUtil
    0x9fab2000 - 0x9fadcfff com.apple.qmaster.SwampCore 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework /Versions/A/SwampCore
    0x9fb05000 - 0x9fb05fff com.apple.qmaster.swamp 2.1 /Library/Frameworks/Qmaster.framework/Versions/A/Qmaster
    0x9fb07000 - 0x9fb38fff com.apple.compressor.StompUI 2.1 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framewor k/Versions/A/StompUI
    0x9fb50000 - 0x9fc27fff com.apple.compressor.transcoding 2.1 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/Transcoding.fram ework/Versions/A/Transcoding
    0x9fc88000 - 0x9fc8efff com.apple.compressor.FilterUI 2.1 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/FilterUI.framewo rk/Versions/A/FilterUI
    0x9fc93000 - 0x9fcf3fff com.apple.compressor.StompTypes 2.1 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompTypes.frame work/Versions/A/StompTypes
    0x9fd2b000 - 0x9fd33fff com.apple.compressor.StompUtil 2.1 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framew ork/Versions/A/StompUtil
    0x9fd3c000 - 0x9fd63fff com.apple.compressor.ImageProcessing 2.1 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/ImageProcessing. framework/Versions/A/ImageProcessing
    0x9fd81000 - 0x9fd81fff com.apple.compressor.stomp 2.1 /Library/Frameworks/Compressor.framework/Compressor
    0x9fd83000 - 0x9fe13fff com.apple.AECore 2.0 (2.1) /Library/Frameworks/AECore.framework/Versions/A/AECore
    0x9fe75000 - 0x9fe7ffff com.apple.compressor.MediaServerAPI 2.1 /Library/Frameworks/MediaServerAPI.framework/MediaServerAPI
    0x9fe8b000 - 0x9fe8dfff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x9fe8f000 - 0x9fed1fff ProMediaIO /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIO.framework/Versions/A/ProMediaIO
    0x9ff06000 - 0x9ff89fff ProMediaIOClasses /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIOClasses.framework/Versions/A/ProMediaIOCl asses
    0x9ffc9000 - 0x9ffc9fff ProMediaIOUnit /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIOUnit.framework/Versions/A/ProMediaIOUnit
    0x9ffcb000 - 0x9ffeafff com.apple.AVCVideoServices 1.0 (28) /Applications/Final Cut Pro.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServi ces
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 2 GB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    Serial ATA Device: ST3250824AS P, 232.89 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Primax Electronics, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: 1394 Storage Front Panel*, Maxtor, Up to 400 Mb/sec
    FireWire Device: built-in_hub, unknown_value, Unknown
    FireWire Device: WD2500JB-00REA0, Initio, Up to 400 Mb/sec
    FireWire Device: ST3500630A, Initio, Up to 400 Mb/sec

    Any other options?
    This computer has not been used for long. I have been using computers since age 12 and quite sure that i do not need to reinstall (also the other threads suggested this was not necessary).
    Thank you again for the input.

  • Safari crashes

    Help!
    Using Mac Pro, lastest Lion and updates my Safari crashes when i try to open it.
    Have restarted without it helping.
    Here is the crash report:
    Process:    
    Safari [363]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    5.1.7 (7534.57.2)
    Build Info: 
    WebBrowser-7534057002000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [143]
    Date/Time:  
    2012-05-20 12:15:02.708 +0200
    OS Version: 
    Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:     
    18 sec
    Crashes Since Last Report:      
    3
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    C0229D1B-8056-4937-8D63-D31D2F589081
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    00000001037b6000-00000001037b7000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    objc[363]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib        
    0x00007fff87d569ee strtoul_l + 73
    1   com.apple.Safari.framework
    0x00007fff875ed4a7 Safari::SWebPreferences::setWebKitLinkTimeVersionString(Safari::SString const&) + 45
    2   com.apple.Safari.framework
    0x00007fff875a71ac SafariMain + 158
    3   com.apple.Safari         
    0x00000001037b6f24 0x1037b6000 + 3876
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff75158890  rbx: 0x00007fff633b5c68  rcx: 0x00007fff751560b0  rdx: 0x000000000000000a
      rdi: 0x0000000000000000  rsi: 0x00007fff751593b0  rbp: 0x00007fff633b5c50  rsp: 0x00007fff633b5c20
       r8: 0x00000000000000c8   r9: 0x00007fff750b9180  r10: 0x0000000000000040  r11: 0x0000000000000004
      r12: 0x00007fff633b5c98  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff87d569ee  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Logical CPU: 2
    Binary Images:
    0x1037b6000 -   
    0x1037b6fff  com.apple.Safari (5.1.7 - 7534.57.2) <962C15B1-EAC2-397C-83C2-A6A2D1B67EE7> /Applications/Safari.app/Contents/MacOS/Safari
    0x1037ba000 -   
    0x103adcfff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <519848A3-D6C0-3CF8-B2E4-D4B41FD91E76> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x103b70000 -   
    0x103cfaff7  com.apple.WebKit (7534.57 - 7534.57.2) <F0E93391-BD24-3180-9FC8-66003896A654> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x103de5000 -   
    0x103f9dff7  com.apple.WebKit2 (7534.57 - 7534.57.2) <7089AFDC-CC27-3689-8B8A-D40AB22198AA> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x1040cf000 -   
    0x104e06fef  com.apple.WebCore (7534.57 - 7534.57.2) <0DDABF2E-FF0F-3E94-8EC5-A48F613211AE> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x7fff633b6000 -
    0x7fff633eabaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff84ae3000 -
    0x7fff84aeeff7  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
    0x7fff84aef000 -
    0x7fff84aeffff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff84b9a000 -
    0x7fff84c10fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
    0x7fff84d54000 -
    0x7fff84d93ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff857f2000 -
    0x7fff8583eff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8583f000 -
    0x7fff85845fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff85855000 -
    0x7fff85874fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff85888000 -
    0x7fff859a1fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff86084000 -
    0x7fff860e6ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff860e7000 -
    0x7fff860ebfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
    0x7fff8632a000 -
    0x7fff8632ffff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff86330000 -
    0x7fff86344ff7  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
    0x7fff86396000 -
    0x7fff863d1fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff8647c000 -
    0x7fff86501ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff86502000 -
    0x7fff86503fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff86504000 -
    0x7fff86506ff7  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
    0x7fff8651c000 -
    0x7fff86526ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
    0x7fff86527000 -
    0x7fff86527fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff86528000 -
    0x7fff8657cff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff86678000 -
    0x7fff86757ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8675c000 -
    0x7fff867c5fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff867cf000 -
    0x7fff867d4ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff867d5000 -
    0x7fff86840ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff86841000 -
    0x7fff86843fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff86844000 -
    0x7fff86886ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff86afd000 -
    0x7fff86afdfff  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
    0x7fff86f01000 -
    0x7fff86f1eff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff86f1f000 -
    0x7fff86f48ff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff86f49000 -
    0x7fff86f50fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff86f51000 -
    0x7fff86f54ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff86f55000 -
    0x7fff86f95ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
    0x7fff8704d000 -
    0x7fff87082fff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff87083000 -
    0x7fff872f6fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff872f7000 -
    0x7fff872fafff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff87310000 -
    0x7fff87364fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87369000 -
    0x7fff8736bfff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
    0x7fff8736c000 -
    0x7fff87399ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8739a000 -
    0x7fff8782aff7  com.apple.Safari.framework (7534 - 7534.57.2) <D61DA7E6-8153-31E2-B277-CEE5090F54B3> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff8782b000 -
    0x7fff87b14ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff87b18000 -
    0x7fff87c24fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff87d17000 -
    0x7fff87df4fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff87df5000 -
    0x7fff87e9afff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff87e9b000 -
    0x7fff87f1fff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff87f20000 -
    0x7fff87f21fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
    0x7fff87f22000 -
    0x7fff87f2bff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff87f2c000 -
    0x7fff8812efff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff8812f000 -
    0x7fff88448fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88503000 -
    0x7fff88530fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
    0x7fff886bc000 -
    0x7fff88783ff7  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
    0x7fff887c2000 -
    0x7fff887c7fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff887c8000 -
    0x7fff887cfff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff887d0000 -
    0x7fff88822ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff88823000 -
    0x7fff8897cfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8897d000 -
    0x7fff88983fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff88a07000 -
    0x7fff88a5ffff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff88a60000 -
    0x7fff88a6bfff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff88adb000 -
    0x7fff88be8fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff88be9000 -
    0x7fff88c37fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff88d36000 -
    0x7fff8931afff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff89329000 -
    0x7fff893bfff7  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
    0x7fff893c0000 -
    0x7fff893f0ff7  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
    0x7fff8943e000 -
    0x7fff89443fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff89495000 -
    0x7fff89505fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff89506000 -
    0x7fff89730fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff89731000 -
    0x7fff89799ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8979a000 -
    0x7fff897b0fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff897b1000 -
    0x7fff897b2ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff897b3000 -
    0x7fff898a8fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff89bcc000 -
    0x7fff89bdafff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff89db5000 -
    0x7fff89db5fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff89db8000 -
    0x7fff89f57ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff89f5e000 -
    0x7fff8a042e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff8a043000 -
    0x7fff8a083fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff8a084000 -
    0x7fff8a0a8fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8a0a9000 -
    0x7fff8a0b4ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff8a0b5000 -
    0x7fff8a0b6fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff8a0b7000 -
    0x7fff8a0f1fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8a19e000 -
    0x7fff8a1e7ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8a1e8000 -
    0x7fff8a20efff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8a5b2000 -
    0x7fff8a8deff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8a8df000 -
    0x7fff8a93bff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8a94d000 -
    0x7fff8ac69fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8adf5000 -
    0x7fff8ae04ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff8ae05000 -
    0x7fff8ae06fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8ae07000 -
    0x7fff8ae08ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8ae09000 -
    0x7fff8ae0cfff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8ae15000 -
    0x7fff8ae24fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
    0x7fff8ae47000 -
    0x7fff8ae4cfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
    0x7fff8aee8000 -
    0x7fff8aee8fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8aee9000 -
    0x7fff8aee9fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8b390000 -
    0x7fff8b497fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff8b498000 -
    0x7fff8b66cff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8b66d000 -
    0x7fff8b695fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8b696000 -
    0x7fff8b6d8fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8b6d9000 -
    0x7fff8b6e1fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8b6e2000 -
    0x7fff8b70bfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8b73f000 -
    0x7fff8b74fff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8b946000 -
    0x7fff8b94cfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff8b94d000 -
    0x7fff8ba31fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8ba8d000 -
    0x7fff8baccfff  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
    0x7fff8bc56000 -
    0x7fff8bc5bfff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8bc5c000 -
    0x7fff8bc7cfff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8bc87000 -
    0x7fff8bca7fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8bd3b000 -
    0x7fff8bd7cfff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8bfa0000 -
    0x7fff8c016fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8c017000 -
    0x7fff8c024fff  com.apple.CrashReporterSupport (10.7.4 - 352) <9C16B49C-CF02-38F9-A7CD-969C140D3961> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8c419000 -
    0x7fff8c846fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8c847000 -
    0x7fff8c858ff7  SyndicationUI (??? - ???) <4E1B17F1-7F88-324F-B7F5-CEB760310B2B> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff8c859000 -
    0x7fff8c9c0fff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8c9c1000 -
    0x7fff8c9eafff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8ca5c000 -
    0x7fff8ca5dff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff8cac4000 -
    0x7fff8cb24fff  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
    0x7fff8cb33000 -
    0x7fff8cb33fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8cbad000 -
    0x7fff8cbd1fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff8de75000 -
    0x7fff8de83ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
    0x7fff8de84000 -
    0x7fff8de84fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8de85000 -
    0x7fff8de85fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8de86000 -
    0x7fff8dfbcfff  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
    0x7fff8e3f3000 -
    0x7fff8e3f9ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff8e3fa000 -
    0x7fff8e3fefff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8e520000 -
    0x7fff8e622fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff8e623000 -
    0x7fff8e63afff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8e63b000 -
    0x7fff8e63dfff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff8e63e000 -
    0x7fff8e642ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff8e643000 -
    0x7fff8e6b6fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8e6b7000 -
    0x7fff8e7bcfff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8e824000 -
    0x7fff8e926ff7  com.apple.PubSub (1.0.5 - 65.28) <0D52431F-D0B3-3175-85FF-8213615A4526> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8e950000 -
    0x7fff8e967fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8e968000 -
    0x7fff8ee2ffff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff8ee30000 -
    0x7fff8ee36fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8eea0000 -
    0x7fff8ef1bff7  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
    0x7fff8ef20000 -
    0x7fff8efc1ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8efd0000 -
    0x7fff8f003ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8f004000 -
    0x7fff8fc0aff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8fc0b000 -
    0x7fff8fc12fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8fc13000 -
    0x7fff8fc30fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff8fc31000 -
    0x7fff8fcd3fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8ff55000 -
    0x7fff8ff80ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff8ff81000 -
    0x7fff8ff94ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff90843000 -
    0x7fff908b9fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff908ba000 -
    0x7fff91257c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff91258000 -
    0x7fff9126aff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff9126b000 -
    0x7fff9131eff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff9173d000 -
    0x7fff91752fff  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
    0x7fff91753000 -
    0x7fff91765ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff91766000 -
    0x7fff91782ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff917ea000 -
    0x7fff91800ff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff91801000 -
    0x7fff9180ffff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
    0x7fff91810000 -
    0x7fff91893fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff91922000 -
    0x7fff919bcff7  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
    0x7fff919cd000 -
    0x7fff919d0fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff919d1000 -
    0x7fff919deff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 3
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 10917
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=175.6M resident=141.3M(80%) swapped_out_or_unallocated=34.3M(20%)
    Writable regions: Total=19.7M written=2428K(12%) resident=2956K(15%) swapped_out=0K(0%) unallocated=16.8M(85%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    MALLOC                        
    9656K
    MALLOC guard page               
    16K
    STACK GUARD                   
    56.0M
    Stack                         
    8192K
    __CI_BITMAP                     
    80K
    __DATA                        
    14.9M
    __IMAGE                        
    528K
    __LINKEDIT                    
    55.6M
    __TEXT                       
    120.0M
    __UNICODE                      
    544K
    shared memory                   
    12K
    ===========                 
    =======
    TOTAL                        
    265.1M
    Model: MacPro5,1, BootROM MP51.007F.B03, 8 processors, Quad-Core Intel Xeon, 2.4 GHz, 8 GB, SMC 1.39f11
    Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
    Memory Module: DIMM 1, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463235363732415A2D314734443120
    Memory Module: DIMM 2, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463235363732415A2D314734443120
    Memory Module: DIMM 5, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463235363732415A2D314734443120
    Memory Module: DIMM 6, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x394A53463235363732415A2D314734443120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.106.198.4.20)
    Bluetooth: Version 4.0.5f11, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
    Serial ATA Device: HL-DT-ST BD-RE  WH12LS39
    Serial ATA Device: WDC WD30EZRX-00MMMB0, 3 TB
    Serial ATA Device: WDC WD30EZRS-00J99B0, 3 TB
    Serial ATA Device: WDC WD20EADS-00R6B0, 2 TB
    Serial ATA Device: WDC WD30EZRS-00J99B0, 3 TB
    USB Device: hub_device, 0x2001  (D-Link Corporation), 0xf103, 0xfa200000 / 2
    USB Device: USB Mass Storage Device, 0x13fd  (Initio Corporation), 0x2040, 0xfa270000 / 5
    USB Device: Microsoft® 2.4GHz Transceiver v7.0, 0x045e  (Microsoft Corporation), 0x0745, 0xfa250000 / 4
    USB Device: DYMO LabelWriter Twin Turbo, 0x0922  (Dymo Corporation), 0x0018, 0xfa210000 / 3
    USB Device: hub_device, apple_vendor_id, 0x9126, 0xfd100000 / 3
    USB Device: Display iSight, apple_vendor_id, 0x8508, 0xfd150000 / 7
    USB Device: Display Audio, apple_vendor_id, 0x1105, 0xfd140000 / 6
    USB Device: Apple LED Cinema Display, apple_vendor_id, 0x9226, 0xfd160000 / 5
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd300000 / 2
    USB Device: Apple Keyboard, apple_vendor_id, 0x0250, 0xfd320000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x5a100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x5a110000 / 3
    USB Device: USB SmartCard Reader, 0x08e6  (Gemalto SA), 0x3437, 0x5d100000 / 2
    FireWire Device: built-in_hub, 800mbit_speed

    This crash has been reported several times, with various versions of Lion and Safari, and so far the cause is undetermined. The usual suggestions to delete the cache and preference file do not help.
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Checking Midi Drivers operation could not be completed error...

    I am having a problem that I thought would get better by upgrading. DUH! I have installed Snow Leopard, and yes, I have been reading what others have said here about SL, and honestly, because it started with an application I use that recommended Snow Leopard in the video work I do, I cannot remember all the details of this current series of problems exactly anymore.
    I have installed Logic 9 Studio upgrade. When I try to open the program it stops at 'Checking Midi Drivers' gives me the error "The operation could not be completed. No other information is available about the problem." It opens to the new project window. When I click on any of the templates Logic quits with this error:
    Process: Logic Pro [816]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 9.0.2 (1664.16)
    Build Info: Logic-16641600~1
    Code Type: X86 (Native)
    Parent Process: launchd [473]
    Date/Time: 2009-12-23 13:28:56.240 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 116424 sec
    Crashes Since Last Report: 83
    Per-App Interval Since Last Report: 3119 sec
    Per-App Crashes Since Last Report: 22
    Anonymous UUID: FC0076FA-E91E-4CB8-AE2C-BBE20696D753
    Exception Type: EXCBADACCESS (SIGABRT)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x92c8c732 __kill + 10
    1 libSystem.B.dylib 0x92c8c724 kill$UNIX2003 + 32
    2 libSystem.B.dylib 0x92d1f98d raise + 26
    3 libSystem.B.dylib 0x92d359d9 __abort + 124
    4 libSystem.B.dylib 0x92d35a55 abortreportnp + 0
    5 com.apple.logic.pro 0x003d8154 0x1000 + 4026708
    6 libSystem.B.dylib 0x92c919bb _sigtramp + 43
    7 ??? 0x0000000a 0 + 10
    8 com.apple.music.apps.MAToolKit 0x02b27f6b 0x2b21000 + 28523
    9 com.apple.music.apps.MAToolKit 0x02b276b2 0x2b21000 + 26290
    10 com.apple.music.apps.MAToolKit 0x02b25df2 0x2b21000 + 19954
    11 com.apple.music.apps.MAToolKit 0x02b263ce 0x2b21000 + 21454
    12 com.apple.logic.pro 0x008698d6 0x1000 + 8816854
    13 com.apple.logic.pro 0x000c1bbb 0x1000 + 789435
    14 com.apple.logic.pro 0x008886f4 0x1000 + 8943348
    15 com.apple.logic.pro 0x0000aa6e 0x1000 + 39534
    16 com.apple.logic.pro 0x001b93ef 0x1000 + 1803247
    17 com.apple.logic.pro 0x002839ae 0x1000 + 2632110
    18 com.apple.logic.pro 0x006143c5 0x1000 + 6370245
    19 com.apple.logic.pro 0x005f0a8b 0x1000 + 6224523
    20 com.apple.logic.pro 0x005f2bbc 0x1000 + 6233020
    21 com.apple.AppKit 0x9044cac0 -[NSDocument readFromURL:ofType:error:] + 743
    22 com.apple.logic.pro 0x005f1dff 0x1000 + 6229503
    23 com.apple.logic.pro 0x0061478f 0x1000 + 6371215
    24 com.apple.logic.pro 0x005f0a8b 0x1000 + 6224523
    25 com.apple.logic.pro 0x005f0510 0x1000 + 6223120
    26 com.apple.AppKit 0x90276b72 -[NSDocumentController makeUntitledDocumentOfType:error:] + 325
    27 com.apple.AppKit 0x90276282 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 334
    28 com.apple.AppKit 0x902760f9 -[NSDocumentController newDocument:] + 54
    29 com.apple.logic.pro 0x006eee86 0x1000 + 7265926
    30 com.apple.logic.pro 0x0060f169 0x1000 + 6349161
    31 com.apple.Foundation 0x94bc61c7 nsnotecallback + 176
    32 com.apple.CoreFoundation 0x917629a9 __CFXNotificationPost + 905
    33 com.apple.CoreFoundation 0x917623da _CFXNotificationPostNotification + 186
    34 com.apple.Foundation 0x94bbb094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    35 com.apple.Foundation 0x94bc8471 -[NSNotificationCenter postNotificationName:object:] + 56
    36 com.apple.AppKit 0x9011e73a -[NSApplication _postDidFinishNotification] + 125
    37 com.apple.AppKit 0x9011e64a -[NSApplication _sendFinishLaunchingNotification] + 74
    38 com.apple.AppKit 0x90275595 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    39 com.apple.AppKit 0x902751b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    40 com.apple.Foundation 0x94bfb404 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    41 com.apple.Foundation 0x94bfb1c8 _NSAppleEventManagerGenericHandler + 228
    42 com.apple.AE 0x91b1ff3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    43 com.apple.AE 0x91b1fe39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    44 com.apple.AE 0x91b1fd46 aeProcessAppleEvent + 197
    45 com.apple.HIToolbox 0x943fb2a1 AEProcessAppleEvent + 50
    46 com.apple.AppKit 0x900eed02 _DPSNextEvent + 1420
    47 com.apple.AppKit 0x900ee306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    48 com.apple.AppKit 0x900b049f -[NSApplication run] + 821
    49 com.apple.prokit 0x00f55670 NSProApplicationMain + 325
    50 com.apple.logic.pro 0x00003036 0x1000 + 8246
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x92c520ea kevent + 10
    1 libSystem.B.dylib 0x92c52804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x92c51cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x92c51a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x92c514f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 com.apple.CoreFoundation 0x9174477f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x91743864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x917497a4 CFRunLoopRun + 84
    5 com.apple.DVCPROHDMuxer 0x522f898f AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 317
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 ....audiohijackserver.hermes 0x045eb9b2 ahservloop + 132
    3 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    4 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92c4a856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x91783ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    3 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a9d79e GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 17630
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 com.apple.audio.midi.CoreMIDI 0x012cef31 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3 com.apple.audio.midi.CoreMIDI 0x012ed8fe MIDIProcess::RunMIDIInThread() + 150
    4 com.apple.audio.midi.CoreMIDI 0x012d0149 XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x012cfb16 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92c2b93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92c59445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92c88028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x98573235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x98572f73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x9859716b TimerThread + 97
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x92c51182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92c51718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 9:
    0 libSystem.B.dylib 0x92c51182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92c51718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 10:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c85441 nanosleep$UNIX2003 + 188
    2 com.apple.Foundation 0x94c50be8 +[NSThread sleepForTimeInterval:] + 123
    3 com.apple.logic.pro 0x0086a536 0x1000 + 8820022
    4 com.apple.Foundation 0x94bc68d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x94bc6888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x92d35969 ecx: 0xbfffdd9c edx: 0x92c8c732
    edi: 0x00000000 esi: 0x046b19f0 ebp: 0xbfffddb8 esp: 0xbfffdd9c
    ss: 0x0000001f efl: 0x00000286 eip: 0x92c8c732 cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x007f0017
    Binary Images:
    0x1000 - 0xbc0ff6 com.apple.logic.pro 9.0.2 (1664.16) <2C361495-C4B7-2937-A607-07CEFBED9984> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0xe4e000 - 0xe69fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.2 (204.6) <7ECE1371-B4DF-377D-DC0C-86B338944728> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0xe78000 - 0xea8fff +MAAssetSharing ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0xeba000 - 0xf16fff com.apple.music.apps.MALoopManagement 9.0.2 (197.3) <6FEE8C1C-E470-A3D5-06BF-395371BA4C94> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0xf33000 - 0x10ecff3 com.apple.prokit 5.0 (883) <F30846E7-8A05-F4F9-7F6B-A78FBEDA517A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x11f4000 - 0x1282feb com.apple.music.apps.MACore 9.0.2 (440.5) <706C13EA-A316-AE58-943D-69BC4E9C3208> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x12bf000 - 0x130bfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1330000 - 0x1372fe7 com.apple.music.apps.MAHarmony 9.0.2 (176.3) <493EC005-32AE-EE75-9009-EB12C860D875> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1386000 - 0x1792ffb com.apple.music.apps.MAPlugInGUI 9.0.2 (399.5) <6F3EDD47-C8AA-2274-4A19-8F0FF2F2BAEA> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a1e000 - 0x1b00fff com.apple.music.apps.OMF 9.0.2 (100.3) <7B91193A-D967-0DB7-00AA-BCA7993C707D> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b14000 - 0x2124ff5 com.apple.music.apps.MADSP 9.0.2 (554.8) <646FDF11-6EE8-C771-6AD8-C5784800DEF6> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2822000 - 0x2842ff7 com.apple.music.apps.LogicFileBrowser 9.0.2 (204.3) <D7A318F6-8FF9-787D-1AB9-CE133BBF8DE8> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2852000 - 0x28cafff com.apple.music.apps.LogicLoopBrowser 9.0.2 (193.3) <597DB84B-3C65-D92C-9221-91571111D0F4> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x28f3000 - 0x2914ff3 com.apple.music.apps.MAApogeeSupport 9.0.2 (292.3) <87FD87CB-5CAC-826C-45BE-37AD78C0E267> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x291f000 - 0x2924fff com.apple.music.apps.MAResources 9.0.2 (204.3) <8DB7BD56-40FD-C1C1-B306-A0D34C9A7BB7> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2929000 - 0x2952fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2963000 - 0x296afff com.apple.AEProfiling 1.2 (22) <CC396984-C1A1-0215-E4E6-920570C49552> /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x2972000 - 0x2981fff com.apple.AERegistration 1.2 (77) <9E328A00-EE04-F5D1-0564-C0BD1C477F03> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2994000 - 0x299ffff com.apple.music.apps.MAUnitTest 9.0.2 (75.3) <7D85F172-8A42-A16A-7491-4344E34DE578> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x29a7000 - 0x2a56feb com.apple.music.apps.MAFiles 9.0.2 (119.3) <539BA78A-3C57-EF8F-35E7-1B6A8FB1C5BA> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2a6f000 - 0x2addfff com.apple.music.apps.MAAudioEngine 9.0.2 (131.8) <E223E042-C9B4-D222-20C8-A28139202665> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2b21000 - 0x2b2afff com.apple.music.apps.MAToolKit 9.0.2 (327.3) <3AD5474C-93BB-A89C-0456-1A77C96F931D> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2b30000 - 0x2b4efef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2b5d000 - 0x2bf9ffc com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2c56000 - 0x2d0bfe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x2d51000 - 0x2d91ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x45a8000 - 0x45d6ff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x45e7000 - 0x45f3ff7 +com.rogueamoeba.audiohijackserver.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x2c1eb000 - 0x2c1edfff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x51bc4000 - 0x51bc8ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x51bcd000 - 0x51bd3ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x51bd8000 - 0x51c09feb +com.digidesign.digidesign.DigiCoreAudioPlugIn 8.0.3prx180 (8.0.3d180) <2B3894FA-5EBF-00EE-3730-D43155B45AE6> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x51c40000 - 0x51c95fe2 com.apple.DVCPROHDAudio 1.3.2 (1.3.2) <6F4FE6F8-74E2-3901-2D11-8B9F0164F13A> /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x51cb4000 - 0x51cb6fff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x51cc5000 - 0x51ccdff7 com.apple.proapps.mrcheckpro 1.4 (361) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x51d75000 - 0x51d77ff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x51d7d000 - 0x51dc3ffb com.apple.motion.component 1.0 (698) <BB552040-6F80-5207-E007-BB94A59D748D> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x52098000 - 0x520fcfe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <19C0FA03-FC58-CCFE-395D-DD4125A0B811> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x5211c000 - 0x5218efff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x5219c000 - 0x5219eff7 Motion ??? (???) <CB022D7E-217B-EF89-4974-72C50834B41D> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x521a4000 - 0x52240ff8 com.apple.procore.framework 4.0 (712) <09EE33B4-412C-FC25-5356-1DE47695BAA6> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x5227f000 - 0x522cf01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x522e1000 - 0x52346fe0 com.apple.DVCPROHDMuxer 1.3.2 (1.3.2) <C3983AFC-F21C-36C3-41BB-AA28CEED0AD7> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x52ecc000 - 0x5303dff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x530e0000 - 0x5331cfef com.apple.ATIRadeonX1000GLDriver 1.6.6 (6.0.6) <E0A5525E-5037-2D4A-0879-2FB8F865FBC2> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x5333f000 - 0x5335bff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x53aec000 - 0x53aeeff7 com.apple.music.apps.anvil.resources 9.0.2 (272.3) <594C3BD1-8196-ECBA-577B-4C265565C893> /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x53af3000 - 0x53af5ff7 com.apple.music.apps.common.resources 9.0.2 (272.3) <3160C67B-CB1E-98F4-D445-059665841D76> /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x544b8000 - 0x544baff7 com.apple.music.apps.ebp.resources 9.0.2 (272.3) <D7B8918C-96CB-3D0E-3294-A835595214C8> /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x544bf000 - 0x544c1ff7 com.apple.music.apps.efx.resources 9.0.2 (272.3) <C2CC6EA7-B1CB-5CAD-82CC-C074F9C38235> /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x544c6000 - 0x544c8ff7 com.apple.music.apps.egt.resources 9.0.2 (272.3) <E483471D-671C-091F-AC3A-18354E09F77F> /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x544cd000 - 0x544cfff7 com.apple.music.apps.emx.resources 9.0.2 (272.3) <0303574C-DA1C-6D3D-515D-8577386614AD> /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x544d4000 - 0x544d6ff7 com.apple.music.apps.es1.resources 9.0.2 (272.3) <244135E2-881C-3AAE-29F0-B5A976F4FAD2> /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x544db000 - 0x544ddff7 com.apple.music.apps.es2.resources 9.0.2 (272.3) <71E054D1-8C15-8CD3-53E5-C9C953EC2831> /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x544e2000 - 0x544e4ff7 com.apple.music.apps.esp.resources 9.0.2 (272.3) <B72CE454-D225-0A10-2CB6-FAD913A867F6> /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x544e9000 - 0x544ebff7 com.apple.music.apps.evb3.resources 9.0.2 (272.3) <4E6065AB-D841-D5E5-314D-65B535CF2D12> /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x544f0000 - 0x544f2ff7 com.apple.music.apps.evd6.resources 9.0.2 (272.3) <3DD4AC73-C885-0095-D0BC-CC588A95BD2E> /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x544f7000 - 0x544f9ff7 com.apple.music.apps.evoc.resources 9.0.2 (272.3) <F6895942-AA20-92B2-6BB6-49CD758BDC51> /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x544fe000 - 0x54500ff7 com.apple.music.apps.evp88.resources 9.0.2 (272.3) <4AFCEE14-A4B7-432A-C5CA-DB1435F1A97F> /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x54505000 - 0x54507ff7 com.apple.music.apps.exs24.resources 9.0.2 (272.3) <82BF276A-E325-4A2B-BBE2-9D15039DA135> /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x5450c000 - 0x5450efff com.apple.music.apps.guitaramp.resources 9.0.2 (272.3) <3AEFDED5-90FA-F6E6-5559-1E06715031EC> /Applications/Logic Pro.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x54513000 - 0x54515ff7 com.apple.music.apps.guitarcontrols.resources 9.0.2 (272.3) <2D6300E8-51C3-FC81-7BE1-B02623223C31> /Applications/Logic Pro.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x5451a000 - 0x5451cfff com.apple.music.apps.mutapdel.resources 9.0.2 (272.3) <2CEDCE11-ABC9-FBB5-4100-505F93B84FE7> /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x54521000 - 0x54523fff com.apple.music.apps.pedalboard.resources 9.0.2 (272.3) <412892BD-E694-E93B-975E-35889B034519> /Applications/Logic Pro.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x54528000 - 0x5452afff com.apple.music.apps.revolver.resources 9.0.2 (272.3) <F97E6C10-FA37-01A6-C12B-F156D3DDB337> /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x5452f000 - 0x54531ff7 com.apple.music.apps.sphere.resources 9.0.2 (272.3) <EF9DCBED-A571-4CB9-FF65-6BA293754724> /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x5ab40000 - 0x5ab9ffe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/chazjazmusic/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x5abbe000 - 0x5abd9ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x8f706000 - 0x8fa7eff7 com.apple.GeForce7xxxGLDriver 1.6.6 (6.0.6) <B480321A-51C9-F064-F0F0-BB4DE28DD006> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90043ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90044000 - 0x90079ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9007a000 - 0x9007bff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x900a6000 - 0x90984ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9098b000 - 0x909faff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90cf6000 - 0x90d07ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90e1d000 - 0x90e5eff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90e5f000 - 0x90e6cff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e86000 - 0x90faaff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90fab000 - 0x9103cfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9103d000 - 0x911bffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x911c0000 - 0x911d8ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x911d9000 - 0x91288ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9128c000 - 0x9128fff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91290000 - 0x913cffe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x913d0000 - 0x91428fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91454000 - 0x91474fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91475000 - 0x91493ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x914b3000 - 0x91509ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9150a000 - 0x915c3fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x915c4000 - 0x91635ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91636000 - 0x91707fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x91708000 - 0x9187ffef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x918c7000 - 0x91905ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91906000 - 0x91956fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91957000 - 0x91a4dff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91a4e000 - 0x91abeff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91abf000 - 0x91adaff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ae6000 - 0x91b1bff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91b1c000 - 0x91b4fff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91b6e000 - 0x91b6eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b6f000 - 0x91b79fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c6f000 - 0x920a4ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x920a5000 - 0x920e7fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92191000 - 0x92192ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92193000 - 0x92393feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92399000 - 0x9239fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x923a0000 - 0x923bffe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x923c0000 - 0x923d5fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x923d6000 - 0x923e3ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x923e4000 - 0x92434ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9251a000 - 0x925b2fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x925b3000 - 0x92690ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92691000 - 0x9284dfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9284e000 - 0x928a8ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x928a9000 - 0x92ba2fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92ba3000 - 0x92c25ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92c26000 - 0x92c2aff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92c2b000 - 0x92dcffeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x92dd0000 - 0x92dd1ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92dd2000 - 0x92e0fff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92e10000 - 0x92e40ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x92e41000 - 0x9306cff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93075000 - 0x9309bfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9309c000 - 0x9310aff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9310b000 - 0x93184ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93195000 - 0x93199ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x931ab000 - 0x931afff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x931d0000 - 0x93207ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x933ca000 - 0x933cdff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x933ce000 - 0x933e0ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9353b000 - 0x9353bff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9353c000 - 0x9366afe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9366b000 - 0x93745ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93746000 - 0x93749ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9374a000 - 0x9374aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9374b000 - 0x937f3ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x937f4000 - 0x9383aff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x9383b000 - 0x93841fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94184000 - 0x941c3ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x941c4000 - 0x9421efe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x94250000 - 0x9428bfe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9428c000 - 0x94339fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9433a000 - 0x94372ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94373000 - 0x9437dff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x943bf000 - 0x946e2fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x946e3000 - 0x94824ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94825000 - 0x94861fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94862000 - 0x94864ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94865000 - 0x948b2feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x948b3000 - 0x948f7fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9490c000 - 0x9490efe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x94919000 - 0x94929ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94969000 - 0x94b44ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94b45000 - 0x94baffe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94bb0000 - 0x94e20ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94e8c000 - 0x94e8cff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94e8d000 - 0x94f8efe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94f97000 - 0x94fa0ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94fa1000 - 0x94fdafe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94fe6000 - 0x94ffafe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9506a000 - 0x9509bff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9509c000 - 0x9509cff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9509d000 - 0x950e1ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95102000 - 0x955b0fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x955dc000 - 0x955f0ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x955f3000 - 0x955fdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95642000 - 0x9566aff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9566b000 - 0x956b4fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x957e0000 - 0x95fc34b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95feb000 - 0x95ff2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95ff3000 - 0x96036ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96037000 - 0x96037ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96038000 - 0x96048ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96049000 - 0x962abff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x962b4000 - 0x96363fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96364000 - 0x9665dff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9665e000 - 0x96711fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96712000 - 0x96739ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9673a000 - 0x967e8ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x967e9000 - 0x96bffff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96c00000 - 0x96c3affb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96d30000 - 0x96d30ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96d31000 - 0x96d55ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96d56000 - 0x96d8aff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x96d9e000 - 0x96e79ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x96e7a000 - 0x96edeffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96edf000 - 0x97246ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97247000 - 0x97247ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97253000 - 0x981e1ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x981e2000 - 0x981eeff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x981ef000 - 0x9828cfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9828d000 - 0x982deff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98349000 - 0x983a9fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x983aa000 - 0x983cafe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x983cb000 - 0x983e7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x983e8000 - 0x98438ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98439000 - 0x9852bff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x9852c000 - 0x9884bfe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9884c000 - 0x988c6fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x988c7000 - 0x988d4ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x988d5000 - 0x988daff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x988db000 - 0x988e9fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x988ea000 - 0x988eaff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x988eb000 - 0x98962fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98963000 - 0x989e3feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98a73000 - 0x98a7eff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98a7f000 - 0x98c61fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98c62000 - 0x98cfefe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98d37000 - 0x98e01fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98e37000 - 0x98f63fe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98f64000 - 0x98f86fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x98f87000 - 0x98f8afe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98f8b000 - 0x99032fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x99033000 - 0x99140ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99173000 - 0x99180ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99181000 - 0x991f5fef com.apple.CoreSymbolication 2.1 (23.2) <D4339C60-617B-4D5E-A3B1-C8B0B22FAE09> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x991f6000 - 0x991fdff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99315000 - 0x994b2fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <FF236E3F-A016-2AEB-3E62-7108E76EF825> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x994b3000 - 0x994b5ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x994b6000 - 0x995b8fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-4
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-2
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST3500641AS P, 465.76 GB
    Serial ATA Device: ST3750640AS, 698.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D, 7.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9131, 0xfd500000
    USB Device: Jog and Shuttle, 0x05f3, 0x0240, 0xfd510000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9223, 0xfd520000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd300000
    USB Device: EPSON Scanner, 0x04b8 (Seiko Epson Corp.), 0x0119, 0xfd310000
    USB Device: USB Trackball, 0x046d (Logitech Inc.), 0xc408, 0xfd330000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd320000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0234, 0xfd200000
    USB Device: External, 0x13fd (Initio Corporation), 0x1340, 0xfd210000
    USB Device: RigKontrol2, 0x17cc, 0x1969, 0xfd240000
    USB Device: External, 0x13fd (Initio Corporation), 0x1340, 0xfd220000
    USB Device: Kore controller, 0x17cc, 0x4711, 0xfd100000
    USB Device: Hub, 0x03eb (Atmel Corporation), 0x3301, 0x3d200000
    USB Device: SoundSticks, 0x05fc (Harman International), 0x7849, 0x3d230000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x911c, 0x3d240000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x921c, 0x3d242000
    USB Device: Hub, 0x0424 (SMSC), 0x2507, 0x3d220000
    USB Device: XD-0608-U, 0x056a (WACOM Co., Ltd.), 0x0042, 0x3d224000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0234, 0x3d222000
    USB Device: iPhone, 0x05ac (Apple Inc.), 0x1294, 0x3d221000
    USB Device: USB Axiom 49, 0x0763 (M-Audio), 0x0199, 0x3d223000
    USB Device: MXO by Matrox, 0x18ea, 0x8003, 0x3d210000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    FireWire Device: LaCie Hard Drive FireWire+, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: IEEE 1394 Disk, Seagate, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown
    FireWire Device: > LaCie d2 DVD-RW Firewire, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: ST3500841A, Initio, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown
    FireWire Device: unknown_device, Unknown
    FireWire Device: OEM ATA Device 00, G-TECH, Up to 800 Mb/sec
    FireWire Device: OXFORD IDE Device 1, Oxford Semiconductor Ltd., Up to 800 Mb/sec
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    I have been reading ad nauseum all the possibilities already posted, this is my last attempt before I call Apple. The thread here (http://discussions.apple.com/thread.jspa?messageID=10312421&#10312421) looked hopeful but Bill Borez's solution did not apply as I found no Melodyne plug-in there. I DO have an older version of Melodyne installed, but short of trashing all of the Melodyne in the various applications it is installed in I want to see if it is indeed my problem.
    Also I looked at another possible solution here: (http://jnote.org/29) but I seemed to have lost that pass word as none I have written down seem to work.
    I am a creative sort who has some aptitude for this techie stuff, but little patience for it. I am still rather new at posting. Please be patient and I will work towards a better understanding and patience. I have used these boards to fix many problems, but this has gotten the best of me so far.
    I have upgraded to Final Cut Studio 3, for my job, and dumped FCP Studio 2, Dumped the Logic Studio 8 as well. I would really appreciate the help because I need Compressor to continue with the video stuff I do, and now it will not load either!
    Thanks in advance!
    Chaz

    yes, I am running Native Instruments software. and it is up to date. This did not fix my problem. It did change, however. It is checking plug-ins when it Fails and has this error code:
    Process: Logic Pro [620]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 9.0.2 (1664.16)
    Build Info: Logic-16641600~1
    Code Type: X86 (Native)
    Parent Process: launchd [268]
    Date/Time: 2009-12-23 20:38:05.220 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 127050 sec
    Crashes Since Last Report: 104
    Per-App Interval Since Last Report: 3567 sec
    Per-App Crashes Since Last Report: 33
    Anonymous UUID: FC0076FA-E91E-4CB8-AE2C-BBE20696D753
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.prokit 0x00f85aa1 -[NSProProgressIndicator _reconfigureAnimationState:] + 387
    1 com.apple.AppKit 0x9019878a -[NSProgressIndicator _setWindow:] + 120
    2 com.apple.AppKit 0x9011180d __NSViewRecursionHelper + 40
    3 com.apple.CoreFoundation 0x9173c4e0 CFArrayApplyFunction + 224
    4 com.apple.AppKit 0x900c2184 -[NSView _setWindow:] + 1934
    5 com.apple.AppKit 0x900cae81 -[NSView addSubview:] + 411
    6 com.apple.AppKit 0x900f540f -[NSFrameView addSubview:] + 60
    7 com.apple.AppKit 0x900ca2c3 -[NSWindow setContentView:] + 283
    8 com.apple.AppKit 0x9013dd06 -[NSWindowTemplate nibInstantiate] + 972
    9 com.apple.prokit 0x00fb729b -[NSProWindowTemplate nibInstantiate] + 51
    10 com.apple.AppKit 0x900aeca4 -[NSIBObjectData instantiateObject:] + 253
    11 com.apple.AppKit 0x900adfaa -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 336
    12 com.apple.AppKit 0x900ac450 loadNib + 257
    13 com.apple.AppKit 0x900abaa3 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 831
    14 com.apple.AppKit 0x900ab759 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    15 com.apple.AppKit 0x9013b52b -[NSWindowController loadWindow] + 223
    16 com.apple.AppKit 0x900d22da -[NSWindowController window] + 89
    17 ...sic.apps.MAAudioUnitSupport 0x00e5996b 0xe4e000 + 47467
    18 ...sic.apps.MAAudioUnitSupport 0x00e5c2cf 0xe4e000 + 58063
    19 com.apple.logic.pro 0x00727c4f 0x1000 + 7498831
    20 com.apple.logic.pro 0x00727623 0x1000 + 7497251
    21 com.apple.logic.pro 0x0059715e 0x1000 + 5857630
    22 ...le.music.apps.MAAudioEngine 0x02a927e4 MD::Init(int, bool) + 4676
    23 ...le.music.apps.MAAudioEngine 0x02a9b712 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 9298
    24 com.apple.logic.pro 0x0008cbdd 0x1000 + 572381
    25 com.apple.logic.pro 0x0008e6fc 0x1000 + 579324
    26 com.apple.logic.pro 0x003d8c35 0x1000 + 4029493
    27 com.apple.logic.pro 0x001ac9ce 0x1000 + 1751502
    28 com.apple.logic.pro 0x001b08ae 0x1000 + 1767598
    29 com.apple.logic.pro 0x0060f0b3 0x1000 + 6348979
    30 com.apple.Foundation 0x94bc61c7 nsnotecallback + 176
    31 com.apple.CoreFoundation 0x917629a9 __CFXNotificationPost + 905
    32 com.apple.CoreFoundation 0x917623da _CFXNotificationPostNotification + 186
    33 com.apple.Foundation 0x94bbb094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    34 com.apple.Foundation 0x94bc8471 -[NSNotificationCenter postNotificationName:object:] + 56
    35 com.apple.AppKit 0x9011e73a -[NSApplication _postDidFinishNotification] + 125
    36 com.apple.AppKit 0x9011e64a -[NSApplication _sendFinishLaunchingNotification] + 74
    37 com.apple.AppKit 0x90275595 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    38 com.apple.AppKit 0x902751b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    39 com.apple.Foundation 0x94bfb404 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    40 com.apple.Foundation 0x94bfb1c8 _NSAppleEventManagerGenericHandler + 228
    41 com.apple.AE 0x91b1ff3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    42 com.apple.AE 0x91b1fe39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    43 com.apple.AE 0x91b1fd46 aeProcessAppleEvent + 197
    44 com.apple.HIToolbox 0x943fb2a1 AEProcessAppleEvent + 50
    45 com.apple.AppKit 0x900eed02 _DPSNextEvent + 1420
    46 com.apple.AppKit 0x900ee306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    47 com.apple.AppKit 0x900b049f -[NSApplication run] + 821
    48 com.apple.prokit 0x00f55670 NSProApplicationMain + 325
    49 com.apple.logic.pro 0x00003036 0x1000 + 8246
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x92c520ea kevent + 10
    1 libSystem.B.dylib 0x92c52804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x92c51cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x92c51a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x92c514f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x92c51182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92c51718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92c51336 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x92c2b8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92c2c047 mach_msg + 68
    2 ....audiohijackserver.hermes 0x046e39b2 ahservloop + 132
    3 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    4 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92c4a856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x91783ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    3 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c594c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x029d0808 ResolveFile + 55784
    4 com.apple.music.apps.MAFiles 0x029d08d1 ResolveFile + 55985
    5 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    6 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c594c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x029d0808 ResolveFile + 55784
    4 com.apple.music.apps.MAFiles 0x029d08d1 ResolveFile + 55985
    5 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    6 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92c2b93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92c59445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92c88028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x9886c965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x9886f997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x9886d294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x9886cb2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x9886ca42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x92c2b9ee machwaituntil + 10
    1 ...ple.CoreServices.CarbonCore 0x985f6034 MPDelayUntil + 43
    2 ...ple.CoreServices.CarbonCore 0x98605a56 Delay + 107
    3 ...opellerheads.rewire.library 0x5a7707e8 RWPUnregisterDeviceImp + 21574
    4 ...opellerheads.rewire.library 0x5a78ba5c RWPUnregisterDeviceImp + 132794
    5 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    6 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x92c2b916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x5a9cd625 TSingleSyncPoint::Wait() + 23
    2 com.ableton.live-engine 0x5a86b72b OValueProcessor::SetValue(float) + 1967
    3 com.ableton.live-engine 0x5a9cdaa4 TThread::Start() + 288
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x92c2b916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x5a9cd625 TSingleSyncPoint::Wait() + 23
    2 com.ableton.live-engine 0x5a86b72b OValueProcessor::SetValue(float) + 1967
    3 com.ableton.live-engine 0x5a9cdaa4 TThread::Start() + 288
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x92c2b916 semaphorewaittrap + 10
    1 com.ableton.live-engine 0x5a9cd625 TSingleSyncPoint::Wait() + 23
    2 com.ableton.live-engine 0x5a86b72b OValueProcessor::SetValue(float) + 1967
    3 com.ableton.live-engine 0x5a9cdaa4 TThread::Start() + 288
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a81a5c MD::CallProcessThread1(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a8180c MD::CallProcessThread2(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a815bc MD::CallProcessThread3(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x92c59806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92c595b1 pthread_condwait + 1430
    2 libSystem.B.dylib 0x92c5b158 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02a80c7c MD::CallProcessThread7(void*) + 108
    4 libSystem.B.dylib 0x92c58fbd pthreadstart + 345
    5 libSystem.B.dylib 0x92c58e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x00f85943 ecx: 0x02e69130 edx: 0x00000001
    edi: 0x00000001 esi: 0x564879e0 ebp: 0xbfffe0f8 esp: 0xbfffe0c0
    ss: 0x0000001f efl: 0x00010202 eip: 0x00f85aa1 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000010
    Binary Images:
    0x1000 - 0xbc0ff6 com.apple.logic.pro 9.0.2 (1664.16) <2C361495-C4B7-2937-A607-07CEFBED9984> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0xe4e000 - 0xe69fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.2 (204.6) <7ECE1371-B4DF-377D-DC0C-86B338944728> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0xe78000 - 0xea8fff +MAAssetSharing ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0xeba000 - 0xf16fff com.apple.music.apps.MALoopManagement 9.0.2 (197.3) <6FEE8C1C-E470-A3D5-06BF-395371BA4C94> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0xf33000 - 0x10ecff3 com.apple.prokit 5.0 (883) <F30846E7-8A05-F4F9-7F6B-A78FBEDA517A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x11f4000 - 0x1282feb com.apple.music.apps.MACore 9.0.2 (440.5) <706C13EA-A316-AE58-943D-69BC4E9C3208> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x12bf000 - 0x130bfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1330000 - 0x1372fe7 com.apple.music.apps.MAHarmony 9.0.2 (176.3) <493EC005-32AE-EE75-9009-EB12C860D875> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1386000 - 0x1792ffb com.apple.music.apps.MAPlugInGUI 9.0.2 (399.5) <6F3EDD47-C8AA-2274-4A19-8F0FF2F2BAEA> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a1e000 - 0x1b00fff com.apple.music.apps.OMF 9.0.2 (100.3) <7B91193A-D967-0DB7-00AA-BCA7993C707D> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b14000 - 0x2124ff5 com.apple.music.apps.MADSP 9.0.2 (554.8) <646FDF11-6EE8-C771-6AD8-C5784800DEF6> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2822000 - 0x2842ff7 com.apple.music.apps.LogicFileBrowser 9.0.2 (204.3) <D7A318F6-8FF9-787D-1AB9-CE133BBF8DE8> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2852000 - 0x28cafff com.apple.music.apps.LogicLoopBrowser 9.0.2 (193.3) <597DB84B-3C65-D92C-9221-91571111D0F4> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x28f3000 - 0x2914ff3 com.apple.music.apps.MAApogeeSupport 9.0.2 (292.3) <87FD87CB-5CAC-826C-45BE-37AD78C0E267> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x291f000 - 0x2924fff com.apple.music.apps.MAResources 9.0.2 (204.3) <8DB7BD56-40FD-C1C1-B306-A0D34C9A7BB7> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2929000 - 0x2952fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2963000 - 0x296afff com.apple.AEProfiling 1.2 (22) <CC396984-C1A1-0215-E4E6-920570C49552> /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x2972000 - 0x2981fff com.apple.AERegistration 1.2 (77) <9E328A00-EE04-F5D1-0564-C0BD1C477F03> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2994000 - 0x299ffff com.apple.music.apps.MAUnitTest 9.0.2 (75.3) <7D85F172-8A42-A16A-7491-4344E34DE578> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x29a7000 - 0x2a56feb com.apple.music.apps.MAFiles 9.0.2 (119.3) <539BA78A-3C57-EF8F-35E7-1B6A8FB1C5BA> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2a6f000 - 0x2addfff com.apple.music.apps.MAAudioEngine 9.0.2 (131.8) <E223E042-C9B4-D222-20C8-A28139202665> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2b21000 - 0x2b2afff com.apple.music.apps.MAToolKit 9.0.2 (327.3) <3AD5474C-93BB-A89C-0456-1A77C96F931D> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2b30000 - 0x2b4efef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2b5d000 - 0x2bf9ffc com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2c56000 - 0x2d0bfe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x2d51000 - 0x2d91ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x46a0000 - 0x46ceff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x46df000 - 0x46ebff7 +com.rogueamoeba.audiohijackserver.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x4798000 - 0x479afff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x47a8000 - 0x47acff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x47b1000 - 0x47b7ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x47bc000 - 0x47befff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x47d0000 - 0x47d8ff7 com.apple.proapps.mrcheckpro 1.4 (361) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x2b94b000 - 0x2b97cfeb +com.digidesign.digidesign.DigiCoreAudioPlugIn 8.0.3prx180 (8.0.3d180) <2B3894FA-5EBF-00EE-3730-D43155B45AE6> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x2b9f4000 - 0x2b9f6ff7 com.apple.music.apps.anvil.resources 9.0.2 (272.3) <594C3BD1-8196-ECBA-577B-4C265565C893> /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x2bff1000 - 0x2bff3ff7 com.apple.music.apps.common.resources 9.0.2 (272.3) <3160C67B-CB1E-98F4-D445-059665841D76> /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x2bff8000 - 0x2bffaff7 com.apple.music.apps.ebp.resources 9.0.2 (272.3) <D7B8918C-96CB-3D0E-3294-A835595214C8> /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x52cf5000 - 0x52e66ff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x52ebd000 - 0x530f9fef com.apple.ATIRadeonX1000GLDriver 1.6.6 (6.0.6) <E0A5525E-5037-2D4A-0879-2FB8F865FBC2> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x5311c000 - 0x53138ff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x53151000 - 0x53153ff7 com.apple.music.apps.efx.resources 9.0.2 (272.3) <C2CC6EA7-B1CB-5CAD-82CC-C074F9C38235> /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x53158000 - 0x5315aff7 com.apple.music.apps.egt.resources 9.0.2 (272.3) <E483471D-671C-091F-AC3A-18354E09F77F> /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x53613000 - 0x53615ff7 com.apple.music.apps.emx.resources 9.0.2 (272.3) <0303574C-DA1C-6D3D-515D-8577386614AD> /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x5361a000 - 0x5361cff7 com.apple.music.apps.es1.resources 9.0.2 (272.3) <244135E2-881C-3AAE-29F0-B5A976F4FAD2> /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x53621000 - 0x53623ff7 com.apple.music.apps.es2.resources 9.0.2 (272.3) <71E054D1-8C15-8CD3-53E5-C9C953EC2831> /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x53628000 - 0x5362aff7 com.apple.music.apps.esp.resources 9.0.2 (272.3) <B72CE454-D225-0A10-2CB6-FAD913A867F6> /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x5362f000 - 0x53631ff7 com.apple.music.apps.evb3.resources 9.0.2 (272.3) <4E6065AB-D841-D5E5-314D-65B535CF2D12> /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x53636000 - 0x53638ff7 com.apple.music.apps.evd6.resources 9.0.2 (272.3) <3DD4AC73-C885-0095-D0BC-CC588A95BD2E> /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x5363d000 - 0x5363fff7 com.apple.music.apps.evoc.resources 9.0.2 (272.3) <F6895942-AA20-92B2-6BB6-49CD758BDC51> /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x53644000 - 0x53646ff7 com.apple.music.apps.evp88.resources 9.0.2 (272.3) <4AFCEE14-A4B7-432A-C5CA-DB1435F1A97F> /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x5364b000 - 0x5364dff7 com.apple.music.apps.exs24.resources 9.0.2 (272.3) <82BF276A-E325-4A2B-BBE2-9D15039DA135> /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x53652000 - 0x53654fff com.apple.music.apps.guitaramp.resources 9.0.2 (272.3) <3AEFDED5-90FA-F6E6-5559-1E06715031EC> /Applications/Logic Pro.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x53659000 - 0x5365bff7 com.apple.music.apps.guitarcontrols.resources 9.0.2 (272.3) <2D6300E8-51C3-FC81-7BE1-B02623223C31> /Applications/Logic Pro.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x53660000 - 0x53662fff com.apple.music.apps.mutapdel.resources 9.0.2 (272.3) <2CEDCE11-ABC9-FBB5-4100-505F93B84FE7> /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x53667000 - 0x53669fff com.apple.music.apps.pedalboard.resources 9.0.2 (272.3) <412892BD-E694-E93B-975E-35889B034519> /Applications/Logic Pro.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x5366e000 - 0x53670fff com.apple.music.apps.revolver.resources 9.0.2 (272.3) <F97E6C10-FA37-01A6-C12B-F156D3DDB337> /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x53675000 - 0x53677ff7 com.apple.music.apps.sphere.resources 9.0.2 (272.3) <EF9DCBED-A571-4CB9-FF65-6BA293754724> /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x536c9000 - 0x536e4ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x53ff8000 - 0x53ffaff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x5a765000 - 0x5a7c4fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/chazjazmusic/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x5a7e3000 - 0x5aa9dfcf +com.ableton.live-engine 6.0.11 (6.0.11) <3F4B1302-5C98-4A90-9882-7171F72ED2E3> /Applications/Live 6.0.11 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x5ade1000 - 0x5ae45fe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <19C0FA03-FC58-CCFE-395D-DD4125A0B811> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x5ae65000 - 0x5aed7fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x5aee5000 - 0x5af2bffb com.apple.motion.component 1.0 (698) <BB552040-6F80-5207-E007-BB94A59D748D> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x5af31000 - 0x5af33ff7 Motion ??? (???) <CB022D7E-217B-EF89-4974-72C50834B41D> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x5af39000 - 0x5af8901f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x5b800000 - 0x5b89cff8 com.apple.procore.framework 4.0 (712) <09EE33B4-412C-FC25-5356-1DE47695BAA6> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x8f706000 - 0x8fa7eff7 com.apple.GeForce7xxxGLDriver 1.6.6 (6.0.6) <B480321A-51C9-F064-F0F0-BB4DE28DD006> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90043ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90044000 - 0x90079ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9007a000 - 0x9007bff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x900a6000 - 0x90984ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9098b000 - 0x909faff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90cf6000 - 0x90d07ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90e1d000 - 0x90e5eff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90e5f000 - 0x90e6cff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e86000 - 0x90faaff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90fab000 - 0x9103cfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9103d000 - 0x911bffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x911c0000 - 0x911d8ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x911d9000 - 0x91288ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9128c000 - 0x9128fff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91290000 - 0x913cffe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x913d0000 - 0x91428fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91454000 - 0x91474fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91475000 - 0x91493ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x914b3000 - 0x91509ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9150a000 - 0x915c3fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x915c4000 - 0x91635ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91636000 - 0x91707fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x91708000 - 0x9187ffef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x918c7000 - 0x91905ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91906000 - 0x91956fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91957000 - 0x91a4dff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91a4e000 - 0x91abeff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91abf000 - 0x91adaff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ae6000 - 0x91b1bff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91b1c000 - 0x91b4fff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91b6e000 - 0x91b6eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b6f000 - 0x91b79fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c6f000 - 0x920a4ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x920a5000 - 0x920e7fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92191000 - 0x92192ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92193000 - 0x92393feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92399000 - 0x9239fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x923a0000 - 0x923bffe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x923c0000 - 0x923d5fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x923d6000 - 0x923e3ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x923e4000 - 0x92434ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9251a000 - 0x925b2fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x925b3000 - 0x92690ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92691000 - 0x9284dfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9284e000 - 0x928a8ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x928a9000 - 0x92ba2fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92ba3000 - 0x92c25ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92c26000 - 0x92c2aff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92c2b000 - 0x92dcffeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x92dd0000 - 0x92dd1ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92dd2000 - 0x92e0fff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92e10000 - 0x92e40ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x92e41000 - 0x9306cff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93075000 - 0x9309bfff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9309c000 - 0x9310aff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9310b000 - 0x93184ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93195000 - 0x93199ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x931ab000 - 0x931afff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x931d0000 - 0x93207ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x933ca000 - 0x933cdff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x933ce000 - 0x933e0ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9353b000 - 0x9353bff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9353c000 - 0x9366afe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9366b000 - 0x93745ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93746000 - 0x93749ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9374a000 - 0x9374aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9374b000 - 0x937f3ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x937f4000 - 0x9383aff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x9383b000 - 0x93841fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94184000 - 0x941c3ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x941c4000 - 0x9421efe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x94250000 - 0x9428bfe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9428c000 - 0x94339fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9433a000 - 0x94372ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94373000 - 0x9437dff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x943bf000 - 0x946e2fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x946e3000 - 0x94824ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94825000 - 0x94861fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94862000 - 0x94864ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94865000 - 0x948b2feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x948b3000 - 0x948f7fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9490c000 - 0x9490efe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x94919000 - 0x94929ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94969000 - 0x94b44ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94b45000 - 0x94baffe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94bb0000 - 0x94e20ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94e8c000 - 0x94e8cff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94e8d000 - 0x94f8efe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94f97000 - 0x94fa0ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94fa1000 - 0x94fdafe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94fe6000 - 0x94ffafe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9506a000 - 0x9509bff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9509c000 - 0x9509cff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9509d000 - 0x950e1ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95102000 - 0x955b0fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x955dc000 - 0x955f0ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x955f3000 - 0x955fdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95642000 - 0x9566aff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9566b000 - 0x956b4fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x957e0000 - 0x95fc34b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95feb000 - 0x95ff2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95ff3000 - 0x96036ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96037000 - 0x96037ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96038000 - 0x96048ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96049000 - 0x962abff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x962b4000 - 0x96363fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96364000 - 0x9665dff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9665e000 - 0x96711fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96712000 - 0x96739ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9673a000 - 0x967e8ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x967e9000 - 0x96bffff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96c00000 - 0x96c3affb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96d30000 - 0x96d30ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96d31000 - 0x96d55ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96d56000 - 0x96d8aff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x96d9e000 - 0x96e79ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x96e7a000 - 0x96edeffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96edf000 - 0x97246ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97247000 - 0x97247ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97253000 - 0x981e1ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x981e2000 - 0x981eeff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x981ef000 - 0x9828cfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9828d000 - 0x982deff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98349000 - 0x983a9fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x983aa000 - 0x983cafe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x983cb000 - 0x983e7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x983e8000 - 0x98438ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98439000 - 0x9852bff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x9852c000 - 0x9884bfe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9884c000 - 0x988c6fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x988c7000 - 0x988d4ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x988d5000 - 0x988daff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x988db000 - 0x988e9fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x988ea000 - 0x988eaff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x988eb000 - 0x98962fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98963000 - 0x989e3feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98a73000 - 0x98a7eff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98a7f000 - 0x98c61fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98c62000 - 0x98cfefe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98d37000 - 0x98e01fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98e37000 - 0x98f63fe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98f64000 - 0x98f86fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x98f87000 - 0x98f8afe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98f8b000 - 0x99032fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x99033000 - 0x99140ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99173000 - 0x99180ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99181000 - 0x991f5fef com.apple.CoreSymbolication 2.1 (23.2) <D4339C60-617B-4D5E-A3B1-C8B0B22FAE09> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x991f6000 - 0x991fdff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99315000 - 0x994b2fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <FF236E3F-A016-2AEB-3E62-7108E76EF825> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x994b3000 - 0x994b5ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x994b6000 - 0x995b8fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-4
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-2
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST31500341AS, 1.36 TB
    Serial ATA Device: ST3500641AS P, 465.76 GB
    Serial ATA Device: ST3750640AS, 698.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D, 7.24 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd300000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd320000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9131, 0xfd500000
    USB Device: Jog and Shuttle, 0x05f3, 0x0240, 0xfd510000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9223, 0xfd520000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    USB Device: Hub, 0x03eb (Atmel Corporation), 0x3301, 0x3d200000
    USB Device: MXO by Matrox, 0x18ea, 0x8003, 0x3d210000
    USB Device: Hub, 0x0424 (SMSC), 0x2507, 0x3d220000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0234, 0x3d222000
    USB Device: XD-0608-U, 0x056a (WACOM Co., Ltd.), 0x0042, 0x3d224000
    USB Device: USB Axiom 49, 0x0763 (M-Audio), 0x0199, 0x3d223000
    USB Device: SoundSticks, 0x05fc (Harman International), 0x7849, 0x3d230000
    USB Device: Hub, 0x05ac (Apple Inc.), 0x911c, 0x3d240000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x921c, 0x3d242000
    USB Device: USB Trackball, 0x046d (Logitech Inc.), 0xc408, 0x1d100000
    USB Device: USB Optical Mouse, 0x046d (Logitech Inc.), 0xc018, 0x1d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown
    I am calling Apple in the morning at 6....

  • Problem with USB External Hard Disk Drive

    I have similar problem with hard disk MK6025GAS in Sweex casing connected via USB as Raistlfiren in this post but I am not sure if it has something to do with kernel. The problem is that when I plug the hard disk via USB it is not even shown with in /dev/ or by fdisk -l. I had similar problems with the drive before but it was always shown in /dev.
    I got same output from dmesg as Raistlfiren in the post before
    # dmesg | tail
    sd 4:0:0:0: [sdd] ASC=0x0 ASCQ=0x0
    sd 4:0:0:0: [sdd] Sense Key : 0x0 [current]
    Info fld=0x0
    I was browsing net for a lot of time to find a solution but nothing helped a lot. The problem is closes to the one described on Gentoo Forum
    I can see that it is recognized by computer since it is shown with lsusb
    # lsusb
    Bus 001 Device 005: ID 13fd:0540 Initio Corporation
    # lsusb -d 13fd:0540 -v
    Bus 001 Device 005: ID 13fd:0540 Initio Corporation
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    idVendor 0x13fd Initio Corporation
    idProduct 0x0540
    bcdDevice 0.00
    iManufacturer 1 Initio
    iProduct 2 MK6025GAS
    iSerial 3 0010100500000000
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 32
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xc0
    Self Powered
    MaxPower 2mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 2
    bInterfaceClass 8 Mass Storage
    bInterfaceSubClass 6 SCSI
    bInterfaceProtocol 80 Bulk (Zip)
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x02 EP 2 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 1
    Device Qualifier (for other device speed):
    bLength 10
    bDescriptorType 6
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    bNumConfigurations 1
    Device Status: 0x0001
    Self Powered
    From the beginning I though and I still think that the partition table is screwed up but the programs like TestDisk and fixdisktable work only with disks shown in /dev/
    Additionally, I have checked the content of /var/log/kernel.log
    Sep 16 22:03:58 hramat kernel: usb 1-2: new high speed USB device using ehci_hcd and address 5
    Sep 16 22:03:58 hramat kernel: usb 1-2: configuration #1 chosen from 1 choice
    Sep 16 22:03:58 hramat kernel: scsi4 : SCSI emulation for USB Mass Storage devices
    Sep 16 22:03:58 hramat kernel: usb-storage: device found at 5
    Sep 16 22:03:58 hramat kernel: usb-storage: waiting for device to settle before scanning
    Sep 16 22:04:03 hramat kernel: scsi 4:0:0:0: Direct-Access Initio MK6025GAS 2.23 PQ: 0 ANSI: 0
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: Attached scsi generic sg4 type 0
    Sep 16 22:04:03 hramat kernel: usb-storage: device scan complete
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] 117210240 512-byte hardware sectors: (60.0 GB/55.8 GiB)
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Write Protect is off
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Mode Sense: 86 0b 00 02
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Assuming drive cache: write through
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Assuming drive cache: write through
    Sep 16 22:04:03 hramat kernel: sdd:<6>sd 4:0:0:0: [sdd] Sense Key : 0x0 [current]
    Sep 16 22:04:03 hramat kernel: Info fld=0x0
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] ASC=0x0 ASCQ=0x0
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Sense Key : 0x0 [current]
    and /var/log/errors.log
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Assuming drive cache: write through
    Sep 16 22:04:03 hramat kernel: sd 4:0:0:0: [sdd] Assuming drive cache: write through
    Sep 16 22:07:35 hramat kernel: INFO: task async/0:3957 blocked for more than 120 seconds.
    Sep 16 22:07:35 hramat kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    The only thing I understand from these logs is that the disk is blocked, therefore not listed in /dev.
    Assuming the newer kernel problems I could try to use some older live linux CD to see if that would work. I am also thinking of connecting this hard drive directly to my laptop, using live linux CD and maybe check the output of hdparm. Is there anything else I could check or try?
    Thank you for any help or suggestions
    Matej

    Thank you nTia89 for response. Sorry for not providing enough information.
    I believe the problem is not system dependent. I have dual boot with windows and there the disk has also problems. However, I do have Arch32 with Kernel 2.6.30, using Gnome. hal and dbus are also running.
    I did not tried to connect the disk to the computer directly, I will try it today.
    Yesterday I have used SystemRescueCD 0.4.1 with Kernel 2.6.22. I wanted to see if it will be recognized by the system and placed in /dev/. Yes it was. This means that the problem highlighted in Gentoo forum can be true, but it doesn't solve my problem. I have tried to connect the drive several times to Arch and it was not shown in /dev/sd*, in SystemRescueCD it was placed as /dev/sdb. Now I am sure that the partition table is screwed up.
    So I have started to play with the drive in SystemRescueCD with TestDisk and FixDiskTable but without success.
    % fdisk -l
    Disk /dev/sda: 100.0 GB, 100030242816 bytes
    255 heads, 63 sectors/track, 12161 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 1530 12289693+ 7 HPFS/NTFS
    /dev/sda2 1531 6672 41303115 7 HPFS/NTFS
    /dev/sda3 6673 12161 44090392+ f W95 Ext'd (LBA)
    /dev/sda5 * 6673 11908 42058138+ 83 Linux
    /dev/sda6 11909 12161 2032191 82 Linux swap / Solaris
    Disk /dev/sdb: 60.0 GB, 60011642880 bytes
    64 heads, 32 sectors/track, 57231 cylinders
    Units = cylinders of 2048 * 512 = 1048576 bytes
    Disk /dev/sdb doesn't contain a valid partition table
    Manufacturer disk geometry: Heads: 16; Cylinders: 16383; Sectors: 63; Logical Blocks (LBA): 117210240
    TestDisk found only Linux partitions with 43Gb while disk had only one 60Gb partitioned with FAT32/NTFS.
    Also recognized 64 heads, 57231 cylinders and 32 sectors (same as from fdisk -l), which obviously differs from manufacturer disk geometry.
    testdisk.log:
    Thu Sep 17 19:09:26 2009
    Command line: TestDisk
    TestDisk 6.8, Data Recovery Utility, August 2007
    Christophe GRENIER
    Linux version (ext2fs lib: 1.40.2, ntfs lib: 9:0:0, reiserfs lib: 0.3.1-rc8, ewf lib: none)
    Using locale 'C'.
    Hard disk list
    Disk /dev/sda - 100 GB / 93 GiB - CHS 12161 255 63, sector size=512
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57231 64 32, sector size=512
    Disk /dev/sdb - 60 GB / 55 GiB
    Partition table type: Intel
    Interface Advanced
    New options :
    Dump : No
    Cylinder boundary : Yes
    Allow partial last cylinder : No
    Expert mode : No
    Analyse Disk /dev/sdb - 60 GB / 55 GiB - CHS 57231 64 32
    Current partition structure:
    Partition sector doesn't have the endmark 0xAA55
    Ask the user for vista mode
    Computes LBA from CHS for Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Allow partial last cylinder : Yes
    search_vista_part: 1
    search_part()
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Search for partition aborted
    Results
    interface_write()
    No partition found or selected for recovery
    search_part()
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Search for partition aborted
    Results
    interface_write()
    No partition found or selected for recovery
    simulate write!
    write_mbr_i386: starting...
    Store new MBR code
    write_all_log_i386: starting...
    No extended partition
    Analyse Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Current partition structure:
    Partition sector doesn't have the endmark 0xAA55
    Ask the user for vista mode
    Allow partial last cylinder : Yes
    search_vista_part: 1
    search_part()
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Results
    interface_write()
    No partition found or selected for recovery
    search_part()
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    NTFS at 8956/63/32
    heads/cylinder 255 (NTFS) != 64 (HD)
    sect/track 63 (NTFS) != 32 (HD)
    filesystem size 24579387
    sectors_per_cluster 8
    mft_lcn 1024141
    mftmirr_lcn 1650676
    clusters_per_mft_record -10
    clusters_per_index_record 1
    NTFS part_offset=9392094720, part_size=12584646144, sector_size=512
    NTFS partition cannot be added (part_offset<part_size).
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 34129 1 1 75201 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=69896224, size=84116272, end=154012495, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 34632 2 1 75704 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=70926400, size=84116272, end=155042671, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 34668 0 1 75740 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=71000064, size=84116272, end=155116335, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 34673 1 1 75745 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=71010336, size=84116272, end=155126607, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 34699 2 1 75771 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=71063616, size=84116272, end=155179887, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 34708 2 1 75780 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=71082048, size=84116272, end=155198319, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 36338 0 1 77410 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=74420224, size=84116272, end=158536495, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 36367 0 1 77439 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=74479616, size=84116272, end=158595887, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 36401 2 1 77473 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=74549312, size=84116272, end=158665583, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 36414 2 1 77486 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=74575936, size=84116272, end=158692207, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 37949 1 1 79021 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=77719584, size=84116272, end=161835855, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 37955 1 1 79027 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=77731872, size=84116272, end=161848143, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 37989 1 1 79061 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=77801504, size=84116272, end=161917775, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 38404 0 1 79476 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=78651392, size=84116272, end=162767663, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 39636 2 1 80708 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=81174592, size=84116272, end=165290863, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 41263 1 1 82335 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=84506656, size=84116272, end=168622927, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 41266 1 1 82338 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=84512800, size=84116272, end=168629071, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 41660 0 1 82732 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=85319680, size=84116272, end=169435951, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 42898 0 1 83970 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=87855104, size=84116272, end=171971375, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 43244 1 1 84316 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=88563744, size=84116272, end=172680015, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 44870 2 1 85942 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=91893824, size=84116272, end=176010095, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 44930 2 1 86002 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=92016704, size=84116272, end=176132975, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 46961 0 1 88033 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=96176128, size=84116272, end=180292399, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 47312 0 1 88384 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=96894976, size=84116272, end=181011247, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 48393 2 1 89465 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=99108928, size=84116272, end=183225199, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 49633 2 1 90705 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=101648448, size=84116272, end=185764719, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 50767 1 1 91839 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=103970848, size=84116272, end=188087119, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 51150 1 1 92222 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=104755232, size=84116272, end=188871503, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 51941 1 1 93013 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=106375200, size=84116272, end=190491471, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 52759 0 1 93831 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=108050432, size=84116272, end=192166703, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 53069 1 1 94141 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=108685344, size=84116272, end=192801615, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 53768 0 1 94840 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=110116864, size=84116272, end=194233135, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 54287 0 1 95359 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=111179776, size=84116272, end=195296047, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 54493 2 1 95565 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=111601728, size=84116272, end=195717999, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 54861 1 1 95933 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=112355360, size=84116272, end=196471631, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 54890 2 1 95962 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=112414784, size=84116272, end=196531055, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 54953 2 1 96025 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=112543808, size=84116272, end=196660079, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 56330 1 1 97402 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=115363872, size=84116272, end=199480143, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 56334 0 1 97406 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=115372032, size=84116272, end=199488303, disk end=117211136)
    recover_EXT2: s_block_group_nr=0/320, s_mnt_count=31/34, s_blocks_per_group=32768
    recover_EXT2: boot_sector=0, s_blocksize=4096
    recover_EXT2: s_blocks_count 10514534
    recover_EXT2: part_size 84116272
    D Linux 57203 0 1 98275 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    This partition ends after the disk limits. (start=117151744, size=84116272, end=201268015, disk end=117211136)
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Check the harddisk size: HD jumpers settings, BIOS detection...
    The harddisk (60 GB / 55 GiB) seems too small! (< 103 GB / 95 GiB)
    The following partitions can't be recovered:
    D Linux 34129 1 1 75201 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 34632 2 1 75704 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 34668 0 1 75740 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 34673 1 1 75745 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 34699 2 1 75771 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 34708 2 1 75780 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 36338 0 1 77410 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 36367 0 1 77439 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 36401 2 1 77473 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 36414 2 1 77486 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 37949 1 1 79021 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 37955 1 1 79027 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 37989 1 1 79061 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 38404 0 1 79476 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 39636 2 1 80708 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 41263 1 1 82335 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 41266 1 1 82338 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 41660 0 1 82732 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 42898 0 1 83970 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 43244 1 1 84316 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 44870 2 1 85942 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 44930 2 1 86002 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 46961 0 1 88033 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 47312 0 1 88384 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 48393 2 1 89465 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 49633 2 1 90705 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 50767 1 1 91839 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 51150 1 1 92222 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 51941 1 1 93013 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 52759 0 1 93831 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 53069 1 1 94141 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 53768 0 1 94840 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 54287 0 1 95359 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 54493 2 1 95565 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 54861 1 1 95933 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 54890 2 1 95962 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 54953 2 1 96025 27 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 56330 1 1 97402 26 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 56334 0 1 97406 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    D Linux 57203 0 1 98275 25 16 84116272
    EXT3 Large file Sparse superblock Recover, 43 GB / 40 GiB
    Results
    interface_write()
    No partition found or selected for recovery
    simulate write!
    write_mbr_i386: starting...
    Store new MBR code
    write_all_log_i386: starting...
    No extended partition
    Interface Advanced
    Disk /dev/sdb - 60 GB / 55 GiB
    Partition table type: Intel
    Disk /dev/sdb - 60 GB / 55 GiB
    Partition table type: Intel
    New options :
    Dump : No
    Cylinder boundary : Yes
    Allow partial last cylinder : No
    Expert mode : No
    New options :
    Dump : No
    Cylinder boundary : Yes
    Allow partial last cylinder : No
    Expert mode : No
    Analyse Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Current partition structure:
    Partition sector doesn't have the endmark 0xAA55
    Ask the user for vista mode
    Allow partial last cylinder : No
    search_vista_part: 0
    search_part()
    Disk /dev/sdb - 60 GB / 55 GiB - CHS 57232 64 32
    Search for partition aborted
    Results
    Can't open backup.log file: No such file or directory
    interface_load
    interface_write()
    No partition found or selected for recovery
    simulate write!
    write_mbr_i386: starting...
    Store new MBR code
    write_all_log_i386: starting...
    No extended partition
    TestDisk exited normally.
    fixdisktable first output:
    % ./fixdisktable -d /dev/sdb
    Getting hard disk geometry
    cylinders=57231, heads=64, sectors=32
    end_offset: 2147482624
    FfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSs
    EXT2 partition at offset 56832, length=(41072.398 MB) 43067531264
    Sectors: start= 111, end= 84116382, length= 84116272
    Hd,Sec,Cyl: start(3,16,0) end(28,31,41072)
    Done searching for partitions.
    Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID
    1 80 3 16 0 63 32 1023 111 84116273 83 (Interpretted)
    1 80 3 16 0 63 224 255 111 84116273 83 (RAW)
    1: 8003 1000 833f e0ff 6f00 0000 3183 0305
    2: 0000 0000 0000 0000 0000 0000 0000 0000
    3: 0000 0000 0000 0000 0000 0000 0000 0000
    4: 0000 0000 0000 0000 0000 0000 0000 0000
    Do you wish to write this partition table to disk (yes/no)? no
    fixdisktable second output:
    % ./fixdisktable -d -r -v /dev/sdb
    Getting hard disk geometry
    cylinders=57231, heads=64, sectors=32
    end_offset: 2147482624
    FfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSsNnBbUuFfEeSs
    NTFS partition at offset 17483776, length=(17592186043512.582 MB) 184467440727622 49216
    Sectors: start= 34148, end=36028797017147916, length=36028797017113768
    Hd,Sec,Cyl: start(43,5,16) end(16,12,2096265)
    Done searching for partitions.
    Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID
    1 80 43 5 16 63 32 1023 34148 -1850199 07 (Interpretted)
    1 80 43 5 16 63 224 255 34148 -1850199 07 (RAW)
    1: 802b 0510 073f e0ff 6485 0000 a9c4 e3ff
    2: 0000 0000 0000 0000 0000 0000 0000 0000
    3: 0000 0000 0000 0000 0000 0000 0000 0000
    4: 0000 0000 0000 0000 0000 0000 0000 0000
    Do you wish to write this partition table to disk (yes/no)? no
    This string "FfEeSsNnBbUu" was repeating there for longer time and it was most probably related to debugging or a verbose mode of fixdisktable
    As I have mentioned I will try to connect the disk directly to the computer and see what will happen.
    Shall I try to correct the disk geometry to the one specified by manufacturer? Is it possible?
    Any suggestions?

  • My iMac does not recognize or see an external drive.

    Ref.: External USB M-DISC DVD+-RW CD RW Burner Writer Drive For Apple MacBook Air Pro iMac
    made by YunSen Tech.
    My iMac, Mac (27-inch, Late 2013), I bought in August 2014. Its SN is: C02MT0YWF8J4/OS X Yosemite. Version 10.10.1
    Could you please help me with the installation of the reference external drive. Supplier gives instruction for Windows only. When I follow the window instruction  on my iMac, the system does not recognize or see the drive. When I use Apple>About this Mac>System Reports>Hardware>USB, I think the following info describes the Drive, is it?:
    External:
      Product ID: 0x0840
      Vendor ID: 0x13fd  (Initio Corporation)
      Version: 1.14
      Serial Number: 313037383530384C31312020
      Speed: Up to 480 Mb/sec
      Manufacturer: Generic
      Location ID: 0x14500000 / 1
      Current Available (mA): 500
      Current Required (mA): 2
    I would greatly appreciate some help.
    Thank you in advance.

    The problem is NOT the fact that it is a USB 3.0 drive, as USB 3.0 is backwards compatible with USB 2.0. The problem is specific to Toshiba Canvio portable drives. They only work if you use a micro-USB2 cable instead of the included USB 3.0 cable. This problem does NOT affect other USB 3.0 portable drives (Seagate, Western Digital, etc.), and they work fine with USB 3.0 cables.
    Once again, you need a micro-USB2 cable for the Toshiba to mount.

  • How can I upgrade iPhoto from 8.1.2 but without upgrading OSX from 10.6.8?

    I have an iMac ca. 2008 vintage which is currently running OSX 10.6.8. Due to various problems I had to do a restore and everything worked OK afterwards except iPhoto (v. 8.1.2.). When I try to launch it I get the error message "iPhoto cannot be opened because of a problem" - Error log below.
    As I understand it I cannot reinstall the original version of IPhoto that came ready loaded on the iMac. On the App Store the only version of iPhoto available requires Yosemite and I don't want to upgrade to that.
    Any advice?
    Process:         iPhoto [447]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-4240000~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [104]
    Date/Time:       2015-01-03 17:36:58.711 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          690571 sec
    Crashes Since Last Report:           13
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      8FE359CD-0F74-45E2-BE7F-98ECD39BBDF5
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.45f0
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000342ASQ, 931.51 GB
    Serial ATA Device: PIONEER DVD-RW  DVRTS08
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000 / 3
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x24300000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0x24330000 / 5
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0221, 0x24320000 / 4
    USB Device: USB 2.0 Drive, 0x13fd  (Initio Corporation), 0x1840, 0x26200000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    Not sure why you "understand" that you can not reinstall the original version - you can reinstall from the original source
    Could be
    1 - the restore disks that came with the computer - if it came with CDs and you do not know where they are then contact Apple to see if they can be replaced
    or
    2 - the iLife DVD that you purchased
    or
    3 - the app store - log in under the Apple id used to purchase the software or to set up the computer - look under purchases - you might have to unhide or accept the Application first
    But the error looks like you may need to reinstall the OS as you are missing sme required system elements
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: image not found
    LN

  • Another Re-install OS9

    I post this as a new topic as I don't want to frustrate helpful replies to Jeff Dean who posted a similar problem on the 19th November, as my intent is in a slightly different direction.
    I have two PBs. The Aluminium has an ability to run Classic but not to boot into OS9. This one, Titanium, had ability to run classic and boot into OS9 as the original installation. Recently like Jeff Dean I have lost OS 9 from the Titanium first noticing it per a broken OS9application item in the main HD list under OSX.
    Easy Find cant find any OS9 system files and there is no OS9 boot option in system preferences under OSX.
    I note the problem Jeff is having even with the helpful advice coming. Like him I use OS9 less and less but would like to have the boot facility.
    I have lots of applications and registrations and internet settings and such so if I do try to 'restore' OS 9 and a boot facility, intend to wait till I feel like a spring clean, as one of Jeffrey's helpers does as a routine, though I don't view it so rather as a tedious grind.
    I did post on this item before but am confused by the various options in Apple's advice and the previous help only offered a prospect for Classic, not a boot facility.
    I basically got four disks with the PB concerned:
    OSX Install (actually 10.1), OS 9 Install (9.2.1, Software Restore 1 and 2 (restoring 10.1 and 9.2.1)
    Question;
    Should I use the restore disks or the Install disks after a erase with zeros to get a bootable OS9 and an OSX. I would the update the OS9 to 9.2.2 from the site?
    On updating the OSX can I jump versions by installing ab initio from my Tiger retail disk or do I need to start with the original disks to get OS 9 safely in it's own partition if that is where it lives? I assume that if I do need to start out so, I can go straight from 10.1 to Tiger using said Tiger retail disk. Can I?
    If I do use the install disks that came with the PB which OS should I install first?

    Hi Robert,
    When you go to the system prefereneces on you ti-book does it have an OS9 option icon?
    I suspect that you upgraded to Tiger and didn't install 9.
    Pop in that system 9 disk and install it.
    you can install 9.1 onto the ti-book without worrying about a partition. Then the system preferences will give you the option to boot in 9 if you want, and the same os9 system will function as classic.
    Don't make it too hard!
    luck
    rf

Maybe you are looking for

  • ITunes Media on external drive and moved to new PC laptop

    Environment: Dell PC laptop, Window 7 32-bit, iTunes 12.1.1.4 I have all of my iTunes Media on an external hard-disk drive. I want to keep it on that drive. I have a new laptop and have connected the external drive to it. I have installed iTunes on t

  • Regarding total number of rows in query analyzer

    Dear all, I have one query. when i execute the query using analyzer i get upto 65000 rows only in excel file. We have 2007 excel format and it has row-capacity more than that.  From report i should get around 80000 rows. Is there any setting to exten

  • Runtime exception for application with pdf in webdynpro

    hi, I have a web dynpro project with pdf, I dont get any build error or any deployment exception but when i run that i get following exception, com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code:

  • No new tab will open in Firefox-not ctrl t, not in the file menu, not on the plus sign on the open tab

    I use Firefox 3.6 on a windows xp sp 3 desktop. I cannot open a new tab in Firefox. I uninstalled the program, reinstalled the newest update, 3.6.1.4 still nothing. Not in the file menu, on the plus sign on the open tab, control T, none of it opens a

  • Fusion for two Mac users

    Our MacBook Pro is set up for 2 users. Wife is primary user & is Administrator. Husband has his own password and preferences. Husband installed Fusion when logged on under his password. Wife goes to use Fusion when logged in to her side and Fusion wa