Problem with GUI/logic

This is really tough to explain, but here goes:
I have a project that consists of three classes --
1) a container (JFrame) that holds a number of JButtons and JText fields;
2) a processing engine that handles the actions from the buttons;
3) an object class that is a big piece of what gets displayed based on the buttons that get pushed.
My "public static void main" is in the processing engine. All the "main" does is create an instance of the container. But the processing engine also contains the actionPerformed subclass for the buttons.
The container class instantiates the processing engine and registers the button listeners to it. Push a button and the logic goes to the processing engine. Okay so far.
The container also instantiates the object class, since that is what needs to be displayed. When the buttons are pushed, the display goes through a variety of changes as buttons are pushed in the correct sequence. Push one button, the object is updated. Push another one, it is updated in another way. The changes must all be reflected on the screen as they occur.
The problem is, when I respond to the ActionEvent, the processing engine does not have an instance of the object; it has to be passed one from the container class. If I try to instantiate a new object, it will wipe out the old one. If I don't get an instance, I get nullPointers all over the place.
So my question is: how can I pass the object from one display to the next? How can I display the object, respond to the ActionEvent by changing the object, then redisplay the modified version of the object, when I don't have an instance of the object in the ActionPerformed subclass?
I can post the code, but it's pretty garbled by repeated attempts to solve this issue.

Okay. Here are the three classes you requested. I built them in a hurry so there may still be syntax errors and such. But I think you can get the feel of what I'm trying to do. I can explain if not.
<code>
import java.awt.*;
import javax.swing.*;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class ContainerClass extends JFrame
     JPanel cardP = new JPanel();
     JButton card1 = new JButton();
     JButton card2 = new JButton();
     JButton dealButton = new JButton();
     JButton discardButton = new JButton();
     java.net.URL img1;
     java.net.URL img2;
     ImageIcon cardIcon1 = new ImageIcon();
     ImageIcon cardIcon2 = new ImageIcon();
     JPanel displayPanel = new JPanel();
     JPanel actionPanel = new JPanel();
     ActionClass ac = new ActionClass();
     public ContainerClass()
          super("Welcome to the game");
          GridLayout gl1 = new GridLayout(2, 2, 5, 5);
          setLayout(gl1);
          setSize(1000, 800);
     setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
     dealButton.addActionListener(ac);
     discardButton.addActionListener(ac);
     img1 = this.getClass().getResource("image01.gif");
     img2 = this.getClass().getResource("image02.gif");
     card1.setIcon(new ImageIcon(img1));
     card2.setIcon(new ImageIcon(img2));
     cardP.setLayout(new GridLayout(1,2,5,5));
     actionPanel.setLayout(new GridLayout(1,2,5,5));
     cardP.add(card1);
     cardP.add(card2);
     actionPanel.add(dealButton);
     actionPanel.add(discardButton);
     add(cardP);
     add(actionPanel);
     pack();
     setVisible(true);
</code>
<code>
import java.awt.event.*;
import java.util.*;
public class ActionClass implements ActionListener
     ContainerClass cc;
     ObjectClass oj;
     public static void main(String[] args)
          ContainerClass cc = new ContainerClass();
     public void actionPerformed(ActionEvent e)
          String command = e.getActionCommand();
          if (command.equalsIgnoreCase("DEAL"))
               ObjectClass oj = new ObjectClass();
               ArrayList al = oj.getObject();
               display(al);
          if (command.equalsIgnoreCase("DISCARD"))
               // here I need to get the existing object and modify it. But if I
               // instantiate a new ObjectClass, it may be different than the one I've displayed.
     public void display(ArrayList al)
          // here I need to set the icons on the JButtons in the container class
          // to the images I retrieved from the getObject() method. But if I
          // instantiate a new ContainerClass, it will create a whole new screen.
</code>
<code>
import java.util.*;
public class ObjectClass
     public ObjectClass()
          // null constructor
     public ArrayList getObject()
          // in reality, this ArrayList would consist of random Strings. However, I've used these limited elements
          // to demonstrate the structure I'm dealing with. The true scope is far greater and far more random. In
          // theory, no two ArrayLists should contain the same elements.
          ArrayList al = new ArrayList();
          String[] element1 = {"Card 1", "Card 2"};
          String[] element2 = {"Color 1", "Color 2"};
          String[] element3 = {"image01.gif", "image02.gif"};
          al.add(element1);
          al.add(element2);
          al.add(element3);
          return al;
</code>
That is an extremely pared-down version of what I'm trying to do.

