JAVA and MYSQL NOW() Function only displays year?

I have run into something interesting with running the MYSQL NOW() function.
Here is what I'm running:
SELECT  NOW() from databaseThis gives me "2010" only. Any idea why this may be? If I run the same mysql query in mysql from the command line I get the correct output "2010-01-14 14:10:03".
Has anyone else seen this behavior?
Edited by: crusherdestroyer on Jan 14, 2010 12:19 PM

I'm not doubting that. Here is how I'm using it.
import java.util.Date;
String userName = "username";
               String password = "password";
               String url = "jdbc:mysql://localhost/database";
               Class.forName ("com.mysql.jdbc.Driver").newInstance ();
               conn = DriverManager.getConnection (url, userName, password);
               //System.out.println ("Database connection established");
               Statement s = conn.createStatement ();
               s.executeQuery ("SELECT NOW() from database' ");
               ResultSet rs = s.getResultSet ();
               int count = 0;
               Date timenow = null;
               while (rs.next ())
                   timenow = rs.getDate ("NOW()");
                ++count;
System.out.println (timenow);Tried this too.
String userName = "username";
               String password = "password";
               String url = "jdbc:mysql://localhost/database";
               Class.forName ("com.mysql.jdbc.Driver").newInstance ();
               conn = DriverManager.getConnection (url, userName, password);
               //System.out.println ("Database connection established");
               Statement s = conn.createStatement ();
               s.executeQuery ("SELECT NOW() from database' ");
               ResultSet rs = s.getResultSet ();
               Date timenow = null;
                   timenow = rs.getDate ("NOW()");
System.out.println (timenow);Edited by: crusherdestroyer on Jan 14, 2010 2:04 PM
Edited by: crusherdestroyer on Jan 14, 2010 2:07 PM

