Logic Error Need Help!

public class TimeInterval
    private int minTime1;
    private int minTime2;
    private int diff;
    private int diff2;
    private int hrDiff;
    private int hrDiff2;
    private int minDiff;
    private int minDiff2;
    public TimeInterval(int Time1, int Time2)
        minTime1 = (Math.round(Time1/1000) *10 * 60) + (Time1 % 100);
        minTime2 = (Math.round(Time2/1000) *10 * 60) + (Time2 % 100);
        diff = minTime2 - minTime1;
        diff2 = minTime1 - minTime2;
        hrDiff = (diff / 60);
        hrDiff2 = (diff2 / 60);
        minDiff = diff % 60;
        minDiff2 = diff2 % 60;
    public boolean testTimeInterval()
        if (minTime2 > minTime1)
            return true;
        else if (minTime2 < minTime1)
            return false;
        else
            return false;
    public void printTime()
      boolean temp = this.testTimeInterval();
      if (temp == true)
            System.out.println("Difference in time is " + hrDiff + " hours and " + minDiff + " minutes");
      else
            System.out.println("Difference in time is " + hrDiff2 + " hours and " + minDiff2 + " minutes");
}This coding is suppose to read 2 military times a user puts in. For instance I would put in 0900 and 1730. The result should be 8 hours 30 mins apart. But I keep getting a different result. Also I have to somehow make it so if I input 1730 first then 0900, it will have to go around the entire 24 hour process so the outcome result should be 15 hours 30 mins apart.
Help???
Here's the Test Program I'm using
import java.util.Scanner;
public class TimeTest
   public static void main(String[] args)
       Scanner in = new Scanner(System.in);
       System.out.print("Please enter first time: ");
       int Time1 = in.nextInt();
       System.out.print("Please enter second time: ");
       int Time2 = in.nextInt();
       TimeInterval time = new TimeInterval(Time1, Time2);
       time.printTime();
}

xFusionbluex wrote:
because it was 3AM and i needed sleep... Im only in High School ya kno... and because I didnt reply is because i started the entire code all over.So being in high school means you can ignore all proper netiquette?
No one is saying that you need to respond immediately, but to not respond before starting a whole new thread, not even to acknowledge that you read what was posted? Again, all that's going to do is to make folks feel that you have ignored their contribution and will ignore future contributions. It's no skin off of my nose since I didn't really post anything important, but I'm saying if you do this, folks are not going to want to help you. It's really all up to you.