Similar Messages

  • Problem with GUI in applet

    Hai to all,
    I am having a problem with GUI in applets
    My first class extends a JPanel named A_a
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    both the applets C_c and B_b are in same browser page
    How can i achive that pls help .

    Just to make the code readable...
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    }and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    }and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    }

  • Problem with looping logic

    Hello all,
    Ok reposted using code tags, sorry about that.
    I'm trying to write some code to take in a 2D int array, loop through the array to identify where certain blocks of numbers begin and record that location so that I an jump straight to it at a later time. The number blocks go up iteratively from a point from 0 to 9 and are surrounded by nodata values(-9999).
    The problem is that when I print out the numbers they are only being recognised up to 6 (7th number) and when I check the locations against the original text file they dont match. I think it's just a problem with my logic but I'm not sure why.
    The text file is converted to ints and placed in an array from a buffered file reader in a seperate class. I can put this up if needed.
    Any help would be much appreciated.
    Thanks.
    Duncan
    *  Class imports text file which contains a collection of values, either nodata(-9999) or a location
    *  represented by numbers moving away from a point; 0 closest then 1, then 2 etc.
    *  records the first location of each number to avoid having to loop through the whole file each time.
    *  i.e. can later jump straight to the first recorded location of each number.
    *  In current text file there are 10 numbers(0 - 9) but for some reason it stops finding them after
    *  6(seventh no.) and having checked the location values against the original text file these are wrong
    *  by a fair way as well.
    import java.io.*;
    //import java.awt.*;
    //import java.awt.event.*;
    public class Hydrograph {
         int width = 0;
         int height = 0;
         int dZeroC, dZeroD = 0;
         int dOneC, dOneD = 0;
         int dTwoC, dTwoD = 0;
         int dThreeC, dThreeD = 0;
         int dFourC, dFourD = 0;
         int dFiveC, dFiveD = 0;
         int dSixC, dSixD = 0;
         int dSevenC, dSevenD = 0;
         int dEightC, dEightD = 0;
         int dNineC, dNineD = 0;
         public Hydrograph() {
              /* Ignore this bit it's being used for something else
              //File file = new File("c:/Users/Duncan/Documents/MODULES/MSc Dissertation/Code/A1.txt");
              //File file = new File("M:/java/code/A1.txt");
              ArrayRead ar = null;
              ar = new ArrayRead(file);
              int rows = ar.getRows();
              int columns = ar.getColumns();
              int steps = ar.getSteps();
              int[][][] threeDIntArray = ar.getThreeDIntArray();
              // Creates a new instance of delay class which takes in a text file and converts
              // it to int form, placing it into a 2D int array.
              Delay dLay = null;
              dLay = new Delay();
              width = dLay.getWidth();
              height = dLay.getHeight();
              int[][] twoDDelayFile = dLay.getTwoDintArray();
              int delayCount = 0;
              // Loops through 2D int array to identify when number first equals 0, then passes
              // the height and width values to storeDelayPos method below. Then finds for 1, 2
              // 3, 4,...etc by adding 1 to delayCount.
              System.out.println(" ");
              for (int a=0; a<width; a++) {
                   for (int b=0; b<height; b++) {
                        if (twoDDelayFile[a] == delayCount) {
                             int c, d = 0;
                             c = a;
                             d = b;
                             storeDelayPos(c, d, delayCount);
                             System.out.println(delayCount);
                             delayCount++;
                             break;
                   //System.out.println(" ");
              System.out.println(" ");
              System.out.print(dZeroC + " " + dZeroD);
              System.out.println(" ");
              System.out.print(dOneC + " " + dOneD);
              System.out.println(" ");
              System.out.print(dTwoC + " " + dTwoD);
              System.out.println(" ");
              System.out.print(dThreeC + " " + dThreeD);
              System.out.println(" ");
              System.out.print(dFourC + " " + dFourD);
              System.out.println(" ");
              System.out.print(dFiveC + " " + dFiveD);
              System.out.println(" ");
              System.out.print(dSixC + " " + dSixD);
              System.out.println(" ");
              System.out.print(dSevenC + " " + dSevenD);
         // Takes in width, height and delayCount value and sets variables according to
         // the value of delayCount.
         void storeDelayPos (int setC, int setD, int setDCount) {
              int dCount = 0;
              dCount = setDCount;
              switch(dCount) {
                   case 0:
                        dZeroC = setC;
                        dZeroD = setD;
                        break;
                   case 1:
                        dOneC = setC;
                        dOneD = setD;
                        break;
                   case 2:
                        dTwoC = setC;
                        dTwoD = setD;
                        break;
                   case 3:
                        dThreeC = setC;
                        dThreeD = setD;
                        break;
                   case 4:
                        dFourC = setC;
                        dFourD = setD;
                        break;
                   case 5:
                        dFiveC = setC;
                        dFiveD = setD;
                        break;
                   case 6:
                        dSixC = setC;
                        dSixD = setD;
                        break;
                   case 7:
                        dSevenC = setC;
                        dSevenD = setD;
                        break;
                   case 8:
                        dEightC = setC;
                        dEightD = setD;
                        break;
                   case 9:
                        dNineC = setC;
                        dNineD = setD;
                        break;
                   default:
                        System.out.println("OUT OF BOUNDS");
                        break;
         public static void main (String args[]) {
         new Hydrograph();

    Hi,
    I am working on a hydrograph program in java as well... I am trying to represent rainfall data. Do you think that you could share some of the code that you came up with, so that I don't have to go through the whole process.
    thank you so much,
    Kevin

  • Design Problem with GUI sub vi

    Hello community,
    in general, I would like to separate the GUI from the data, but I get
    a problem with this design approach in LabView:
    I often have sub VIs that are supposed to control something.
    Therefore, these VIs consist of a control loop. A GUI window should
    show the regulation process (showing how the tracking error is
    hopefully approaching zero etc.). As I said, this GUI should be a
    separate VI (separate from the control loop VI). Since the GUI has to
    be updated on each sample, it is clear that the GUI VI should be
    inside the control loop, and therefore, it should be a sub VI of the
    control loop VI.
    Now, the problem is that the control loop VI itsself is a sub VI
    because the whole regulation is just a subsystem of the whole program
    (The main VI doesn't have a GUI, but first starts a (GUI) input mask
    for the same reason: separate the GUI from the rest).
    But back to the GUI VI inside the control loop. I must check the 'Show
    Front Panel When Called' option. But I can't check the 'Close
    Afterwards if Originally Closed' option since the GUI VI would appear
    and disappear in the control loop - according to the loop's sample
    rate. However, if I don't check the 'Close Afterwards if Originally
    Closed' option then the GUI VI will continue to show, even after the
    control process is finished.
    So in other words: I need the possiblity to close the GUI VI
    programatically, after the control process is finished.
    Any ideas?
    Regards
    Johannes

    Hi tmh,
    thanks for your answer
    On Tue, 11 Nov 2003 10:26:32 -0600 (CST), tmh wrote:
    >I think you're on the wrong track trying to put your 'GUI VI' inside
    >your control loop. It might be a better design to have the control and
    >GUI handled by separate loops and use an appropriate method to pass
    >data between the two, e.g. a global variable to pass the setpoint from
    >GUI to control...
    I try to avoid globals. Now, suppose I had multiple unrelated control
    loops. I had to suppose a global variable for each of these
    subsystems. I already use globals for the GPIB device IDs. I wouldn't
    like more.
    >and a queue to pass readings from control to GUI. In
    >fact, you could even split the GUI into two loops: one to read user
    >input from the front pa
    nel controls and one to display data returned
    >by the control loop.
    But if I split the GUI: How can I view them simultaneously? The user
    must see input and output simultaneously, in one window.
    >You may find it's more convenient to make the GUI
    >the top-level VI and make the control loop a subVI of that (but
    >outside the GUI loops).
    Your approach sounds interesting. Is there a sample for this
    architecture in the examples?
    Anyway, I have to point out that I have several unrelated GUI windows
    in my application. There is no notion of a main GUI in my application.
    The control loop is just one feature of my application, so it doesn't
    make sense to use the control GUI as the top-level VI. At application
    startup a user input form is displayed (it also has some sort of menu
    selection). But even this window can't be toplevel since it provides
    an Option radio button (that shows and hides controls, accordingly) a
    CONTINUE button, and a STOP button which implies that the input
    form.vi must be
    in a loop.
    The problem is that I can't send messages to windows in LabView as I
    am used to in Win32/VC++.
    Johannes

  • JDeveloper Problem with GUI

    Hi All,
    I'm running JDev 3.1 on Win2000, and I'm having a bit of a problem with redraws of the GUI.
    When I click anywhere on the JDev GUI and trigger and action that involves a GUI redraw the little piece of the GUI under the mouse pointer graphic is not redrawn. It does not effect the functionality but it is annoying and will make the other developers I work with less keen about using it.
    Does anyone else have this problem? Is it a JDev or Win2k problem?
    Cheers
    d

    Probably an issue with the JRE used by JDev. on Win 2k. Have you tried 3.2x? I haven't seen that type of issue with it on Win 2k.

  • Fixed a problem with OSX-Logic and a MOTU 828MkII

    I was having problems with my 828MkII using it with a new G5 and OS10.3.9. There were massive drop-outs.
    It was a new computer and everything was installed correctly and cleanly - there was no other hardware installed other than the MOTU, and no other software other than Logic 7 - everything was done properly and tested over and over, but the problem persisted.
    I still had my old G4 with an older OS9 version of Logic, and when I went back to try the MOTU with this set up, it worked flawlessly. This fact made me suspect that the core audio driver was the problem, so I tried all the tricks I've seen in forums - reset the MOTU - uninstalled and re-installed. Upgraded my firmware. Even tried OS10.4 with old drivers new drivers, and still nothing worked.
    Then out of desperation I tried a new firewire cable and everything worked fine.
    I went back and tried the set up on my OS9 machine a few times and the MOTU worked flawlessly under the Asio2 drivers. What I learned is that OSX and core audio must use firewire differently because the cable did not work with that set up.
    I couldn't believe it. It's like finding out that a guitar cable only works with a Les Paul or something wierd like that.
    I'm sure someone out there must know the technical difference and why this cable works fine under OS9 (Asio2) but not OSX (core audio).
    I'm posting this because if I had read such a post - I would have tried a new cable as the first thing - but I had myself convinced that it could not be the cable. I still don't believe it. ! Luckily it was the cheapest fix.
    Scott.

    Same thing happened here when I check all items to install at once.
    After the installation failure , L7,L8,Waveburner .. everything unexpectedly quit then I decided to replace the entire OS to cloned back up.
    I tried the installation again and xxxx happened again. This time, I installed only applications (overwritten) again and it fixed the problem.
    Then I installed only JamPack on FW and went smoothly.
    I called Apple Tech and now I am waiting for the new installer DVDs of Audio contents only by regular mail.
    Hey, do we have similar serial number?? Apple script got damaged or something? I have no idea.

  • BEx Analyzer 3.x language problem with GUI 710

    Hi All,
    We are having trouble to login to BEx Analyzer 3.x with GUI 710 with English language, even if we set language as EN in the logon pad by default it is logging into Japanese language. But 7.x Analyser is working fine.
    We have BI 7.0 and BW 3.5 systems. 
    SAP GUI 710 installed with latest available Frontend Patch ( bi710sp10_1000-10004472 , gui710_15-10002995 and bw350gui710_7-10004473 ) and we are using Excel 2003 on XP Professional.
    Installed .Net Framework 2.0, Microsoft office patch - office2003-KB907417
    Your help is very much appreciated.
    Regards,
    MKR

    Hi,
    Are you using different backend systems to connect for 3.x and 7.x? Because the file which prompts the SAP Logon is a common file used by both 3.x and 7.x.It shouldn't behave differently for the same system.
    You can uninstall the SAPGui and Front End patch and then reinstall it.
    The BW 3.5  patch  8  in SAP GUI 7.10 is released to the SMP now and is available for download.
    Rgds,
    Murali

  • Problem with auvaltool Logic Pro 9 and Nexus2

    This is the message im getting the report from and no idea why or whats caused it. Anyone with suggestions. Still waiting for reply from refx.
    Process:         Logic Pro [2261]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~2
    App Item ID:     459578486
    App External ID: 10394291
    Code Type:       X86 (Native)
    Parent Process:  launchd [154]
    User ID:         501
    PlugIn Path:       /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    PlugIn Identifier: com.reFX.Nexus
    PlugIn Version:    2.4.2 (2.4.2)
    Date/Time:       2013-07-12 08:36:29.184 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8218 sec
    Crashes Since Last Report:           46
    Per-App Interval Since Last Report:  2642 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      156B85D5-BE04-F1BD-C3EE-5063704C424C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
        __TEXT                 0000000000001000-0000000000beb000 [ 11.9M] r-x/rwx SM=COW  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Application Specific Information:
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x98cd5a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x99f0fb2f pthread_kill + 101
    2   libsystem_c.dylib                       0x99f465f3 __abort + 199
    3   libsystem_c.dylib                       0x99f4652c abort + 232
    4   com.apple.logic.pro                     0x003e6729 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842985
    5   libsystem_c.dylib                       0x99efa8cb _sigtramp + 43
    6   com.reFX.Nexus                          0x21ad04ed CFileList::getAllFileNames() + 29
    7   ???                                     0x21f7dfa4 0 + 569892772
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98cd69ae kevent + 10
    1   libdispatch.dylib                       0x9132fc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9132f7a9 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x98cd37d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98cd2cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x96b29f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x96b2f95f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x96b2f01a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x96b2ee8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x99a9837a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x99afc448 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99afc3cb __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x98cd5be6 __select + 10
    1   com.apple.CoreFoundation                0x96b73650 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x98cd58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99f13280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99f99095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b403a9 MDFileIOThread_IsBusy + 3593
    4   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x98cd37d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98cd2cb0 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0138322d XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3   com.apple.audio.midi.CoreMIDI           0x013a0ae0 MIDIProcess::RunMIDIInThread() + 144
    4   com.apple.audio.midi.CoreMIDI           0x013a6c48 MIDIProcess::MIDIInPortThread::Run() + 24
    5   com.apple.audio.midi.CoreMIDI           0x01384805 XThread::RunHelper(void*) + 17
    6   com.apple.audio.midi.CoreMIDI           0x013842ee CAPThread::Entry(CAPThread*) + 196
    7   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x98cd58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99f132e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99f13572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x929616ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x92961184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x9296140d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x929471a3 TimerThread + 324
    7   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 13:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x98cd5c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x99f98a55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x99f9891e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x907b1c2d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x99afc448 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99afc3cb __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x99f0e5b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x99ef8d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0xbfff99ac  edx: 0x98cd5a6a
      edi: 0xacd78a28  esi: 0x00000006  ebp: 0xbfff99c8  esp: 0xbfff99ac
       ss: 0x00000023  efl: 0x00000206  eip: 0x98cd5a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x99f65780
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro (9.1.8 - 1700.67) <D8F173FC-C08A-5AF3-A7DD-ECFFDB6A8877> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe85000 -   0xeb8fe7  com.apple.music.apps.MAAudioUnitSupport (9.1.8 - 233.53) <4A75EC0F-CD9B-99B7-187C-FAD6560734D7> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xec7000 -   0xef8ff3  com.apple.musicaudiodataservices (1.1 - 251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf08000 -   0xf0afff  com.apple.ExceptionHandling (1.5 - 10) <D565F065-B45F-37FF-BA46-C675F95BBC00> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xf10000 -   0xf6eff3  com.apple.music.apps.MALoopManagement (9.1.8 - 219.66) <A1CB744D-B391-438C-28DE-2CABB594E4A9> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xf86000 -  0x11bfff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12d9000 -  0x1353fff  com.apple.music.apps.MACore (9.1.8 - 477.58) <53D4EB61-BFD7-ADA1-217C-BBEA1F38DA80> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1375000 -  0x13bdffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <CE34882B-8B96-3376-9451-592BE9A0D04F> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13e2000 -  0x1438ff7  com.apple.music.apps.MAHarmony (9.1.8 - 199.72) <D93A5C62-91A1-2D04-A715-5805EBEF693B> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1451000 -  0x186bfeb  com.apple.music.apps.MAPlugInGUI (9.1.8 - 424.79) <D98859D6-BA99-5073-49B7-44B57F4FE211> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a92000 -  0x1b74feb  com.apple.music.apps.OMF (9.1.8 - 109.7) <869B8C49-7726-C45F-E301-A21EAE7A3B3B> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b8b000 -  0x21dcfe3  com.apple.music.apps.MADSP (9.1.8 - 588.98) <7BEB4983-28A6-8808-2B8D-A48F0A3F0111> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28d3000 -  0x28f4ff7  com.apple.music.apps.LogicFileBrowser (9.1.8 - 1700.67) <FEEA3128-4A7E-7FDD-0E7E-BFC9554CA78B> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28fe000 -  0x2977ff7  com.apple.music.apps.LogicLoopBrowser (9.1.8 - 1700.67) <3396D969-32DF-0446-8E3D-F2FE82B23CD8> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x298d000 -  0x29aeff7  com.apple.music.apps.MAApogeeSupport (9.1.8 - 313.26) <D058F550-BB20-ABD6-51E8-3001AE32A6E1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x29b5000 -  0x29baff7  com.apple.music.apps.MAResources (9.1.8 - 212.66) <985579E4-F9E5-F7C6-39C8-FC294A330A2A> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29bf000 -  0x29ecff3  com.apple.audio.CoreAudioKit (1.6.5 - 1.6.5) <42BE7C8C-9EF9-3F12-8827-961B349C5B31> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29ff000 -  0x2a0fff7  com.apple.AERegistration (1.2 - 401) <4FEFA52A-BF2E-2BCC-0124-4E3653B88D95> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a25000 -  0x2a31ff3  com.apple.music.apps.MAUnitTest (9.1.8 - 97.27) <FB0DE08A-CFEB-7039-796A-F05E8FE0DA11> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a3b000 -  0x2af1fff  com.apple.music.apps.MAFiles (9.1.8 - 144.87) <FF7A5441-B41F-B937-9269-29C589FE6BFF> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2b0c000 -  0x2b84fe3  com.apple.music.apps.MAAudioEngine (9.1.8 - 158.42) <77E17BDE-E079-7A68-621C-2947475D0402> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bed000 -  0x2bf8ff7  com.apple.music.apps.MAToolKit (9.1.8 - 359.28) <77A2C3F7-3530-3D65-4247-D520A1C1F487> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bfe000 -  0x2c12ff7  com.apple.music.apps.MAVideo (9.1.8 - 12.70) <74AD8812-DB1B-1845-B389-ACB0FC255ECB> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c26000 -  0x2d45ffb  com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2df6000 -  0x2f42ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x2fbe000 -  0x305affc  com.apple.MobileMe (9 - 1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x30ba000 -  0x3165fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x31a9000 -  0x31bfffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x31c8000 -  0x3e5dff3  com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x473a000 -  0x475fffa  com.apple.prokit.LionPanels (7.3.2 - 1944.10) <C3E4CAA0-A1F7-3DF4-8BBC-9D6A7CF2EB5E> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
    0x47d2000 -  0x47dfff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5700000 -  0x5780fff  com.apple.iLifeMediaBrowser (2.7.4 - 546.7) <130581CE-0699-3524-B487-726353FDDF96> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10d8e000 - 0x10e4cff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x122e4000 - 0x122e9fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <903097A8-3922-3BF8-8B82-8BD1D831F6E7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1231d000 - 0x12325ff7  com.apple.proapps.mrcheckpro (1.4 - 397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x12fcb000 - 0x1315fffa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13196000 - 0x13317fff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x13349000 - 0x13354fff  libGPUSupport.dylib (8.9.2) <01E0F852-CBB7-3EE7-A2CD-79CB4A3EF2B5> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x1335b000 - 0x13386ff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1338f000 - 0x13397ffd  libcldcpuengine.dylib (2.2.16) <43E630D7-14C3-3455-9A4E-B5EBFA638C9D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x133a3000 - 0x133a5ff3  com.apple.music.apps.anvil.resources (9.1.8 - 280.4) <232E095C-4B63-5F35-5A7A-0CF691EB1101> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x133aa000 - 0x133acff3  com.apple.music.apps.common.resources (9.1.8 - 280.4) <1D975834-BD71-B0D0-D8CF-1BA760AA9488> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x133b1000 - 0x133b3ff3  com.apple.music.apps.ebp.resources (9.1.8 - 280.4) <191CB44E-25E3-0BAA-6E45-E4FC625432A0> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x133b8000 - 0x133baff3  com.apple.music.apps.efx.resources (9.1.8 - 280.4) <2EEB43AB-D405-62D0-140B-0B887CE18A70> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x133bf000 - 0x133c1ff3  com.apple.music.apps.egt.resources (9.1.8 - 280.4) <2E91FDD0-709D-AF8A-02C1-169C401D9A9D> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x133c6000 - 0x133c8ff3  com.apple.music.apps.emx.resources (9.1.8 - 280.4) <CFDBF0D9-083A-F0A9-DA2E-7D5F6A6D249A> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x133cd000 - 0x133cfff3  com.apple.music.apps.es1.resources (9.1.8 - 280.4) <3257B0C1-B4F6-E276-56E4-E226736A1371> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x133d4000 - 0x133d6ff3  com.apple.music.apps.es2.resources (9.1.8 - 280.4) <53480C20-F2F1-A2D5-BDA6-E70F6B281A5F> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x133db000 - 0x133ddff3  com.apple.music.apps.esp.resources (9.1.8 - 280.4) <8F63A05D-3A14-004C-246F-3D6B5EBEEA7E> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x133e2000 - 0x133e4ff3  com.apple.music.apps.evb3.resources (9.1.8 - 280.4) <BE781A59-67E2-FB1E-3F4E-B99D0D30C61C> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x133e9000 - 0x133ebff3  com.apple.music.apps.evd6.resources (9.1.8 - 280.4) <D80EB53C-5AFC-7AC6-44E8-7A23AEF023C3> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x133f0000 - 0x133f2ff3  com.apple.music.apps.evoc.resources (9.1.8 - 280.4) <80760949-9342-4C9F-CF3D-4C6333D024FE> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x133f7000 - 0x133f9ff3  com.apple.music.apps.evp88.resources (9.1.8 - 280.4) <F5393D5E-8BF1-6C37-ED93-5FACFD419DEB> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x137da000 - 0x137dcff3  com.apple.music.apps.exs24.resources (9.1.8 - 280.4) <AE07C5E6-1D57-D2BB-4942-80AACD51CD44> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x137e1000 - 0x137e3ff3  com.apple.music.apps.guitaramp.resources (9.1.8 - 280.4) <40F8A885-63FA-D784-78D9-9958EF4EEBF3> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x137e8000 - 0x137eaff3  com.apple.music.apps.guitarcontrols.resources (9.1.8 - 280.4) <C6EB6C33-138E-C992-14D1-B03D9EFEFB49> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x137ef000 - 0x137f1ff3  com.apple.music.apps.mutapdel.resources (9.1.8 - 280.4) <BCF98464-A2C8-D71F-87D5-FEFF35404932> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x137f6000 - 0x137f8ff3  com.apple.music.apps.pedalboard.resources (9.1.8 - 280.4) <199A76D9-1086-BC6C-68D0-B74431FAF415> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x149ab000 - 0x149adff3  com.apple.music.apps.revolver.resources (9.1.8 - 280.4) <2C6B75C7-E32A-B021-7119-E830E7F2E853> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x149b2000 - 0x149b4ff3  com.apple.music.apps.sphere.resources (9.1.8 - 280.4) <E8D4E3E6-8C6F-5D10-57DA-B7C0F71C35F9> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x15dbb000 - 0x15e39ff7 +com.eLicenser.POSAccess-DLL (1.12.2.0) <86346B72-3923-9F25-A6B7-4DE71931FC82> /Library/Application Support/eLicenser/*/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x1a141000 - 0x1a17bfff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.31) <0761249B-19FD-39DA-819E-C827BE16B0B8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1a187000 - 0x1a190fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <A4F09F97-11B7-3AB1-A1CC-026CBB0EE901> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x20a51000 - 0x20a52ff5 +cl_kernels (???) <8E3407FA-8F5B-40B9-BD9E-82934BAFCB0E> cl_kernels
    0x20a5f000 - 0x20a5ffff +cl_kernels (???) <8AA07E0C-7324-4D17-B647-B429B08DF4A5> cl_kernels
    0x20c00000 - 0x20c92fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x21a54000 - 0x21e63fc3 +com.reFX.Nexus (2.4.2 - 2.4.2) <CB29856E-0602-3904-A599-26FDDB615A26> /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    0x8e2fa000 - 0x8ec49ffb  com.apple.GeForceGLDriver (8.12.47 - 8.1.2) <ED7895B5-BF75-3BC8-A956-8E423FD02395> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe9a000 - 0x8fecce57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90010ffd  com.apple.audio.SoundManager (4.0 - 4.0) <6A0B4A5D-6320-37E4-A1CA-91189777848C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90011000 - 0x90018ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9003f000 - 0x90089ff7  com.apple.framework.CoreWLAN (3.3 - 330.15) <74C4B50F-7016-341F-8261-D379B8F0CC97> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9008a000 - 0x9008afff  com.apple.CoreServices (57 - 57) <83B793A6-720D-31F6-A76A-89EBB2644346> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9008b000 - 0x9008cfff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x9008d000 - 0x90112ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E947DC1-7985-3111-A864-58EDD6D955DC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90113000 - 0x9012aff4  com.apple.CoreMediaAuthoring (2.1 - 914) <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9012b000 - 0x9018cfff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9019c000 - 0x902cfff3  com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x902d0000 - 0x90338fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90339000 - 0x9039dff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9039e000 - 0x903bdff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9045c000 - 0x90468ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90469000 - 0x91025ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91026000 - 0x91312fff  com.apple.AOSKit (1.051 - 152.4) <31156351-70C4-381A-810D-8E5A937EF95C> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x91313000 - 0x9132afff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9132b000 - 0x9133dff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x91340000 - 0x91376ffb  com.apple.DebugSymbols (98 - 98) <D0293694-C381-30DF-8DD9-D1B04CD0E5F0> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91377000 - 0x913d1fff  com.apple.Symbolication (1.3 - 93) <4A794D1C-DE02-3183-87BF-0008A602E4D3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x913d2000 - 0x913d5ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x913d6000 - 0x91424ffb  libFontRegistry.dylib (100) <97D8F15F-F072-3AF0-8EF8-50C41781951C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91425000 - 0x91428ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91429000 - 0x9146eff7  com.apple.NavigationServices (3.7 - 200) <6AB1A00C-BC94-3889-BA95-40A454B720CE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9146f000 - 0x914cafff  com.apple.htmlrendering (77 - 1.1.4) <CD33B313-7E85-3AC0-9EFF-6B0C05F10135> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9192d000 - 0x91d29feb  com.apple.VideoToolbox (1.0 - 926.104) <4275B89E-F826-3F65-ACE1-89052A9CAC6B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x91d2a000 - 0x91d79ff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d7a000 - 0x91d7dff9  libCGXType.A.dylib (332) <07B59FCC-6229-37C2-9870-70A18E2C5598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91dca000 - 0x91e05fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91e06000 - 0x91e10fff  libCSync.A.dylib (332) <86C5C84F-11EC-39C0-9FAC-A93FDEEC3117> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91e11000 - 0x91f5fff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x91f60000 - 0x91f67ffe  com.apple.agl (3.2.1 - AGL-3.2.1) <48407521-A4A3-3D28-8784-29E36AA04804> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91f68000 - 0x921c1ff5  com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x921c2000 - 0x9234bff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9237c000 - 0x923f7ff3  com.apple.CorePDF (2.2 - 2.2) <5A52A1CF-4801-3E6C-BF6E-E5E75A8DBD8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x923f8000 - 0x9241dff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <BBB53E4F-BCBA-3461-875F-8FA8E9157261> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9241e000 - 0x92422ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x92423000 - 0x9247aff7  com.apple.ScalableUserInterface (1.0 - 1) <4B538E02-4F41-37FF-81F6-ED43DE0E78CC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x924d3000 - 0x924e2fff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x924e3000 - 0x924ebfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x924ec000 - 0x924edfff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x924ee000 - 0x924f7ff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x924f8000 - 0x92506fff  libxar.1.dylib (105) <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x92507000 - 0x92515ff3  libsystem_network.dylib (77.10) <11CAF6A8-17CF-3178-9348-57C5ED494BA8> /usr/lib/system/libsystem_network.dylib
    0x92519000 - 0x92631ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <D871D730-1D5C-34E7-98C7-0FF09964E618> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x92632000 - 0x92726ff3  com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92727000 - 0x9275effa  com.apple.LDAPFramework (2.4.28 - 194.5) <23668AB5-68EA-37D2-978E-C9EF22BF8C0C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9275f000 - 0x927ffff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92800000 - 0x92830ff3  libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
    0x92831000 - 0x92873ff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x92874000 - 0x92874fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x92875000 - 0x9289affb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9289e000 - 0x92ba3ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92ba4000 - 0x92c3bff7  com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c3c000 - 0x933d7ff3  libclh.dylib (4.0.3 - 4.0.3) <6BAF7FE7-3CF3-388B-8C64-43D4F8C6493C> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x933d8000 - 0x93401ff7  libRIP.A.dylib (332) <521E60A6-A768-3CB8-B10D-D10EECD68A94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93402000 - 0x93410fff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93411000 - 0x9342dfff  libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93432000 - 0x93433fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93434000 - 0x93456fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x93457000 - 0x93475ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9347c000 - 0x93480ffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93481000 - 0x93484ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x93485000 - 0x9348fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x93490000 - 0x934c3ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x934c4000 - 0x934c5ffd  libunc.dylib (25) <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x934c6000 - 0x934f1fff  com.apple.shortcut (2.2 - 2.2) <6E4DD034-A28E-3419-B197-7BB13D2B7C3E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x934f2000 - 0x93567ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93568000 - 0x93585ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x93586000 - 0x935caff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x935cb000 - 0x93631ffc  com.apple.ISSupport (1.9.8 - 56) <B9F397ED-4F1F-3264-869E-F055EB87C3B8> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93632000 - 0x938a4ff3  com.apple.RawCamera.bundle (4.07 - 696) <6D4C54D0-2C3A-3364-B7D1-2148B9D30C07> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x938a5000 - 0x939a3ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x939a4000 - 0x939a6fff  com.apple.securityhi (4.0 - 55002) <79E3B880-3AB7-3BF3-9CDF-117A45599545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x939a7000 - 0x93a20ffb  libType1Scaler.dylib (101.1) <C12C5169-4E91-3148-934F-8A9CAB8546C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x93a21000 - 0x93b12ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x93b13000 - 0x93b44fff  com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93b49000 - 0x93b76ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x93b77000 - 0x93b78ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93b79000 - 0x93bc1ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93bc2000 - 0x93c76fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93c77000 - 0x93db2ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93db3000 - 0x94061ffb  com.apple.MediaToolbox (1.0 - 926.104) <DD264DFD-9AFB-38E2-A44C-B463DCB721A0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94062000 - 0x9406cfff  com.apple.DisplayServicesFW (2.7.2 - 357) <5042CDAE-5580-3204-B675-745DA083E7AA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x940c4000 - 0x940d0ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x940d1000 - 0x940eaffb  com.apple.frameworks.preferencepanes (15.1 - 15.1) <D788C8BE-5A13-3EA3-93FA-9B5CEEFE249B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x940eb000 - 0x941f6ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x941f7000 - 0x945dafff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x945db000 - 0x945dbfff  com.apple.Carbon (154 - 155) <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x945dc000 - 0x945e9ff7  com.apple.HelpData (2.1.4 - 85) <1E180AEF-53FF-3D8B-9513-7FCA1B25A4AB> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x945ea000 - 0x9461dfff  libssl.0.9.8.dylib (47.1) <1725A506-BD80-39D5-8EE8-78D2FBBE194C> /usr/lib/libssl.0.9.8.dylib
    0x9461e000 - 0x9484efff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9484f000 - 0x94884fff  libTrueTypeScaler.dylib (84.6) <B7DB746B-7A61-38EF-8CA7-408ED9C14A02> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94885000 - 0x949fdff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x949fe000 - 0x94a0eff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x94a0f000 - 0x94a18fff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94a62000 - 0x94b49ff7  libxml2.2.dylib (22.3) <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x94b4a000 - 0x94b58ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94b59000 - 0x94b59fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x94b5a000 - 0x94bb4ff3  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <6313E06F-37FD-3606-BF2F-87D8598A9983> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x94bb5000 - 0x94c31ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94c35000 - 0x94c4bfff  com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94c4c000 - 0x94ca7ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94ca8000 - 0x94cb1ffe  com.apple.aps.framework (3.0 - 3.0) <26A02202-9CCA-37A5-AD26-234F55D51471> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x94cb2000 - 0x94cbdffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <ABC37C4F-4B9E-327D-90C0-1682526371F4> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94cbe000 - 0x94cc2fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94cc3000 - 0x94edafff  com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94edb000 - 0x95175ff7  com.apple.AddressBook.framework (7.1 - 1170) <9A7DDF7F-5081-3708-8965-E564953EEE39> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95176000 - 0x9517afff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9517b000 - 0x951f5ff3  com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x951f6000 - 0x95291fff  com.apple.CoreSymbolication (3.0 - 117) <2BBBE224-301D-3931-AEF2-DD967A6E9172> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95292000 - 0x95292ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95293000 - 0x956d5fff  com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x956d6000 - 0x95773ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <639CF802-BE94-39C5-AC97-B5B42FF910C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95774000 - 0x95786fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x95789000 - 0x959f6ffb  com.apple.imageKit (2.2 - 673) <CDB2AC11-6D60-34A7-83F9-F6E7DA25F97B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x959f7000 - 0x95a51ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95a52000 - 0x95a65ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95a66000 - 0x960f2ff3  com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x960f3000 - 0x9611eff9  com.apple.framework.Apple80211 (8.4 - 840.22.1) <DBC31BEB-B771-315F-852D-66ADC3BD75A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9611f000 - 0x9611ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96166000 - 0x961b2fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x96255000 - 0x96313ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <B534DE6A-3AF0-307C-B274-A4FCFC5BC696> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96314000 - 0x96314ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x96315000 - 0x9635cff3  com.apple.CoreMedia (1.0 - 926.104) <D0E3BE86-12ED-31BE-816F-E72D757A9F2F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96362000 - 0x96438fff  com.apple.DiscRecording (7.0 - 7000.2.4) <528052A0-FCFB-3867-BCDF-EE0F8A998C1C> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9643b000 - 0x9647dffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9647e000 - 0x9655ffff  libcrypto.0.9.8.dylib (47.1) <E4820342-4F42-3DEB-90DB-DE5A66C5585E> /usr/lib/libcrypto.0.9.8.dylib
    0x96560000 - 0x96560fff  com.apple.Cocoa (6.7 - 19) <01AA482A-677A-31CA-9EC9-05C57FDDE427> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96561000 - 0x9657efff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x9657f000 - 0x9673bffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x9673c000 - 0x96849ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9688a000 - 0x96997057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96998000 - 0x969fefff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x969ff000 - 0x96af7ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x96af8000 - 0x96ce0ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96ce1000 - 0x97099ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9709a000 - 0x9716eff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9716f000 - 0x971aeff7  com.apple.bom (12.0 - 192) <D245FA22-3B6C-3872-B485-BE84AD9098B2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x971af000 - 0x971d4ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x971d5000 - 0x97267ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97268000 - 0x9726bff3  com.apple.AppleSystemInfo (2.0 - 2) <4DB3FD8F-655E-3F96-97BC-040B33044A34> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9726c000 - 0x972cefff  libc++.1.dylib (65.1) <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x972cf000 - 0x97367fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <8DEEED08-A4B3-3B08-8C2A-BDDBF005B43F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97368000 - 0x973ccff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x973cd000 - 0x973d3fff  com.apple.phonenumbers (1.1 - 47) <0D9B4A12-C1D3-374C-B320-11806C0CCF2A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x973d4000 - 0x977f1fff  FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x977f2000 - 0x9790effb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9790f000 - 0x97916fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x97917000 - 0x97919fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9791a000 - 0x9792ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97930000 - 0x97940ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <C6076983-A02E-389E-BFC6-008EECC4C896> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97941000 - 0x97965fff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97966000 - 0x9869eff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.31) <A0445D02-A1C1-3D40-8219-D8EA6B28811C> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9869f000 - 0x9869ffff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x986a0000 - 0x986a2ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x986a3000 - 0x986e5fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x986e6000 - 0x986f2ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x986f3000 - 0x986fafff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x98702000 - 0x98702fff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98703000 - 0x98704fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x98705000 - 0x98862ffb  com.apple.QTKit (7.7.1 - 2599.31) <B9AE5675-22B0-3AA9-903F-2195DA0B04F5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98863000 - 0x988aaff7  com.apple.framework.CoreWiFi (1.3 - 130.13) <1961CC70-C00D-31DE-BAB5-A077538CD5CB> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x988ab000 - 0x988e0ff7  com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x988e1000 - 0x98ba1ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98ba2000 - 0x98babfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98bac000 - 0x98bafff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x98cc1000 - 0x98cdbffc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x98cdc000 - 0x98ce0fff  com.apple.CommonPanels (1.2.5 - 94) <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98ce1000 - 0x98d05fff  com.apple.PerformanceAnalysis (1.16 - 16) <7B7EAA0B-5208-32DB-B083-D4B62F37EC46> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x98d06000 - 0x98d06ffe  com.apple.AOSMigrate (1.0 - 1) <862E23D4-A796-3D0C-89E6-0D026E777EC7> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x98d07000 - 0x98d0bffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x98d0c000 - 0x98d0dfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x98d0e000 - 0x98d2effd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x98d2f000 - 0x98ddeff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x98ddf000 - 0x9905bff7  com.apple.QuickTime (7.7.1 - 2599.31) <3839E1F3-7948-3E68-9AE1-A0CEE8C59212> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9905c000 - 0x99066fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99067000 - 0x990cfff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x990d0000 - 0x991cdff7  com.apple.DiskImagesFramework (10.8.3 - 345) <B2CBC585-D206-3155-BB33-4359271AC444> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x991ce000 - 0x991dbff7  com.apple.AppleFSCompression (49 - 1.0) <9A066D13-6E85-36FC-8B58-FD46E51751CE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99a5e000 - 0x99d7eff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99d7f000 - 0x99d8afff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x99d8b000 - 0x99dcbfff  com.apple.MediaKit (14 - 687) <8735A76E-7766-33F5-B3D2-86630070A1BA> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x99dcc000 - 0x99dd6fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x99dd7000 - 0x99e25ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <15B4EFFC-22D1-3517-BE8C-7947DAA24729> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99e30000 - 0x99e49fff  com.apple.Kerberos (2.0 - 1) <8413EDD3-7E01-3D47-83FD-C14A5235DCD2> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99e4a000 - 0x99e4afff  com.apple.ApplicationServices (45 - 45) <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99e56000 - 0x99e5cfff  com.apple.print.framework.Print (8.0 - 258) <3E10C488-C390-33BD-8A4F-568E3021811D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99e5d000 - 0x99e72fff  com.apple.ImageCapture (8.0 - 8.0) <F681CA5B-2871-32CF-8E9F-9220EB387407> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x99e73000 - 0x99e73fff  libSystem.B.dylib (169.3) <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x99e74000 - 0x99e7afff  libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x99e7b000 - 0x99eeaffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99eeb000 - 0x99ef7ff7  com.apple.NetAuth (4.0 - 4.0) <52D23F12-0718-341D-B9DF-16C814022250> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x99ef8000 - 0x99fb5feb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x99fb6000 - 0x99ff8fff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x99ff9000 - 0x9a049ff7  com.apple.CoreMediaIO (308.0 - 4155.4) <E2FF59A9-3728-3D17-A1AD-84DC1BDA2146> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9a04a000 - 0x9a04cffd  libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9a04d000 - 0x9a054ff3  com.apple.NetFS (5.0 - 4.0) <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9a055000 - 0x9a0aefff  com.apple.QuickLookFramework (4.0 - 555.5)

    This is the actaul Auvaltool problem
    Process:         auvaltool [2666]
    Path:            /usr/bin/auvaltool
    Identifier:      auvaltool
    Version:         251.14.1
    Code Type:       X86 (Native)
    Parent Process:  Logic Pro [2629]
    User ID:         501
    PlugIn Path:       /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    PlugIn Identifier: com.reFX.Nexus
    PlugIn Version:    2.4.2 (2.4.2)
    Date/Time:       2013-07-12 09:24:48.718 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          9635 sec
    Crashes Since Last Report:           54
    Per-App Crashes Since Last Report:   22
    Anonymous UUID:                      156B85D5-BE04-F1BD-C3EE-5063704C424C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /usr/bin/auvaltool
        VM_ALLOCATE            0000000000001000-000000000004a000 [  292K] ---/--- SM=NUL 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.reFX.Nexus                          0x004794ed CFileList::getAllFileNames() + 29
    1   ???                                     0x02c12fa4 0 + 46215076
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98cd69ae kevent + 10
    1   libdispatch.dylib                       0x9132fc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9132f7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x98cd60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99f110ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99f10e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99ef8d2a start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x008297c0  ecx: 0x00000000  edx: 0x00000000
      edi: 0x007f0828  esi: 0x008297c0  ebp: 0x02c12fa4  esp: 0xbffb2ac0
       ss: 0x00000023  efl: 0x00010202  eip: 0x004794ed   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 1
    Binary Images:
       0x4a000 -    0x67ff7  auvaltool (251.14.1) <4211EF34-B62D-3258-B21C-ED3B57756E89> /usr/bin/auvaltool
      0x1b0000 -   0x22eff7 +com.eLicenser.POSAccess-DLL (1.12.2.0) <86346B72-3923-9F25-A6B7-4DE71931FC82> /Library/Application Support/eLicenser/*/Synsoacc.bundle/Contents/MacOS/Synsoacc
      0x3fd000 -   0x80cfc3 +com.reFX.Nexus (2.4.2 - 2.4.2) <CB29856E-0602-3904-A599-26FDDB615A26> /Library/Audio/Plug-Ins/Components/Nexus.component/Contents/MacOS/Nexus
    0x8fe49000 - 0x8fe7be57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90010ffd  com.apple.audio.SoundManager (4.0 - 4.0) <6A0B4A5D-6320-37E4-A1CA-91189777848C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90011000 - 0x90018ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9008a000 - 0x9008afff  com.apple.CoreServices (57 - 57) <83B793A6-720D-31F6-A76A-89EBB2644346> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9008b000 - 0x9008cfff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x9008d000 - 0x90112ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E947DC1-7985-3111-A864-58EDD6D955DC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9012b000 - 0x9018cfff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x902d0000 - 0x90338fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90339000 - 0x9039dff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9039e000 - 0x903bdff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9045c000 - 0x90468ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90469000 - 0x91025ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91313000 - 0x9132afff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9132b000 - 0x9133dff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x91340000 - 0x91376ffb  com.apple.DebugSymbols (98 - 98) <D0293694-C381-30DF-8DD9-D1B04CD0E5F0> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91377000 - 0x913d1fff  com.apple.Symbolication (1.3 - 93) <4A794D1C-DE02-3183-87BF-0008A602E4D3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x913d2000 - 0x913d5ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x913d6000 - 0x91424ffb  libFontRegistry.dylib (100) <97D8F15F-F072-3AF0-8EF8-50C41781951C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91425000 - 0x91428ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91429000 - 0x9146eff7  com.apple.NavigationServices (3.7 - 200) <6AB1A00C-BC94-3889-BA95-40A454B720CE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9146f000 - 0x914cafff  com.apple.htmlrendering (77 - 1.1.4) <CD33B313-7E85-3AC0-9EFF-6B0C05F10135> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91d2a000 - 0x91d79ff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91dca000 - 0x91e05fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91e11000 - 0x91f5fff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x921c2000 - 0x9234bff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9241e000 - 0x92422ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x92423000 - 0x9247aff7  com.apple.ScalableUserInterface (1.0 - 1) <4B538E02-4F41-37FF-81F6-ED43DE0E78CC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x924d3000 - 0x924e2fff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x924e3000 - 0x924ebfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x924ec000 - 0x924edfff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x924ee000 - 0x924f7ff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x924f8000 - 0x92506fff  libxar.1.dylib (105) <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x92507000 - 0x92515ff3  libsystem_network.dylib (77.10) <11CAF6A8-17CF-3178-9348-57C5ED494BA8> /usr/lib/system/libsystem_network.dylib
    0x9275f000 - 0x927ffff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92831000 - 0x92873ff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x92874000 - 0x92874fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x92875000 - 0x9289affb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9289e000 - 0x92ba3ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92ba4000 - 0x92c3bff7  com.apple.ink.framework (10.8.2 - 150) <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93402000 - 0x93410fff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93411000 - 0x9342dfff  libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93432000 - 0x93433fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93434000 - 0x93456fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x93457000 - 0x93475ff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9347c000 - 0x93480ffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93481000 - 0x93484ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x93485000 - 0x9348fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x93490000 - 0x934c3ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x934c4000 - 0x934c5ffd  libunc.dylib (25) <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x934f2000 - 0x93567ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BEE998BC-E4A5-3BA0-A6B5-31A1DFA1522C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93568000 - 0x93585ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x93586000 - 0x935caff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x938a5000 - 0x939a3ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x939a4000 - 0x939a6fff  com.apple.securityhi (4.0 - 55002) <79E3B880-3AB7-3BF3-9CDF-117A45599545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93a21000 - 0x93b12ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x93b13000 - 0x93b44fff  com.apple.DictionaryServices (1.2 - 184.4) <A31BB2CE-6965-3610-8B11-EA26EC6D7EEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93b49000 - 0x93b76ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x93b77000 - 0x93b78ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93b79000 - 0x93bc1ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93bc2000 - 0x93c76fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93c77000 - 0x93db2ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x940c4000 - 0x940d0ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x940eb000 - 0x941f6ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x941f7000 - 0x945dafff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x945db000 - 0x945dbfff  com.apple.Carbon (154 - 155) <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94885000 - 0x949fdff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94a0f000 - 0x94a18fff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94a62000 - 0x94b49ff7  libxml2.2.dylib (22.3) <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x94b4a000 - 0x94b58ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94b59000 - 0x94b59fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x94bb5000 - 0x94c31ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94c35000 - 0x94c4bfff  com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94cbe000 - 0x94cc2fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94cc3000 - 0x94edafff  com.apple.CoreData (106.1 - 407.7) <EC4B8297-8E01-3778-A8A4-E8747F91109D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95176000 - 0x9517afff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9517b000 - 0x951f5ff3  com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x951f6000 - 0x95291fff  com.apple.CoreSymbolication (3.0 - 117) <2BBBE224-301D-3931-AEF2-DD967A6E9172> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95292000 - 0x95292ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95293000 - 0x956d5fff  com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95774000 - 0x95786fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x959f7000 - 0x95a51ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95a52000 - 0x95a65ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9611f000 - 0x9611ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96166000 - 0x961b2fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x96255000 - 0x96313ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <B534DE6A-3AF0-307C-B274-A4FCFC5BC696> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96314000 - 0x96314ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x9643b000 - 0x9647dffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x96561000 - 0x9657efff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x9657f000 - 0x9673bffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x9673c000 - 0x96849ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9688a000 - 0x96997057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96998000 - 0x969fefff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x969ff000 - 0x96af7ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x96af8000 - 0x96ce0ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96ce1000 - 0x97099ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9709a000 - 0x9716eff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9716f000 - 0x971aeff7  com.apple.bom (12.0 - 192) <D245FA22-3B6C-3872-B485-BE84AD9098B2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x971af000 - 0x971d4ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x971d5000 - 0x97267ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9726c000 - 0x972cefff  libc++.1.dylib (65.1) <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x972cf000 - 0x97367fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <8DEEED08-A4B3-3B08-8C2A-BDDBF005B43F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97368000 - 0x973ccff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x973d4000 - 0x977f1fff  FaceCoreLight (2.4.1) <B12C8721-EFB3-30A2-9A1B-ABCDF5670764> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x977f2000 - 0x9790effb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9790f000 - 0x97916fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x97917000 - 0x97919fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9791a000 - 0x9792ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97930000 - 0x97940ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <C6076983-A02E-389E-BFC6-008EECC4C896> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97941000 - 0x97965fff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9869f000 - 0x9869ffff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x986a0000 - 0x986a2ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x986a3000 - 0x986e5fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x986e6000 - 0x986f2ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x986f3000 - 0x986fafff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x98703000 - 0x98704fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x988e1000 - 0x98ba1ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98ba2000 - 0x98babfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98bac000 - 0x98bafff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x98cc1000 - 0x98cdbffc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x98cdc000 - 0x98ce0fff  com.apple.CommonPanels (1.2.5 - 94) <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98ce1000 - 0x98d05fff  com.apple.PerformanceAnalysis (1.16 - 16) <7B7EAA0B-5208-32DB-B083-D4B62F37EC46> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x98d07000 - 0x98d0bffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x98d0c000 - 0x98d0dfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x98d0e000 - 0x98d2effd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x98d2f000 - 0x98ddeff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9905c000 - 0x99066fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99067000 - 0x990cfff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x991ce000 - 0x991dbff7  com.apple.AppleFSCompression (49 - 1.0) <9A066D13-6E85-36FC-8B58-FD46E51751CE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99a5e000 - 0x99d7eff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99d7f000 - 0x99d8afff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x99dcc000 - 0x99dd6fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x99dd7000 - 0x99e25ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <15B4EFFC-22D1-3517-BE8C-7947DAA24729> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99e30000 - 0x99e49fff  com.apple.Kerberos (2.0 - 1) <8413EDD3-7E01-3D47-83FD-C14A5235DCD2> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99e4a000 - 0x99e4afff  com.apple.ApplicationServices (45 - 45) <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99e56000 - 0x99e5cfff  com.apple.print.framework.Print (8.0 - 258) <3E10C488-C390-33BD-8A4F-568E3021811D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99e5d000 - 0x99e72fff  com.apple.ImageCapture (8.0 - 8.0) <F681CA5B-2871-32CF-8E9F-9220EB387407> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x99e73000 - 0x99e73fff  libSystem.B.dylib (169.3) <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x99e74000 - 0x99e7afff  libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x99e7b000 - 0x99eeaffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99eeb000 - 0x99ef7ff7  com.apple.NetAuth (4.0 - 4.0) <52D23F12-0718-341D-B9DF-16C814022250> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x99ef8000 - 0x99fb5feb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9a04a000 - 0x9a04cffd  libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9a04d000 - 0x9a054ff3  com.apple.NetFS (5.0 - 4.0) <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9a0af000 - 0x9a208ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a209000 - 0x9a20cfff  com.apple.help (1.3.2 - 42) <2B727B38-0E18-3108-9735-F65958924A91> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9a20d000 - 0x9a4b0ff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9a4b1000 - 0x9a55bfff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9a58c000 - 0x9a5a9fff  libCRFSuite.dylib (33) <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x9a5aa000 - 0x9a5d7ffe  libsystem_m.dylib (3022.6) <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x9a5d8000 - 0x9a5d8fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9a5d9000 - 0x9a5dafff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x9a5db000 - 0x9a604fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9a605000 - 0x9a631ff7  libsystem_info.dylib (406.17) <2731CC70-DF2E-3BD1-AE73-A3B83C531756> /usr/lib/system/libsystem_info.dylib
    0x9a632000 - 0x9a689ff3  com.apple.HIServices (1.20 - 417) <B8410ABC-E0DB-31EB-B923-17F3B65B5F4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 2838
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=118.6M resident=90.8M(77%) swapped_out_or_unallocated=27.8M(23%)
    Writable regions: Total=77.2M written=10.0M(13%) resident=13.5M(18%) swapped_out=0K(0%) unallocated=63.6M(82%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1560K
    MALLOC                             50.2M
    MALLOC guard page                    48K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    Memory tag=35                      7404K
    Stack                              66.5M
    VM_ALLOCATE                        16.3M
    __DATA                             5512K
    __DATA/__OBJC                       120K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         30.9M
    __OBJC                             1568K
    __OBJC/__DATA                         4K
    __PAGEZERO                            4K
    __TEXT                             87.7M
    __UNICODE                           544K
    mapped file                       102.7M
    shared memory                       556K
    ===========                      =======
    TOTAL                             372.0M
    Model: iMac13,1, BootROM IM131.010A.B05, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.9f5
    Graphics: NVIDIA GeForce GT 640M, NVIDIA GeForce GT 640M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    USB Device: Elements 1042, 0x1058  (Western Digital Technologies, Inc.), 0x1042, 0x14a00000 / 4
    USB Device: eLicenser, 0x0819, 0x0101, 0x14300000 / 5
    USB Device: ION Laptop Piano, 0x15e4, 0x0113, 0x14400000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2412, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x828b, 0x1d181300 / 6
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8511, 0x1a110000 / 3

  • Problem With GUI ( Who can help me! )

    Hallo,
    It�s a very simple program to See the Clock on a panel. The program works well, but if I want to include a GUI to my program, it don�t want. I use runable action and I think that is be the problem.
    Here below you can see the code�s. I�m sure there is someone who can help me.
    Thanks a lot,
    Seyyed
    The code:
    public class Clock_maken extends java.applet.Applet
    implements Runnable {
    public volatile Thread clockThread = null;
    JLabel           Datuum_label;
    DateFormat      formatter;
    Locale           locale;
    Date           currentDate;
    String          today;
    public void init(){ 
    locale = Locale.getDefault();
    Datuum_label = new JLabel("date");
    public void start() {       
    Datuum_label.setForeground(Color.black);
    add(Datuum_label);
    if(clockThread == null) {
    clockThread = new Thread(this);
    clockThread.start();
    public void run() {
         Thread myThread = Thread.currentThread();
         while (clockThread == myThread) {
         currentDate = new Date();
    formatter =                     DateFormat.getDateTimeInstance(DateFormat.FULL,
              DateFormat.MEDIUM, locale);
    today = formatter.format(currentDate);
    Datuum_label.setText(today);
    try {
    Thread.sleep(1000);
    } catch (InterruptedException e){ }
    public void stop() {clockThread = null;}
    public static void main(String[] args){
    JFrame.setDefaultLookAndFeelDecorated(true);
    JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
    lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Clock_maken phases = new Clock_maken();
    phases.init();
    phases.start();
    lunarPhasesFrame.pack();
    lunarPhasesFrame.setVisible(true);
    Now i want to create a GUI like folowing, but it dont work. Do u know wat is de probleem of mijn prograam.
    private static void createAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
         /*     JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
              lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    */ Clock_maken phases = new Clock_maken();
         /*     phases.init();
              phases.start();
              lunarPhasesFrame.pack();
         lunarPhasesFrame.setVisible(true);*/
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Continued here, with formatted code:
    http://forum.java.sun.com/thread.jspa?threadID=725022

  • Problem with using Logical Database PNP

    Hello everybody!
    When I use the logical database PNP in my program,a warning message appeared during the syntax check with Unicode checks actived.The message looks like below:
    <b>Include DBPNPCOM.
    In Unicode programs,the "-" character cannot appear in names,as it does here in the name "PNP-SW-FOUND".
    Include DBPNPCOM.
    In Unicode programs,the "-" character cannot appear in names,as it does here in the name "PNP-SY-TABIX".</b>
    Anybody know how to deal with this problem?
    Regards
    Brian Liu

    Hi,
    You can either ignore the warnings or uncheck the 'Unicode checks Active' checkbox in the program attributes. In fact you get the same warnings off most standard SAP HR Reports.
    Good luck,
    Suresh Datti

  • Problems with CIF (Logical system not assign to BSG)

    Hello,
    We are sending all master data from ECC to APO. We set up the CIF in DEV and all worked fine. But when we try to send the data from ECC to APO in QA an error appears. It says that the logical system is not assign in the BSG. Apparently the configuration that we have in DEV is the same that we have in QA. The logical systems in all instances (DEV & QA) have the same name. Could this be the problem?
    Thanks,
    David

    Hi David,
    1) Check whether BSG is defined in customisation under the below
    link
    SAP - Implementation Guide > Integration with SAP Components
         >  Integration via APO Core Interface (CIF)    >
        Basic Settings for Creating the System Landscape   > Maintain Business System Group
    2) Check the BSG is assinged to the logical system under the
    spro transaction
    SAP - Implementation Guide > Integration with SAP Components
         >  Integration via APO Core Interface (CIF)    >
        Basic Settings for Creating the System Landscape   >
    Assign Logical System and Queue Type
    3) Check BSG is showing in APO material master for a location
    product under "Properties" tab.
    Regards
    R. Senthil Mareeswaran.

  • Problem with Script logic logs

    Hi Experts,
    I am using BPC 7.5M with SQL Server 2008, I am looking into script logic log but found one very strange statement "(More than 300,000 records. Details are not being logged)", Earlier it was not showing this statement and was showing all the entries to be posted, Is there any setting we need to do for having all the entries in the log file.
    Status log file showing as of now:
    App: HEADCOUNT - Records to be posted are 310875  (calc diff = 0)
    (More than 300,000 records. Details are not being logged)
    Time to validate records: 100.3 sec.
    Post Record Status
    Submit count : 100001
    Accept count : 100001
    Reject count : 0
    Post Record Status
    Submit count : 200002
    Accept count : 200002
    Reject count : 0
    Post Record Status
    Submit count : 300003
    Accept count : 300003
    Reject count : 0
    Post Record Status
    Submit count : 310875
    Accept count : 310875
    Reject count : 0
    Posting ok
    Time to post records:325.4 sec.
    Please Advice
    Thanks & Regards,
    Rohit

    Hi Rohit,
    This is not a problem.
    If the resultant number of records is more than 300,000, then the records are not logged.
    This can be controlled by the UNLIMIT_PRINT_LOG appset parameter. By default, this is set as NO. This will allow only 300k records to be logged.
    You can set the above parameter as YES to log all the records for the execution of all logics across the appset in all applications.
    Warning:
    Of course, it will add slow down the logic execution. Logging the records will always slow down the execution. The system has to open the file and keep writing all the records in the flatfile, which is a slow process. You can increase the speed of your logics by disabling this logging completely by using the CALCULATE_DIFFERENCE statement in your script logic for each commit section. You can reduce the logic execution time by disabling this logging.
    Karthik AJ

  • Problem with program logic

    hi, me havin a very funny prob w one of my mtd. here's a mtd from my bean class.
    public boolean checkForEvent (String searchdate) {
    boolean hasEvent = true;
    try {
    // This is the sql statement to modify.
    sql = "select * from event where eventstart <= to_date('" +
    searchdate + "','dd-mon-yy') and eventend >= to_date('" +
    searchdate + "', 'dd-mon-yy') and eventoption = 'yes' order by eventname asc";
    stmt = conn.createStatement ();
    rs = stmt.executeQuery (sql);
    if(rs.next())
    hasEvent = true;
    else
    hasEvent = false;
    rs.close ();
    } // end try
    catch (SQLException e) {}
    catch (Exception exp) {}
    return hasEvent;
    } // end method
    the thing i dun understand is that my program will return whatever boolean i initialise hasEvent to, regardless of what goes on inside the resultset. i'm quite sure that it's not problem of database or the if-else part. it just seems like the program dun enter the if-else condition statement. i have debugged many many times but still same old prob. any1 has any idea wat is wrong with my program logic?thks

    Looks like your getting some exceptions.
    Try to see that by putting some print statements in your catch blocks.

  • Please help problem with GUI

    Hi
    I have two problems firstly when i try to assign a method to a button to a GUI
         JButton SetPrice = new JButton ("Set Price");
            contentPane.add( SetPrice);
             SetPrice.addActionListener(new ActionListener() {
                                   public void actionPerformed(ActionEvent e) {  SetPrice ();    }This is teh code i am using to set up teh button on teh display.Belwo is the method it should run.
    public double SetPrice( int price)
             if (price <= 199.9){
           Cost= price;
             return Cost;
            else {
              System.out.println ( "Set a price which is less than 199.9");
              return Cost; }
            }When i try to compile it comes up with when i comipile
    SetPrice (int) in Shop cannot be applied to ()The variable has type double.So pelase my someone show me how to make the action listener button run this method.
    Thanks

    JButton SetPrice = new JButton ("Set Price");
            contentPane.add( SetPrice);
             SetPrice.addActionListener(this);
    SetPrice.setActionCommand("setprice");
    public void actionPerformed(ActionEvent e) {
    String action=e.getActionCommand();
    if(action.equals("setprice") {
    //do something
        }

  • Problems with cirrus logic drivers. bootcamp 3.2. osX 10.6.6. win XP

    got the soundproblems with the cirrus logic audio drivers as stated several times in the forum.
    latest version of osX and bootcamp. win xp sp3. tried 3 installations...
    mic creates the "darth vader" voice. this can be fixed with this hacked driver from the web from 2009. sic!!
    soundrecordings destorted. btw. the stereomix in soundrecordings is gone. was stereomix disabled in the driver? there is no hidden features. worked on macbook from 2008 with leopard and realtek hardware.
    windows xp seems to be an OEM. can this be a reason?
    does the sound work properly on windows 7?
    allthebest from austria,
    dd

    Hey,
    I have the same problem (MBP 13", Win 7. Getting green bars, red light in headphone jack but no sound. Ages in fourms, driver installs, system restore - am pretty fried).
    I wish there was some solid advice from Apple on this rather that trawling through these forums putting together the pieces of the jigsaw. No downloading the Realtek driver (if you could even get them without paying a subscription to so 'device driver doctor app'), nor the Cirrus drivers from the disc.
    This is really frustrating. I want a clear 'how to' from Apple. As an Apple user for years I find them quickly loosing their plug and play shiny image - so Apple, get it together.
    Cheers
    J

Maybe you are looking for

  • Limit of for each conditions in rtf templates

    Hi Everyone, I have a use case where i need to genereate a report by using values from two data sets. data sales, cost. Data set sales have four columns product1, product 2, product 3, product 4 Cost has cost1,cost 2, cost 3, cost 4. I need to displa

  • Remote Access VPN strange behavior

    Hello all, I have a problem with remote access VPN on a ASA5505 (8.2). I can establish a VPN connection and can ping the ASA, but nothing else on the network! Not only ping isn't working, I've also tried RDP, HTTP, and file access. Additionally there

  • Address book Sync with Lion Server

    Hello, I have set up a Mac Mini with Lion Server and have OD users (no local user on the server). When I login "locally" (using the OD user account), I have my full environment, everything seems to work ok. Also the sync from my iPhone seems to work

  • Dropping in a shot

    Hi, I've searched the manual pages (honest!) and couldn't find this feature: After laying a timeline off to tape, I often find I need to go back, adjust a shot and drop it in to the tape at the right place. So, how do I edit just that shot to tape wi

  • Ant Directory structure.

    Hi, We are developing J2EE application that would contain number of components. Each component would be a ear file that would contain EJB jars and war which can be deployed in any J2EE compliant application server. We are currently using Bedrock fram