Getting application path when launching a Jar

Hi,
very simple
how do you get the application path when launching a jar file?
NNiol

Unless you mean the standard application folder. That application path is an OS specific concept. On Windows systems, for example, you can get the application path by using System.getenv("ProgramFiles"); but that won't work on other systems.
If you're looking for a constant location to store data files, you'd do better to create an application-specific directory under System.getProperty("user.home");.
And if you're just looking for the place where your jar file is, you can successfully follow the previously given advice.
--DNP                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • How to get the path when i select a directory or a file in a JTree

    How to get the path when i select a directory or a file in a JTree

    import java.lang.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.awt.HeadlessException;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Iterator;
    * @author Frederic FOURGEOT
    * @version 1.0
    public class JTreeFolder extends JPanel {
    protected DefaultMutableTreeNode racine;
    JTree tree;
    protected JScrollPane scrollpane;
    final static int MAX_LEVEL = 1; // niveau max de descente "direct" dans l'arborescence
    * Sous-classe FSNode
    * @author Frederic FOURGEOT
    * @version 1.0
    private class FSNode extends DefaultMutableTreeNode {
    File file; // contient le fichier li� au noeud
    * Constructeur non visible
    private FSNode() {
    super();
    * Constructeur par initialisation
    * @param userObject Object
    FSNode(Object userObject) {
    super(userObject);
    * Constructeur par initialisation
    * @param userObject Object
    * @param newFile File
    FSNode(Object userObject, File newFile) {
    super(userObject);
    file = newFile;
    * Definit le fichier lie au noeud
    * @param newFile File
    public void setFile(File newFile) {
    file = newFile;
    * Renvoi le fichier lie au noeud
    * @return File
    public File getFile() {
    return file;
    public JTree getJTree(){
         return tree ;
    * Constructeur
    * @throws HeadlessException
    public JTreeFolder() throws HeadlessException {
    File[] drive;
    tree = new JTree();
    // cr�ation du noeud sup�rieur
    racine = new DefaultMutableTreeNode("Poste de travail");
    // cr�ation d'un noeud pour chaque lecteur
    drive = File.listRoots();
    for (int i = 0 ; i < drive.length ; i++) {
    FSNode node = new FSNode(drive, drive[i]);
    addFolder(drive[i], node); // on descend dans l'arborescence du lecteur jusqu'� MAX_LEVEL
    racine.add(node);
    // Gestion d'evenement sur JTree (on �coute les evenements TreeExpansion)
    tree.addTreeExpansionListener(new TreeExpansionListener() {
    public void treeExpanded(TreeExpansionEvent e) {
    // lorsqu'un noeud est ouvert
    // on descend dans l'arborescence du noeud jusqu'� MAX_LEVEL
    TreePath path = e.getPath();
    FSNode node = (FSNode)path.getLastPathComponent();
    addFolder(node);
    ((DefaultTreeModel)tree.getModel()).reload(node); // on recharche uniquement le noeud
    public void treeCollapsed(TreeExpansionEvent e) {
    // lorsqu'un noeud est referm�
    //RIEN
    // alimentation du JTree
    DefaultTreeModel model = new DefaultTreeModel(racine);
    tree.setModel(model);
         setLayout(null);
    // ajout du JTree au formulaire
    tree.setBounds(0, 0, 240, 290);
    scrollpane = new JScrollPane(tree);
         add(scrollpane);
         scrollpane.setBounds(0, 0, 240, 290);
    * Recuperation des sous-elements d'un repertoire
    * @param driveOrDir
    * @param node
    public void addFolder(File driveOrDir, DefaultMutableTreeNode node) {
    setCursor(new Cursor(3)); // WAIT_CURSOR est DEPRECATED
    addFolder(driveOrDir, node, 0);
    setCursor(new Cursor(0)); // DEFAULT_CURSOR est DEPRECATED
    * Recuperation des sous-elements d'un repertoire
    * (avec niveau pour r�cursivit� et arr�t sur MAX_LEVEL)
    * @param driveOrDir File
    * @param node DefaultMutableTreeNode
    * @param level int
    private void addFolder(File driveOrDir, DefaultMutableTreeNode node, int level) {
    File[] fileList;
    fileList = driveOrDir.listFiles();
    if (fileList != null) {
    sortFiles(fileList); // on tri les elements
    // on ne cherche pas plus loin que le niveau maximal d�finit
    if (level > MAX_LEVEL - 1) {return;}
    // pour chaque �l�ment
    try {
    for (int i = 0; i < fileList.length; i++) {
    // en fonction du type d'�l�ment
    if (fileList[i].isDirectory()) {
    // si c'est un r�pertoire on cr�� un nouveau noeud
    FSNode dir = new FSNode(fileList[i].getName(), fileList[i]);
    node.add(dir);
    // on recherche les �l�ments (r�cursivit�)
    addFolder(fileList[i], dir, ++level);
    if (fileList[i].isFile()) {
    // si c'est un fichier on ajoute l'�l�ment au noeud
    node.add(new FSNode(fileList[i].getName(), fileList[i]));
    catch (NullPointerException e) {
    // rien
    * Recuperation des sous-elements d'un noeud
    * @param node
    public void addFolder(FSNode node) {
    setCursor(new Cursor(3)); // WAIT_CURSOR est DEPRECATED
    for (int i = 0 ; i < node.getChildCount() ; i++) {
    addFolder(((FSNode)node.getChildAt(i)).getFile(), (FSNode)node.getChildAt(i));
    setCursor(new Cursor(0)); // DEFAULT_CURSOR est DEPRECATED
    * Tri une liste de fichier
    * @param listFile
    public void sortFiles(File[] listFile) {
    triRapide(listFile, 0, listFile.length - 1);
    * QuickSort : Partition
    * @param listFile
    * @param deb
    * @param fin
    * @return
    private int partition(File[] listFile, int deb, int fin) {
    int compt = deb;
    File pivot = listFile[deb];
    int i = deb - 1;
    int j = fin + 1;
    while (true) {
    do {
    j--;
    } while (listFile[j].getName().compareToIgnoreCase(pivot.getName()) > 0);
    do {
    i++;
    } while (listFile[i].getName().compareToIgnoreCase(pivot.getName()) < 0);
    if (i < j) {
    echanger(listFile, i, j);
    } else {
    return j;
    * Tri rapide : quick sort
    * @param listFile
    * @param deb
    * @param fin
    private void triRapide(File[] listFile, int deb, int fin) {
    if (deb < fin) {
    int positionPivot = partition(listFile, deb, fin);
    triRapide(listFile, deb, positionPivot);
    triRapide(listFile, positionPivot + 1, fin);
    * QuickSort : echanger
    * @param listFile
    * @param posa
    * @param posb
    private void echanger(File[] listFile, int posa, int posb) {
    File tmpFile = listFile[posa];
    listFile[posa] = listFile[posb];
    listFile[posb] = tmpFile;

  • HT203242 I get this error when launching itunes "the registry settings used by the itunes drivers for importing and burning CDs and DVDs are missing." I ahve reinstalled iTunes multiple times but the issue remains.....any suggestions?

    I get this error when launching itunes "the registry settings used by the itunes drivers for importing and burning CDs and DVDs are missing." I ahve reinstalled iTunes multiple times but the issue remains.....any suggestions?

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • Set Default "Save As" Path When Launching

    Hello,
    Is it possible to pass command-line arguments to Reader (and what are the options)? I cannot seem to find documentation on this.
    Specifically, I would like to open a document, in Reader, from an external process, with the 'Save As' option pointing to a folder different that the one the document resides in. The document resides in a temporary folder. If the user wishes to save it to disk using "Save As", it defaults to the external process' temp folder. Users tend to just want to save it there, and it gets cleaned up when by the external application. This makes my users grumpy.
    Thus, if I could launch the process with an argument that points the working directory to something other than the directory the document resides in, that would be cool.
    Thanks.

    How to set the default "Save As" path in Acrobat?
    You may try the forum for Adobe Acrobat.

  • Application Error when launching Bridge (CS3)

    I get this message when trying to launch Bridge - either from within an application, or by itself:
    'The exception unknown software exceptoin (0x000000d) occurred in the application at location 0x006866a3.
    Click on OK to terminate the program
    Click on CANCEL to debug the program
    What does this mean, and how to fix?

    Not a techie, but did it work before, or was this just installed? If a new install may have to uninstall and reinstall.
    Other problems I have seen recently is conflicts with Photo Elements 4 and Quicktime.

  • How to get application path in java bean

    hi all,
    We will be using <%= application.getRealPath("/") %> for getting the application path in jsp. is there any similar way to find the path using a bean. Please do help....
    thanx
    Message was edited by:
    end

    I try to use application.getRealPath("/") in my .java file, but gets an error "application can't be resolved". Do you need to include any library in order to use "application.getRealPath("/")"?
    Thank you.

  • How to get Application path? Urgent!!!!

    Hai!
    I have developed one application in Swing. I want take application path in that application. How can I get? Anybody pls help to me.
    Thanks in advance
    Joseph

    You can try this code to get all properties:
    Properties props = System.getProperties();
    Enumeration enum = props.propertyNames();
    while(enum.hasMoreElements()){
         String name = (String)enum.nextElement();
         System.out.println("Prop Name: " + name + "\tValue: " + props.getProperty(name));
    }And to find more about printing you can check this URL:
    http://java.sun.com/j2se/1.4/docs/guide/jps/spec/jpsOverview.fm.html

  • Get Application Path

    Dear All,
    In my Application, i want to save a File where the Application is installed.
    How the get  the Path of the Application ?
     Thanks,
    Ritesh
    Solved!
    Go to Solution.

    Use the Current VI's path function in your main VI. Please read this document.

  • How to get complete path when uploading a file in Mozzila

    Hi
    I was trying to upload a file using html code
    <input type="file" name="cdrfile">
    then I wrote
    <% = request.getParameter("cdrfile")%>
    trying to get the path and the file name. But Mozilla doesn't return me the complete path only the file name. Does anyone know how to get the complete path in Mozilla?
    Cheers
    M

    Deliberate double post:
    http://forum.java.sun.com/thread.jspa?threadID=5147786&messageID=9551206#9551206

  • Error code -43 - unable to get file path when burning DVD

    I just installed Tiger on my son's iMac 500. Borrowed a Lacie DVD r/w and tried to burn the contents of a user folder to a DVD-R. It burned part of it, but failed with the following error:
    The operation can not be completed because one or more
    required items an not be found. (Error coed -43).
    Could not open the dat fork of "<unable to get file path>" (-43).
    I was able to burn a CD on the drive, but that was for another user directory that fit on a CD-R. The folder I was trying to burn to the DVD was about 1.1 G.
    Thanks,
    Alfredo

    I just installed Tiger on my son's iMac 500. Borrowed a Lacie DVD r/w and tried to burn the contents of a user folder to a DVD-R. It burned part of it, but failed with the following error:
    The operation can not be completed because one or more
    required items an not be found. (Error coed -43).
    Could not open the dat fork of "<unable to get file path>" (-43).
    I was able to burn a CD on the drive, but that was for another user directory that fit on a CD-R. The folder I was trying to burn to the DVD was about 1.1 G.
    Thanks,
    Alfredo

  • I keep getting jre application error when launching a online live class

    Need help with fixing this problem.

    Refer to the JDK Installation Instructions. The error is discussed at the end. (The JRE Installation Instructions says refer to the JDK instructions for troubleshooting.)

  • Error obtained when launching executable jar in Mac - Jar works in Windows

    Hi,
    I have a problem using my executable jar in mac. When I run the application(executable jar) from Windows OS, it works perfectly.
    But when I try to launch the application from Mac, I get the following error
    apples-imac:CreateJar apple$ java -jar TreeTable.jar
    Unable to load sqlite: java.lang.
    UnsatisfiedLinkError: no sqlite_jni in java.library.path
    I use the db sqlite.jar
    I had the same error when I executed the application in Windows
    E:\Personal\1>java -jar TreeTable.jar
    Unable to load sqlite: java.lang.UnsatisfiedLinkError: no sqlite_jni in java.library.path
    But, when I used sqlite_jni.dll, it solved the problem.
    Can you kindly help me by saying what need to be done, so that this error does not come anymore in mac.
    Any help in this regard will be well appreciated with dukes.
    Regards,
    Rony

    Install sqlite correctly on the Mac. It is looking for sqlite_jni.so on the java.library.path and not finding it.

  • Get error message when launching iTunes

    Hi I have a problem with iTunes it's probaly my own fault but i hope someone in here know what i possibnly could do. I succesfully installed iTunes and used it for about two hours, then the electricity shut down in the house while iTunes was running. When i tried to start my PC again and launched iTunes i got an error message from windows, askin me if I wanted to send them a report of the problem.
    i tried to uninstall iTunes and install it again, didnt work. I tried to clean my computer as good as icould clean registry run scan disc and so on, and then install it again no help didnt work.
    Do you know what i possibly could do?
    :: Kasper Sørensen

    let's keep pushing our luck with the Windows troubleshooting techniques ... so far this is proceeding just like a standard PC troubleshoot ...
    okay, that's the result that suggests that you've got a problem with the itunes preferences files in your usual XP User Account. there's a different set of preference files in each XP user account, which is why we can get this "crash in one account, launch in another" behavior.
    if you've got damaged preference files, we can usually get past this by rebuilding the preference files in the usual account.
    quit itunes. log out of the new account and back into the usual account.
    find and delete the following two files:
    C:\Documents and Settings\<username>\Application Data\Apple Computer\iTunes\iTunes.pref
    and
    C:\Documents and Settings\<username>\Local Settings\Application Data\Apple Computer\iTunes\iTunes.pref
    (“<username>” here will be the name of the account you’re having difficulties with.)
    You might have to turn on "show hidden files" to find them. (Right click "my computer", select open, select Tools menu -> Folder Options. Select View tab, "show hidden files" radio button is in the center scrolling panel.) these will be rebuilt the next time you try to launch itunes in your usual user account.
    (the itunes setup assistant will run, you'll be asked to agree to the license again, and so forth.)
    after the setup assistant has finished, does itunes finish launching without the crash?

  • Multiple applications crashing when launched?

    Hi im on a MBP 13" i believe from mid 2010?  Anyways i was using it today as normal, and then all of a sudden the computer froze and I had to Reboot.  Upon reboot i realized that A) Safari would open and freeze instantly (Same with Appstore) and B) iTunes would crash as soon as i opened it.  A few other programs crashed as well.  Have done a bit of reading on these issues but havent been able to find a fix yet.  I am running 10.6.6 and am just downloading 10.6.8 to see if it helps. 
    Any tips on fixing this would be great, as I am constantly using my laptop for work and music.
    Thanks.

    Heres a crash report from when i try to open iTunes.
    Process:         iTunes [248]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.5 (10.5)
    Build Info:      iTunes-10509941~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [181]
    Date/Time:       2011-11-07 11:50:45.337 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          354 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  36 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      4952B78B-7A03-45F5-AE9A-2C56E0D82BAD
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  7
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFDictionary length]: unrecognized selector sent to instance 0x1b98b570'
    *** Call stack at first throw:
        0   CoreFoundation                      0x902926ca __raiseError + 410
        1   libobjc.A.dylib                     0x915175a9 objc_exception_throw + 56
        2   CoreFoundation                      0x902df90b -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
        3   CoreFoundation                      0x90238c36 ___forwarding___ + 950
        4   CoreFoundation                      0x90238802 _CF_forwarding_prep_0 + 50
        5   CoreFoundation                      0x901c6df5 CFStringGetLength + 69
        6   CFNetwork                           0x918c4da1 _ZL23stringIsHTTPHeaderCleanPK10__CFString + 70
        7   CFNetwork                           0x918c4929 CFHTTPCookieCreateWithProperties + 305
        8   CFNetwork                           0x918c471f _ZN13MemoryCookies28mutableCookiesForCookieDictsEPK9__CFArray + 147
        9   CFNetwork                           0x918c4662 _ZN13MemoryCookies23parseOldStyleCookieDataEPK9__CFArray + 30
        10  CFNetwork                           0x918c457e _ZN13MemoryCookies15inflateFromDataEPK8__CFData + 148
        11  CFNetwork                           0x918c40e0 _ZN17DiskCookieStorage17syncStorageLockedEh + 474
        12  CFNetwork                           0x918c3ed3 _ZN17DiskCookieStorage23copyDomainCookiesLockedEPK10__CFStringh + 41
        13  CFNetwork                           0x918c3e93 _ZN24PrivateHTTPCookieStorage17copyDomainCookiesEPK10__CFStringh + 55
        14  CFNetwork                           0x918c3d14 _ZN17HTTPCookieStorage20lookupAndCopyCookiesEPK10__CFStringS2_hP9__CFArray + 62
        15  CFNetwork                           0x918c3930 _ZN17HTTPCookieStorage17copyCookiesForURLEPK7__CFURLh + 232
        16  iTunes                              0x0014ddd0 0x0 + 1367504
        17  iTunes                              0x0014dd41 0x0 + 1367361
        18  iTunes                              0x0014dc3e 0x0 + 1367102
        19  iTunes                              0x006a6046 0x0 + 6971462
        20  iTunes                              0x006a6313 0x0 + 6972179
        21  iTunes                              0x0014d525 0x0 + 1365285
        22  iTunes                              0x0014c348 0x0 + 1360712
        23  iTunes                              0x006a7f7a 0x0 + 6979450
        24  iTunes                              0x0014b80f 0x0 + 1357839
        25  iTunes                              0x0014b316 0x0 + 1356566
        26  iTunes                              0x0013de21 0x0 + 1302049
        27  libSystem.B.dylib                   0x90d86259 _pthread_start + 345
        28  libSystem.B.dylib                   0x90d860de thread_start + 34
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.iTunes                  0x0014b2db 0x1000 + 1352411
    3   com.apple.iTunes                  0x0005495b 0x1000 + 342363
    4   com.apple.iTunes                  0x0014b255 0x1000 + 1352277
    5   com.apple.iTunes                  0x0013ca6a 0x1000 + 1292906
    6   com.apple.iTunes                  0x0013c939 0x1000 + 1292601
    7   com.apple.Foundation              0x995e7e53 _nsnote_callback + 176
    8   com.apple.CoreFoundation          0x90219793 __CFXNotificationPost + 947
    9   com.apple.CoreFoundation          0x9021919a _CFXNotificationPostNotification + 186
    10  com.apple.Foundation              0x995dccf0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    11  com.apple.Foundation              0x995ea0fd -[NSNotificationCenter postNotificationName:object:] + 56
    12  com.apple.AppKit                  0x91b5b216 -[NSApplication _postDidFinishNotification] + 125
    13  com.apple.AppKit                  0x91b5b126 -[NSApplication _sendFinishLaunchingNotification] + 74
    14  com.apple.AppKit                  0x91b2b8ec _DPSNextEvent + 1702
    15  com.apple.AppKit                  0x91b2add6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    16  com.apple.AppKit                  0x91aed1f3 -[NSApplication run] + 821
    17  com.apple.iTunes                  0x00004c5e 0x1000 + 15454
    18  com.apple.iTunes                  0x00004ac9 0x1000 + 15049
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x90d7f382 kevent + 10
    1   libSystem.B.dylib                 0x90d7fa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x90d7ef59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x90d7ecfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x90d7e781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x90d7e5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x90d7e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x90d7e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x90d7e5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.CoreFoundation          0x901fb30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x901fa3f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x90200334 CFRunLoopRun + 84
    5   com.apple.iTunes                  0x0000b3e0 0x1000 + 41952
    6   com.apple.iTunes                  0x008368f9 0x1000 + 8607993
    7   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    8   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x90d86aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x90d8675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x90d883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                  0x0000b5bb 0x1000 + 42427
    4   com.apple.iTunes                  0x00021b57 0x1000 + 133975
    5   com.apple.iTunes                  0x008368f9 0x1000 + 8607993
    6   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    7   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.CoreFoundation          0x901fb30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x901fa3f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x90200334 CFRunLoopRun + 84
    5   com.apple.iTunes                  0x0003fc4c 0x1000 + 257100
    6   com.apple.iTunes                  0x008368f9 0x1000 + 8607993
    7   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    8   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x90d7e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x90d7e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x90d7e5c6 start_wqthread + 30
    Thread 7 Crashed:
    0   com.apple.CoreFoundation          0x902dda37 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                   0x915175a9 objc_exception_throw + 56
    2   com.apple.CoreFoundation          0x902df90b -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   com.apple.CoreFoundation          0x90238c36 ___forwarding___ + 950
    4   com.apple.CoreFoundation          0x90238802 _CF_forwarding_prep_0 + 50
    5   com.apple.CoreFoundation          0x901c6df5 CFStringGetLength + 69
    6   com.apple.CFNetwork               0x918c4da1 stringIsHTTPHeaderClean(__CFString const*) + 70
    7   com.apple.CFNetwork               0x918c4929 CFHTTPCookieCreateWithProperties + 305
    8   com.apple.CFNetwork               0x918c471f MemoryCookies::mutableCookiesForCookieDicts(__CFArray const*) + 147
    9   com.apple.CFNetwork               0x918c4662 MemoryCookies::parseOldStyleCookieData(__CFArray const*) + 30
    10  com.apple.CFNetwork               0x918c457e MemoryCookies::inflateFromData(__CFData const*) + 148
    11  com.apple.CFNetwork               0x918c40e0 DiskCookieStorage::syncStorageLocked(unsigned char) + 474
    12  com.apple.CFNetwork               0x918c3ed3 DiskCookieStorage::copyDomainCookiesLocked(__CFString const*, unsigned char) + 41
    13  com.apple.CFNetwork               0x918c3e93 PrivateHTTPCookieStorage::copyDomainCookies(__CFString const*, unsigned char) + 55
    14  com.apple.CFNetwork               0x918c3d14 HTTPCookieStorage::lookupAndCopyCookies(__CFString const*, __CFString const*, unsigned char, __CFArray*) + 62
    15  com.apple.CFNetwork               0x918c3930 HTTPCookieStorage::copyCookiesForURL(__CFURL const*, unsigned char) + 232
    16  com.apple.iTunes                  0x0014ddd0 0x1000 + 1363408
    17  com.apple.iTunes                  0x0014dd41 0x1000 + 1363265
    18  com.apple.iTunes                  0x0014dc3e 0x1000 + 1363006
    19  com.apple.iTunes                  0x006a6046 0x1000 + 6967366
    20  com.apple.iTunes                  0x006a6313 0x1000 + 6968083
    21  com.apple.iTunes                  0x0014d525 0x1000 + 1361189
    22  com.apple.iTunes                  0x0014c348 0x1000 + 1356616
    23  com.apple.iTunes                  0x006a7f7a 0x1000 + 6975354
    24  com.apple.iTunes                  0x0014b80f 0x1000 + 1353743
    25  com.apple.iTunes                  0x0014b316 0x1000 + 1352470
    26  com.apple.iTunes                  0x0013de21 0x1000 + 1297953
    27  libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    28  libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.iTunes                  0x0013dded 0x1000 + 1297901
    3   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    4   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x90d86aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x90d8675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x90d883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                  0x0000b5bb 0x1000 + 42427
    4   com.apple.iTunes                  0x0000b4d2 0x1000 + 42194
    5   com.apple.iTunes                  0x0000b355 0x1000 + 41813
    6   com.apple.iTunes                  0x0091a377 0x1000 + 9540471
    7   com.apple.iTunes                  0x0091a3a1 0x1000 + 9540513
    8   com.apple.iTunes                  0x008368f9 0x1000 + 8607993
    9   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    10  libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.iTunes                  0x0013dded 0x1000 + 1297901
    3   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    4   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 11:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x90d77ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x9023ac83 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    3   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.CoreFoundation          0x901fb30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x901fa3f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x90200334 CFRunLoopRun + 84
    5   com.apple.iTunes                  0x0000b3e0 0x1000 + 41952
    6   com.apple.iTunes                  0x008368f9 0x1000 + 8607993
    7   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    8   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                 0x90d58b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x90d866e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x90db55a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.iTunes                  0x0005239d 0x1000 + 332701
    4   com.apple.iTunes                  0x00052231 0x1000 + 332337
    5   com.apple.iTunes                  0x000521cd 0x1000 + 332237
    6   com.apple.iTunes                  0x0005204d 0x1000 + 331853
    7   com.apple.iTunes                  0x008368f9 0x1000 + 8607993
    8   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    9   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x90d58afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x90d59267 mach_msg + 68
    2   com.apple.iTunes                  0x0013dded 0x1000 + 1297901
    3   libSystem.B.dylib                 0x90d86259 _pthread_start + 345
    4   libSystem.B.dylib                 0x90d860de thread_start + 34
    Thread 7 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x91517585  ecx: 0xb038d000  edx: 0x0000003b
      edi: 0xa0116ab0  esi: 0x1b9d69d0  ebp: 0xb038c118  esp: 0xb038c100
       ss: 0x0000001f  efl: 0x00000286  eip: 0x902dda37   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x1a0c6000
    Binary Images:
        0x1000 -   0xf84fd7  com.apple.iTunes 10.5 (10.5) <CF368726-AFEA-797C-DB5B-64E35ABB00E7> /Applications/iTunes.app/Contents/MacOS/iTunes
    0x11cb000 -  0x1246fef  com.apple.iTunes.iPodUpdater 10.4 (10.4) <8FAA906B-A61D-912A-E534-29D094FB180A> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x128b000 -  0x12b0ff7  com.apple.avfoundationcf 2.0 (60.1) <2D4DFC71-1195-4549-658B-7295F37AAEC3> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
    0x12d8000 -  0x12ddff7  com.apple.iPod 1.6 (17) <1C363658-799C-351F-52F3-645FB18CCAE3> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x12e3000 -  0x1506ff7 +libgnsdk_dsp.1.9.3.dylib 1.9.3 (compatibility 1.9.3) <F33A74F3-6232-4933-18EB-3F3251CBFFCA> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.3.dylib
    0x1521000 -  0x15ebfe7 +libgnsdk_sdkmanager.1.9.3.dylib 1.9.3 (compatibility 1.9.3) <DFAA35B6-6424-5400-4AE8-30C7121BEEB0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.3.dylib
    0x1602000 -  0x1644fe7 +libgnsdk_submit.1.9.3.dylib 1.9.3 (compatibility 1.9.3) <8B86BE3D-0BD6-853C-53AE-596073375997> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.3.dylib
    0x1649000 -  0x1669fe7 +libgnsdk_musicid.1.9.3.dylib 1.9.3 (compatibility 1.9.3) <E6DBB1B3-0785-5066-02DB-16BC338656FE> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.3.dylib
    0x1676000 -  0x16bbff7  com.apple.CoreMedia.AVCFSupport 1.0 (705.24.4) <FAEC8CE1-BF17-B566-38E3-98E97C2403CE> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/CoreMedia.fr amework/Versions/A/CoreMedia
    0x16da000 -  0x1a45ff3  com.apple.MediaToolbox.AVCFSupport 1.0 (705.24.4) <B801EFCB-07D9-2A94-9E7A-530AD7E892AA> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/MediaToolbox .framework/Versions/A/MediaToolbox
    0x1aaa000 -  0x1deafeb  com.apple.VideoToolbox.AVCFSupport 1.0 (705.24.4) <A4DBF709-3753-2F20-B20D-1D5DB80F3997> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/VideoToolbox .framework/Versions/A/VideoToolbox
    0x13500000 - 0x137ffff7  com.apple.CoreFP 2.0.35 (2.0.35) <C8DA8AA0-1A9F-E808-EED4-626B819ECBDB> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x146b7000 - 0x153f7fe7  com.apple.CoreFP1 1.13.35 (1.13.35) <CDB58308-9549-CABD-19E6-8AEBEA32A98B> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
    0x165aa000 - 0x165abff7  com.apple.textencoding.unicode 2.3 (2.3) <A7D310DB-A5E6-C834-F72F-A66453834CC0> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x16738000 - 0x16790fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x167b4000 - 0x167b7ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x167d8000 - 0x167dcff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x167e1000 - 0x167e7ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x167ec000 - 0x16809ff3 +com.numark.ns7.hal ??? (2.0.2) <A73C3AC5-4A1B-BC91-7FCA-02E231FE7E2D> /Library/Audio/Plug-Ins/HAL/NumarkNS7AudioHAL.plugin/Contents/MacOS/NumarkNS7Au dioHAL
    0x16817000 - 0x16834ffb +com.numark.V7.hal ??? (2.0.3) <2582418D-CE06-69BF-B706-EE402BE8AB46> /Library/Audio/Plug-Ins/HAL/NumarkV7AudioHAL.plugin/Contents/MacOS/NumarkV7Audi oHAL
    0x199ad000 - 0x199e6fef +com.serato.audio.SeratoVirtualAudioPlugIn 1.0.11 (1.0) <62362A3D-4A08-F66A-0766-8F689DB718DF> /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn
    0x19a35000 - 0x19a52ffb +com.ploytec.xonedx.hal ??? (2.0.2) <09D53E8E-2D43-1DAB-A525-A1F3E0EE12F3> /Library/Audio/Plug-Ins/HAL/XONE_DX.plugin/Contents/MacOS/XONE_DX
    0x19a60000 - 0x19aeaff7  com.apple.mobiledevice 503 (503) <17EF060D-A6D6-D658-4DC9-6728FA2450A9> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x19b32000 - 0x19be7fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x19c2d000 - 0x19c53fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <9203FADE-F4F2-2245-A32E-BD88819D314D> /usr/lib/libssl.0.9.7.dylib
    0x19c62000 - 0x19e48fef  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <8DA1B494-CD97-D4CC-3D5D-FACFAAE9D968> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1a058000 - 0x1a05dff7  com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <52EF9BE5-FB13-BCC4-140D-880C271A7B43> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x9003f000 - 0x90061fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90062000 - 0x90066ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90067000 - 0x90075ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x900b7000 - 0x90152fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90153000 - 0x90179ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9017a000 - 0x901bdff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x901be000 - 0x90339fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9033a000 - 0x90b29557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90b2a000 - 0x90b6bff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90b6c000 - 0x90b80ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90bf0000 - 0x90ca0fe3  com.apple.QuickTimeImporters.component 7.6.6 (1783) <E0BF3843-1044-F371-AB6F-423C5E9E417B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90ca1000 - 0x90d02fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d16000 - 0x90d53ff7  com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90d54000 - 0x90d57ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90d58000 - 0x90effff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x90fb3000 - 0x90fb3ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91006000 - 0x910a3fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x910a4000 - 0x910e8ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x910e9000 - 0x910f0ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x910f1000 - 0x91160ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91161000 - 0x911daff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x911db000 - 0x911e6ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x912bb000 - 0x912cbff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x912d4000 - 0x91411fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91412000 - 0x9144cff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x91469000 - 0x91489fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x9148a000 - 0x91493ff7  com.apple.DiskArbitration 2.3 (2.3) <6AA6DDF6-AFC3-BBDB-751A-64AE3580A49E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91509000 - 0x9150cfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9150d000 - 0x915bafe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x915bb000 - 0x915c5fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x915c6000 - 0x915c7ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x915c8000 - 0x915c8ff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x915c9000 - 0x917abfff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x917ac000 - 0x917bcff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x91865000 - 0x9186dff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x918af000 - 0x9195bfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9195c000 - 0x9199aff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9199b000 - 0x919a8ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x919a9000 - 0x919befff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91a0d000 - 0x91a77fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x91a7e000 - 0x91ae2fff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91ae3000 - 0x923c6ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x923c7000 - 0x927ddff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x927de000 - 0x927fffe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92800000 - 0x9280affb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9280b000 - 0x9298dfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x9298e000 - 0x929c6ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x929e0000 - 0x92a57ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92a58000 - 0x930d3ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x930d4000 - 0x9312aff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9312b000 - 0x931d9ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x931da000 - 0x933e1feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x933e2000 - 0x93426fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93427000 - 0x93460fe7  com.apple.bom 10.0 (164) <3BD198F4-56AD-EE1B-2EBD-C7E6868A0D3C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93461000 - 0x93467fff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93474000 - 0x93576fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x93577000 - 0x93579ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9358d000 - 0x935ddff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93611000 - 0x93612ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93613000 - 0x93658ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x937a9000 - 0x937fcff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x937fd000 - 0x93940fef  com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93941000 - 0x93a4dff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93a4e000 - 0x93a52ff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x93a53000 - 0x93ae5fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93b12000 - 0x93bcafeb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93bcb000 - 0x93c08ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93c09000 - 0x93c0cff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x93c0d000 - 0x93c0dff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93c0e000 - 0x93d0ffe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x93d10000 - 0x93d5dfeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93d68000 - 0x93fceff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93fdf000 - 0x93fe4ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93fe5000 - 0x9403dfe7  com.apple.datadetectorscore 2.0 (80.7) <3830B574-3B0B-76DA-390D-702D908A71F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9403e000 - 0x94140fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x94141000 - 0x941d9fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x941da000 - 0x94293fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x94294000 - 0x945b4ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x945b5000 - 0x945c7ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x946c5000 - 0x9470efe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9472e000 - 0x9485bffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9485c000 - 0x9498afe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9498b000 - 0x953deff7  com.apple.WebCore 6533.21 (6533.21.1) <04C66A67-4CF2-5F4B-4EA3-00E67B0F9411> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x953df000 - 0x95703fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95704000 - 0x95735ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95736000 - 0x95741ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9574d000 - 0x9582dfe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9582e000 - 0x95856ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x95858000 - 0x9589aff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9589b000 - 0x95b95fef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95c68000 - 0x95c6fff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95c70000 - 0x95c7bff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95c7c000 - 0x96bceff7  com.apple.QuickTimeComponents.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96bcf000 - 0x96bcfff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96bd0000 - 0x96c9bfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96c9c000 - 0x970d1ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x970d2000 - 0x97118ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x97119000 - 0x9715cff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9715d000 - 0x97198feb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97199000 - 0x971adfe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x971ae000 - 0x971b5ff7  com.apple.aps.framework 1.2 (1.2) <79AFAF6A-319E-C55D-92D8-69284EC663E5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x9727b000 - 0x97296ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97297000 - 0x9729dfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9729e000 - 0x974c9ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x974ca000 - 0x9750aff3  com.apple.securityinterface 4.0.1 (40418) <FED0C1B5-469E-ADFF-308E-C10B6A68AE45> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9750b000 - 0x97517ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x97518000 - 0x97518ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9753b000 - 0x9753cff7  libScreenReader.dylib ??? (???) <E559E38F-FB36-C1C4-B915-D3A4E4354921> /usr/lib/libScreenReader.dylib
    0x9753d000 - 0x978a8ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97a16000 - 0x97b25fe7  com.apple.WebKit 6533.21 (6533.21.1) <87AFEE12-270F-2D84-1B93-81DF1DA47A7F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x97b26000 - 0x97b4aff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97b4b000 - 0x97bb9ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x97eb4000 - 0x97ec1fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <828CCEAB-F193-90F1-F48C-54E3C88B29BC> /usr/lib/libbz2.1.0.dylib
    0x97ec2000 - 0x97f09ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x97f0a000 - 0x97fe7fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97fe8000 - 0x980c2fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x980c3000 - 0x980d0ff7  com.apple.AppleFSCompression 24.4 (1.0) <09E7FA6D-4BE8-5CA6-732F-D70EDF0E3910> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x980e1000 - 0x980e5ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98408000 - 0x9842fff7  com.apple.quartzfilters 1.6.0 (1.6.0) <F45520B0-6B27-CD57-54B1-203FE32120DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x98481000 - 0x98481ff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x98482000 - 0x984dfff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x984e0000 - 0x9859cfff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9859d000 - 0x9859dff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x987f0000 - 0x989eeff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <011E271D-4CA4-FFB0-2EDD-13C31C239899> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x989ef000 - 0x98a97ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x98cb5000 - 0x98cc3fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x98cc4000 - 0x98cc5ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98cc6000 - 0x98cc6ff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98cc7000 - 0x98d42fff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98d43000 - 0x98dc3feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98dc4000 - 0x98dc6ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x98dc7000 - 0x98dd8ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x98dde000 - 0x98fa0feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98fa1000 - 0x98fd4fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98fd5000 - 0x9902ffe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9914c000 - 0x9959dfef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9959e000 - 0x995d1ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x995d2000 - 0x99843fef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99888000 - 0x99d43ff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x99d44000 - 0x99d44ff7  com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99d45000 - 0x99d75ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x99d76000 - 0x99df8ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x99ee8000 - 0x99f07ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x99f08000 - 0x99f82fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99fd5000 - 0x9a00ffe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x9a010000 - 0x9a02cfe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9a02d000 - 0x9a045ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9a046000 - 0x9a049ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f5
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000 / 2

  • Get Error 5 when Launching RoboHelp HTML 9

    I just installed RH9, on a Windows XP (SP3) system, and I'm getting an Error 5 message that simply says uninstall and reinstall when I try to open RoboHelp HTML. I can't open the program.
    I previously had RHx5 which I uninstalled, prior to installing this. I've uninstalled and reinstalled several times with the same result. My system meets the basic system requirements. I have plenty of hard drive space and RAM (3GB). I also just installed the latest RH9.01 update. I can't open RoboHelp for Word either. No error message, it jus doesn't open. FYI, I'm using Word 2007.
    I can't find much on this error in regards to RH9 in the Adobe KB. Any solutions?

    Can you post an image of the error message you are getting and say whether it is the same regardless of whether it is the RH HTML or RH for Word application you are opening. Use the camera icon as shown below.
    The fact that you have installed RoboHelp as part of the TCS shouldn't be an issue. Out of interest, do the other applications that are part of the suite launch OK? One other thing. Did you uninstall RHX5 completely before installing TCS3?
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

Maybe you are looking for

  • Using a Second Display Screen

    When you attach a second screen to your powerbook (in this case an HP 19 inch wide flatscreen), does this add an extra burden on the CPU? Suddenly, I find the CPU is maxed out and applications are stuttering. I'm using GB3 which was always pretty int

  • Creating Interactive PDF

    I am wondering if this can be done.. To create a PDF with small images on it, when a user clicks on the image a larger image appears.  I don't want it to be a hyperlink going to a new page, just for a larger image such as an overlay will appear.  Is

  • Need to repair disk - what do I do????!!!

    I've done a check on the disk utility and it says the following: "Volume Header needs minor repair The volume Apple Hardrive needs to be repaired. Error: The underlying task reported failure on exit 1 HFS volume checked Volume needs repair" However i

  • Need Inspection lot creation at only one storage location level - QA07

    Hi, I have shelf life expired material at different storage location. When ever i run QA07.System generates inspection lot for all storage location.But I want to process the inspection lot for only one storage location. Please guide me how can we map

  • Server upgrade newbie questions

    Hi Everyone! So I work for a small-ish nonprofit and as I am researching information on what my to-be system is, I am running into a lot of questions.  I have tried google-ing them with not much success.  So I am hoping that all of your expertise mig