Need some help killing threads (not in the way already mentioned..)

I have read the ways in which we should safely kill a thread - and for the most part i understand that. But my question is HOW to implement it in the way that I need.
Basically I have a multithreaded (ewww) app that really is a large job scheduler running 24/7. It can run anywhere from 1 to 15 jobs at a given time. This is fine. What i need is to have the ability to 'kill' a job when I need to. When the app daemon decides its time to run a certain job (based on business logic) it kicks one off, which is a class I made that implements Runnable.
public class SchedulerProcessThread extends SOQBase implements Runnable{}
when its time to start a job i do the usual:
SchedulerProcessThread spt = new SchedulerProcessThread(blah);
Thread t = new Thread(spt, "fooname");
t.start();
Now, this comes to my problem of where/how to kill the job (if needed). A SchedulerProcessThread is linear and finite so it will always have a termination point - it never loops. And when one is kicked off - i do not have a reference to it anymore - I mean, I couldnt if i am constantly running new jobs, potentially hundreds every hour. And jobs can be started in various places in the app, depending upon whether others are already running, etc.
I wish to implement the do-while (alive) logic on the job thread. So in the 'run()' method of my SPT class, I would like the:
while (alive) {
doProcessing();
But how can i invoke a method on my class [SPT] so that it changes the alive var from true to false when i do not have a reference to it?
As a side note, I have a command prompt on the app whereby i can call up all the running 'jobs' which is a list of the running threads under a threadgroup called 'soqjob' (all new Threads that are started with a passing param of and SPT object are under the 'soqjob' threadgroup). So now i can see all those 'soqjob' threads which are currently running Thread objects that have been passed new instances of an SPT class.
Is there anyway i can grab the 'soqjob' thread of my choice and somehow access my SPT class that was originally passed to it in the Thread constructor? if so, then I could pass in the command to stop the do-while loop.
Hmm - does any of this make sense? If i can sum up, the problem is i do not know how to access my own SPT class once I have passed it into a thread object and invoked that thread object's 'start()' method. if i can do that, then i can switch the ALIVE var from true to false and thereby kill the SPT job i need.
Any ideas?
Many thanks
Ian

I would add a Collection (synchronized) to the Scheduler that holds a reference to all the Processes. Pass a reference of the Scheduler to the Processes so that when a Process is done, it can remove itself from the Collection.
public class Scheduler {
     private Collection threads;
     public void addProcess() {
          Runnable runnable = new ProcessThread(this);
          Thread thread = new Thread(runnable);
          thread.start();
          threads.add(thread);
     public void removeProcess(ProcessThread thread) {
          threads.remove(thread);
     private Thread getSelectedThread(Component c) {
          //Find Thread in Collection and return it
     private class Action implements ActionListener {
          public void actionPerformed(ActionEvent e) {
               Thread thread = getSelectedThread(e.getSource());
               thread.interrupt();
class ProcessThread extends ... implements Runnable {
     private Scheduler scheduler;
     public ProcessThread(Scheduler s) {
          this.scheduler = s;
     public void run() {
          while (!Thread.interrupted()) {
               try {
                    doProcessing();
                    Thread.yield();     //Give the other Threads a chance to do some work
               } catch (InterruptedException e) {
                    Thread.currentThread().interrupt();
          this.scheduler.removeProcess(this);     //Remove this Thread from the Scheduler's Collection
}Did you consider using the classes java.util.Timer and java.util.TimerTask?

Similar Messages

  • Need some help with threads...

    Hello all,
    I am working on a project at work, and I am not the best programmer in the world. I have been trying to get my head around this for a couple of days and just cannot get it to work.
    I am writing an instrumentation control program that will have three threads. One is the GUI, one will receive control information and set up the hardware, and one will check the hardware status and report it to the GUI periodically. I plan on using the invokeLater() method to communicate the status to the GUI and change the status display in the GUI. Communication from the GUI to the controller thread and from the status thread to the controller thread I had planned on being piped input/output stream as appropriate. I have a control class and a status class that need to be communicated over these piped streams. In some trial code I have been unable to wrap the piped input/output streams with object input/output streams. I really need some help with this. Here is the main thread code:
    package playingwiththreads1;
    import java.io.*;*
    *public class PlayingWithThreads1 {*
    public static void main(String[] args) {*
    * PipedOutputStream outputPipe = new PipedOutputStream();*
    * ObjectOutputStream oos = null;*
    * ReceiverThread rt = new ReceiverThread(outputPipe);*
    // Start the thread -- First try*
    * Thread t = new Thread(rt);*
    t.start();*
    // Wrap the output pipe with an ObjectOutputStream*
    try*
    oos = new ObjectOutputStream(outputPipe);*
    catch (IOException e)*
    System.out.println(e);*
    // Start the thread -- Second try*
    //Thread t = new Thread(rt);*
    //t.start();*
    /** Send an object over the pipe. In reality this object will be a
    class that contains control or status information */
    try
    if (!oos.equals(null))
    oos.writeObject(new String ("Test"));
    catch (IOException e)
    try
    Thread.sleep(5000);
    catch (InterruptedException e)
    I read somewhere that it matters where you start the thread relative to where you wrap piped streams with the object streams. So, I tried the two places I felt were obvious to start the thread. These are noted in the comments. Here is the code for the thread.
    package playingwiththreads1;
    import java.io.*;
    public class ReceiverThread implements Runnable {
    private PipedInputStream inputPipe = new PipedInputStream();
    private ObjectInputStream inputObject;
    ReceiverThread (PipedOutputStream outputPipe)
    System.out.println("Thread initialization - start");
    try
    inputPipe.connect(outputPipe);
    inputObject = new ObjectInputStream(inputPipe);
    catch (IOException e)
    System.out.println(e);
    System.out.println("Thread initialization - complete");
    public void run()
    System.out.println("Thread started");
    try
    if (inputObject.available() > 0)
    System.out.println(inputObject.read());
    catch (IOException e)
    System.out.println(e);
    Through testing I have determined that no matter where I start the thread, the thread never gets past the "inputObject = new ObjectInputStream(inputPipe);" assignment.
    Could someone please help me with this? There are other ways for me to write this program, but this is the one that I would like to make work.
    Many thanks in advance,
    Rob Hix
    Edited by: RobertHix on Oct 6, 2009 3:54 AM

    Thanks for the help, but that did not work. I tried flushing the ObjectOutputStream and it is still hanging when initializing the thread.
    Here is a better look at the code since I was helped to figure out how to insert it:
    The main method:
    package playingwiththreads1;
    import java.io.*;
    public class PlayingWithThreads1 {
        public static void main(String[] args) {
            PipedOutputStream outputPipe = new PipedOutputStream();
            ObjectOutputStream oos = null;
            ReceiverThread rt = new ReceiverThread(outputPipe);
            // Start the thread -- First try
            //Thread t = new Thread(rt);
            //t.start();
            // Wrap the output pipe with an ObjectOutputStream
            try
                oos = new ObjectOutputStream(outputPipe);
                oos.flush();
            catch (IOException e)
                System.out.println(e);
            // Start the thread -- Second try
            Thread t = new Thread(rt);
            t.start();
            /* Send an object over the pipe.  In reality this object will be a
             * class that contains control or status information */
            try
                if (!oos.equals(null))
                    oos.writeObject(new String ("Test"));
                    oos.flush();
            catch (IOException e)
                System.out.pringln(e);
            try
                Thread.sleep(5000);
            catch (InterruptedException e)
    }The thread code:
    package playingwiththreads1;
    import java.io.*;
    public class ReceiverThread implements Runnable {
        private PipedInputStream inputPipe = new PipedInputStream();
        private ObjectInputStream inputObject;
        ReceiverThread (PipedOutputStream outputPipe)
            System.out.println("Thread initialization - start");
            try
                inputPipe.connect(outputPipe);
                inputObject = new ObjectInputStream(inputPipe);
            catch (IOException e)
                System.out.println(e);
            System.out.println("Thread initialization - complete");
        public void run()
            System.out.println("Thread started");
            try
                if (inputObject.available() > 0)
                    System.out.println(inputObject.read());
            catch (IOException e)
                System.out.println(e);
    }Does anyone else have and ideas?

  • Need some help with threads, urgent!!

    Hi I am really new to threads and I cannot figure out why the code below will not work. After my thread goes into a wait, it never wakes up. Can someone please help me? When stepping through the code, I get an invalid stack frame message as well. Thanks in Advance!!!
    Colin
    import java.io.*;
    import java.util.*;
    public class XMLInputCompression extends InputStream implements Runnable
    private InputStream in;
    private ByteArrayOutputStream baos = new ByteArrayOutputStream();
    private boolean closed = false;
    private boolean foundDTD = false;
    private Vector elementsList = new Vector();
    private Vector attributesList = new Vector();
    private BufferedReader br = null;
    private StringTokenizer st = null;
    final static int BUFF_SIZE = 500;
    final static String HEADER = "<?xml version=\"1.0\"?><!DOCTYPE Form SYSTEM ";
    final static char CLOSE_ELEMENT = '>';
    final static String END_ELEMENT = ">";
    final static char START_ELEMENT = '<';
    final static char START_ATTRIBUTE = '[';
    final static String ATTLIST = "<!ATTLIST";
    final String XMLTAG ="<?xml";
    final String ELEMENTTAG = "<!ELEMENT";
    public static void main(String[] args)
         try
    FileInputStream fis = new FileInputStream("c:/Dump.txt");
    XMLInputCompression compress = new XMLInputCompression(fis);
    int r = 0;
    while(r != -1)
    byte b[] = new byte[200];
    r = compress.read(b);
    System.out.println("r is: " + r);
    if( r == -1)
    compress.close();
    }catch(Exception e)
    e.printStackTrace();
    } // end main
    public XMLInputCompression(InputStream is) throws IOException
    this.in = is;
    baos.write(HEADER.getBytes());
    new Thread(this).start();
    public void run()
    try
    Vector elementNames = new Vector();
    //Vector attributeNames = new Vector();
    StringBuffer sb = new StringBuffer(BUFF_SIZE);
    char c = (char)in.read();
    switch (c)
    case START_ELEMENT:
    if (!foundDTD)
    wakeUp(sb.toString().getBytes());
    //populate the elements and atrributes vectors
    FileInputStream fis = new FileInputStream("C:/form.dtd");
    processDTDElements(fis);
    foundDTD = true;
    sb.setLength(0);
    else
    sb.append("<");
    String element = (String)elementsList.get((int)in.read());
    elementNames.addElement(element);
    sb.append(element);
    wakeUp(sb.toString().getBytes());
    //baos.write(sb.toString().getBytes());
    sb.setLength(0);
    break;
    case START_ATTRIBUTE:
    sb.append("[");
    sb.append(attributesList.get((int)in.read()));
    wakeUp(sb.toString().getBytes());
    //baos.write(sb.toString().getBytes());
    sb.setLength(0);
    break;
    case CLOSE_ELEMENT:
    wakeUp(sb.toString().getBytes());
    //baos.write(sb.toString().getBytes());
    sb.setLength(0);
    sb.append(elementNames.get(0));
    elementNames.remove(0);
    sb.append(">");
    break;
    default:
    sb.append(c);
    synchronized (baos)
    baos.notify();
    System.out.println(" in run method*****");
    }catch(Exception e)
    e.printStackTrace();
    } // end run
    private void wakeUp(byte b[])
    System.out.println(" in wakeup method*****");
    synchronized (baos)
    try
    baos.write(b);
    catch(Exception e)
    System.out.println("exception caught");
    e.printStackTrace();
    baos.notify();
    public boolean markSupported()
    return false;
    public int read(byte[] b1, int off, int len) throws IOException
    return readData(b1, off, len);
    public int read() throws IOException
    return readData(null, 0, 1);
    public int read(byte[] b1) throws IOException
    return readData(b1, 0, b1.length);
    private int readData(byte[] b1, int off, int len) throws IOException
    String s = null;
    while(true)
    if (closed && baos.size() == 0)
    return -1;
    int size = baos.size();
    if (baos.size() > 0) // Have at least one byte
    if( b1 == null)
    byte b[] = baos.toByteArray();
    baos.reset();
    baos.write(b, 1, b.length-1); // baos contains all data except b[0]
    return b[0];
    else
    int minLen = Math.min(baos.size(), len);
    //System.out.println(" baos contents are: " + baos.toString());
    byte b[] = baos.toByteArray();
    s = b.toString();
    int length = baos.size() - minLen;
    baos.reset();
    baos.write(b, 0, length );
    System.arraycopy(b, 0, b1, off, minLen);
    return minLen;
    try
    synchronized (baos)
    if (!closed)
    baos.wait();
    catch(java.lang.InterruptedException ie)
    ie.printStackTrace();
    }// end read data
    private boolean hasMoreTokens()
    String s = null;
    try
    if (br != null)
    if (st == null || !st.hasMoreTokens())
    // read in a line, create a st
    s = br.readLine();
    st = new StringTokenizer(s,"\n\r\t ");
    }catch(Exception e)
    e.printStackTrace();
    return st.hasMoreTokens();
    private String nextToken() throws Exception
    String token = null;
    if(st.hasMoreTokens())
    token = st.nextToken();
    }else
    String s = br.readLine();
    st = new StringTokenizer(s,"\n\r\t ");
    token = st.nextToken();
    return token;
    private void processDTDElements(FileInputStream is)
    try
         // get the file desriptor from the input Stream
         FileDescriptor fd = is.getFD();
         // create a new buffered reader
    br = new BufferedReader(new FileReader(fd));
    boolean lookForEndTag=false;
    boolean lookForEndAtt=false;
    while (hasMoreTokens())
    String token = nextToken();
    if (lookForEndTag)
    if (!token.endsWith(END_ELEMENT))
    continue;
    }else
    lookForEndTag = false;
    continue;
    if (token.startsWith(XMLTAG))
    lookForEndTag = true;
    else if (token.startsWith(ELEMENTTAG))
    token = nextToken();
    if ( elementsList.indexOf(token)<0)
    elementsList.addElement(token);
    lookForEndTag = true;
    else if (token.startsWith(ATTLIST))
    String dummy = nextToken(); // discard element name
    do
    token = nextToken();
    if (token.endsWith(">"))
    break;
    if (attributesList.indexOf(token)<0 )
    attributesList.addElement(token);
    token = nextToken();
    if ( token.startsWith("CDATA") || token.startsWith("ID") )
    token = nextToken();
    if (token.equals("#FIXED "))
    token = nextToken();
    lookForEndAtt = token.endsWith(END_ELEMENT);
    else if ( token.startsWith("(") )
    do
    token = nextToken();
    }while ( token.indexOf (")") == -1);
    token = nextToken();
    lookForEndAtt = token.endsWith(END_ELEMENT);
    } while (!lookForEndAtt);
    }//end if
    }//end while
    }catch(Exception e)
    e.printStackTrace();
    }finally
    try
    br.close();
    }catch(Exception e)
    e.printStackTrace();
    }// end process elements
    public void close() throws IOException
    closed = true;
    synchronized(baos)
    baos.notify();
    }// end XMLinputCompression class

    Your problem probably has something to do with where you tell baos (or rather, the thread that it is in) to wait. You have:synchronized (baos)
        if (!closed)
            baos.wait();
    }Which acquires a lock on baos, then tells its own thread to wait without ever relinquishing its lock on baos. So when your main method calls the read method, it hangs immediately when it tries to access baos because it is still locked. So what you're seeing is a basic deadlock condition.
    Really, you're not gaining anything with your multithreading in this case. But that's a different issue.

  • Need some help. safari is not opening. tks

    Process:         Safari [547]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         6.0.5 (8536.30.1)
    Build Info:      WebBrowser-7536030001000000~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [158]
    User ID:         501
    PlugIn Path:       /Library/Rapport/*/librooksbas.dylib
    PlugIn Identifier: librooksbas.dylib
    PlugIn Version:    ??? (1)
    Date/Time:       2013-09-30 20:26:22.800 -0300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Interval Since Last Report:          3991 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  23 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      E319F423-CA1E-51FE-F3B4-A5BE22C2C06B
    Crashed Thread:  12
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000008a8
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x8a8:
    -->
        __TEXT                 0000000107a9f000-0000000107aa0000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff983175f4 search_method_list(method_list_t const*, objc_selector*) + 83
    1   libobjc.A.dylib                         0x00007fff98315342 getMethodNoSuper_nolock(class_t*, objc_selector*) + 49
    2   libobjc.A.dylib                         0x00007fff98306f59 lookUpMethod + 177
    3   libobjc.A.dylib                         0x00007fff983052fc objc_msgSend + 188
    4   libobjc.A.dylib                         0x00007fff98307236 _class_initialize + 310
    5   libobjc.A.dylib                         0x00007fff983070f3 prepareForMethodLookup + 164
    6   libobjc.A.dylib                         0x00007fff98306eef lookUpMethod + 71
    7   libobjc.A.dylib                         0x00007fff983052fc objc_msgSend + 188
    8   com.apple.Safari.framework              0x00007fff95f463ba -[AppController applicationShouldOpenUntitledFile:] + 43
    9   com.apple.AppKit                        0x00007fff93f7bbe0 -[NSApplication _doOpenUntitled] + 398
    10  com.apple.AppKit                        0x00007fff93f7b6cf __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 233
    11  com.apple.AppKit                        0x00007fff942bd6c1 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01437 + 143
    12  com.apple.AppKit                        0x00007fff93f7b17b -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 760
    13  com.apple.AppKit                        0x00007fff93ed46d4 -[NSPersistentUIManager finishedRestoringWindowsWithZOrder:registerAsReady:completionHandler:] + 6759
    14  com.apple.AppKit                        0x00007fff93ec911f -[NSPersistentUIManager restoreAllPersistentStateRegisteringAsReadyWhenDone:completionHandler:] + 597
    15  com.apple.AppKit                        0x00007fff93f79445 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 553
    16  com.apple.AppKit                        0x00007fff93f7904c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    17  com.apple.Foundation                    0x00007fff8fdb607b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    18  com.apple.Foundation                    0x00007fff8fdb5edd _NSAppleEventManagerGenericHandler + 106
    19  com.apple.AE                            0x00007fff9156b078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    20  com.apple.AE                            0x00007fff9156aed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    21  com.apple.AE                            0x00007fff9156ad99 aeProcessAppleEvent + 318
    22  com.apple.HIToolbox                     0x00007fff9959d709 AEProcessAppleEvent + 100
    23  com.apple.AppKit                        0x00007fff93f75836 _DPSNextEvent + 1456
    24  com.apple.AppKit                        0x00007fff93f74df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    25  com.apple.Safari.framework              0x00007fff95f875a2 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 162
    26  com.apple.AppKit                        0x00007fff93f6c1a3 -[NSApplication run] + 517
    27  com.apple.AppKit                        0x00007fff93f10bd6 NSApplicationMain + 869
    28  com.apple.Safari.framework              0x00007fff9615e564 SafariMain + 166
    29  libdyld.dylib                           0x00007fff993877e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff9713c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff98100f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff98100ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff980eb191 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff9713cd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff926c3dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff926c39ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff9713c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff98100f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff98100ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff980eb191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff9713c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff98100f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff98100ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff980eb191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff9713a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97139c42 mach_msg + 70
    2   RapportUtil1.dylib                      0x0000000149540977 exception_handler::exception_messages_handler(void*) + 167
    3   libsystem_c.dylib                       0x00007fff980fe772 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff980eb1a1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff9713a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97139c42 mach_msg + 70
    2   libsystem_kernel.dylib                  0x00007fff9713a50c mach_msg_server + 552
    3   RapportDaishi.dylib                     0x000000014938de13 mig_rpc_server::server_working_thread(void*) + 67
    4   libsystem_c.dylib                       0x00007fff980fe772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff980eb1a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff9713c386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff981887c8 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff981886df usleep + 54
    3   RapportUtil1.dylib                      0x0000000149489008 bp_heartbeat_thread + 376
    4   libsystem_c.dylib                       0x00007fff980fe772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff980eb1a1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff9713c386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff981887c8 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff981886df usleep + 54
    3   RapportDaishi.dylib                     0x00000001493839d0 active_monitor_finish_thread(void*) + 160
    4   libsystem_c.dylib                       0x00007fff980fe772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff980eb1a1 thread_start + 13
    Thread 9:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff9713c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff98102fb9 _pthread_cond_wait + 869
    2   com.apple.WebCore                       0x00007fff9058b17b WebCore::IconDatabase::syncThreadMainLoop() + 107
    3   com.apple.WebCore                       0x00007fff90588c94 WebCore::IconDatabase::iconDatabaseSyncThread() + 500
    4   com.apple.JavaScriptCore                0x00007fff9691525f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff980fe772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff980eb1a1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff9713c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff98100f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff98100ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff980eb191 start_wqthread + 13
    Thread 11:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff9713a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97139c42 mach_msg + 70
    2   com.apple.QuartzCore                    0x00007fff96b8017b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x00007fff96c04dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x00007fff980fe772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff980eb1a1 thread_start + 13
    Thread 12 Crashed:
    0   libsystem_c.dylib                       0x00007fff981053f8 pthread_setspecific + 88
    1   librooksbas.dylib                       0x000000014918bba1 function_hook::hook_queue_enter(function_hook*, void*) + 177
    2   ???                                     0x00007fd9c0c50954 0 + 140573218769236
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000016  rbx: 0x00007fd9c0c55400  rcx: 0x0000000000000000  rdx: 0x00007fff7e55faa0
      rdi: 0x0000000000000109  rsi: 0x00007fd9c0c55400  rbp: 0x000000014917cf04  rsp: 0x000000014917cf04
       r8: 0x000000000000000c   r9: 0x000000014917c8a4  r10: 0x00007fff9713a5de  r11: 0x0000000000000001
      r12: 0x00007fd9c0c50900  r13: 0x000000014986a696  r14: 0x0000000000000000  r15: 0x000000014917f000
      rip: 0x00007fff981053f8  rfl: 0x0000000000010202  cr2: 0x00000000000008a8
    Logical CPU: 0
    Binary Images:
           0x107a9f000 -        0x107a9ffff  com.apple.Safari (6.0.5 - 8536.30.1) <7E1AB8E9-8D8B-3A43-8E63-7C92529C507F> /Applications/Safari.app/Contents/MacOS/Safari
           0x149182000 -        0x1491c1ff7 +librooksbas.dylib (1) <B3743AFA-0BC1-9243-6879-AA77576C0D50> /Library/Rapport/*/librooksbas.dylib
           0x149362000 -        0x14936eff7 +librooksmce.dylib (1) <AB0BF4B1-2464-F6F0-F006-2C1ACE38BBFD> /Library/Rapport/*/librooksmce.dylib
           0x14937c000 -        0x1493a3fff +RapportDaishi.dylib (1) <631BEA9A-2368-3625-A911-C1E71B1F3431> /Library/Rapport/*/RapportDaishi.dylib
           0x1493bf000 -        0x149431fef +trf.dylib (1) <A33B3BE5-3A45-8CC0-D69F-422681CBFD68> /Library/Rapport/*/trf.dylib
           0x149470000 -        0x149720fef +RapportUtil1.dylib (1) <4D156040-9B60-FB3A-99DC-E9D9A0020585> /Library/Rapport/*/RapportUtil1.dylib
        0x7fff6769f000 -     0x7fff676d393f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8d5a9000 -     0x7fff8d5a9ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8d5d2000 -     0x7fff8d84dff7  com.apple.RawCamera.bundle (4.09 - 711) <0040632D-09A9-32DE-98E8-BFA99F9F6526> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8d8ac000 -     0x7fff8d8c2fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8d8c3000 -     0x7fff8d8f1fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d8f2000 -     0x7fff8d94eff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d94f000 -     0x7fff8daeafef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8db7b000 -     0x7fff8db7bfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8db7c000 -     0x7fff8dbfdfff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8dc1a000 -     0x7fff8dc1afff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8dc1b000 -     0x7fff8dc26ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8dd94000 -     0x7fff8dd94fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8dda1000 -     0x7fff8dda3fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8dda4000 -     0x7fff8de12ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8de6d000 -     0x7fff8ded0fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8dfed000 -     0x7fff8e047ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8e048000 -     0x7fff8e073fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8e074000 -     0x7fff8e075ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8e076000 -     0x7fff8e0c7ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8e0c8000 -     0x7fff8e253fff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8e51b000 -     0x7fff8e577fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8e578000 -     0x7fff8e579ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8e57a000 -     0x7fff8e59bff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8e64f000 -     0x7fff8e69eff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8e6e3000 -     0x7fff8e6eefff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8e6ef000 -     0x7fff8e729ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8ed0d000 -     0x7fff8ed39ff7  libRIP.A.dylib (333.1) <CC2A33EB-409C-3C4D-97D4-41F4A080F874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8ed3a000 -     0x7fff8ed4dff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8eda9000 -     0x7fff8edabfff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8f06f000 -     0x7fff8f096ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8f1bc000 -     0x7fff8f1c1fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8f1c2000 -     0x7fff8f1c2fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8f1c3000 -     0x7fff8f1c9ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8f1cd000 -     0x7fff8f1dbfff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8f1dc000 -     0x7fff8f206ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f209000 -     0x7fff8f2ceff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8f2cf000 -     0x7fff8f2d1ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8f372000 -     0x7fff8f3c1ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8f3c2000 -     0x7fff8fd52627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8fd53000 -     0x7fff900b2fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9020d000 -     0x7fff9022fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff90230000 -     0x7fff9024fff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff90500000 -     0x7fff90528fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff90575000 -     0x7fff9057afff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff90584000 -     0x7fff91543ff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff91544000 -     0x7fff91561ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff91562000 -     0x7fff915c1fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff915c2000 -     0x7fff915c6ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff9164a000 -     0x7fff9187fff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91880000 -     0x7fff918d6fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff918d7000 -     0x7fff91ac3ff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff91b78000 -     0x7fff91b79fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff91c34000 -     0x7fff91c35ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff91c36000 -     0x7fff91edaff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff91fca000 -     0x7fff9201fff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9217f000 -     0x7fff9223cff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff9223d000 -     0x7fff92554ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff92555000 -     0x7fff92594ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff92601000 -     0x7fff92602ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff92603000 -     0x7fff92681ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff92682000 -     0x7fff926a3fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff926b0000 -     0x7fff926beff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff926bf000 -     0x7fff926d4ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff926e2000 -     0x7fff926e6fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff92747000 -     0x7fff92747fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9274f000 -     0x7fff92753fff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff92754000 -     0x7fff92773ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92774000 -     0x7fff92812ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff92813000 -     0x7fff92965fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92966000 -     0x7fff92968fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff92969000 -     0x7fff92975fff  libCSync.A.dylib (333.1) <319D3E83-8086-3990-8773-872F2E7C6EB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff929c5000 -     0x7fff929d7ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff929d8000 -     0x7fff929dcfff  libCGXType.A.dylib (333.1) <16625094-813E-39F8-9AFE-C1A24ED11749> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff929dd000 -     0x7fff92a45fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff92a5e000 -     0x7fff92a64fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff92a9f000 -     0x7fff92ab5fff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff92d89000 -     0x7fff92d98ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff92d99000 -     0x7fff92ddcff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff92ddd000 -     0x7fff92de0fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff92de1000 -     0x7fff92e03ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff92e04000 -     0x7fff92e91ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff9307f000 -     0x7fff93083ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff934c1000 -     0x7fff93636ff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff93672000 -     0x7fff936ccfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff93705000 -     0x7fff9373dfff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff9373e000 -     0x7fff93755fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff938bf000 -     0x7fff938d2ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff938d3000 -     0x7fff93979ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff9397a000 -     0x7fff939c4ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff93a13000 -     0x7fff93b10fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff93d5a000 -     0x7fff93d7afff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff93d7b000 -     0x7fff93dfdff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff93dfe000 -     0x7fff93e0dfff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff93e20000 -     0x7fff94a4dfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94de7000 -     0x7fff94fe7fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff94ff6000 -     0x7fff950a7fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff9530e000 -     0x7fff95311fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff95312000 -     0x7fff95355ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff954f6000 -     0x7fff954fafff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff95547000 -     0x7fff9554bfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff9554c000 -     0x7fff95551fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff956ad000 -     0x7fff95787fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff957bb000 -     0x7fff95bd8fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff95d14000 -     0x7fff95d51fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff95d52000 -     0x7fff95d5cff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff95d5d000 -     0x7fff95d8bff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff95d8c000 -     0x7fff95d8cfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff95d92000 -     0x7fff95dc8fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff95dc9000 -     0x7fff95de0fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff95de1000 -     0x7fff95e38ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff95f2b000 -     0x7fff95f39ff7  libkxld.dylib (2050.48.11) <6D1610C7-79F8-38A5-BFB2-F58F134BC8EA> /usr/lib/system/libkxld.dylib
        0x7fff95f3a000 -     0x7fff96441ff7  com.apple.Safari.framework (8536 - 8536.30.1) <5C62034A-BAA0-32BB-84C2-2559389B72C4> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff96447000 -     0x7fff96454ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9649f000 -     0x7fff964a6fff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff96536000 -     0x7fff9664ffff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff96650000 -     0x7fff966b9fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff966ba000 -     0x7fff966bafff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff966d6000 -     0x7fff96971ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff96983000 -     0x7fff96983fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff96984000 -     0x7fff9698cfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff9698d000 -     0x7fff9698fff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff96a07000 -     0x7fff96a09fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff96a0a000 -     0x7fff96a14fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff96aaa000 -     0x7fff96ab3ff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff96ab5000 -     0x7fff96ac2fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff96ac3000 -     0x7fff96c71fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff96c72000 -     0x7fff96d74fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff96d75000 -     0x7fff96de2ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff96de3000 -     0x7fff96e2fff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff96ec1000 -     0x7fff96ec1fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff96ec2000 -     0x7fff96ed9fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff96eda000 -     0x7fff96facff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff96fad000 -     0x7fff96fb4fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff97104000 -     0x7fff97129ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff9712a000 -     0x7fff97145ff7  libsystem_kernel.dylib (2050.48.11) <3323E9AD-2317-3C7A-AB7F-1C81F5E148B7> /usr/lib/system/libsystem_kernel.dylib
        0x7fff97146000 -     0x7fff97151ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff97152000 -     0x7fff9715efff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff9716a000 -     0x7fff9728afff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff972db000 -     0x7fff97461fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff97462000 -     0x7fff9748efff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9748f000 -     0x7fff97584fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff975c1000 -     0x7fff979b8fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff979b9000 -     0x7fff979bafff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff979bb000 -     0x7fff979effff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff979f0000 -     0x7fff97a2cfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff97a2d000 -     0x7fff97a79fff  com.apple.framework.CoreWLAN (3.4 - 340.18) <BCFA14A9-728C-371A-936E-2EDF2EC2F40F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff97a7a000 -     0x7fff97a81fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff97a82000 -     0x7fff97b02ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff97b03000 -     0x7fff97dd4ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff97dd5000 -     0x7fff97e24fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff980ea000 -     0x7fff981b6ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff981b7000 -     0x7fff98252fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff982bb000 -     0x7fff982c8fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff982c9000 -     0x7fff982cafff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff982d0000 -     0x7fff982d6fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff982d7000 -     0x7fff982fefff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff982ff000 -     0x7fff9841792f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff98418000 -     0x7fff98419fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
        0x7fff98428000 -     0x7fff984c2fff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff9852a000 -     0x7fff9855bff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff9855c000 -     0x7fff98567fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff985b0000 -     0x7fff9879aff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff991c0000 -     0x7fff99228ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff9922a000 -     0x7fff99327ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff99328000 -     0x7fff99336fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff99337000 -     0x7fff9934bfff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff99385000 -     0x7fff99388ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff99389000 -     0x7fff99494fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff99495000 -     0x7fff9949dff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff9949e000 -     0x7fff994d4fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff99533000 -     0x7fff99863fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff99a4f000 -     0x7fff99a64fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff99a76000 -     0x7fff99abafff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff99ad6000 -     0x7fff99ad8fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 8
        thread_create: 2
        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: 498
        thread_create: 20
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=180.1M resident=145.7M(81%) swapped_out_or_unallocated=34.4M(19%)
    Writable regions: Total=1.1G written=2652K(0%) resident=20.7M(2%) swapped_out=0K(0%) unallocated=1.0G(98%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                     188K
    CG shared images                     1184K
    CoreServices                         1420K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    MALLOC                               23.1M
    MALLOC guard page                      48K
    Mach message                            8K
    Memory tag=240                          4K
    Memory tag=242                         12K
    SQLite page cache                     288K
    STACK GUARD                          56.0M
    Stack                                13.6M
    VM_ALLOCATE                          16.1M
    __DATA                               14.5M
    __IMAGE                               528K
    __LINKEDIT                           53.6M
    __TEXT                              126.5M
    __UNICODE                             544K
    mapped file                          43.3M
    shared memory                         308K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      351.3M
    Model: Macmini4,1, BootROM MM41.0042.B03, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.65f2
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    USB Device: MacBook Air SuperDrive, apple_vendor_id, 0x1500, 0x26400000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0x06630000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x06500000 / 2

    thanks, but did not work...
    Process:         Safari [279]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         6.0.5 (8536.30.1)
    Build Info:      WebBrowser-7536030001000000~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [164]
    User ID:         501
    Date/Time:       2013-09-30 22:07:54.636 -0300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Interval Since Last Report:          9513 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  377 sec
    Per-App Crashes Since Last Report:   19
    Anonymous UUID:                      E319F423-CA1E-51FE-F3B4-A5BE22C2C06B
    Crashed Thread:  8
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000000000006c
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x6c:
    -->
        __TEXT                 00000001059f9000-00000001059fa000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000010b1fe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010b1fdc42 mach_msg + 70
    2   liblaunch.dylib                         0x000000010b03867e 0x10b035000 + 13950
    3   liblaunch.dylib                         0x000000010b03764c bootstrap_register2 + 43
    4   com.apple.CoreFoundation                0x0000000107c5a35d __CFMessagePortCreateLocal + 1149
    5   com.apple.CoreFoundation                0x0000000107c59ecb CFMessagePortCreatePerProcessLocal + 27
    6   com.apple.HIServices                    0x000000010cabca93 InitializeDragIPC + 71
    7   com.apple.HIServices                    0x000000010cabca42 CoreDragRegisterClientInModes + 25
    8   com.apple.AppKit                        0x0000000108863417 coreDragRegisterIfNeeded + 67
    9   com.apple.AppKit                        0x000000010886329c -[NSCoreDragManager registerDragTypes:forWindow:] + 190
    10  com.apple.AppKit                        0x0000000108863013 -[NSWindow(NSDrag) _registerDragTypes:] + 288
    11  com.apple.CoreFoundation                0x0000000107c2f417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    12  com.apple.CoreFoundation                0x0000000107c2f381 __CFRunLoopDoObservers + 369
    13  com.apple.CoreFoundation                0x0000000107c0a7b8 __CFRunLoopRun + 728
    14  com.apple.CoreFoundation                0x0000000107c0a0e2 CFRunLoopRunSpecific + 290
    15  com.apple.HIToolbox                     0x000000010a40ceb4 RunCurrentEventLoopInMode + 209
    16  com.apple.HIToolbox                     0x000000010a40cb94 ReceiveNextEventCommon + 166
    17  com.apple.HIToolbox                     0x000000010a40cae3 BlockUntilNextEventMatchingListInMode + 62
    18  com.apple.AppKit                        0x0000000108789533 _DPSNextEvent + 685
    19  com.apple.AppKit                        0x0000000108788df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    20  com.apple.Safari.framework              0x0000000105a4a5a2 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 162
    21  com.apple.AppKit                        0x00000001089d3659 -[NSApplication _realDoModalLoop:peek:] + 485
    22  com.apple.AppKit                        0x00000001089d391e -[NSApplication runModalForWindow:] + 120
    23  com.apple.AppKit                        0x00000001089c6384 -[NSAlert runModal] + 159
    24  com.apple.AppKit                        0x00000001086dce24 __54-[NSPersistentUIManager promptToIgnorePersistentState]_block_invoke_0 + 1082
    25  com.apple.AppKit                        0x00000001086dc99f -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    26  com.apple.AppKit                        0x00000001086dc93e -[NSPersistentUIManager promptToIgnorePersistentState] + 196
    27  com.apple.AppKit                        0x000000010878d606 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 194
    28  com.apple.AppKit                        0x000000010878d445 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 553
    29  com.apple.AppKit                        0x000000010878d04c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    30  com.apple.Foundation                    0x0000000107f8907b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    31  com.apple.Foundation                    0x0000000107f88edd _NSAppleEventManagerGenericHandler + 106
    32  com.apple.AE                            0x000000010baaf078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    33  com.apple.AE                            0x000000010baaeed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    34  com.apple.AE                            0x000000010baaed99 aeProcessAppleEvent + 318
    35  com.apple.HIToolbox                     0x000000010a417709 AEProcessAppleEvent + 100
    36  com.apple.AppKit                        0x0000000108789836 _DPSNextEvent + 1456
    37  com.apple.AppKit                        0x0000000108788df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38  com.apple.Safari.framework              0x0000000105a4a5a2 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 162
    39  com.apple.AppKit                        0x00000001087801a3 -[NSApplication run] + 517
    40  com.apple.AppKit                        0x0000000108724bd6 NSApplicationMain + 869
    41  com.apple.Safari.framework              0x0000000105c21564 SafariMain + 166
    42  libdyld.dylib                           0x000000010b0227e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x000000010b2006d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010b08cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010b08cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x000000010b077191 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010b200d16 kevent + 10
    1   libdispatch.dylib                       0x000000010afebdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x000000010afeb9ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010b2006d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010b08cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010b08cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x000000010b077191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000010b2006d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010b08cf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010b08cce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x000000010b077191 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x000000010b2000fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x000000010b08efb9 _pthread_cond_wait + 869
    2   com.apple.WebCore                       0x000000010ed6217b WebCore::IconDatabase::syncThreadMainLoop() + 107
    3   com.apple.WebCore                       0x000000010ed5fc94 WebCore::IconDatabase::iconDatabaseSyncThread() + 500
    4   com.apple.JavaScriptCore                0x000000010668925f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x000000010b08a772 _pthread_start + 327
    6   libsystem_c.dylib                       0x000000010b0771a1 thread_start + 13
    Thread 6:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x000000010b1fe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010b1fdc42 mach_msg + 70
    2   com.apple.QuartzCore                    0x0000000106c9517b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x0000000106d19dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x000000010b08a772 _pthread_start + 327
    5   libsystem_c.dylib                       0x000000010b0771a1 thread_start + 13
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x000000010b200386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x000000010b1147c8 nanosleep + 163
    2   libsystem_c.dylib                       0x000000010b1146df usleep + 54
    3   com.apple.AppKit                        0x000000010896e838 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x0000000107fbc562 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x000000010b08a772 _pthread_start + 327
    6   libsystem_c.dylib                       0x000000010b0771a1 thread_start + 13
    Thread 8 Crashed:
    0   libicucore.A.dylib                      0x00000001068ae174 icu::CollationKey::compareTo(icu::CollationKey const&) const + 16
    1   ???                                     0x00000deadbea7dad 0 + 15302363086253
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000054  rcx: 0x0000000106e3e000  rdx: 0x0000000000000054
      rdi: 0x0000000106e3e000  rsi: 0x0000000106bd5000  rbp: 0x0000000106e3fff4  rsp: 0x0000000106e3ff7c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000106bd5000
      rip: 0x00000001068ae174  rfl: 0x0000000000010206  cr2: 0x000000000000006c
    Logical CPU: 0
    Binary Images:
           0x1059f9000 -        0x1059f9fff  com.apple.Safari (6.0.5 - 8536.30.1) <7E1AB8E9-8D8B-3A43-8E63-7C92529C507F> /Applications/Safari.app/Contents/MacOS/Safari
           0x1059fd000 -        0x105f04ff7  com.apple.Safari.framework (8536 - 8536.30.1) <5C62034A-BAA0-32BB-84C2-2559389B72C4> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
           0x10626a000 -        0x10626bff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
           0x106279000 -        0x10628ffff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
           0x1062a5000 -        0x1062a6fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
           0x1062b2000 -        0x1062defff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x1062f1000 -        0x1062f1fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x1062fb000 -        0x1062fbfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x1062ff000 -        0x10635bfff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x10638f000 -        0x10639bfff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x1063ac000 -        0x10641aff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10644a000 -        0x1066e5ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x106796000 -        0x106996fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x106a38000 -        0x106b35fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x106b4e000 -        0x106b86fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
           0x106b9d000 -        0x106bacff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
           0x106bbb000 -        0x106bcafff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x106bd8000 -        0x106d86fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x106e42000 -        0x107113ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10724b000 -        0x1072c9ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10730c000 -        0x107340fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x107371000 -        0x1073c2ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x1073f5000 -        0x107580fff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x107675000 -        0x107861ff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x1079d4000 -        0x107a3cff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
           0x107a98000 -        0x107bb092f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x107bd0000 -        0x107bd0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x107bd5000 -        0x107dbfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x107f1f000 -        0x107f1ffff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x107f26000 -        0x108285fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x1084ad000 -        0x1084aefff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x1084b6000 -        0x1085cffff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x108634000 -        0x109261fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10995c000 -        0x109ad1ff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x109b91000 -        0x109ba3ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x109bae000 -        0x109bb0fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
           0x109bb9000 -        0x109bc3ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
           0x109bcf000 -        0x109c12ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x109c4c000 -        0x109d9efff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x109e2f000 -        0x109e2fffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x109e38000 -        0x10a06dff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10a171000 -        0x10a1deff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10a218000 -        0x10a338fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10a3ad000 -        0x10a6ddfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10a838000 -        0x10a842fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10a853000 -        0x10a89fff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x10a8bb000 -        0x10a9b8ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
           0x10a9f2000 -        0x10aab7ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10ab2f000 -        0x10ab92fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10abb9000 -        0x10abbffff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10abc9000 -        0x10abcafff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x10abce000 -        0x10abe4fff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10abf4000 -        0x10ac1bff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ac3b000 -        0x10ac52fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10ac63000 -        0x10ad35ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10ad9a000 -        0x10ae74fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10aefa000 -        0x10af1bff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
           0x10af28000 -        0x10af2cff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x10af36000 -        0x10af5bff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x10af92000 -        0x10af97fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x10afa1000 -        0x10afaffff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x10afc2000 -        0x10afc7fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x10afd4000 -        0x10afdbfff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x10afe7000 -        0x10affcff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x10b014000 -        0x10b015ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x10b020000 -        0x10b023ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x10b02e000 -        0x10b02efff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x10b035000 -        0x10b03dfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x10b045000 -        0x10b04bfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x10b057000 -        0x10b059fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x10b063000 -        0x10b064ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x10b06b000 -        0x10b06cfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x10b076000 -        0x10b142ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
           0x10b18c000 -        0x10b194ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x10b19c000 -        0x10b1d2fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
           0x10b1ee000 -        0x10b209ff7  libsystem_kernel.dylib (2050.48.11) <3323E9AD-2317-3C7A-AB7F-1C81F5E148B7> /usr/lib/system/libsystem_kernel.dylib
           0x10b21f000 -        0x10b24dff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
           0x10b258000 -        0x10b266ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
           0x10b27a000 -        0x10b285fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x10b28e000 -        0x10b28fff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x10b294000 -        0x10b296ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
           0x10b2a1000 -        0x10b2a7ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x10b2b2000 -        0x10b2d4ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x10b2ec000 -        0x10b33bff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x10b34c000 -        0x10b3b5fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x10b41c000 -        0x10b42fff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x10b43a000 -        0x10b43efff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x10b443000 -        0x10b443fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x10b447000 -        0x10b454fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x10b45f000 -        0x10b776ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10b7f1000 -        0x10b872fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10b8ca000 -        0x10b970ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10b9d4000 -        0x10ba61ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10baa6000 -        0x10bb05fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10bb31000 -        0x10bbe2fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10bc35000 -        0x10bc66ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10bc8e000 -        0x10bc95fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10bc9f000 -        0x10bcadff7  libkxld.dylib (2050.48.11) <6D1610C7-79F8-38A5-BFB2-F58F134BC8EA> /usr/lib/system/libkxld.dylib
           0x10bcb6000 -        0x10bcc3ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10bcd0000 -        0x10bce7fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10bd08000 -        0x10bd33fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x10bd47000 -        0x10bd6efff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10bd8c000 -        0x10be2aff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10be62000 -        0x10c7f2627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10c8fb000 -        0x10c97bff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10c9ae000 -        0x10ca6bff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10cab3000 -        0x10cb09fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10cb3c000 -        0x10cb4fff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10cb60000 -        0x10cbbafff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10cbe9000 -        0x10cc28ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10cc43000 -        0x10cc57fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10cc70000 -        0x10cc74fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10cc81000 -        0x10cc81fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10cc88000 -        0x10cd93fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10cdfc000 -        0x10ce4bff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10ce79000 -        0x10d014fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10d03c000 -        0x10d03cfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10d044000 -        0x10d0acfff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10d0bb000 -        0x10d155fff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10d167000 -        0x10d55efff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10d5c5000 -        0x10d74bfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10d77c000 -        0x10d7a4fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10d7b3000 -        0x10d808ff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10d815000 -        0x10d835fff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10d841000 -        0x10d845fff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10d84f000 -        0x10d951fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10d97d000 -        0x10d980fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x10d988000 -        0x10d9ccfff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
           0x10d9df000 -        0x10da01ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10da1b000 -        0x10da55ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10da74000 -        0x10da93ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
           0x10daa0000 -        0x10db95fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
           0x10dba6000 -        0x10dc28ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10dc54000 -        0x10dc56fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10dc5d000 -        0x10dc62fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10dc6e000 -        0x10dc79fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10dc86000 -        0x10dcc9ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10dce2000 -        0x10dd0cff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10dd28000 -        0x10dfccff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10e0b4000 -        0x10e10bff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10e131000 -        0x10e17bff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10e18b000 -        0x10e192fff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10e198000 -        0x10e1affff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10e1c8000 -        0x10e205fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10e20f000 -        0x10e211fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10e21b000 -        0x10e21ffff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10e228000 -        0x10e282ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10e29e000 -        0x10e6bbfff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x10e8d3000 -        0x10e8e0fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10e8ef000 -        0x10e910fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10e925000 -        0x10e930ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10e93f000 -        0x10e95eff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10e96e000 -        0x10e96efff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x10e974000 -        0x10e97dff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x10e98b000 -        0x10ea26fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10ea45000 -        0x10eaa1ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10eae7000 -        0x10eb1dfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10eb41000 -        0x10eb8dfff  com.apple.framework.CoreWLAN (3.4 - 340.18) <BCFA14A9-728C-371A-936E-2EDF2EC2F40F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x10ebba000 -        0x10ec09fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x10ec43000 -        0x10ec47ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x10ec52000 -        0x10ec55fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x10ec61000 -        0x10ec76fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x10ec93000 -        0x10ecb0ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x10ecc9000 -        0x10eccbff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x10ecd6000 -        0x10ecd8fff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x10ece1000 -        0x10ed1dfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
           0x10ed42000 -        0x10ed4dff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
           0x10ed5b000 -        0x10fd1aff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x111ce8000 -        0x111d16fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x111d7a000 -        0x111d88fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
           0x111da0000 -        0x111dacfff  libCSync.A.dylib (333.1) <319D3E83-8086-3990-8773-872F2E7C6EB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
           0x11277c000 -        0x1129f7ff7  com.apple.RawCamera.bundle (4.09 - 711) <0040632D-09A9-32DE-98E8-BFA99F9F6526> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x112caa000 -        0x112cd6ff7  libRIP.A.dylib (333.1) <CC2A33EB-409C-3C4D-97D4-41F4A080F874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x112ce5000 -        0x112ce9fff  libCGXType.A.dylib (333.1) <16625094-813E-39F8-9AFE-C1A24ED11749> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff655f9000 -     0x7fff6562d93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 1
        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: 151
        thread_create: 2
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=159.0M resident=94.9M(60%) swapped_out_or_unallocated=64.0M(40%)
    Writable regions: Total=1.1G written=11.0M(1%) resident=31.4M(3%) swapped_out=0K(0%) unallocated=1.0G(97%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                     548K
    CG image                               36K
    CG shared images                     1184K
    CoreServices                          836K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    MALLOC                               25.8M
    MALLOC guard page                      48K
    Memory tag=240                          4K
    Memory tag=242                         12K
    Memory tag=251                          8K
    SQLite page cache                     288K
    STACK GUARD                          56.0M
    Stack                                11.6M
    VM_ALLOCATE                          16.1M
    __DATA                               13.7M
    __IMAGE                               528K
    __LINKEDIT                           37.0M
    __TEXT                              122.0M
    __UNICODE                             544K
    mapped file                          43.6M
    shared memory                         308K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      330.1M
    Model: Macmini4,1, BootROM MM41.0042.B03, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.65f2
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    USB Device: MacBook Air SuperDrive, apple_vendor_id, 0x1500, 0x26400000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0x06630000 / 6

  • Firefox crashes - I need some help becaue I cannot understand the cause of my constant crashes...

    These are my last two crashes. I tried all that is commonly advised, but crashes are still frequent, about once or more every day.
    bp-dd8c6382-a254-4f16-aaf8-257152140313
    bp-98dc2419-5892-4cf8-89a7-ce3382140312
    Thanks

    hello mozi108, i'm locking this thread, because you already have created a similar question yesterday at https://support.mozilla.org/en-US/questions/989596. please put all new information about the crashing issue there instead of opening new questions for it, so that contributors can follow up on you more easily. thank you!

  • Firefox crashes - I need some help because I cannot understand the cause of my constant crashes...

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/989596 /questions/989596]''
    AND AGAIN AND AGAIN...
    other two crashes in the last few minutes:
    bp-e23f3f47-df28-49aa-9117-870ee2140313
    bp-e656c64b-ddaa-4ca1-ab0a-2daea2140313

    hello mozi108, i'm locking this thread, because you already have created a similar question yesterday at https://support.mozilla.org/en-US/questions/989596. please put all new information about the crashing issue there instead of opening new questions for it, so that contributors can follow up on you more easily. thank you!

  • I need some help taking my site over the top.

    Ok, i built the site for a small business and i believe it looks better than most sites in the industry. How do i get it noticed in searches and take it over the top and make it look like it was done by a professional. How do i increase the search hits. Has a cottage industry spawned with people who do this in IWEB. i want to maintain control of the site.
    Your thoughts and direction
    john

    Rugbyjoey wrote:
    How do i get it noticed in searches...
    John ~ This article may help:
    _How to get your iWeb Websites into Google & Other Major Search Engines_
    Rugbyjoey wrote:
    ...and make it look like it was done by a professional.
    “Do only what is necessary to convey what is essential. Carefully eliminate elements that distract from the essential whole, elements that obstruct and obscure....Clutter, bulk, and erudition confuse perception and stifle comprehension, whereas simplicity allows clear and direct attention." — Richard Powell, in his book +Wabi Sabi Simple+.
    "One of the biggest mistakes typical business people make with documents is going out of their way to seemingly use every centimeter of space on a page, filling it up with text, boxes, clip art, charts, footers, etc. Space, often called "white space," is good. Embrace it. Use it. Often, the more space you don't use on a page, the clearer your message becomes.
    Empty space is beautiful, yes. But empty space also implies importance, elegance, professionalism. This is true with graphic design, but you can see the importance of space (both visual and physical) in the context of interior design. Think of the retail space, for example. Target is dedicated to design although they are a discounter. They know about space. Target stores are well designed. They have more empty space than other discounters, Walmart, for example."
    ...Understanding such basic points on graphic design will help set you apart. You can read more design tips in this Presentation Zen article:

  • HT1750 I need some help but could not find serial no on my imac

    any one online to help

    Look under the stand or if the computer is running click the Apple Symbol in the upper left, click About this Mac and then click where it says the version of OS X 2x and it will display the serial number. You can also run System Profiler (Applications - Utilities - System Profiler) and you can find it there.
    BTW PLEASE do a Profile Update!

  • Ok i have indesign CS6 and all files are stored on a 10.7.5 MAC server.  This just started happening.  When I open a file indesigns is creating a textfile in the same folder?  I need some help on this.

    Ok i have indesign CS6 and all files are stored on a 10.7.5 MAC server.  This just started happening.  When I open a file indesigns is creating a textfile in the same folder?  I need some help on this.

    Ask in the ID forum and be much more specific about your configuration. there could be any number of reasons why manifests, temp files or restore files are created.
    Mylenium

  • Please i need some help time capsule and airport express wireless extender

    hello everyone and thank you for looking at my post. i do need some help. i am not very good at the computer programing so i might not use the right terms. i have a time capsule that i just replaced an old pc type router with. i have a fairly large house and can not get wireless signal to the one end of my house. so i went to the apple store and bought an airport express after being told how its just plug and play and itll setup with my time capsule and waala iv just extended my wireless signal. well it did not seam to work that well for me. i have done all the setting up that was told me to in the book to do and i still have get to get a wireless signal out of the express i then hooked up an ethernet wire from the express to my girlfriends macbook. and what do you know now im seeing the express in my airport utility. but then i unplug the ethernet and im back to not seeing the express. what am i doing wrong and what do i need to do. please help me if you can. thanks alot.

    Hello fastuca. Welcome to the Apple Discussions!
    Let's double-check your base stations' settings ...
    o If practical, place the base stations in near proximity to each other during the setup phase. Once done, move them to their desired locations.
    o Open AirPort Utility and select the Time Capsule (TC).
    o Choose Manual Setup from the Base Station menu, or double-click the base station to open the configuration in a separate window. Enter the base station password if necessary.
    o Click AirPort in the toolbar, and then click Wireless.
    o Choose “Create a wireless network” from the Wireless Mode pop-up menu, and then select the “Allow this network to be extended” checkbox.
    o Next, select the 802.11n AirPort Express Base Station (AXn) that will extend this network, and choose Manual Setup from the Base Station menu, or double-click the base station to open its configuration in a separate window. Enter the base station password if necessary.
    o Choose “Extend a wireless network” from the Wireless Mode pop-up menu, and then choose the network you want to extend from the Network Name pop-up menu.
    o Enter the base station network and base station password is necessary.
    o Click Update to update the base station with new network settings.
    (ref: Page 46 of "Designing AirPort Networks Using AirPort Utility)

  • @Prior not working the way I expect it too

    All, I need some help :-)<BR><BR>I have the following cube<BR>Essbase v6.5.5<BR>Create on Equation database option is checked<BR>8 dimmensions (including 3 attribute dimensions)<BR><BR>The base dimensions are as followings:<BR>Accounts(Dense) Prices, Cost, volume, etc.<BR>Scenarios (Dense) April Fcst, Actuals, Budget, May Fcst, Working Fcst etc.<BR>UOM (Dense) aka Unit of Measure BBL, MT (metric tons)<BR>Time (Sparse)2002, 2003, 2004, qtr1 07, Jan 07, etc<BR>Worldwide (Sparse) North America, South America, United States, Plant Name, Suppliers (Suppliers are unique to plants and are at level 0)<BR>the rest are attribute dimension based on Worldwide<BR><BR>I lock and send prices to a No Region member in the Worldwide dimension<BR><BR><BR>When I have to look at the prior month price it is not assigning a value to "posting". In other words, Plant 1 is working correctly, but the others which need to use the prior period price is not being calculated.<BR><BR>Here is the calc script:<BR><BR>/* Housekeeping */<BR>Set LOCKBLOCK High ;<BR>Set Cache Default ;<BR>Set Msg Summary ;<BR>Set UpdateCalc Off ;<BR>Set AggMissg On ;<BR>Set FrmlBottomUp On ;<BR><BR>Fix( "Mar 07", &Current_Forecast )<BR>Cleardata Postings; <BR>BBL(<BR><BR>//Plant 1<BR>IF ( @ISMBR (SupplierX, SuplierXX)) <BR>Postings = ("Price3"->"No Region" +"Price4"->"No Region")/2;<BR><BR>ELSEIF (@ISMBR(SupplierXXX))<BR>Postings = ("Price4"->"No Region");<BR><BR>//Plant 2<BR>ELSEIF (@ISMBR(SuplierXY, SupplierXXY))<BR>Postings = @Prior("Price2"->"No Region");<BR><BR>//Plant 3<BR>ELSEIF (@ISMBR(SupplierYY, Supplier YX"))<BR>Postings = @Prior("Price3"->"No Region");<BR><BR>//Plant 4<BR><BR><BR>etc.....<BR><BR>ELSE<BR>Postings = 0;<BR><BR>Endif<img src="i/expressions/face-icon-small-wink.gif" border="0"><BR><BR>ENDFIX<BR><BR><BR>ALL HELP IS APPPRECIATED. THANKS<BR>

    Couple of quick suggestions:<BR>- is your Time dimension actually tagged as Time? <BR>- don't think it should matter, but your calc block is for BBL although you are calculating Postings<BR>- as a debugging step, since you are FIXing on Mar 07, try replacing <BR>@Prior("Price2"->"No Region"); <BR>with<BR>"Price2"->"No Region"->"Feb 07"; <BR><BR>If that works, then the issue is indeed @prior. But if that doesn't work, then it's related to data, block creation, order of operations, etc., something other than @prior.

  • Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it. Update it to IOS 7.1.1

    Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it and still cannot be fixed. I updated it to IOS 7.1.1 recently only, does it have connection with the inconvenience I am experiencing right now? What should I do? Thanks!

    Hi Melomane1024,
    If you are still having issues with your iPhone’s speaker, you may want to look at the steps in this article -
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • TS2634 Please People I need some help.My iPod is disabled and when I connect it to iTunes it says: Itunes could not connect to the ipod because it is locked with a passcode...

    Please People I need some help.My iPod is disabled and when I connect it to iTunes it says: Itunes could not connect to the ipod because it is locked with a passcode...how can I do it?

    Place the iPod in Recovery mode and then restore.

  • Need some help to unlock the Ipad. Cannot contact the previous owner he is in the shelter and I do not know were. After I restore the Ipad is asking that the previous owner has to remove it from his account

    need some help to unlock the Ipad. Cannot contact the previous owner he is in the shelter and I do not know were. After I restored the Ipad is asking that the previous owner has to remove it from his account

    Nobody on these boards or at Apple will unlock that device for you. Sorry.
    (117810)

  • Hi, i need some help to activate lightroom 5.7 i bought in november 2014, the serial number i've is not working, thanks

    hi, i need some help to activate lightroom 5.7 i bought in november 2014, the serial number i've is not working, thanks

    Hi, i'm  very glad for your support, i'm installing through direct
    dowmload in november 2014, we still use the classic program, is not the
    cloud program, the version is 5.7.1.
    Thanks.
    Tai Vinh.
    Le 27/04/2015 18:56, Atul_saini a écrit :
    >
          hi, i need some help to activate lightroom 5.7 i bought in
          november 2014, the serial number i've is not working, thanks
    created by Atul_saini <https://forums.adobe.com/people/Atul_saini> in
    /Downloading, Installing, Setting Up/ - View the full discussion
    <https://forums.adobe.com/message/7485938#7485938>

Maybe you are looking for

  • NFe de 3o foi pro GRC e não volta status

    Bom dia pessoal! Estou dando um help num cliente que usa um sistema externo para enviar ao SAP todas as NFs (de terceiros, de entrada própria, eletrônica ou não). Como esse sistema cria NFs e também recebe NFs de terceiros, toda a numeração chega pro

  • How do I make my website's menu sidebar fill up the entire side area?

    This is my website http://www.sabertoothedchicken.com/ Notice how the menu sidebar only fills the tiny area surrounding the  menu text? Yeah, I don't like that. I want it to fill up the entire side  area (apart from where the headbar and footbar are)

  • Does my warranty cover the mac book pro charger?

    I got a new Mac Book pro for Christmas and the charger already stopped working. Luckily I had an old one. Anyone know if my warrantly will cover the dead charger? Not trying to spend like 75 bucks on a new one.

  • Encounter "500 Unexpected Error" when admin account access to ECP

    Symptom:  In Exchange 2013, when using admin account to access ECP, you will get an error “500 Unexpected” as below. However, when using the same account to access OWA, everything is ok, and other normal accounts can access OWA also. At the same time

  • Offline Distribution naming of reports

    Hi All, When using distribution in BPC the naming of the distributed reports is done by settings in the Distribution List. Standard the following report-name is created: User ID)VARYKEYS)Description.xls - for example vbeumer)C0001)BALANCE.xls Is ther