Similar Messages

  • Acrobat Error - need help! - Acrobat 9 Pro

    When I try to open an acrobat files my it trys to Open EVERY acrobat file on my computer and does so until I get the following message
    "There was an error opening this document.  The maximum number of files are already open.  No other files can be opened or printed until some are closed"
    Then I have to force quit.
    This just started happending a few months ago
    I am on a Mac OSX
    I need help!  Any suggestions?
    Debbie

    I  have a 10.5.8
    I am not that technical so not sure what you mean about applejack etc.
    Thanks for helping!
    Debbie
    Date: Sat, 10 Apr 2010 13:03:28 -0600
    From: [email protected]
    To: [email protected]
    Subject: Acrobat Error - need help! - Acrobat 9 Pro
    What version of OS X? Some people have luck by clearing their caches. This can be done with Applejack in 10.5. Onyx will work in SL.
    >

  • I just got logic and need help i dont know how to make a track at all

    i just got logic and need help i dont know how to make a track at all

    Pancenter wrote:
    There was a time not too long ago when people respected the incredible amount of talent that contributed to this software...Everyone -wanted- to learn about the craft and "art" that goes into being a good engineer, musician, producer...etc.      
    Beginner's did enough reading and experimentation to at the very least, ask an intelligent question.
    pancenter-
    Hey Pancenter there are still lots of us about.
    I wouldn't take the original post too seriously - I may of course be naive but it sounds like it could be a troll to me!
    I learn a lot from reading the posts of the likes of you, Erik, Bee Jay, sampleconstruct, noeqplease etc so I hope you guys don't become too dispondent when you see posts like these.
    By the same token, I hope the Logic team continue to use their talents to develop powerful software that caters for the professional user, while allowing Garageband to continue to do its (excellent) job of providing for its market.

  • Dataguard - logical standby - need help - not updating data at commit

    Hi
    Need help ?
    We have logical standby setup where data is not updated at standby when committed at Primary. It only updates when alter system swith logfile.
    On Primary:
    log_archive_dest_2='service=xxStandby LGWR ASYNC valid_for=(online_logfiles,primary_role) db_unique_name=xxStandby'
    On Standby:
    we have already created standby redo logs ( 1+ # redo logs)
    we used ALTER DATABASE START LOGICAL STANDBY APPLY IMMEDIATE NODELAY;
    The data only ships when we do the ALTER SYSTEM SWITCH LOGFILE whereas it should so when data is commited on the primary.
    Is there anything we are missing or need attention.
    Please help
    Thanks you so much

    Yes, I have standby redo logs = ( 1 + # redo logs on the primary) and are of same size.
    I also changed the log_archive_dest_2 setting for valid_for to ALL_LOGFILES, but the performance is still very slow... we are now overr 9 hrs behind the primary.
    log_archive_dest_2='service=xxStandby LGWR ASYNC valid_for=(ALL_LOGFILES,primary_role) db_unique_name=xxStandby'
    The Logical standby performance reallly not good at all. trying to increase sga/pga more ... hoping this will speed up some
    Paul

  • Exception error, Need Help!

    Need help!
    Why my java program work well under C:\, but can't under D:\Java today? It worked well even yesterday. I had tried the "Hello World", it can not work under D:\Java either.
    when I enter the "java d:\java\Hello" order(after javac of cause), those displays are here:
    Exception in thread "main" java.lang.NoClassDefFoundError: d:\java\Hello
    Caused by: java.lang.ClassNotFoundException:d:\java\Hello
    at java.net.URLClassLoader$1.run<URLClassLoader.java:200>
    at java.security.AccessController.doPrivileged<Native Method>
    at java.net.URLClassLoader.findClass<URLClassLoader.java:188>
    at java.lang.ClassLoader.loadClass<ClassLoader.java:306>
    at sun.misc.Launcher$AppClassLoader.loadClass<Launcher.java:276>
    at java.lang.ClassLoader.loadClass<ClassLoader.java:251>
    at java.lang.ClassLoader.loadClassInternal<ClassLoader.java:319>
    The Hello.java has no problem,and it worked well even yesterday!
    I just don't know what had happened.
    Someone who can help me please reply or email at [email protected]
    Thank you!

    The simple "Hello World" can work under Editplus, but can't under DOS.
    The error appears as the same. I don't know what I should do, could you tell me please?
    Thank you!First test whether environment variables had been set properlyor not
    To test :-
    1) Open cmd
    2) type java
    3) If it runs that means you have set it properly
    Then go to your program directory i.e d:\java\
    and type
    javac Hello.java //to compile it and then
    java Hello //To run it

  • Logic Pro8 Needing Help

    Hi!!! I need help i have Por Logic 8 and i still have same problem whit him i have 2.5 GB but it still don't work¿WHAT I CAN DO?
    Thanks!!!

    OK...I'll bite. (This should be rich).
    What in the heck are you talking about. Be specific or be gone. We'd like to help you out, but your lack of clarity makes any assistance impossible.
    So...take a deep breath, grab a dictionary, and think clearly before you say something like: WHAT I CAN DO????
    Sheesh.

  • General exception error need help!

    Experts,
    i am facing this problem. i connect to the net by proxy (through office Lan). none of the java applets work for me. Need help
    Java Plug-in 1.5.0_08
    Using JRE version 1.5.0_08 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\mkrishna
    network: Loading user-defined proxy configuration ...
    network: Done.
    network: Loading direct proxy configuration ...
    network: Done.
    network: Proxy Configuration: No proxy
    basic: Cache is enabled
    basic: Location: C:\Documents and Settings\mkrishna\Application Data\Sun\Java\Deployment\cache\javapi\v1.0
    basic: Maximum size: unlimited
    basic: Compression level: 1
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=1
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=2
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=3
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@15212bc
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@97a560
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@1ea5671
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: httpCompression = true
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/liste.jar with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/Outline.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris/class.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris/class.class with proxy=DIRECT
    load: class ZoneFavoris.class not found.
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: ZoneFavoris.class
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/Outline/class.class with proxy=DIRECT
    load: class ZoneFavoris.class not found.
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: ZoneFavoris.class
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    load: class Outline.class not found.
    java.lang.ClassNotFoundException: Outline.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: Outline.class
    java.lang.ClassNotFoundException: Outline.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped

    Hi
    I think you need to configure proxy for the JRE
    If you are using windows Go to control panel , you will find an icon called java plugin. if you have installed multiple JRE you will find multiple icons . Select the one which is configured to browser.
    You will find a proxies tab in that window , add the proxy details there
    Hope this helps you
    Vijay

  • User Error Needs Help Correcting - Repeatable Tag on Custom Section Attribute

    OK, I have v.6111.  Today I am manually putting the supplier_eq_create tag on all the the existing attributes in our custom sections so suppliers can add them when we send eQs. Unfortuately, I accidently clicked on the Repeatable tag instead of Supplier_EQ_Create in a couple of instances in our Export/Staging Environment.  When I try to remove the Repeatable tag, I get the error that says " row's Repeatable status cannot be altered after the row has been activated" ... we have not actually used the repeatable functionality of the tag.  I need to know how I can remove this tag from active attributes due to human error before I import to PROD.  Can the forum help me?
    Best, Beckie

    Hi Beckie,
    As long as you are sure that no-one has consume this you can remove this tag with a database script.
    As with every script make sure that you backup your data.
    With the following script you can find the rows that contain repeatable tag for a particular section template
    select rowTemplate.* from eaSectionDynamicTagJoins rowTTagjoin
    inner join commonEARowTemplate rowTemplate on rowTemplate.pkid = rowTTagjoin.fkEAS
    inner join commonLookups tag on tag.pkid = rowTTagjoin.fkTag
    inner join commonEASectionTemplate sectionTemplate on sectionTemplate.pkid = rowTemplate.fkSectionTemplate
    where tag.Name = 'Repeatable' and langID = 0 and Category = 'EASRowDynamicTag'
    and sectionTemplate.id = '<custom section id>';
    Tags are linked to custom section row templates using eaSectionDynamicTagJoins table.
    You can remove the tag from a specific row using the following script
    delete from eaSectionDynamicTagJoins
    where fkEAS = '<pkid of the row>';
    Hope this helps. Let me know if you have any questions,
    Dmitriy

  • Ssis package error need help to fix it. though disabled all triggers and droped all the foreign keys and truncated tables on pipeline constraints.

    [PartyName1 [6672]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 11.0"  Hresult: 0x80004005  Description: "Transaction (Process ID 1414) was deadlocked on lock resources with another process and has been chosen as the
    deadlock victim. Rerun the transaction.".

    you need to provide Details about your package like what is source/destination.. any SQL query/where is the exact deadlock point.
    Please check the following links which may help you.
    http://blogs.technet.com/b/fort_sql/archive/2011/12/12/get-rid-of-deadlocks.aspx
    http://msdn.microsoft.com/en-us/library/ms191242.aspx
    Let us TRY this |
    My Blog :: http://quest4gen.blogspot.com/

  • When i am trying to type my licence key i get an error need help quick!

    when i am typing my serial number into adobe photoshop cs6 i get an error can someone other get me an other key please

    Nope, sorry, not on a user to user help forum.
    I hope you haven't waited for this response before taking other action.  You'll need to call Adobe customer support on the telephone to resolve licensing issues.
    Anticipating your next question, the phone number is available from Adobe's web site.  Look at each page and imagine where they might have hidden it.  Hint:  Start with MENU.
    -Noel

  • Logic Crashing--Need Help Quick!

    Hi Everyone,
    For the first time ever I'm having trouble with Logic 7.2.2 crashing. I'm getting a Core audio error 1 when it does. I'm usually doing something simple like changing a setting or something. I haven't changed anything over the last couple of days so I can't figure out what it is. I've also changed the audio driver from a MOTU back to a Presonus Firepod but still no luck. I'm including the crash report below and I'd appreciate anyone's help as I've got a big project due this weekend. Thanks.
    Date/Time: 2006-09-19 10:38:46.619 -0400
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: Logic Pro
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Parent: WindowServer [132]
    Version: 7.2.2 (961.8)
    Build Version: 12
    Project Name: Logic
    Source Version: 9610800
    PID: 429
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 <<00000000>> 0xfffeff20 objcmsgSendrtp + 32
    1 com.apple.logic.pro 0x004aced4 0x1000 + 4898516
    2 com.apple.logic.pro 0x00106e30 0x1000 + 1072688
    3 com.apple.logic.pro 0x000c05f8 0x1000 + 783864
    4 com.apple.logic.pro 0x0002f148 0x1000 + 188744
    5 com.apple.logic.pro 0x000307c0 0x1000 + 194496
    6 com.apple.logic.pro 0x00030e04 0x1000 + 196100
    7 com.apple.logic.pro 0x0008b764 0x1000 + 567140
    8 com.apple.logic.pro 0x0008b8e4 0x1000 + 567524
    9 com.apple.logic.pro 0x0032b568 0x1000 + 3319144
    10 com.apple.logic.pro 0x00008a9c 0x1000 + 31388
    11 com.apple.logic.pro 0x0000b988 0x1000 + 43400
    12 com.apple.logic.pro 0x00003204 0x1000 + 8708
    13 com.apple.logic.pro 0x000030ac 0x1000 + 8364
    Thread 1:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.unsanity.ape 0xc0001b14 _apeagent + 296
    3 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ea8dc CFRunLoopRun + 52
    5 com.apple.logic.pro 0x00067bf0 0x1000 + 420848
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145163c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914513dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x00592de8 0x1000 + 5840360
    3 com.apple.logic.pro 0x00592eac 0x1000 + 5840556
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x00592de8 0x1000 + 5840360
    3 com.apple.logic.pro 0x00592eac 0x1000 + 5840556
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x0058f2fc 0x1000 + 5825276
    3 com.apple.logic.pro 0x0058f3c0 0x1000 + 5825472
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x0058f2fc 0x1000 + 5825276
    3 com.apple.logic.pro 0x0058f3c0 0x1000 + 5825472
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x0058f2fc 0x1000 + 5825276
    3 com.apple.logic.pro 0x0058f3c0 0x1000 + 5825472
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x0058f2fc 0x1000 + 5825276
    3 com.apple.logic.pro 0x0058f3c0 0x1000 + 5825472
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 com.apple.audio.CoreAudio 0x91462794 CAGuard::WaitFor(unsigned long long) + 204
    3 com.apple.audio.CoreAudio 0x914626a4 CAGuard::WaitUntil(unsigned long long) + 304
    4 com.apple.audio.CoreAudio 0x914608e8 HP_IOThread::WorkLoop() + 852
    5 com.apple.audio.CoreAudio 0x91460580 HPIOThread::ThreadEntry(HPIOThread*) + 16
    6 com.apple.audio.CoreAudio 0x914513dc CAPThread::Entry(CAPThread*) + 96
    7 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x90041098 machwaituntil + 8
    1 ...ple.CoreServices.CarbonCore 0x90bf8f68 MPDelayUntil + 60
    2 ...ple.CoreServices.CarbonCore 0x90bf8db0 Delay + 124
    3 ...opellerheads.rewire.library 0x1dfeb4b0 RWPUnregisterDeviceImp + 3096
    4 ...opellerheads.rewire.library 0x1e023a08 RWPUnregisterDeviceImp + 233840
    5 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 12:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bfc4ec TimerThread + 60
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 13:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x0010ce4c 0x1000 + 1097292
    3 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 14:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.logic.pro 0x0010cd6c 0x1000 + 1097068
    3 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 15:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.audio.midi.CoreMIDI 0x96ac1ac8 XServerMachPort::ReceiveMessage(int&, void*, int&) + 84
    3 com.apple.audio.midi.CoreMIDI 0x96ab4c80 MIDIInPortThread::Run() + 64
    4 com.apple.audio.midi.CoreMIDI 0x96ab8f44 XThread::RunHelper(void*) + 28
    5 com.apple.audio.midi.CoreMIDI 0x96ac287c CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 16:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc1af0 MPWaitOnQueue + 224
    3 com.Synthogy.Ivory 0x2f015b5c ThreadedTask::localTaskProc(void*) + 76 (bundle1.s:283)
    4 ...ple.CoreServices.CarbonCore 0x90bc1900 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 17:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.Synthogy.Ivory 0x2efbf7f4 AlphaSynthVoiceBank::localLoadBufferPThreadEntry() + 52 (bundle1.s:283)
    3 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 18:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c00020 DeferredTaskThread + 56
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 19:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.Foundation 0x92947300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x93765708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92940194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 20:
    0 libSystem.B.dylib 0x9002c3d8 semaphorewaittrap + 8
    1 libSystem.B.dylib 0x90030df0 pthreadcondwait + 516
    2 com.apple.logic.pro 0x00114798 0x1000 + 1128344
    3 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 21:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x98b347c4 ReadSchedulerThreadEntryPoint + 5300
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 22:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bfeff8 AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000fffeff20 srr1: 0x100000000000f930 vrsave: 0x0000000000000000
    cr: 0x44844448 xer: 0x0000000000000000 lr: 0x00000000004aced4 ctr: 0xfffffffffffeff00
    r0: 0x00000000004aced4 r1: 0x00000000bffff4a0 r2: 0x0000000000000000 r3: 0x0000000022b1cc10
    r4: 0x0000000090aa7904 r5: 0x00000000000003e8 r6: 0xffffffffffffffff r7: 0x0000000039c717d4
    r8: 0x0000000039c71907 r9: 0x0000000039c71720 r10: 0x0000000000000001 r11: 0x000000006f547904
    r12: 0x0000000022b0ebbb r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000004
    r16: 0x0000000000d9182c r17: 0x0000000001325624 r18: 0x0000000000000001 r19: 0x0000000000000000
    r20: 0x000000000002a0d4 r21: 0x0000000000000000 r22: 0x0000000000000001 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000000000005 r27: 0x0000000002d01918
    r28: 0x0000000000000000 r29: 0x000000001c188000 r30: 0x0000000039c69d80 r31: 0x0000000000000000
    Binary Images Description:
    0x1000 - 0xd8efff com.apple.logic.pro 7.2.2 (961.8) /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x141a000 - 0x146dfff com.apple.LogicLoopBrowser 7.2 (16.3) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1497000 - 0x14a2fff libaafintp.dylib /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x14b1000 - 0x14c2fff com.apple.EHardwareSupport 1.0.0 (21.8) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x1605000 - 0x16a4fff com.apple.eloop 3.1.0 (24.8) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x1736000 - 0x178efff libaafpgapi.dylib /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x2008000 - 0x2268fff libcom-api.dylib /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x25d4000 - 0x2638fff com.apple.ecore 1.1.0 (44.4) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x27aa000 - 0x27acfff com.unsanity.menuextraenabler 1.0.3 /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
    0x27be000 - 0x27dbfff com.apple.prokit.TigerPanels 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/TigerPa nels.bundle/Contents/MacOS/TigerPanels
    0x178fc000 - 0x1790afff com.apple.iokit.IOUSBLib 2.5.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x1793d000 - 0x1793efff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x195e5000 - 0x1964dfff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1966a000 - 0x1968efff com.motu.driver.FWA.HALPlugin ??? (1.2) /System/Library/Extensions/MOTUFireWireAudio.kext/Contents/PlugIns/HALPlugin.bu ndle/Contents/MacOS/HALPlugin
    0x19eb2000 - 0x19eb6fff com.apple.gal_anvil 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x19faf000 - 0x19fb4fff com.apple.gal_efx 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x1a550000 - 0x1a552fff com.apple.gal_egt 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x1a582000 - 0x1a584fff com.apple.gal_emx 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x1a64f000 - 0x1a651fff com.apple.gal_es1 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x1a6b2000 - 0x1a6b4fff com.apple.gal_es2 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x1a742000 - 0x1a744fff com.apple.gal_esu 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0x1a796000 - 0x1a798fff com.apple.gal_evb3 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x1a826000 - 0x1a828fff com.apple.gal_evd6 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x1a890000 - 0x1a892fff com.apple.gal_evoc 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x1a984000 - 0x1a986fff com.apple.gal_evp88 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x1aad6000 - 0x1aad8fff com.apple.gal_exs24 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x1ab4f000 - 0x1ab52fff com.apple.gal_revolver 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x1aca5000 - 0x1aca7fff com.apple.gal_sphere 1.0 (15) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x1c73ba90 - 0x1c73bb21 CFMPriv_AGL PEF binary: CFMPriv_AGL
    0x1c73bcd0 - 0x1c73bd82 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x1c73bf70 - 0x1c73c025 CFMPriv_DVComponentGlue PEF binary: CFMPriv_DVComponentGlue
    0x1c73c250 - 0x1c73c2f3 CFMPriv_QuickTime PEF binary: CFMPriv_QuickTime
    0x1c73c370 - 0x1c73c3e7 CFMPriv_System PEF binary: CFMPriv_System
    0x1c73c690 - 0x1c73c760 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x1c73c890 - 0x1c73c963 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x1c73c9d0 - 0x1c73ca8b CFMPriv_Help PEF binary: CFMPriv_Help
    0x1c73ca90 - 0x1c73cb5a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x1c73cbd0 - 0x1c73cca6 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x1c73cd10 - 0x1c73cde3 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x1c73ce60 - 0x1c73cf45 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x1c73cfb0 - 0x1c73d086 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x1c73d160 - 0x1c73d21e CFMPriv_Print PEF binary: CFMPriv_Print
    0x1c73d240 - 0x1c73d30d CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x1c73d390 - 0x1c73d472 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x1c73d4f0 - 0x1c73d5c3 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x1c73d640 - 0x1c73d713 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x1c73d7f0 - 0x1c73d8b2 CFMPriv_AE PEF binary: CFMPriv_AE
    0x1c73d8c0 - 0x1c73d985 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x1c73da00 - 0x1c73dad7 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x1c73db60 - 0x1c73dc43 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x1c73dcc0 - 0x1c73dd9a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x1c73de10 - 0x1c73def0 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x1c73df80 - 0x1c73e066 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x1c73e140 - 0x1c73e217 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x1c73e220 - 0x1c73e2e2 CFMPriv_QD PEF binary: CFMPriv_QD
    0x1c73e3e0 - 0x1c73e4c9 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x1dfe3000 - 0x1e04ffff se.propellerheads.rewire.library 1.7 /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1e06c000 - 0x1e19efff se.propellerheads.reason.engine 3.0 /Applications/Reason/Reason.app/Contents/PlugIns/Reason Engine.plugin/Contents/MacOS/Reason Engine
    0x1e251000 - 0x1e25bfff com.arturia.Storm3ReWire ??? (1.0) /Library/Application Support/Arturia/Storm 3/ReWire.bundle/Contents/MacOS/ReWire
    0x1e3be000 - 0x1e40d3c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x1e40d3d0 - 0x1e4256bd Apple;Carbon;Multimedia PEF binary: Apple;Carbon;Multimedia
    0x1e426c00 - 0x1e42898b Apple;Carbon;Networking PEF binary: Apple;Carbon;Networking
    0x22910000 - 0x22935fff com.uaudio.effects.UAD 1176SE 4.4.0 /Library/Audio/Plug-Ins/Components/UAD 1176SE.component/Contents/MacOS/UAD 1176SE
    0x22979000 - 0x229ab9e2 UAD GUI Library Xpwpc PEF binary: UAD GUI Library Xpwpc
    0x229ab9f0 - 0x229d9206 UA PowerPlant Carbon PEF binary: UA PowerPlant Carbon
    0x229d9210 - 0x22a269a1 UA MSL Carbon PEF binary: UA MSL Carbon
    0x22c17000 - 0x22c3cfff com.uaudio.effects.UAD LA2A 4.4.0 /Library/Audio/Plug-Ins/Components/UAD LA2A.component/Contents/MacOS/UAD LA2A
    0x22dd4000 - 0x22e1bfff com.MusicUnfolding.audiounit.GyroVibe 1.0 /Library/Audio/Plug-Ins/Components/GyroVibe.component/Contents/MacOS/GyroVibe
    0x23360000 - 0x2336efff com.MusicUnfolding.audiounit.GyroVibe /Library/Audio/Plug-Ins/Components/GyroVibe.component/Contents/Resources/MUGyro VibeViewFactory.bundle/Contents/MacOS/MUGyroVibeViewFactory
    0x25008000 - 0x25193fff com.spectrasonics.StyM 1.5.1c /Library/Audio/Plug-Ins/Components/StylusRMX.component/Contents/MacOS/StylusRMX
    0x27c05000 - 0x27c96fff com.Spectrasonics.Trilogy Trilogy (1.0) /Library/Audio/Plug-Ins/Components/Trilogy AU.component/Contents/MacOS/Trilogy AU
    0x28e72000 - 0x28e8ffff com.ikmultimedia.TRackS Compressor 1.2.1 (???) /Library/Audio/Plug-Ins/Components/TRackS Compressor.component/Contents/Resources/TRackS Compressor.vst/Contents/MacOS/TRackS Compressor
    0x29005000 - 0x2903bfff com.ikmultimedia.effects.trackscompressor ??? (1.2.2) /Library/Audio/Plug-Ins/Components/TRackS Compressor.component/Contents/MacOS/TRackS Compressor
    0x2abc7200 - 0x2abc71ff SSLChannelProcess.1 PEF binary: SSLChannelProcess.1
    0x2b427000 - 0x2b4a3fff com.ikmultimedia.TRackSVPA 1.2.1 (???) /Library/IK Multimedia/TRackS/TRackS.vpa/Contents/MacOS/TRackS
    0x2ee0c000 - 0x2ee42fff com.ikmultimedia.effects.trackseq ??? (1.2.2) /Library/Audio/Plug-Ins/Components/TRackS EQ.component/Contents/MacOS/TRackS EQ
    0x2ee90000 - 0x2eeadfff com.ikmultimedia.TRackS EQ 1.2.1 (???) /Library/Audio/Plug-Ins/Components/TRackS EQ.component/Contents/Resources/TRackS EQ.vst/Contents/MacOS/TRackS EQ
    0x2efaa000 - 0x2f046fff com.Synthogy.Ivory v1.56 (1.56) /Library/Audio/Plug-Ins/Components/Ivory AU.component/Contents/MacOS/Ivory AU
    0x30cc5000 - 0x30ceafff com.uaudio.effects.UAD Pultec-Pro 4.4.0 /Library/Audio/Plug-Ins/Components/UAD Pultec-Pro.component/Contents/MacOS/UAD Pultec-Pro
    0x39b62000 - 0x39b87fff com.uaudio.effects.UAD Plate 140 4.4.0 /Library/Audio/Plug-Ins/Components/UAD Plate 140.component/Contents/MacOS/UAD Plate 140
    0x448b4000 - 0x448d9fff com.uaudio.effects.UAD Cambridge 4.4.0 /Library/Audio/Plug-Ins/Components/UAD Cambridge.component/Contents/MacOS/UAD Cambridge
    0x4566a000 - 0x4568ffff com.uaudio.effects.UAD Neve 1073SE 4.4.0 /Library/Audio/Plug-Ins/Components/UAD Neve 1073SE.component/Contents/MacOS/UAD Neve 1073SE
    0x4657a000 - 0x4659ffff com.uaudio.effects.UAD Neve 33609SE 4.4.0 /Library/Audio/Plug-Ins/Components/UAD Neve 33609SE.component/Contents/MacOS/UAD Neve 33609SE
    0x478a1000 - 0x478b982f UAD 1176SE PEF binary: UAD 1176SE
    0x479d8000 - 0x479fdfff com.uaudio.effects.UAD Precision Equalizer 4.4.0 /Library/Audio/Plug-Ins/Components/UAD Precision Equalizer.component/Contents/MacOS/UAD Precision Equalizer
    0x47a3d000 - 0x47a67adf UAD Precision Equalizer PEF binary: UAD Precision Equalizer
    0x47ac5000 - 0x47ae5587 UAD Neve 1073SE PEF binary: UAD Neve 1073SE
    0x47d4d000 - 0x47d6d8a7 UAD Neve 33609SE PEF binary: UAD Neve 33609SE
    0x47fee000 - 0x48024fff com.ikmultimedia.effects.trackslimiter ??? (1.2.2) /Library/Audio/Plug-Ins/Components/TRackS Limiter.component/Contents/MacOS/TRackS Limiter
    0x48051000 - 0x4806efff com.ikmultimedia.TRackS Limiter 1.2.1 (???) /Library/Audio/Plug-Ins/Components/TRackS Limiter.component/Contents/Resources/TRackS Limiter.vst/Contents/MacOS/TRackS Limiter
    0x48176000 - 0x481e0fff com.Waves.AU.plugin.shell WaveShell-AU5.7 version 5.7 (5.7) /Library/Audio/Plug-Ins/Components/WaveShell-AU5.7.component/Contents/MacOS/Wav eShell-AU5.7
    0x4825b000 - 0x4827072e SSLChannel 1.2 PEF binary: SSLChannel 1.2
    0x48271000 - 0x482baa3a WXMSL_AllCarbon.Shlb PEF binary: WXMSL_AllCarbon.Shlb
    0x482bb000 - 0x485feb5d SSLLib 1.1b1 PEF binary: SSLLib 1.1b1
    0x48601000 - 0x48609171 OpenGLLibrarypwpc PEF binary: OpenGLLibrarypwpc
    0x488a8000 - 0x488bafff com.paceap.iokit.iLokSupport 5.4.0 (5.4) /Library/Application Support/PACE Anti-Piracy/iLokSupport.bundle/Contents/MacOS/iLokSupport
    0x48cf3000 - 0x49273fff com.izotope.audioplugins.AU.Ozone3 3.1.0 (3.1.0b857) /Library/Audio/Plug-Ins/Components/Ozone3.component/Contents/MacOS/Ozone3
    0x4a3a4000 - 0x4a3e3fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x4a3ee000 - 0x4a457fff com.apple.AppleIntermediateCodec 1.0.1 (124) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x4a46c000 - 0x4a4e5fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x4f64b000 - 0x4f664fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x4f66a000 - 0x4f685fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x50e05000 - 0x50f14fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x56605000 - 0x566f5fff com.apple.ATIRadeon9700GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x8fe00000 - 0x8fe52fff dyld 45.3 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 4.0 (129.16) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d7fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d5000 - 0x913defff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e5000 - 0x9140dfff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91420000 - 0x9142bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91430000 - 0x91438fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143c000 - 0x914b7fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f4000 - 0x914f4fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f6000 - 0x9152efff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91549000 - 0x91616fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166b000 - 0x916fcfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91743000 - 0x917fafff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91837000 - 0x91895fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c4000 - 0x918e5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f9000 - 0x9191efff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91931000 - 0x91973fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9198f000 - 0x919a3fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b1000 - 0x919f1fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a07000 - 0x91acffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b1d000 - 0x91b32fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b37000 - 0x91b54fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b59000 - 0x91bc8fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bdf000 - 0x91be3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be5000 - 0x91c2dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c32000 - 0x91c6ffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c76000 - 0x91c8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c94000 - 0x91c97fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c99000 - 0x91c99fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9b000 - 0x91d80fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d88000 - 0x91da7fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e13000 - 0x91e81fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e8c000 - 0x91f21fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3b000 - 0x924c3fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924f6000 - 0x92821fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92851000 - 0x928d9fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291a000 - 0x92b45fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c63000 - 0x92d41fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d61000 - 0x92e4ffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e61000 - 0x92e7ffff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8a000 - 0x92ee4fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f02000 - 0x92f02fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f04000 - 0x92f18fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f30000 - 0x92f40fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f4c000 - 0x92f61fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f73000 - 0x92ffafff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9300e000 - 0x93019fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93023000 - 0x93050fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306a000 - 0x93079fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93085000 - 0x930ebfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9311c000 - 0x9316bfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93199000 - 0x931b6fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931c8000 - 0x931d5fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931de000 - 0x934ebfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363a000 - 0x93646fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9364b000 - 0x9366bfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936be000 - 0x936befff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c0000 - 0x93cf3fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94080000 - 0x940f0fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94129000 - 0x941ecfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9423e000 - 0x9423efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94240000 - 0x943f3fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94446000 - 0x94483fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9448b000 - 0x944dbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9451b000 - 0x9455ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9467e000 - 0x9468dfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94695000 - 0x946a2fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946e8000 - 0x94701fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94708000 - 0x949d7fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a9a000 - 0x94b0bfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b7e000 - 0x94b9efff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94ca6000 - 0x94dd6fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e68000 - 0x94e77fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e7f000 - 0x94eacfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94eb3000 - 0x94ec3fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94ec7000 - 0x94ef6fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94f06000 - 0x94f23fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9531c000 - 0x9531cfff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9531e000 - 0x953a1fff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x953ce000 - 0x95414fff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95ee3000 - 0x95ee5fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x95ee8000 - 0x95f1afff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96253000 - 0x96325fff com.apple.prokit 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x96ab4000 - 0x96af3fff com.apple.audio.midi.CoreMIDI 1.5 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x96edb000 - 0x96efafff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97611000 - 0x976d2fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x976fd000 - 0x976fefff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97700000 - 0x9770dfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x981a5000 - 0x98276fff com.apple.QuartzComposer 1.2.3 (32.21) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x982f3000 - 0x982f3fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98b1d000 - 0x994d4fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x996fb000 - 0x996fffff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99701000 - 0x997e5fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x99931000 - 0x999f8fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9a315000 - 0x9a333fff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x9a3ae000 - 0x9a3affff com.apple.iokit.dvcomponentglue 1.7.9 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0.1 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac7,3, BootROM 5.2.4f1, 2 processors, PowerPC G5 (3.1), 2.7 GHz, 5 GB
    Graphics: ATI Radeon 9650, ATY,RV351, AGP, 256 MB
    Memory Module: DIMM0/J11, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J12, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM2/J13, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM3/J14, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM4/J41, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM5/J42, 1 GB, DDR SDRAM, PC3200U-30330
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: pci110b,4, sppci_othermultimedia, SLOT-2
    PCI Card: pci110b,4, sppci_othermultimedia, SLOT-3
    PCI Card: INIC1623, scsi, SLOT-4
    Serial ATA Device: Maxtor 6V300F0, 279.48 GB
    Serial ATA Device: Maxtor 6B300S0, 279.48 GB
    Parallel ATA Device: Maxtor 7B300S0, 279.48 GB
    Parallel ATA Device: SONY DVD RW DW-Q28A,
    USB Device: Hub, , Up to 480 Mb/sec, 500 mA
    USB Device: Hub, , Up to 480 Mb/sec, 500 mA
    USB Device: iLok, iLok, Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: XSKey, Emagic GmbH, Up to 1.5 Mb/sec, 500 mA
    USB Device: USB Device, , Up to 12 Mb/sec, 500 mA
    USB Device: USB Trigger Finger, M-Audio, Up to 12 Mb/sec, 500 mA
    USB Device: USB2.0 Hub Controller, NEC Corporation, Up to 480 Mb/sec, 500 mA
    USB Device: USB Receiver, Logitech, Up to 1.5 Mb/sec, 500 mA
    USB Device: USB2.0 MFP(Hi-Speed), EPSON, Up to 480 Mb/sec, 500 mA
    USB Device: ShuttlePRO v2, Contour Design, Up to 1.5 Mb/sec, 500 mA
    USB Device: TranzPort, Frontier Design, Up to 1.5 Mb/sec, 500 mA
    FireWire Device: LaCie FW800 Big Disk drive LUN 0, LaCie Group SA, Up to 800 Mb/sec
    FireWire Device: 0x100800, 0x1F2, Up to 400 Mb/sec

    I stil cant get it to work, and I think the options you gave me are for a version other than illustrator 9, because I cant
    find them..
    Is there another way?

  • HTTP Server (Main) error need help.

    Hello,
    We are having the following error in the HTTP Server logs and need to understand what is causing this issue.
    [Tue Dec 19 15:29:35 2006] [error] [client 192.168.228.32] [ecid: 962577774223,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/forms/engine/RunformBundle_en_AU.class
    [Tue Dec 19 15:29:35 2006] [error] [client 192.168.228.32] [ecid: 2216708226414,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/forms/engine/RunformBundle_en_AU.class
    [Tue Dec 19 15:29:35 2006] [error] [client 192.168.228.32] [ecid: 4484450958748,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/forms/engine/RunformBundle_en_AU.properties
    [Tue Dec 19 15:30:25 2006] [error] [client 192.168.228.32] [ecid: 1166509825:192.168.228.32:1712:2352:20,0] (10054)An existing connection
    was forcibly closed by the remote host: MOD_OC4J_0087: Got an unexpected error while calling send() to send a message to oc4j and the
    error code is 10054.
    [Tue Dec 19 15:30:25 2006] [error] [client 192.168.228.32] [ecid: 1166509825:192.168.228.32:1712:2352:20,0] MOD_OC4J_0053: Failed to call
    network routine to send out an ajp13 buffer message to oc4j.
    [Tue Dec 19 15:30:25 2006] [warn] [client 192.168.228.32] [ecid: 1166509825:192.168.228.32:1712:2352:20,0] MOD_OC4J_0027: Failed to send
    out an ajp13 message to oc4j.
    [Tue Dec 19 15:30:25 2006] [error] [client 192.168.228.32] [ecid: 1166509825:192.168.228.32:1712:2352:20,0] MOD_OC4J_0026: Failed to marshal
    a request to ajp13 message headers or send them to the web container.
    [Tue Dec 19 15:32:43 2006] [error] [client 192.168.228.32] [ecid: 2921083055113,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/ewt/alert/resource/AlertBundle_en_AU.class
    [Tue Dec 19 15:32:43 2006] [error] [client 192.168.228.32] [ecid: 5360624479132,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/ewt/alert/resource/AlertBundle_en_AU.class
    [Tue Dec 19 15:32:43 2006] [error] [client 192.168.228.32] [ecid: 911038360600,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/ewt/alert/resource/AlertBundle_en_AU.properties
    [Tue Dec 19 15:32:46 2006] [error] [client 192.168.228.32] [ecid: 2921083055113,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/ewt/alert/resource/AlertBundle_en_AU.class
    [Tue Dec 19 15:32:46 2006] [error] [client 192.168.228.32] [ecid: 4793688799699,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/ewt/alert/resource/AlertBundle_en_AU.class
    [Tue Dec 19 15:32:46 2006] [error] [client 192.168.228.32] [ecid: 859498756624,1] File does not exist: d:/oracle/product/oh_as_mid/forms/java/oracle/ewt/alert/resource/AlertBundle_en_AU.properties
    Any help would be great.

    More information from the OC4J_BI_Forms application log file.
    06/12/20 07:44:35 formsweb: Forms session <78> failed during startup: no response from runtime process
    06/12/20 07:44:35 formsweb: Forms session <78> exception stack trace:
    oracle.forms.engine.RunformException: Forms session <78> failed during startup: no response from runtime process
    at oracle.forms.servlet.RunformProcess.connect(Unknown Source)
    at oracle.forms.servlet.RunformProcess.dataToRunform(Unknown Source)
    at oracle.forms.servlet.RunformSession.dataToRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)

  • CRW32.exe error NEED HELP

    I get an error when I click on the print preview button, then I click thru the records using the right arrow in the records field at the top of the screen.  I can get to page 3 but when I click it again I get the error "crw32.exe has encountered a problem and needs to close.  We are sorry for the inconvenience." AppName: crw32.exe      AppVer: 12.2.0.290      ModName: cslibu-3-0.dll
    ModVer: 12.2.0.290      Offset: 000023a7
    Can anyone help me with this?? I have to get a job out today and I cant do anything!!

    What happens if you create a new report that has more than 3 pages of data?
    I suggest you purchase a case and get a support engineer tyo help you debug this:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551
    Thank you
    Don

  • Itunes error need help

    I keep getting this error when opening itunes. I have deleted itunes and re downloaded. still not working. can someone help!
    iTunes has encountered a problem and needs to close. We are sorry for the inconvenience.

    Never mind I fixed this problem had to delete the apple support folder as well and then reinstall then turn off compatibility mode because I got the Quicktime failed to initialize error and Then it worked fine.

  • Documaker 12.1 - ODBC - SQL Setup Error - Need  Help

    Hi
    We are facing issues while trying to checkout/read the resources from the SQL tables. We are getting an error "An error occured getting the file". We use "ODBC" driver for connecting to SQL database and the ODBC test connection seems to run succesfully. This doesn't seems to be a connectivity issue as we are able to see that the resources are listed in IDE.
    Studio somehow is not able to read/load the data from the application data table. Do we need to set-up any access privileges for the database and tables to enable the DMStudio to access it.
    Thanks in Advance.

    Hi,
    When you run the Create New Workspace wizard in Documaker Studio and select your DBMS type it tries to deploy the tables through our ODBC connection.
    If successful it will then create the workspace with some minumum resources and query for other info like Font Cross-reference file, etc. and when done you have a complete workspace which includes INI, DFD configuration files specific to your choice of DBMS type. This workspace and it configuration files (e.g. fsiuser.ini, fsisys.ini, deflib\carfile.dfd, etc.) are needed for access to the workspace properly.
    If the wizard is unsuccessful (for reasons such as permissions, access, etc.) it will let you generate a DDL and pass it off to the qualified personnel but it expects you to either leave the studio running and continue from there or to re-run the create workspace to complete the task and configuration. If you stop at the DDL stage and don't complete the task but try and use internal defaults for the configuration files the resource may appear to deploy but they will not load upon studio preview or attempt by the publishing engine to process with them because the internal configuration does not use the appropriated datatype for the database. This situation would be classified as improper or incomplete workspace creation.
    I suspect you hit this problem. Going back and configuring a workspace to just talk to the database is not appropriate and can have undefined results.
    Hope this helps,
    -Steve

Maybe you are looking for

  • How do i embed photo in body of yahoo mail with firefox? tom

    if i copy a jpeg image from my documents and paste into the body of an email i want to send from yahoo mail it looks ok, but if i open that email in gmail, there is no image; just a long series of letters and numerals... what can i do to embed a phot

  • Webdynpro ABAP application is not displaying in Portal

    Hi,   I have installed NW2004s and NW ABAP7.0 trail versions and configured Portal(SLD,Jco,.SSO).   I tried to created one WD ABAP iView with proper application name, etc.. when i go to preview of that iView its opening in separate winow and gettting

  • Mini Bridge isn't showing thumbnails

    Hi. Everything with Photoshop and Bridge CS5 is working super accept for the mini bridge ??? It just shows "waiting for Bridge CS5" all the time and nothing ever happen and everything else is working perfect i think. Running iMac 27" i5, 8GB of Ram,

  • Trouble Installing Microsoft Office 2008 10.8

    Getting a headache trying to find a clear answer on this -- if I can't install Office Entourage PowerPoint Excel on 10.8.3 in 2013, is it possible? I just did an Erase and clean fresh install of Mountain Lion 10.8.3 (late 2011 MacBook Pro). I have Mi

  • About SOA SUITE

    Hi to everyone.....,I am new oracle fusion middleware family....previously i worked in dot net...now I am looking for job in middleware...I am learning SOA11g it cover all the topics like(mediators,BPEL,adapters,wsdl,soap messages,webservices,OWSM)..