Similar Messages

  • Re: My TEAC DV-w28ECT driver used to read both DVD and CD now it only reads DVD

    My TEAC DV-w28ECT driver used to read both DVD and CD now, it only reads DVDs. what happened and how can I fix it? I have Windows Vista

    Try removing the CD/DVD Filters from the Registry.
    When CD/DVD related software is installed (such as iTunes, Nero, virtual CD software), they install filters into the registry, which can cause compatibility problems.
    1) Run Regedit (Start -> Run -> Regedit)
    2) Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
    3) In the right pane, delete the "UpperFilters" key, and delete the "LowerFilters" key.
    4) Reboot.
    If your CD/DVD programs stop working, you will need to reinstall them (preferably with an updated version).
    This utility can remove the filters for you:
    http://www.csd.toshiba.com/content/support/bulletins/su2065061/RmvFltrs.exe

  • Few question about Java and MySQL connection

    Hi!
    I have some problems with creating connection between Java and MySQL.
    I followed the restrictions in mysql-connector-java.jar' readme, I set the CLASSPATH :
    CLASSPATH=.;D:/mysql/mysql-connector-java.jar;
    I copied this jar file to the right place (descripted above), and I used the right steps to load it:
    Class.forName('com.mysql.jdbc.Driver"); and it throws a ClassNotFoundException
    Why? All the paths are correct, everything is on the right place.... I dont know why.
    When I installed the JBuilder8, and copied the jar file to JBuilder8/jdk4/jre/lib/ext it worked without any CLASSPATH in enviromental variables.
    If I want to run my program on machines where are not JBuilder, what should I do?
    Please help, if you can.
    Thanks,
    henpanta

    Yeah. So if I compiled my program with JBuilder to an .exe file, I cant run it on other machines, if the jar file isnt in the same place?
    If I tried your advice, java -classpath mymainclass I got the next message:
    main class not found. Believe me, its there. :(

  • The performance of management system with Java and MySQL

    Hi all,
    I want to develop one management application with Java and MySQL. However I am not sure which is a good way to design the system. The system has to deal with customers' data in the database.
    Should I create objects for every customers when application starts so that I do not need to access to the database often? Or
    Should I access to the database everytime the user want to deal with customer's data?
    Welcome for any suggestion.
    Thank you
    Pat

    Hi
    i i think u should go through MVC model or use connection pooling

  • When I play itunes from my laptop which uses a Y-cord plugged into a sound board, the songs fade in and out, softer/louder ...anyone know what would cause this? I have bought new cords, speaker cords, speakers...and the laptop is only 1 year old...

    when I play itunes from my laptop which uses a Y-cord plugged into a sound board, the songs fade in and out, softer/louder ...anyone know what would cause this? I have bought new cords, speaker cords, speakers...and the laptop is only 1 year old...

    when I play itunes from my laptop which uses a Y-cord plugged into a sound board, the songs fade in and out, softer/louder ...anyone know what would cause this? I have bought new cords, speaker cords, speakers...and the laptop is only 1 year old...

  • How to handle blob data with java and mysql and hibernate

    Dear all,
    I am using java 1.6 and mysql 5.5 and hibernate 3.0 . Some time i use blob data type . Earlier my project's data base was oracle 10g but now i am converting it to Mysql and now i am facing problem to save and fetch blob data to mysql database . Can anybody give me the source code for blob handling with java+Mysql+Hibernate
    now my code is :--
    ==================================================
    *.hbm.xml :--
    <property name="image" column="IMAGE" type="com.shrisure.server.usertype.BinaryBlobType" insert="true" update="true" lazy="false"/>
    ===================================================
    *.java :--
    package com.shrisure.server.usertype;
    import java.io.OutputStream;
    import java.io.Serializable;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Types;
    import javax.naming.InitialContext;
    import javax.sql.DataSource;
    import oracle.sql.BLOB;
    import org.hibernate.HibernateException;
    import org.hibernate.usertype.UserType;
    import org.jboss.resource.adapter.jdbc.WrappedConnection;
    import com.google.gwt.user.client.rpc.IsSerializable;
    public class BinaryBlobType implements UserType, java.io.Serializable, IsSerializable {
    private static final long serialVersionUID = 1111222233331231L;
    public int[] sqlTypes() {
    return new int[] { Types.BLOB };
    public Class returnedClass() {
    return byte[].class;
    public boolean equals(Object x, Object y) {
    return (x == y) || (x != null && y != null && java.util.Arrays.equals((byte[]) x, (byte[]) y));
    public void nullSafeSet(PreparedStatement st, Object value, int index) throws HibernateException, SQLException {
    BLOB tempBlob = null;
    WrappedConnection wc = null;
    try {
    if (value != null) {
    Connection oracleConnection = st.getConnection();
    if (oracleConnection instanceof oracle.jdbc.driver.OracleConnection) {
    tempBlob = BLOB.createTemporary(oracleConnection, true, BLOB.DURATION_SESSION);
    if (oracleConnection instanceof org.jboss.resource.adapter.jdbc.WrappedConnection) {
    InitialContext ctx = new InitialContext();
    DataSource dataSource = (DataSource) ctx.lookup("java:/DefaultDS");
    Connection dsConn = dataSource.getConnection();
    wc = (WrappedConnection) dsConn;
    // with getUnderlying connection method , cast it to Oracle
    // Connection
    oracleConnection = wc.getUnderlyingConnection();
    tempBlob = BLOB.createTemporary(oracleConnection, true, BLOB.DURATION_SESSION);
    tempBlob.open(BLOB.MODE_READWRITE);
    OutputStream tempBlobWriter = tempBlob.getBinaryOutputStream();// setBinaryStream(1);
    tempBlobWriter.write((byte[]) value);
    tempBlobWriter.flush();
    tempBlobWriter.close();
    tempBlob.close();
    st.setBlob(index, tempBlob);
    } else {
    st.setBlob(index, BLOB.empty_lob());
    } catch (Exception exp) {
    if (tempBlob != null) {
    tempBlob.freeTemporary();
    exp.printStackTrace();
    st.setBlob(index, BLOB.empty_lob());
    // throw new RuntimeException();
    } finally {
    if (wc != null) {
    wc.close();
    public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws HibernateException, SQLException {
    final Blob blob = rs.getBlob(names[0]);
    return blob != null ? blob.getBytes(1, (int) blob.length()) : null;
    public Object deepCopy(Object value) {
    if (value == null)
    return null;
    byte[] bytes = (byte[]) value;
    byte[] result = new byte[bytes.length];
    System.arraycopy(bytes, 0, result, 0, bytes.length);
    return result;
    public boolean isMutable() {
    return true;
    public Object assemble(Serializable arg0, Object arg1) throws HibernateException {
    return assemble(arg0, arg1);
    public Serializable disassemble(Object arg0) throws HibernateException {
    return disassemble(arg0);
    public int hashCode(Object arg0) throws HibernateException {
    return hashCode();
    public Object replace(Object arg0, Object arg1, Object arg2) throws HibernateException {
    return replace(arg0, arg1, arg2);
    =================================================================
    can anyone give me the source code for this BinaryBlobType.java according to mysql blob handling ..

    Moderator action: crosspost deleted.

  • Java and Flash not working ONLY in Safari

    Ok, so Java and flash stopped working in Safari on my 10.6.8 system. It seems a recent update caused a problem and all of the normal items I have gone through have made it worse or not helped.
    Java is not working in Safari (My account or guest account)
         http://javatester.org/version.html    Error "attempted to load Java content, but Java is unavailable or not installed."
         http://www.java.com/en/download/testjava.jsp " attempted to load Java content, but Java is unavailable or not installed."
         http://www.adobe.com/shockwave/welcome/  Error "Missing plugin"
         Flash tests just say missing plugin
    Java DOES work in Chrome and Firefox
         http://www.java.com/en/download/testjava.jsp
              Java SE 6 Update 31
              Flash - 11,2,202,235 installed
    Able to use apps and other items online that are not working in Safari.
    Have downloaded and installed the following and done the following
         Ran software update
         Verified Java and Java Script are enabled via Safari > Preferences > Security
         Re-installed Java for Mac OS X 10.6 Update 8
         Reinstalled current version of flash
         Looked around and deleted all plist, and java folders in library locations (user and main system)
         Cleared out metadata folders
         Reset Safari several times
         Java Preferences
              Cleared all cache
              Made sure no old versions there (2 entereis)
              Reset all defaults
              Removed any blocked items
    Current Java version per terminal
    java -version
    java version "1.6.0_31"
    Java(TM) SE Runtime Environment (build 1.6.0_31-b04-415-10M3646)
    Java HotSpot(TM) 64-Bit Server VM (build 20.6-b01-415, mixed mode)
    So - Java is up and working - works in Chrome and Firefox. Have reinstalled both from current versions. Reset all browser cache. Issue follows Safari. Normally installing these and trying again works. I do not know what other things to reset or clear out.

    baltwo wrote:
    I thought the OP already went through the preferences app.
    Yes, I got distracted for a moment with something, came back and I didn't finish reading the OP's original post, I have since edited mine.
    BTW, the Mozilla plug-in checker is basically useless for Safari users, since have of those I have have no status, but work in Safari:
    I don't know the causes for the "Research" one's, why there isn't a link or why it doesn't update the checker,
    But at least it's infomative, as vulnerable plug-ins are responsible for MacDefender and Flashback malware attacks.
    Someone with a lot of plug-ins should be running Firefox and NoScript, as your very exposed to multiple attack vectors from any of those plug-ins, which is the purpose of the web site, to get the word out about outdated plug-ins with potential security issues.

  • I took a download to the Apple Store App and now it only displays portrait. Why?

    Help Mr. Wizard!

    Double click your home button, then swipe the bottom bar to the right.  Likely you will the the lower right orientation button with a lock on it.  Click on it and you should then be able to change the orientation of the screen.
    If for some reason you have mapped the orientation to the hardware button just slide the mute/orientation button on the side of the iPad.

  • Wrong use of Java and Mysql?

    I currently have a dedicated database server which runs MySQL. On the MySQL server I have 15 tables with the InnoDB engine.
    These tables all have a column called "last_sync". Whenever a tablerow is updated by a java client, the "last_sync" column is refreshed.
    Other java clients will query these tables with a query that looks something like this
    "Select count(*) from table where last_sync > (currenttime-5 seconds) and last_sync <= (currenttime)"
    So much for the background info. To stresstest my server, and see how much queries per second he can handle,
    I installed Super Smack (http://vegan.net/tony/supersmack/). Super smack is a stresstest tool which can be given 2 start-up parameters.
    These parameters say how many clients/threads should connect and how many times the query should be ran. When installed it
    is possible to alter the stress query by editting the "select-key.smack" file. I did so and placed a query that is equal to the above statement.
    Super-smack (as well as MySQL Administrator and Innotop) tells me that it can execute 50K queries per second when I use a single connection.
    When I use two connections I get roughly 88K. This is logical since my server is a dual-core machine. I run super smack on my DB server.
    Now, whenever I try to stresstest my server with a java written test, I can barely get to 10k queries per second on a single connection.
    The app is being runned on the DB server as well. Furthermore when I add another connection, the limit stays at 10k queries.
    When monitoring the connection threads with MySQL Administrator the connection threads
    are often "sleeping" while, when I run the SuperSmack test they are constantly in use.
    Another detail, the connection threads also gives info what it's doing ("Executing query", "Writing to net" etc.). I occasionally see "Rollback", which is strange
    since my stress query is not failing in my stress application.
    To make this complete, I've uploaded my little test along with the SQL creation code to the following URL: HERE
    It should work straight out of the box. Naturally the table creation query should be ran and the connection settings specified in the java file.
    Basically the one thing I cannot understand is why supersmack runs a factor 5-8 faster than my java test while they are
    using the exact same table and are executed on the exact same machine. This however limits out the possibility of it being a database config setting.
    Im personally guessing im incorrectly using transactions or the MySQL connector/j is giving problems.
    I understand this might take some effort, so i'll try to add more dukes than a regular post.
    -Edit. Was under the assumption that you could add more than 10 duke points.
    Thanks in advance
    Edited by: killingdjef on Mar 25, 2009 6:52 AM
    Edited by: killingdjef on Mar 25, 2009 10:28 AM

    killingdjef wrote:
    10K can be perfect, however, when I run Supersmack and see that my database server can handle 8 times more queries per second on the exact same table with the exact same query,
    I'm beginning to wonder if im doing something incorrect or if i'm missing something crucial.
    I have no clue whats a reasonable amount of queries per second is for a dedicated innodb server
    but based on the benchmark test im thinking I can squeeze out more.
    The stresstest isnt representational for a single client. Its merely a simulation how many clients could be served.
    The higher the queries per second, the more clients that can be served. Im trying to find out what the limit would be.I am quite aware of what impact means in terms of client processing. That however isn't the point. The point is that you intend to serve a market of some sort and support some reasonable growth. It is pointless to try to do more than that.
    If you have enough "clients" running directly against that database to generate 10k queries a second then your architecture (and thus design and implementation) is very likely flawed.
    For example
    1. What happens to all of those clients when the database goes down either accidently or on purpose?
    2. Those clients are hitting the database direct, and I don't see how you are going to get enough clients like that without internet consumers. And you absolutely do not want to expose the database that way.
    3. Conversely say you have a call center with 2000 support people, which is a huge call center. There is no way that number could generate even close to 10k a second.
    4. A comparable txn business model is credit card processing and a sustained speed like that would be sufficient to handle all of the credit card transaction business in the US during the peak xmas season. With extra left over.
    Not to mention that you didn't address the network problem at all. Note that the numbers I outlines above doesn't allow any bandwidth for the data to get into the server in the first place.
    And inserts will take more time than queries.
    But as I already said, if you are using transaction then that will have an impact. Connections/threads will as well.

  • Calendar list view and search go back only 1 year

    I have a new iPhone 4S (IOS5).  Calendar List view shows entries only back to a year ago, yet Day, Month and Week views show all my entries going back to Oct 2008.  Perhaps related:  the monthly views in Reminders also go back just one year.  A friend with an iPhone 4 and upgraded to IOS5 doesn't have this problem (with her Calendar;  I don't know about her Reminders).
    The problem also affects my global (Spotlight) searches as well, so I can't find entries earlier than Oct 2010.  Is there some setting I have that may be causing this?
    I should say that this problem existed for me on my 3G phone that I just replaced with the 4GS.  But all the other Calendar problems I had with the old phone and IOS4 appear to be fixed.  Only the one described above remains.
    One more thing:  My PC is Windows and I don't sync my Calendars with Outlook (or anything else, of course).  When I used to do that I would get duplicate entries and other problems.  (If I need to restore a lost Calendar entry, I'll use my iPhone backup, which runs every night when I sync my phone).
    Is this a known Calendar problem still existing with IOS5?

    FYI for those equally frustrated, I did place this in Feedback - not that it will result in an answer anytime soon. Why don't you do it too - get some momentum on this!

  • [JAVA] problems with java and mysql

    Hi, i have already installed php + mysql and work's them fine, but i want to install java + mysql. I have downloaded eclipse and installed its, that's ok. I have download tomcat and, that's ok. I have download module jconnector and have copied the file .jar in the java home and set classpath. Run and compiled this source that's ok. At runtime the program ask: Impossible connection at the database, why ? It's the source of program:
    [JAVA]
    import java.sql.*;
    public class connessione {
    private String nomeDB; // Nome del Database a cui connettersi
    private String nomeUtente; // Nome utente utilizzato per la connessione al Database
    private String pwdUtente; // Password usata per la connessione al Database
    private String errore; // Raccoglie informazioni riguardo l'ultima eccezione sollevata
    private Connection db; // La connessione col Database
    private boolean connesso; // Flag che indica se la connessione � attiva o meno
    public connessione(String nomeDB) { this(nomeDB, "", ""); }
    public connessione(String nomeDB, String nomeUtente, String pwdUtente) {
    this.nomeDB = nomeDB;
    this.nomeUtente = nomeUtente;
    this.pwdUtente = pwdUtente;
    connesso = false;
    errore = "";
    // Apre la connessione con il Database
    public boolean connetti() {
    connesso = false;
    try {
    // Carico il driver JDBC per la connessione con il database MySQL
    Class.forName("com.mysql.jdbc.Driver");
    // Controllo che il nome del Database non sia nulla
    if (!nomeDB.equals("")) {
    // Controllo se il nome utente va usato o meno per la connessione
    if (nomeUtente.equals("")) {
    // La connessione non richiede nome utente e password
    db = DriverManager.getConnection("jdbc:mysql://localhost/" + nomeDB);
    } else {
    // La connessione richiede nome utente, controllo se necessita anche della password
    if (pwdUtente.equals("")) {
    // La connessione non necessita di password
    db = DriverManager.getConnection("jdbc:mysql://localhost/" + nomeDB + "?user=" + nomeUtente);
    } else {
    // La connessione necessita della password
    db = DriverManager.getConnection("jdbc:mysql://localhost/" + nomeDB + "?user=" + nomeUtente + "&password=" + pwdUtente);
    // La connessione � avvenuta con successo
    connesso = true;
    } else {
    System.out.println("Manca il nome del database!!");
    System.out.println("Scrivere il nome del database da utilizzare all'interno del file \"config.xml\"");
    System.exit(0);
    } catch (Exception e) { errore = e.getMessage(); }
    return connesso;
    public static void main(String [] args) {
    connessione a=new connessione("asta","root","");
    if(a.connetti())
    System.out.println("Connessione al database riuscita");
    else
    System.out.println("Connessione al database non riuscita");
    [JAVA]

    With this line I always pass the username and password also:
    db = DriverManager.getConnection("jdbc:mysql://localhost/" + nomeDB);
    db = DriverManager.getConnection("jdbc:mysql://localhost/" + nomeDB, useName, Password);
    Make sure you create your users in MySQL with the correct permissions

  • Problems with java and mysql error: 1064

    Hello,
    I have been struggling with the following java code for a day. I ALWAYS get the following error code : 1064 and I just can't figure out why. I am trying to insert data into a mysql table.
    Can anyone please help?
    Thanks in advance,
    Julien.
    package com.newedgegroup.pnr.misc;
    import java.sql.BatchUpdateException;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    * @author Julien Martin
    public class RunDataCopy {
        public static void main(String[] args) throws ClassNotFoundException, Exception , ParseException {
            Class.forName("com.ibm.as400.access.AS400JDBCDriver");
            String url_source = "jdbc:as400://as400a.calyonfinancial.com";
            Connection con_source = DriverManager.getConnection(url_source, "upload", "upload");
            Class.forName("com.mysql.jdbc.Driver");
            String url_target = "jdbc:mysql://localhost:3306/pnr";
            Connection con_target = DriverManager.getConnection(url_target, "root", "");
            Statement stat_source = con_source.createStatement();
    //        ResultSet rs_source = stat_source.executeQuery("select * from QS36F.GMIST4F1 po");
            String query = "SELECT " +
                    " sum (po.PGROSS) AS OPTION_PREMIUM, " +
                    "po.PFIRM, " +
                    "po.POFFIC, " +
                    "po.PACCT, " +
                    "po.PTDATE, " +
                    "po.PRR, " +
                    "po.PEXCH, " +
                    "po.PSUBEX, " +
                    "po.PFC, " +
                    "po.PSYMBL, " +
                    "po.PCLASS, " +
                    "po.PSUBCL, " +
                    "po.PSUBTY, " +
                    "po.PSDSC1, " +
                    "po.PCTYM, " +
                    "po.PSTRIK, " +
                    "po.PCLOSE, " +
                    "po.PUNDCP, " +
                    "po.PCURSY, " +
                    "po.PEXPDT, " +
                    "po.PLTDAT, " +
                    "po.PMULTF, " +
                    "po.PPTYPE, " +
                    "po.PBS " +
                    "FROM QS36F.GMIST4F1 as po " +
                    "WHERE " +
                    "0              = 0 " +
                    "AND po.PFIRM   = 'I' " +
                    "AND po.POFFIC  = '349' " +
                    "AND po.PRECID in ('T','B','Q') " +
                    "AND po.PSUBTY != ' ' " +
                    "AND po.PCMNT1 != ' E' " +
                    "AND po.PCMNT1 != ' A' " +
                    "GROUP BY " +
                    "po.PFIRM, " +
                    "po.POFFIC, " +
                    "po.PACCT, " +
                    "po.PTDATE," +
                    "po.PRR, " +
                    "po.PEXCH, " +
                    "po.PSUBEX," +
                    "po.PFC, " +
                    "po.PSYMBL, " +
                    "po.PCLASS, " +
                    "po.PSUBCL, " +
                    "po.PSUBTY, " +
                    "po.PSDSC1, " +
                    "po.PCTYM, " +
                    "po.PSTRIK, " +
                    "po.PCLOSE, " +
                    "po.PUNDCP, " +
                    "po.PCURSY, " +
                    "po.PEXPDT, " +
                    "po.PLTDAT, " +
                    "po.PMULTF, " +
                    "po.PPTYPE, " +
                    "po.PBS ";
            // System.out.println(query);
            ResultSet rss = stat_source.executeQuery(query);
            StringBuffer sb = new StringBuffer("");
            SimpleDateFormat df_s = new SimpleDateFormat("yyyyMMdd");
            SimpleDateFormat df_t = new SimpleDateFormat("yyyy-MM-dd");
            con_target.setAutoCommit(false);
            Statement stat_target = con_target.createStatement();
            int i = 0;
            try {
                while (rss.next()) {
                    i++;
                    sb.append("INSERT INTO `pnr`.`pnr_transaction` (").append("\n");
                    sb.append("`FIRM_ID`,").append("\n");
                    sb.append("`OFFICE_NUMBER`,").append("\n");
                    sb.append("`ACCOUNT_NUMBER`,").append("\n");
                    sb.append("`SALESMAN`,").append("\n");
                    sb.append("`EXCHANGE_CODE`,").append("\n");
                    sb.append("`SUBEXCHANGE`,").append("\n");
                    sb.append("`FUTURES_CODE`,").append("\n");
                    sb.append("`SYMBOL`,").append("\n");
                    sb.append("`ACCOUNT_CLASS_CODE`,").append("\n");
                    sb.append("`SUB_CLASS_CODE`,").append("\n");
                    sb.append("`SECURITY_SUB_TYPE`,").append("\n");
                    sb.append("`SECURITY_DESCRIPTION_LINE`,").append("\n");
                    sb.append("`CONTRACT_YR_MON`,").append("\n");
                    sb.append("`STRIKE_PRICE`,").append("\n");
                    sb.append("`CLOSING_MARKET_SETTLEMENT_PRICE`,").append("\n");
                    sb.append("`UNDERLYING_CLOSE_PRICE`,").append("\n");
                    sb.append("`PRODUCT_CURRENCY_SYMBOL`,").append("\n");
                    sb.append("`EXPIRATION_DATE`,").append("\n");
                    sb.append("`LAST_TRADING_DATE`,").append("\n");
                    sb.append("`MULTIPLICATION_FACTOR`,").append("\n");
                    sb.append("`PRODUCT_TYPE_CODE`,").append("\n");
                    sb.append("`CATEGORY_ID`,").append("\n");
                    sb.append("`MARKET_TYPE_ID`,").append("\n");
                    sb.append("`TAX_STATUS_ID`,").append("\n");
                    sb.append("`AMOUNT`").append("\n");
                    sb.append(") VALUES (").append("\n");
                    sb.append("'").append(rss.getString("PFIRM")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("POFFIC")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PACCT")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PRR")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PEXCH")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PSUBEX")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PFC")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PSYMBL")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PCLASS")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PSUBCL")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PSUBTY")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PSDSC1")).append("'").append(",").append("\n");
                    sb.append("'").append(rss.getString("PCTYM")).append("'").append(",").append("\n");
                    sb.append(rss.getString("PSTRIK")).append(",").append("\n");
                    sb.append(rss.getString("PCLOSE")).append(",").append("\n");
                    sb.append(rss.getString("PUNDCP")).append(",").append("\n");
                    sb.append("'").append(rss.getString("PCURSY")).append("'").append(",").append("\n");
                    sb.append("'").append(df_t.format(df_s.parse(rss.getString("PEXPDT")))).append("'").append(",").append("\n");
                    sb.append("'").append(df_t.format(df_s.parse(rss.getString("PLTDAT")))).append("'").append(",").append("\n");
                    sb.append(rss.getString("PMULTF")).append(",").append("\n");
                    sb.append("'").append(rss.getString("PPTYPE")).append("'").append(",").append("\n");
                    //sb.append(rss.getString("PBS")).append(",");
                    sb.append("1").append(",").append("\n");
                    sb.append("1").append(",").append("\n");
                    sb.append("1").append(",").append("\n");
                    sb.append(rss.getString("OPTION_PREMIUM")).append("").append("\n");
                    // sb.append(df_t.format(df_s.parse(rss.getString("PTDATE")))).append(",");
                    sb.append(") ").append("\n");
                    System.out.println(sb.toString());
                    //     stat_target.executeUpdate(sb.toString());
                    stat_target.addBatch(sb.toString());
    //        stat_target.executeUpdate(sb.toString());
                    if (i == 2) {
                        break;
                stat_target.executeBatch();
                con_target.commit();
            } catch (BatchUpdateException be) {
                System.out.println("be: "+be.getErrorCode());
                System.out.println("be: "+be.getMessage());
                be.printStackTrace();
                System.out.println("be: "+i);
            } catch (SQLException se) {
                System.out.println("se: "+se.getErrorCode());
                System.out.println("se: "+i);
    }

    What is the error message?
    I advice you to use prepared statement for batch inserting.

  • Java and Flash problems messing up display

    I got a new Mac Book Pro about a month ago, and first, in Safari, the previews of pages would look like this: http://img163.imageshack.us/img163/9228/grab1p.png
    Then Safari started getting pixalated (all pages), and Flash would crash (See error report below), then when I did permissions repair, I get Java problems (see below).
    Then the ENTIRE DISPLAY would get all pixalated and freeze up. When I restart, it works for a while until I open too many Safari tabs (around 10 or so), and it starts all over again.
    Any ideas?
    Safari Crash Report:
    Process: WebKitPluginHost [2954]
    Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier: com.apple.WebKit.PluginHost
    Version: 6533 (6533.13)
    Build Info: WebKitPluginHost-75331300~12
    Code Type: X86 (Native)
    Parent Process: WebKitPluginAgent [178]
    PlugIn Path: /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    PlugIn Identifier: com.macromedia.FlashPlayer-10.6.plugin
    PlugIn Version: 10.1.102.64 (10.1.102.64)
    Date/Time: 2011-01-30 10:24:44.216 -0500
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 33978 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 268000 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 2CCB7A1A-D359-4B6F-978D-C282B4C97A1A
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ...ppleIntelHDGraphicsGLDriver 0x1616b23f glrReturnUnexpectedKillClient + 15
    1 ...ppleIntelHDGraphicsGLDriver 0x15ed90c9 GhalInterface::getCommandBuffer(unsigned char**, unsigned char**, unsigned int*, unsigned int*) + 153
    2 ...ppleIntelHDGraphicsGLDriver 0x160b50aa GHAL3D::CPrivateCommandTransport::FlushCommandBuffer(GHAL3D::FLUSH_TYPE, unsigned char) + 362
    3 ...ppleIntelHDGraphicsGLDriver 0x160b4e01 g575SubmitPacketsToken + 81
    4 ...ppleIntelHDGraphicsGLDriver 0x160d999f gldFlush + 47
    5 ...ppleIntelHDGraphicsGLDriver 0x161240b6 FinishMemoryBuffer(GLDContextRec*, MemoryBufferList*) + 38
    6 ...ppleIntelHDGraphicsGLDriver 0x16124046 GetNextMemoryBufferItem + 70
    7 ...ppleIntelHDGraphicsGLDriver 0x16123fba GetOffsetIntoScratchBuffer + 42
    8 ...ppleIntelHDGraphicsGLDriver 0x161234c6 gldModifyTexSubImage + 1094
    9 GLEngine 0x15915dfb glTexSubImage2D_Exec + 950
    10 libGL.dylib 0x93c33570 glTexSubImage2D + 87
    11 ...dia.FlashPlayer-10.6.plugin 0x146458fb unregister_ShockwaveFlash + 66987
    12 ...dia.FlashPlayer-10.6.plugin 0x146c4803 main + 75475
    13 ...dia.FlashPlayer-10.6.plugin 0x14452573 0x141fc000 + 2450803
    14 ...dia.FlashPlayer-10.6.plugin 0x144580d8 0x141fc000 + 2474200
    15 ...dia.FlashPlayer-10.6.plugin 0x1463bf17 unregister_ShockwaveFlash + 27591
    16 ...dia.FlashPlayer-10.6.plugin 0x146ab4e9 unregister_ShockwaveFlash + 483737
    17 com.apple.QuartzCore 0x97409f80 CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 1026
    18 com.apple.QuartzCore 0x9740a8b7 -[CAOpenGLLayer _display] + 512
    19 com.apple.QuartzCore 0x9718ff45 CALayerDisplayIfNeeded + 621
    20 com.apple.QuartzCore 0x9718f310 CA::Context::commit_transaction(CA::Transaction*) + 362
    21 com.apple.QuartzCore 0x9718ef58 CA::Transaction::commit() + 316
    22 com.apple.CoreFoundation 0x9406ee02 __CFRunLoopDoObservers + 1186
    23 com.apple.CoreFoundation 0x9402afe2 __CFRunLoopRun + 1154
    24 com.apple.CoreFoundation 0x9402a464 CFRunLoopRunSpecific + 452
    25 com.apple.CoreFoundation 0x9402a291 CFRunLoopRunInMode + 97
    26 com.apple.HIToolbox 0x97af2004 RunCurrentEventLoopInMode + 392
    27 com.apple.HIToolbox 0x97af1dbb ReceiveNextEventCommon + 354
    28 com.apple.HIToolbox 0x97af1c40 BlockUntilNextEventMatchingListInMode + 81
    29 com.apple.AppKit 0x98e4778d _DPSNextEvent + 847
    30 com.apple.AppKit 0x98e46fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    31 com.apple.AppKit 0x98e09247 -[NSApplication run] + 821
    32 com.apple.WebKit.PluginHost 0x17ee140f 0x17ee0000 + 5135
    33 com.apple.WebKit.PluginHost 0x17ee104d 0x17ee0000 + 4173
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x90f2f982 kevent + 10
    1 libSystem.B.dylib 0x90f3009c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x90f2f559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x90f2f2fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x90f2ed81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x90f2ebc6 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x90f370a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90f36d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90f389f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x1464087f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x14214d34 0x141fc000 + 101684
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x90f370a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90f36d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90f389f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x1464087f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x14214d34 0x141fc000 + 101684
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90f370a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90f36d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90f389f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x1464087f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x14214d34 0x141fc000 + 101684
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90f370a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90f36d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90f389f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x1464087f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x14214d34 0x141fc000 + 101684
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x145308b8 0x141fc000 + 3360952
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x143de48f 0x141fc000 + 1975439
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x143de48f 0x141fc000 + 1975439
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x145308b8 0x141fc000 + 3360952
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x143de48f 0x141fc000 + 1975439
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x143de48f 0x141fc000 + 1975439
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x90f0915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90f36ce5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90f65ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x14640841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x14530822 0x141fc000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x1464097e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x14640ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x90f3685d pthreadstart + 345
    8 libSystem.B.dylib 0x90f366e2 thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x90f2ea12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x90f2efa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x90f2ebc6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xe00002c2 ebx: 0x15ed903e ecx: 0xbfffcbfc edx: 0xe00002c2
    edi: 0x48aba800 esi: 0x6b3d97e0 ebp: 0xbfffcb98 esp: 0xbfffcb98
    ss: 0x0000001f efl: 0x00010296 eip: 0x1616b23f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0xcc000 - 0xcfff2 +com.macromedia.Flash Player.plugin 10.1.102.64 (10.1.102.64) <0E4F768E-4FF0-90B4-7387-C86A3EC48C43> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x12df5000 - 0x12e31fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1756) <5723A7A8-2C99-561B-8D87-C8B0716436FA> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x12e3d000 - 0x12e47ff7 com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x12e51000 - 0x12e7bffb com.apple.QuickTimeIIDCDigitizer 7.6.6 (1756) <96489BA5-A106-36A1-FA42-F7F2D6AA098C> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x12e83000 - 0x12e87ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F402CF88-D96C-42A0-3207-49759F496AE8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x12e8c000 - 0x12e92ffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x141fc000 - 0x14be9ff3 +com.macromedia.FlashPlayer-10.6.plugin 10.1.102.64 (10.1.102.64) <7F846A86-5E18-B6E5-4DA2-E5B46E7CF5B2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0x14e82000 - 0x14ed1fe3 com.apple.QuickTimeUSBVDCDigitizer 2.6.5 (2.6.5) <9DABC446-2388-C209-8912-3A33F6178B18> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14f30000 - 0x14f54fe7 GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x15900000 - 0x15a78fe7 GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15aaa000 - 0x15eaffe7 libclh.dylib 3.1.1 C (3.1.1) <745CBD72-DF1F-EC12-BE51-4EEA9847EADF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x15ed3000 - 0x1682aff3 com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.26 (6.2.6) <ACD5A3C8-28DA-4098-3564-D0470FE9E0C6> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0x17320000 - 0x17328ff7 com.apple.iokit.IOUSBLib 4.1.5 (4.1.5) <FC37BC4D-907E-DCC6-70D0-58665757BA89> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x17954000 - 0x17954ff7 com.apple.VideoDecodeAcceleration 1.1 (4) <2870DAF2-D95D-CCF7-D0F9-26A0DAD0E69F> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceler ation
    0x17ee0000 - 0x17efbfe7 com.apple.WebKit.PluginHost 6533 (6533.13) <3332FD2F-AFC1-396F-B2FF-2B58DC6476DA> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    0x17f05000 - 0x17f05ff7 WebKitPluginHostShim.dylib ??? (???) <7FC31FB4-EEF0-6595-36A1-A8C27CFE598A> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHostShim.dylib
    0x19e8b000 - 0x19e99fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x19e9d000 - 0x19eafff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x19fad000 - 0x19faeff7 ATSHI.dylib ??? (???) <F06AB560-C2AF-09F6-7328-773E43CA2713> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x6a3bc000 - 0x6a471fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.6.3 (1.6.3) <5DA35A22-1B05-6BD3-985A-26A7A2CD6289> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c8000 - 0x8f811ff7 com.apple.GeForceGLDriver 1.6.26 (6.2.6) <518182BB-5A3C-5F4C-3A84-17BB8E385BBF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <28F0312C-0678-159E-34E2-9A4E3DEADB20> /usr/lib/dyld
    0x90003000 - 0x90007ff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90008000 - 0x90008ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90009000 - 0x9004cff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9008e000 - 0x90091ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90092000 - 0x90092ff7 com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9010e000 - 0x90114fe7 com.apple.CommerceCore 1.0 (6) <41C2A87D-93D8-56C1-9292-0400699F23C1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x90115000 - 0x90159ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9015a000 - 0x90182ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x90183000 - 0x90183ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90184000 - 0x90192fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x90193000 - 0x90406fe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90407000 - 0x908c0ffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9098b000 - 0x90a0dffb SecurityFoundation ??? (???) <006B3166-E7E2-F763-04FC-3DD458C14F5F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90a0e000 - 0x90a18ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90a5d000 - 0x90b94ff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90b95000 - 0x90dc0ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90dc1000 - 0x90e53fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90e54000 - 0x90ec3ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90ecf000 - 0x90ed1ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90ed2000 - 0x90ed7ff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90f04000 - 0x90f07ff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90f08000 - 0x910afff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x910b0000 - 0x911b1fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x911b2000 - 0x911b6ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x911f8000 - 0x9162dff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91633000 - 0x916e0fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x916fa000 - 0x91740ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x91741000 - 0x91741ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91742000 - 0x91748fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x917b8000 - 0x91855fe3 com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91856000 - 0x918b7fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91995000 - 0x919b0ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x919b1000 - 0x919b1ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x919c2000 - 0x91a2cfe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x91b9e000 - 0x91beeff7 com.apple.framework.familycontrols 2.0.2 (2020) <AF7F86F1-F7BF-CBA8-7A4A-D8F7A19F9601> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9220e000 - 0x9231aff7 libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9251f000 - 0x9255afeb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x92855000 - 0x92861ff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x92969000 - 0x92969ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9296a000 - 0x938bcfef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x938c8000 - 0x9390bff7 libGLU.dylib ??? (???) <BB66EDB2-D5FE-61C9-21BE-747F9862819C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9390c000 - 0x93c2cff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93c2d000 - 0x93c2eff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93c2f000 - 0x93c3aff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93c89000 - 0x93d3fff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93d40000 - 0x93e6ffe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e70000 - 0x93f20ff3 com.apple.ColorSync 4.6.3 (4.6.3) <0354B408-665F-8B3F-87FF-64E6322276F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93f21000 - 0x93f5fff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93f60000 - 0x93fceff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x93fcf000 - 0x93fe0ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93fee000 - 0x94169fe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94195000 - 0x9422dfe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9422e000 - 0x942a8fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x942eb000 - 0x9431eff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9431f000 - 0x94345ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94346000 - 0x94383ff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94384000 - 0x94581ff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94582000 - 0x945bfff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x945c0000 - 0x945c7ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x945c8000 - 0x9460cfe7 com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9460d000 - 0x94a23ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94a75000 - 0x94a7cff7 com.apple.agl 3.0.12 (AGL-3.0.12) <53FFD667-5E3E-4140-6A4B-0D283269DC6D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94a7d000 - 0x94ba9ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x94baa000 - 0x94bc2ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94bc3000 - 0x94c04ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c81000 - 0x94c82ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94c83000 - 0x94e65fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94e9e000 - 0x94f1efeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94f3f000 - 0x94f70ff7 libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94f71000 - 0x95760557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95761000 - 0x957b9fe7 com.apple.datadetectorscore 2.0 (80.7) <58C659CA-72CC-31D2-9732-09BF1A0CAAF6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x957ba000 - 0x95817ff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95818000 - 0x958d1fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95919000 - 0x9591cfe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95953000 - 0x9595bff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9595c000 - 0x959d7fff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x959d8000 - 0x95a11ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E0D512DD-365D-46A0-F50C-435BC250424F> /usr/lib/libcups.2.dylib
    0x95a12000 - 0x95aedfeb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95af1000 - 0x95b47ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95b72000 - 0x95b75ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95b76000 - 0x95dd9fff com.apple.security 6.1.1 (37594) <B6F2A8BF-C1B7-A0E2-83FB-4FF265E9BDDC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f3d000 - 0x96236fef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96c88000 - 0x96d30ffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96d31000 - 0x96dccff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96dcd000 - 0x96ddbff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96e08000 - 0x96e29fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96f3a000 - 0x96f8bff7 com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96ffc000 - 0x9701cfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x9701d000 - 0x9706afeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <8B819445-BDC3-74BD-4A7B-D650E511F0BF> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9706b000 - 0x97148ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97168000 - 0x97184fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97185000 - 0x974f0ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9751b000 - 0x976d4feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x976d5000 - 0x976f7fef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x976f8000 - 0x9775cffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97789000 - 0x97853fef com.apple.CoreServices.OSServices 357 (357) <8E13E1FB-6EBD-780B-6B08-B37118311071> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9786f000 - 0x97896ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x978a1000 - 0x978e0ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x978e1000 - 0x97abcff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x97abd000 - 0x97de1fef com.apple.HIToolbox 1.6.4 (???) <4699C8BB-DE74-C530-564B-D131F74C9B54> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x97de2000 - 0x97e90ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x97ec6000 - 0x97ec6ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97f99000 - 0x97f99ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97fe3000 - 0x98013ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x98109000 - 0x98119ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x981ba000 - 0x981c7ff7 com.apple.NetFS 3.2.1 (3.2.1) <A6443845-5815-2429-7649-C51A4B5E7DF9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x981c8000 - 0x981d1ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9827c000 - 0x983fefe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x9849f000 - 0x984d1fe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x984d2000 - 0x984d6ff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x984d7000 - 0x984ecfff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x984ed000 - 0x98566ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98567000 - 0x98579ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9857a000 - 0x985c3fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x98605000 - 0x9864cffb com.apple.CoreMediaIOServices 134.0 (1160) <D4F40A28-4E31-3210-7C2B-59D8A1903FB2> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9872c000 - 0x9886ffef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98870000 - 0x9891afe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9891b000 - 0x98975fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98976000 - 0x98a78fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x98ba0000 - 0x98bb4ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x98bb5000 - 0x98bd4ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98bd5000 - 0x98be9fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x98c2b000 - 0x98c6dff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98cf9000 - 0x98dfdfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x98dfe000 - 0x98dfeff7 com.apple.Carbon 150 (152) <D1CE2DFE-C951-908C-EC05-B175CF7A2EE5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x98dff000 - 0x996dfff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x996e0000 - 0x99704ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x99705000 - 0x99706ff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x99707000 - 0x99835fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99836000 - 0x99838ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x99a36000 - 0x99a46ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x99a47000 - 0x99a51fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x99a65000 - 0x99a70ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-898, 94.9 MB
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    Permission Repair Report:
    Repairing permissions for “Macintosh HD”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0/libprofilerinterface.sl".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0w/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0w/libprofilerinterface.sl".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0/libprofilerinterface.sl".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0w/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0w/libprofilerinterface.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0/libprofilerinterfac e.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0/libprofilerinterfac e.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0w/libprofilerinterfa ce.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0w/libprofilerinterfa ce.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0/libprofilerinterfac e.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0/libprofilerinterfac e.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0w/libprofilerinterfa ce.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0w/libprofilerinterfa ce.sl".
    Permissions repair complete
    Thanks!

    I'd be bringing it to an Apple store or AASP. I don't believe it has anything related to Flash or Java.

  • JDev 10.1.3 and Ant - Targets are only displayed if in build.xml

    In JDev 10.1.3, the build-target list only shows targets in my build.xml file and does not show any targets that are in imported files or that are included using an entity include. In the previous versions, all of the targets were displayed. Is there any way to have 10.1.3 show all of the targets in all of the files referenced by build.xml?
    Thanks,
    Richard

    There is an option in the preferences ( select the Tools | Preferences... menu item and go to the Ant panel ) to "Show Imported Targets in Target Menus". If that is checked it should show you the imported targets, if it can locate them. That item is checked by default.
    In some cases, it cannot locate the imported buildfile if the import statement contains a property reference, and the value of the property cannot be determined. It also will not show targets from entity includes.
    -Matt Hawkins
    Oracle JDeveloper

  • Menu botton stopped working and this nano is only a year old

    So what do I do? I've had this thing for a little over a year and the menu button does not respond to anything. The only way I can back out of my music is if I connect it to my computer. That gets pretty old. Anyone else having this issue? Should I assume that this is just not a good product and try a different MP3 player? HELP.
    Message was edited by: irongirlfl04
    Message was edited by: irongirlfl04

    Take it to Apple. There is a one year warranty on the iPhone.
    Allan

Maybe you are looking for

  • Attaching Existing Contact and Account Info in Lead

    Hi, While creating a new Lead, I'm attaching an existing Contact and Existing Account. But other than the name fileds, none of the other fileds like address, phone numbers are not populated. How can I make the fields prefilled with the info when I se

  • New mail shows up with an older message

    Hi, I'm using Mail as my primary email program downloading from a university email account. I have a ton of mail in it, over 3000 messages in my inbox and a couple thousand in my outbox. Sometimes when I get a new message, the name of the person it i

  • IMac applications/data transfer

    I just unpacked and activated my new iMac and wish to transfer to this new iMac all of my applications and data files that are imbedded in my old eMac, including Quicken 2004 for Mac, Adobe Photoshop CS2, Adobe Bridge, iWork'08 and Apple Works 6. Sin

  • Adobe content viewer error ?

    Firts , i want to say that i will crazy soon Of this program . yesterday i found a big problem on my ipad .. the content viewer is not apper is the file sharing section in the ituns ... these problem make me crazy ...I did not know that the problem i

  • Please Help!  Two problems with my iMac at once a week b/4 finals!!!!

    First I'd just like to mention that I have no idea which OS X I have so...yeah, sorry. I was depending on this computer to work for my class finals. Anyway, on with the problems. My school is getting all new computers next year, so they are selling a