Changing global_name

Oracle 10.2.0.2 Ent edition on AIX 5.3
My db name is db1 and by mistake i edited global_name to db1.oracle.com as below,
ALTER DATABASE RENAME GLOBAL_NAME TO db1.oracle.com;
Actually global_name is db1 itself since db_domain parameter is null.
SQL> show parameter db_domain;
NAME TYPE VALUE
db_domain string
SQL> show parameter global_name;
NAME TYPE VALUE
global_names boolean TRUE
SQL> select * from global_name;
GLOBAL_NAME
DB1.ORACLE.COM
SQL>
Now i am not able to revert it back to db1 with the sql: ALTER DATABASE RENAME GLOBAL_NAME TO db1
Any idea on how to revert the global_name to db1
~Thnx

See MetaLink Note# 382994.1
If the db_domain was NULL and GLOBAL_NAME was changed to include a domain name, it cannot be changed back again. The only "fix" provided by that note is to update PROPS$.
Since updateing PROPS$ is not supported, you should log an SR with Oracle Support for confirmation.

Similar Messages

  • Change global_name risk

    what do you think the risk, after you change the global_name of the database. (using alter database rename global_name to aaa.bbb command)
    In my system, previous database link is not work, I think this is only a little thing that I can handle, just only rebuild a new database link.
    But the problem is if you changed your database global_name, you would hardly to change back to original name while database running, and if you don't delete the database link which is unvailable, maybe unsee error will be occured, In my case, if you access the bad database link, sometime will cause database memory corrupt. I don't know if there is any relation. could you solve my confusing?

    Check my posts in this thread
    urgently! remove oracle database domain name
    There's no risk to change global_name if you follow Oracle document.
    I think your problem only happen after you update a data dictionary table directly.

  • Changing GLOBAL_NAME in 11g RAC

    Hi, All -
    I am running a two node RAC 11g (11.1.0.7) database on RHEL5. I need to change the GLOBAL_NAME.
    SQL> select * from global_name;
    GLOBAL_NAME
    dbname
    SQL> ALTER DATABASE RENAME GLOBAL_NAME TO dbname.companyname.com
    I just want to confirm that I only have to run this on one node and fix the db links.
    Are there any other steps involved since it is a RAC environment?
    Thanks in advance!

    check this
    http://asanga-pradeep.blogspot.com/2010/08/changing-global-name-and-domain-name-in.html
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14228/best_gen.htm#CHDHCGJJ

  • Insert using database link

    Now connected to database B :
    INSERT INTO abc_hesids
              (     abc_key,
                   hesid,
                   date_added,
                   date_updated,
                   dob,
                   sex,
                   newnhsno,
                   homeadd,
                   procode3,
                   lopatid
              SELECT     'X',
                        0,
                        sysdate,
                        sysdate,
                        HES_Common.f_string_field('X', 1),
                        HES_Common.f_string_field('X', 2),
                        HES_Common.f_string_field('X', 3),
                        HES_Common.f_string_field('X', 4),
                        HES_Common.f_string_field('X', 5),
                        HES_Common.f_string_field('X', 6)
              FROM dual
    The above INSERT has been reduced down to bare minimum with the following error occurring :
    HES_Common.f_string_field('X', 1),
    ERROR at line 18:
    ORA-02069: global_names parameter must be set to TRUE for this operation
    SQL>
    The abc_hesids table exists in database A and this insert is running in database B. A database link exists such that abc_hesids is a synonym for the table of the same name in database A.
    I want Oracle to insert into the table in database A but use the package HES_Common in database B. I think this is possible but have not done this sort of thing for a while. Note : the package HES_Common exists in both databases A and B
    Any ideas on how to get Oracle to use the local version of the package - do I have to get the DBA to change global_names to TRUE ??

    ORA-02069 global_names parameter must be set to TRUE for this operation
    Cause: A remote mapping of the statement is required but cannot be achieved because GLOBAL_NAMES should be set to TRUE for it to be achieved.
    Action: Issue ALTER SESSION SET GLOBAL_NAMES = TRUE if possible.

  • Error using database link

    Before creating the link, I went into my init.ora file and made sure the GLOBAL_NAMES entry was false.
    I then created a database link using the following:
    create public database link cindy_link
    connect to system identified by syspswd
    using 'PRECISEI';
    My link was created, but when I attempt to use it, I get the error:
    ORA-02085:database link CINDY_LINK.WORLD connects to PRECISEI.WORLD
    Here is the entry from my tnsnames.ora file:
    PRECISEI =
    (DESCRIPTION =
    (ADDRESS_LINK =
    (ADDRESS =(PROTOCOL = TCP)(HOST = taurus)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = precisei.world)
    Here is the entry from my listener.ora file:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = precisei.world)
    (ORACLE_HOME = E:|oracle\ora81)
    (SID_NAME = precisei)
    (I must admit to not having a full understanding of SID_NAME vs SERVICE_NAME.) I looked in dba_db_links, and my db_link is named CINDY_LINK.WORLD instead of CINDY_LINK.
    Do I have a problem in one of my files?
    I would really appreciate any help.
    Thanks.

    Well, I was facing the same problem but corrected it later on. Let me describe the solution is little detail.
    You need to check few things before creating db link.
    1) db_name and db_domain in init.ora file
    2) global_name in listener.ora file
    3) service name in tnsnames.ora file.
    It seems to me that you have not specified the db_domain in init.ora file. And in that case, you need to follow these steps.
    I am considering here that you have database A on server X and database B on server Y.
    Go to the first server (server X).
    set the global name in init.ora file by following
    Global_name=true
    db_domain=usa.com
    Start and open the database.
    connect as system user.
    (if your oracle sid is orcl then)
    svrmgr30>alter database rename global_name
    to orcl.usa.com;
    this will set the global_name as specified in init.ora file. Here, your SID is orcl and db_domain is usa.com so global_name will be orcl.usa.com.
    svrmgr30>Select * from global_name;
    You get the answer like this.
    Orcl.usa.com
    Now, go to Listener.ora file and change global_name to the new name (orcl.usa.com)
    restart the listener.
    WE WILL SEE ABOUT THE CHANGES OF TNSNAMES.ORA LITTLE LATER.
    Now, go to second server(server Y) and perform the same operation as defined above. i.e. Specify the db_name, db_domain in init.ora file, execute "alter database.." command for setting global_name and edit listener.ora file for new global name.
    Once you do all these you need to create service on server 1 to connect to server 2 and on server2 to connect to server1.
    Go to server X.
    Open tnsnames.ora file and create an entry like this.
    P =
    (DESCRIPTION =
    (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(Host = IP address of B)(Port= 1521)))
    (CONNECT_DATA = (SID = P))
    Here, P is global name of P ( at both the places).
    Now, go to server Y.
    Open tnsnames.ora file and create an entry like this.
    Q =
    (DESCRIPTION =
    (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(Host = IP address of A)(Port= 1521)))
    (CONNECT_DATA = (SID = Q))
    Here, Q is global name of Q ( at both the places).
    you are all set now.
    Create database link between 2 servers now.
    Say these are all your settings..
    Server X is having database A with global_name orcl.usa.com and server Y is having database B with global_name orcl2.us.com
    Now go to server X and create db link to server Y
    Create public database link orcl2.us.com using 'orcl2.us.com'
    (Note. don't miss to create a service 'orcl2.us.com' in server X's tnsnames.ora file)
    And go to server Y and create db link there.
    Create public database link orcl.usa.com using 'orcl.usa.com'
    (Note. don't miss to create a service 'orcl.usa.com' in server Y's tnsnames.ora file)
    hope this helps,
    If this doesn't work, feel free to contact me.
    Kalpen
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by cindy spearman ([email protected]):
    Before creating the link, I went into my init.ora file and made sure the GLOBAL_NAMES entry was false.
    I then created a database link using the following:
    create public database link cindy_link
    connect to system identified by syspswd
    using 'PRECISEI';
    My link was created, but when I attempt to use it, I get the error:
    ORA-02085:database link CINDY_LINK.WORLD connects to PRECISEI.WORLD
    Here is the entry from my tnsnames.ora file:
    PRECISEI =
    (DESCRIPTION =
    (ADDRESS_LINK =
    (ADDRESS =(PROTOCOL = TCP)(HOST = taurus)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = precisei.world)
    Here is the entry from my listener.ora file:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = precisei.world)
    (ORACLE_HOME = E:|oracle\ora81)
    (SID_NAME = precisei)
    (I must admit to not having a full understanding of SID_NAME vs SERVICE_NAME.) I looked in dba_db_links, and my db_link is named CINDY_LINK.WORLD instead of CINDY_LINK.
    Do I have a problem in one of my files?
    I would really appreciate any help.
    Thanks.<HR></BLOCKQUOTE>
    null

  • Using Database link to go from one database to another

    Hi all,
    I am trying to create a SQL-query which connects to two
    different databases.
    I have created a Database link, which points from on database to
    the other, and have supplied the database name, username and
    password.
    when I try to run following query I get error ORA:02085, MY_LINK
    is connecting to SIEBN1S.(domain).com
    SELECT COUNT(*) FROM MY_TABLE@MYLINK;
    additional info:
    2 databases are exact copies on different servers (SIEBN1S and
    N1SSIEB)
    the MY_TABLE exists in both databases and I have rights on it in
    both, I can separately connect to both databases and look into
    MY_TABLE
    I have created the database link using following statement (in
    the N1SSIEB db):
    create database link MYLINK connect to <usr> identified by <pwd>
    using 'SIEBN1S'
    any help is welcome

    You have set GLOBAL_NAMES to TRUE in your init.ora file. This
    means your database link must have the same name as the database
    you want to connect to ie SIEBN1S.(domain).com.
    alternatively you can change GLOBAL_NAMES. to test this try
    'ALTER SESSION SET GLOBAL_NAMES=FALSE'.
    hth, APC

  • Problem in DB Link creation ( Oracle warehouse builder 3i  )

    I am facing a problem in DB Link creation.
    Backend: Oracle 8i Server on my machine
    DW Software: Oracle warehouse builder 3i ( client , repository asistant.....)
    Operating system: Windows NT 4 SERVICE PACK 6
    I wants to use the scott database( default database given by oracle ) as my input source.
    How can I create the DB LINK ( for scott database) ?
    How can I create the DB LINK ( for any other database) ?
    Should I need to add anything in Setting of"ODBC DATASOURCE ADMINISTRATION"
    ==================
    Settings done:
    ==================
    DB Link Name :scott
    Host name
    Host name: my machine's ip address
    port number: 1521
    oracle sid: prashant ( my oracle sid)
    user name:scott
    password:tiger
    ==================
    Gives error:
    ==================
    Testing...
    Failed.
    ORA-02085 Database link %s connects to %s
    *Cause:   a database link connected to a database with a different name.
    The connection is rejected.
    *Action:   create a database link with the same name as the database it
    connects to, or set global_names=false.
    Please change it to false by doing :
    first option:
    Log in the database with DBA privilege and use the command:
    alter system set GLOBAL_NAMES = false
    second option:
    Change the GLOBAL_NAMES to false in database system parameter file, init.ora
    ==================
    Options tried:
    ==================
    1. I tried to change GLOBAL_NAMES = false but still not able to create the DB LINK.
    2. As per suggestion of one the friend
    "A file named "Logon.Properties" under the directory $OWB_HOME/wbapp
    in this file please set the property
    OWBSingleUserLockUsage = false"
    I tried the same but it is still not working.
    How should I proceed further.
    I am expecting URGENT FEEDBACK.
    Reply me on : [email protected]
    From
    Prashant

    I solved the problem.
    Procedure I followed :
    UNINSTALL ORACLE WRAEHOUSE BUILDER SOFTAWARE.
    'GLOBAL_NAMES = FALSE' in init.ora file.
    RESTARTED MY MACHINE.
    INSTALL THE ORACLE WRAEHOUSE BUILDER SOFTAWARE.

  • Can I have more then one MVIEW site connected to single master site?

    Hi,
    I need one help from your end.
    Currently I am working on Basic Replication.For that I am using Read only Materialized views.first i tried with one master site & one Materialized view site its working fine,Can I have more then one MVIEW site connected to single master site referring to same database ? if so how to achive this one..

    Actually one of my senior told me that you need to change number of OPEN_LINKS value like that so for that reason I asked this question.
    Still that problem not solved..
    I will explain what are all the things I did ok.
    IN MASTER SITE:
    I am creating read only MVIEW's.
    first i created one user repadmin and have given
    1>execute any procedure
    2>dbms_repcat_admin.grant_admin_any_repgroup
    3>dbms_repcat_admin.grant_admin_any_schema
    4>select any dictionary
    and all other grants to repadmin user
    then I changed global_name = 'zxincmp' on Master site.
    Then I created mview log for each table (for 85 tables) & then I created mview's for that table on Master site itself. later I took a dump of these 85 mview's . then I transfered this dump to one of my mview site.
    IN MVIEW site:
    I created one user zxdbp_55 and all the above rights are given to this user & i created one public dblink
    "zxincmp" using "TO_CMP"(master site).Then I imported that dump which i took from master site.
    then i created one private link zxincmp in one of my mview site.then i used DBMS_REFRESH.MAKE('')
    to refresh all my tables & to set the interval..
    after that i created index on the mviews..
    this will works out fine for single master & single mvirew site.but I tried with the same procedure to prepare one more mview site,everything is fine but main problem is second mview site is not getting refreshed automatically,i need to do refresh manually from enterprise manager.. then it will get refreshed.
    how to overcome this problem? I am using same db name ,dblink,refresh group for both the mview site will it affects anywhere?
    Thanks & Regards,
    Hanumanth.

  • Global_name changing

    I saw in one document that say global_name=db_name+db_domain.
    My db_name=d
    and db_domain=d.com so global_name=d.d.com
    Ok fine.
    Now I changed my database global_name using
    alter database rename global_name to change;
    now whenever I query,
    select database_name from dual or select * from global_name it shows to me global_name=change;
    But the db_name and db_domain remains same.
    So where went the statement global_name=db_name+db_domain???
    Anyone there clarify me.

    The global database name is the unique name of the database. In a distributed
    database system (a set of databases stored on multiple computers that typically
    appears to applications as a single database) the global database name ensures
    that each database is distinct from all other databases in the system.
    The global database name defaults to DB_NAME.DB_DOMAIN and this value is marked
    at database creation time. If you change the DB_NAME or DB_DOMAIN after the
    database has been created, the value for the global database name (GLOBAL_NAME)
    will not change.
    Also ALTER DATABASE RENAME GLOBAL_NAME will change the global database name, but will not change the value of the DB_NAME or DB_DOMAIN parameters.
    Check this documentation -
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/ds_admin.htm#sthref4107
    Best regards.

  • Logic Pro 9.1.3 Crashing due to changing velocity?!

    So I got the Steven Slate Drums with Kontakt 3 and all of my software is up to date. When I'm done making the drum beats, I go in to the "Lists where I can change the velocity. If I change every drum hit in the velocity section to anything over 100 the drums will play for like 10 seconds and crash!! I need the drums to hit hard! it sound way better. Does anyone know what is causing this and what I can do to make my drums play at Velocity 127????
    Process: Logic Pro [705]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 9.1.3 (1697.87)
    Build Info: Logic-16978700~1
    Code Type: X86 (Native)
    Parent Process: launchd [88]
    Date/Time: 2011-04-04 14:00:36.718 -0700
    OS Version: Mac OS X 10.6.7 (10J869)
    Report Version: 6
    Interval Since Last Report: 78642 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 74911 sec
    Per-App Crashes Since Last Report: 4
    Anonymous UUID: 44D1CBA1-C31E-4B0E-B98C-9A5208796BC4
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 7
    Application Specific Information:
    objc_msgSend() selector name: defaultStringDrawingTypesetterBehavior
    abort() called
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x996b8f00 objc_msgSend + 64
    1 com.apple.AppKit 0x97eafdb2 -[NSView lockFocus] + 42
    2 com.apple.AppKit 0x97eb2ccf -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1455
    3 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    4 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    5 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    6 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    7 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    8 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    9 com.apple.AppKit 0x97eb395c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    10 com.apple.AppKit 0x97eb255b -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 265
    11 com.apple.prokit 0x0100b8a5 -[NSProWindowFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 105
    12 com.apple.AppKit 0x97eaeea2 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3309
    13 com.apple.AppKit 0x97e0fa57 -[NSView displayIfNeeded] + 818
    14 com.apple.AppKit 0x97dd8d40 -[NSWindow displayIfNeeded] + 204
    15 com.apple.AppKit 0x97e0a28a _handleWindowNeedsDisplay + 696
    16 com.apple.CoreFoundation 0x99574e02 __CFRunLoopDoObservers + 1186
    17 com.apple.CoreFoundation 0x99530d8d __CFRunLoopRun + 557
    18 com.apple.CoreFoundation 0x99530464 CFRunLoopRunSpecific + 452
    19 com.apple.CoreFoundation 0x99530291 CFRunLoopRunInMode + 97
    20 com.apple.HIToolbox 0x959f3e04 RunCurrentEventLoopInMode + 392
    21 com.apple.HIToolbox 0x959f3bb9 ReceiveNextEventCommon + 354
    22 com.apple.HIToolbox 0x959f3a3e BlockUntilNextEventMatchingListInMode + 81
    23 com.apple.AppKit 0x97de078d _DPSNextEvent + 847
    24 com.apple.AppKit 0x97ddffce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    25 com.apple.AppKit 0x97da2247 -[NSApplication run] + 821
    26 com.apple.prokit 0x00fe2f5c NSProApplicationMain + 326
    27 com.apple.logic.pro 0x0002b7b5 DummyConnection::DummyConnection() + 193
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x98bce922 kevent + 10
    1 libSystem.B.dylib 0x98bcf03c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98bce4f9 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98bce29e dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x98bcdd21 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98bcdb66 start_wqthread + 30
    Thread 2: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x98bc7066 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x99570c83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    3 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x98bd6046 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98bd5d02 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98bd7998 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x02bb94c8 ResolveFile + 54808
    4 com.apple.music.apps.MAFiles 0x02bb9591 ResolveFile + 55009
    5 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    6 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x98bd6046 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98bd5d02 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98bd7998 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x02bb94c8 ResolveFile + 54808
    4 com.apple.music.apps.MAFiles 0x02bb9591 ResolveFile + 55009
    5 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    6 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x98ba80fa semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98bd5c85 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98c04aa8 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x908af3c7 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x908b23f9 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x908afcf6 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x908af58d HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x908af4a4 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    9 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x98bd6046 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98bd5d02 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98bd7998 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02c77b1c MD::CallProcessThread1(void*) + 108
    4 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    5 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 7 Crashed:
    0 libSystem.B.dylib 0x98c154ee _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x98c153d2 nanosleep$NOCANCEL$UNIX2003 + 166
    2 libSystem.B.dylib 0x98c902a6 usleep$NOCANCEL$UNIX2003 + 61
    3 libSystem.B.dylib 0x98cb1959 __abort + 136
    4 libSystem.B.dylib 0x98cb19c9 abortreportnp + 0
    5 com.apple.logic.pro 0x00408209 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3981977
    6 libSystem.B.dylib 0x98c0e45b _sigtramp + 43
    7 ??? 0x0000000b 0 + 11
    8 ...akt 3.MusicDevice.component 0x51a551de BSample::CachePCM(int, int, BPCMCache&) + 5630
    9 ...akt 3.MusicDevice.component 0x51aeba14 BSample::FillBlock(int, BPCMCache&, float**, int&, int&, int) + 372
    10 ...akt 3.MusicDevice.component 0x51749dde BDsp::DoGetBlockSampler(int, BVoice&, bool, BFractionalPos&, int, BSample::IdentityInfo&, float, float**, int, int) + 366
    11 ...akt 3.MusicDevice.component 0x5174a9eb BDsp::GetBlockSampler(int, BVoice&, float*, float*, long) + 683
    12 ...akt 3.MusicDevice.component 0x51744533 BDsp::ProcessVoice(int, BDSPTimeStamp const&, float**, BVoice&, long, bool) + 3251
    13 ...akt 3.MusicDevice.component 0x5181e250 BEngine::RenderVoice(BVoice&, int, bool&) + 992
    14 ...akt 3.MusicDevice.component 0x51815233 BEngine::RenderVoices(int) + 275
    15 ...akt 3.MusicDevice.component 0x5181b1bb BEngine::Process(float**, long, bool) + 4011
    16 ...akt 3.MusicDevice.component 0x519b0650 BInstrument::processAudio(NI::AB::AudioBlockArray&) + 3360
    17 ...akt 3.MusicDevice.component 0x519b07eb BInstrument::processAudio() + 27
    18 ...akt 3.MusicDevice.component 0x515de8b6 NI::AB::InterfaceBase::processAudio() + 2070
    19 ...akt 3.MusicDevice.component 0x515d711f NI::AB::InterfaceAU::Render(unsigned long&, AudioTimeStamp const&, unsigned long) + 4479
    20 ...akt 3.MusicDevice.component 0x514b0aea AUBase::DoRender(unsigned long&, AudioTimeStamp const&, unsigned long, unsigned long, AudioBufferList&) + 618
    21 ...akt 3.MusicDevice.component 0x514ba18e AUBase::ComponentEntryDispatch(ComponentParameters*, AUBase*) + 446
    22 ...akt 3.MusicDevice.component 0x513c9c95 NIAudioUnitSynthEntry + 53
    23 ...ple.CoreServices.CarbonCore 0x98eae781 CallComponentDispatch + 29
    24 ...apple.audio.units.AudioUnit 0x905f35d2 AudioUnitRender + 67
    25 com.apple.logic.pro 0x005b38cc std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5732700
    26 ...le.music.apps.MAAudioEngine 0x02c71087 MD::PluginProcess(MDProcInfo*, MDPlug*, float const*, long, long, long, eProcessLevel) + 4007
    27 ...le.music.apps.MAAudioEngine 0x02c720a1 MD::StreamProcessing(eProcessLevel, long, long, long) + 1681
    28 ...le.music.apps.MAAudioEngine 0x02c74cf1 MD::Process(eProcessLevel) + 369
    29 ...le.music.apps.MAAudioEngine 0x02c7792b MD::CallProcessThread2(void*) + 267
    30 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    31 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x98bd6046 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98bd5d02 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98bd7998 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02c7574c MD::CallProcessThread15(void*) + 124
    4 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    5 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x98bd6046 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98bd5d02 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98bd7998 pthreadcondwait$UNIX2003 + 73
    3 ...le.music.apps.MAAudioEngine 0x02c946f9 MDFileIOThread_IsBusy + 3593
    4 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    5 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x98ba809a machmsgtrap + 10
    1 libSystem.B.dylib 0x98ba8807 mach_msg + 68
    2 com.apple.audio.midi.CoreMIDI 0x013b00c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3 com.apple.audio.midi.CoreMIDI 0x013ce97a MIDIProcess::RunMIDIInThread() + 150
    4 com.apple.audio.midi.CoreMIDI 0x013b12d9 XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x013b0ca6 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    7 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x98ba80fa semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98bd5c85 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98c04aa8 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x98e8de3d TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x98e8db7b TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x98eb1deb TimerThread + 97
    6 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    7 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x98bc7066 select$DARWIN_EXTSN + 10
    1 com.apple.logic.pro 0x0098d447 void UnitTest::CheckEqual<ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment>(UnitTest::TestResults&, ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment, UnitTest::TestDetails const&) + 379879
    2 com.apple.logic.pro 0x005d22c4 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5858132
    3 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    4 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x98ba80d6 semaphorewaittrap + 10
    1 ...akt 3.MusicDevice.component 0x518152eb BEngine::AuxProcessThreadProc(int) + 75
    2 ...akt 3.MusicDevice.component 0x5176d122 BEngine::AuxProcessThread::run() + 34
    3 ...akt 3.MusicDevice.component 0x514e4066 NI::GP::Thread::execute(void*) + 54
    4 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    5 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x98ba80d6 semaphorewaittrap + 10
    1 ...akt 3.MusicDevice.component 0x518152eb BEngine::AuxProcessThreadProc(int) + 75
    2 ...akt 3.MusicDevice.component 0x5176d122 BEngine::AuxProcessThread::run() + 34
    3 ...akt 3.MusicDevice.component 0x514e4066 NI::GP::Thread::execute(void*) + 54
    4 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    5 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x98ba80d6 semaphorewaittrap + 10
    1 ...akt 3.MusicDevice.component 0x518152eb BEngine::AuxProcessThreadProc(int) + 75
    2 ...akt 3.MusicDevice.component 0x5176d122 BEngine::AuxProcessThread::run() + 34
    3 ...akt 3.MusicDevice.component 0x514e4066 NI::GP::Thread::execute(void*) + 54
    4 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    5 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x98ba80d6 semaphorewaittrap + 10
    1 ...akt 3.MusicDevice.component 0x517c0328 BEngine::SetEngineParThreadProc() + 56
    2 ...akt 3.MusicDevice.component 0x514e4066 NI::GP::Thread::execute(void*) + 54
    3 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    4 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x98ba80d6 semaphorewaittrap + 10
    1 ...akt 3.MusicDevice.component 0x5181f31d BEngine::DFDThreadProc() + 29
    2 ...akt 3.MusicDevice.component 0x514e4066 NI::GP::Thread::execute(void*) + 54
    3 libSystem.B.dylib 0x98bd57fd pthreadstart + 345
    4 libSystem.B.dylib 0x98bd5682 thread_start + 34
    Thread 7 crashed with X86 Thread State (32-bit):
    eax: 0x0000003c ebx: 0x98c15339 ecx: 0xb042697c edx: 0x98c154ee
    edi: 0x54e1ec10 esi: 0xb04269d8 ebp: 0xb04269b8 esp: 0xb042697c
    ss: 0x0000001f efl: 0x00000247 eip: 0x98c154ee cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00336000
    Binary Images:
    0x1000 - 0xc07ff7 com.apple.logic.pro 9.1.3 (1697.87) <15FE0D07-0961-0A1E-AD40-4D588CAFE0A8> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0xeb8000 - 0xeebfe7 com.apple.music.apps.MAAudioUnitSupport 9.1.3 (231.52) <6A8B0674-5A36-F119-0736-572F27934537> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0xf00000 - 0xf31ff3 +MAAssetSharing 250.24.0 (compatibility 1.0.0) <B2CA208E-A82D-7C26-22D8-F65BE430FFFF> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0xf45000 - 0xfa3fff com.apple.music.apps.MALoopManagement 9.1.3 (218.26) <2C3C7909-DF88-6F7D-7886-BC481F2CDA6C> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0xfc0000 - 0x11e6fe7 com.apple.prokit 6.0.2 (1177) <5E923F8B-935D-47BB-A26E-E96D6D5C24F0> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12ea000 - 0x1368ffb com.apple.music.apps.MACore 9.1.3 (475.63) <F81212B7-9437-B513-7296-D9F1DC5DC815> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x13a0000 - 0x13ecffb com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1411000 - 0x1467fe3 com.apple.music.apps.MAHarmony 9.1.3 (198.26) <4F2D1C17-2764-F82D-6F7E-878BD7D83DCB> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1483000 - 0x189cfe7 com.apple.music.apps.MAPlugInGUI 9.1.3 (423.38) <601C4063-D4D6-353E-48D8-C7085B12D1C0> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1bab000 - 0x1c8dff7 com.apple.music.apps.OMF 9.1.3 (108.25) <3A191296-9E9F-EE86-C40B-94BE51B818D0> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1ca4000 - 0x22cefe7 com.apple.music.apps.MADSP 9.1.3 (586.60) <1B87D598-8C45-85C2-8BAE-5146F47676DF> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2a04000 - 0x2a25ff7 com.apple.music.apps.LogicFileBrowser 9.1.3 (1697.87) <30484374-D2CE-28E3-3911-918175A37EC0> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x2a33000 - 0x2aacff7 com.apple.music.apps.LogicLoopBrowser 9.1.3 (1697.87) <F4383344-B47C-34ED-25EE-CDB4C25AB91F> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2ad2000 - 0x2af3ff7 com.apple.music.apps.MAApogeeSupport 9.1.3 (311.26) <E1742743-03A3-5010-7305-9563C2F07A17> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x2afc000 - 0x2b01ff7 com.apple.music.apps.MAResources 9.1.3 (211.27) <6A5C7B5D-7BAA-621A-6354-6DCFE64C7169> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2b05000 - 0x2b2efe3 com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2b3f000 - 0x2b47ff7 com.apple.AEProfiling 1.2 (23) <86CAC73B-4541-6AF7-81EA-39A225208B61> /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x2b50000 - 0x2b60ff7 com.apple.AERegistration 1.2 (401) <16BF6A2B-5D59-40F1-4960-E42997A9884E> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2b74000 - 0x2b80ff3 com.apple.music.apps.MAUnitTest 9.1.3 (95.26) <A3639591-6C3E-182E-77B9-CF372A3BD99F> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2b8a000 - 0x2c41ff3 com.apple.music.apps.MAFiles 9.1.3 (143.41) <3A3D8254-3882-EB60-F5C2-2595A647D593> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2c61000 - 0x2cd7ff3 com.apple.music.apps.MAAudioEngine 9.1.3 (156.63) <576F14D7-9EE6-C6D4-F38A-62A734882D49> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2d47000 - 0x2d52ff7 com.apple.music.apps.MAToolKit 9.1.3 (357.30) <87077A15-69AB-8D17-D7C0-DB0EA794DC99> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2d58000 - 0x2d76fef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2d85000 - 0x2d99ff7 com.apple.music.apps.MAVideo 9.1.3 (11.31) <D2409155-8C9F-13D9-2898-732E252E9A6B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2daf000 - 0x2defff7 com.apple.vmutils 4.2 (106) <92BB4844-304C-C7AB-1F9B-686537C56099> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2e08000 - 0x2ea4ffc com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2f01000 - 0x2fb6fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x30e9000 - 0x30fbff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <08801444-00D2-E55B-AE80-B807B99BB0C6> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x3740000 - 0x3775ff7 com.apple.prokit.SnowLeopardPanels 6.0.2 (1177) <B76886BF-AD47-8653-F667-6891277EBCC3> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x3786000 - 0x3794fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <AFA4C3C8-D752-EC96-FF56-6E2F8ABB391B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x37ce000 - 0x37dbff7 com.apple.iokit.IOHIDLib 1.6.5 (1.6.5) <FD60CB35-DAC1-D320-503E-80F6C059DA98> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x37ef000 - 0x37f3ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <6A211097-72ED-1461-4050-72C9101D79E4> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x5d70000 - 0x5d76ffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <404165FF-1BA0-706B-F48A-10AC997162B1> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x5d9e000 - 0x5da6ff7 com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x18db0000 - 0x18dd4fe7 GLRendererFloat ??? (???) <0C6A1BCF-97F0-F7D6-C840-2991681BB67C> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x18ddc000 - 0x18ddeff3 com.apple.music.apps.anvil.resources 9.1.3 (279.24) <30AED652-8144-4C7D-3704-C5E54374E926> /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x18de3000 - 0x18de5ff3 com.apple.music.apps.common.resources 9.1.3 (279.24) <00F7BF38-C2EC-4B11-C576-397A4F3C5B2E> /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x18dea000 - 0x18decff3 com.apple.music.apps.ebp.resources 9.1.3 (279.24) <E3CED784-10CA-D943-47ED-CA0EE6560A43> /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x18df1000 - 0x18df3ff3 com.apple.music.apps.efx.resources 9.1.3 (279.24) <5CB33B69-CC3F-FA36-31AD-29E9768A3EDB> /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x18df8000 - 0x18dfaff3 com.apple.music.apps.egt.resources 9.1.3 (279.24) <45B575D4-BEC7-D9D6-18FD-1FD6EE52DFF4> /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x41971000 - 0x419a3fe6 +se.propellerheads.rex.library 1.6 (1.6) /Library/Application Support/Native Instruments/Helper/REX Shared Library.bundle/Contents/MacOS/REX Shared Library
    0x41ad4000 - 0x41ad6ff3 com.apple.music.apps.emx.resources 9.1.3 (279.24) <9C4E944F-4395-FB99-A95D-85D696CF603C> /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x41adb000 - 0x41addff3 com.apple.music.apps.es1.resources 9.1.3 (279.24) <2C2AA27B-B7F9-4611-BA8E-268A6DDB6528> /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x41ae2000 - 0x41ae4ff3 com.apple.music.apps.es2.resources 9.1.3 (279.24) <1203F4E1-A807-6356-1A1B-71E0D17F3266> /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x41ae9000 - 0x41aebff3 com.apple.music.apps.esp.resources 9.1.3 (279.24) <812DDF6A-A139-271E-298E-A1448981C454> /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x41af0000 - 0x41af2ff3 com.apple.music.apps.evb3.resources 9.1.3 (279.24) <4789B3C5-CE03-F88A-4C66-51235E640AF4> /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x41af7000 - 0x41af9ff3 com.apple.music.apps.evd6.resources 9.1.3 (279.24) <35CB149A-BDCC-E733-B398-D4C784EBCF50> /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x41afe000 - 0x41b00ff3 com.apple.music.apps.evoc.resources 9.1.3 (279.24) <E6B81E02-B717-BE6B-91D1-889861513704> /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x423b5000 - 0x4252dfe7 GLEngine ??? (???) <0E1DF3E4-0EEE-9FD8-8F52-FFFCF0DF23A7> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4255f000 - 0x4295dffb com.apple.ATIRadeonX2000GLDriver 1.6.26 (6.2.6) <496702B6-1B8D-0FCE-E3DB-707FFA7D5EE0> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x42bd1000 - 0x42bd2fff com.apple.music.apps.midi.device.plugin.MCS3 9.1.3 (197.32) <AECF9627-912A-D376-A10E-A0BA65964693> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
    0x42bd7000 - 0x42bd9ff3 com.apple.music.apps.evp88.resources 9.1.3 (279.24) <F324A139-7C4A-1282-9967-972C3DBEC287> /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x42bde000 - 0x42be0ff3 com.apple.music.apps.exs24.resources 9.1.3 (279.24) <C12205C5-9370-072E-7ACF-C853EDB9FE2A> /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x42be5000 - 0x42be7ff3 com.apple.music.apps.guitaramp.resources 9.1.3 (279.24) <7C8C4D24-1E26-DB30-F199-714F26199D16> /Applications/Logic Pro.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x42bec000 - 0x42beeff3 com.apple.music.apps.guitarcontrols.resources 9.1.3 (279.24) <F0B370F5-A84E-8D5C-11BB-EB8EFBCCA9F7> /Applications/Logic Pro.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x42bf3000 - 0x42bf5ff3 com.apple.music.apps.mutapdel.resources 9.1.3 (279.24) <5F23F0CD-8829-929D-6774-D9EB84F13944> /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x42f2f000 - 0x42f2fff3 com.apple.music.apps.midi.device.plugin.Recording Light 9.1.3 (197.32) <D5745209-481B-99C9-6661-3DBA6F36BC60> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
    0x4304d000 - 0x4304fff3 com.apple.music.apps.pedalboard.resources 9.1.3 (279.24) <4E0CA42C-EFCC-D453-BBD6-E00B63AD5BF7> /Applications/Logic Pro.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x43054000 - 0x43056ff3 com.apple.music.apps.revolver.resources 9.1.3 (279.24) <A64F2ACA-392C-93BF-BD59-BE38A8A20B11> /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x4305b000 - 0x4305dff3 com.apple.music.apps.sphere.resources 9.1.3 (279.24) <EA7BB48B-C5F6-C6ED-DA6E-8D643CFF9D8C> /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x48fe3000 - 0x48feeff7 com.apple.DVCPROHDVideoOutput 1.3.2 (1.3.2) <738D36A7-8DBD-3BD7-CD35-4B171397782C> /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0x4d62f000 - 0x4d694fe0 com.apple.DVCPROHDMuxer 1.3.2 (1.3.2) <C1AA540F-CEAD-77BA-1CD6-0D467B4F76FF> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x4d6ae000 - 0x4d6effe3 com.apple.audio.SoundManager.Components 3.9.4 (3.9.4) <B5A19093-651A-6980-288B-0E1044D7ED5F> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x4d6f6000 - 0x4d732fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1756.15) <9C48FD18-B6B8-10FA-3B09-47915626A73C> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x4d73e000 - 0x4d7fbfe2 com.apple.DesktopVideoOut 1.2.7 (1.2.7) <54E0C747-1169-FB4A-2CB4-9EA9BD5398F8> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x4d81a000 - 0x4d824ff7 com.apple.IOFWDVComponents 1.9.9 (1.9.9) <F4C1967D-E7E3-CF1E-12DB-184B7AA68C93> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x4da3b000 - 0x4da3dff3 com.apple.music.apps.midi.device.plugin.GiO 9.1.3 (197.32) <58CD349A-E7DF-A043-BF27-E95A0CBE9E37> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
    0x4da4b000 - 0x4da4dfe3 com.apple.music.apps.midi.device.plugin.CS-32 9.1.3 (197.32) <125BCFE2-6B62-092A-6168-C9983BA554AA> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x4da56000 - 0x4da59feb com.apple.music.apps.midi.device.plugin.FW-1884 9.1.3 (197.32) <10EB39D6-3726-0957-1336-D3C0C961F830> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x4da63000 - 0x4da67ffb com.apple.music.apps.midi.device.plugin.HUI 9.1.3 (197.32) <187A0930-DE60-7220-DF83-F9AE8BDCA6EA> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
    0x4da74000 - 0x4da75fff com.apple.music.apps.midi.device.plugin.iControl 9.1.3 (197.32) <32561350-3045-68F1-DD93-F2E6AEC325AB> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
    0x4da7b000 - 0x4da82ff3 com.apple.music.apps.midi.device.plugin.Logic Control 9.1.3 (197.32) <9CA09C86-62C9-A172-995B-995048588539> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0x4daa3000 - 0x4daa5ff7 com.apple.music.apps.midi.device.plugin.microKONTROL 9.1.3 (197.32) <E626FD17-6763-7814-4FCB-01EC72A560A1> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
    0x4daac000 - 0x4daaffff com.apple.music.apps.midi.device.plugin.TouchOSC 9.1.3 (197.32) <ED58F1CF-F84F-23B1-AFD0-7DC7B7D04228> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
    0x4daba000 - 0x4dabcff3 com.apple.music.apps.midi.device.plugin.TranzPort 9.1.3 (197.32) <D44A89F2-5A83-F6D1-BC59-A863746C75FC> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
    0x4dac1000 - 0x4dac3fe7 com.apple.music.apps.midi.device.plugin.US-2400 9.1.3 (197.32) <F8CE2010-C5AF-FCC7-50CE-7034EE351CF2> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
    0x4dacd000 - 0x4daceffb com.apple.music.apps.midi.device.plugin.US-428 9.1.3 (197.32) <6C2207D6-7A99-BE4C-7178-80EC9D9AC773> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
    0x513c0000 - 0x52026fe7 +Kontakt 3.MusicDevice.component 3.5.0.025 (3.5.0, Copyright © 2009 Native Instruments) <6830C7F1-EE67-FB50-8923-A2903164FF22> /Library/Audio/Plug-Ins/Components/Kontakt 3.component/Contents/MacOS/Kontakt 3
    0x52800000 - 0x529e0fe7 +de.native-instruments.kconvert.macho.bundle 2.0.0.29 (2.0.0.29) <D7D76185-C022-3F99-060E-C971D3BEB420> /Library/Application Support/Native Instruments/Kontakt 3/kconvert.bundle/Contents/MacOS/kconvert
    0x557c2000 - 0x557c8ff7 com.apple.qldisplay.NSImage 2.3 (327.6) <73FE36E6-9532-5158-A4F3-20DA63E23D9F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/NSImage.qldisplay/Contents/MacOS/NS Image
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    0x90003000 - 0x90003ff7 com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90004000 - 0x9002eff7 com.apple.shortcut 1.1 (1.1) <08A1868D-FEF4-8FB3-D814-79385DCBEC7D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9002f000 - 0x90445ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90452000 - 0x904d2feb com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90508000 - 0x90524fe3 com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90525000 - 0x90558ff7 com.apple.AE 496.4 (496.4) <C73D124C-C722-41D8-3465-4CE0D0BA9307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90559000 - 0x905f1fe7 edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x905f2000 - 0x905f3ff7 com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <253E9552-5CEA-0D5A-1EDA-3B8F669B79EA> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90627000 - 0x90852ff3 com.apple.QuartzComposer 4.2 ({156.28}) <62E864AD-3155-59B8-BA1F-8197360C8587> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90853000 - 0x9088efeb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9088f000 - 0x90909fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <A02CEAE9-943A-CBE2-2350-4631C1E7B0A7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9090a000 - 0x9090eff7 libGIF.dylib ??? (???) <447BC6E8-4C56-3D5D-983B-6BEA0D26F319> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9090f000 - 0x90915fe7 com.apple.CommerceCore 1.0 (9) <928FCA4F-1366-AE18-CF67-87C79F5DAC21> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9093a000 - 0x909a4fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x909ed000 - 0x90a45fe7 com.apple.datadetectorscore 2.0 (80.7) <3830B574-3B0B-76DA-390D-702D908A71F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90a46000 - 0x90a86ff7 com.apple.ImageCaptureCore 1.0.4 (1.0.4) <CE815114-CEFA-4AF4-7365-7908428AB733> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90a87000 - 0x90a97ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90a98000 - 0x90a99ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90a9a000 - 0x90c54feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C96F11A7-2569-3037-C4C3-0342708FA3CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90c55000 - 0x90c67ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <32CE2895-DAF0-2137-F9BE-8150359F43A1> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90c68000 - 0x90ca9ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <95079B56-0B7B-F114-5C43-5220DBE0FBB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90d61000 - 0x90df3fe7 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
    0x90df4000 - 0x90e2dfe7 com.apple.bom 10.0 (164) <3BD198F4-56AD-EE1B-2EBD-C7E6868A0D3C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90f46000 - 0x91088ff7 com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x91099000 - 0x910a0ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <61A74CE1-750D-9CAB-B780-306841739EE1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x910a1000 - 0x910eefeb com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x910ef000 - 0x9110aff7 libPng.dylib ??? (???) <65E824F7-523A-CC34-ABDD-2A3B12DE1CA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9110b000 - 0x9110dff7 libRadiance.dylib ??? (???) <B83179D4-E41C-D2BA-1E4C-A64CB45C15E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9110e000 - 0x91545ff3 com.apple.RawCamera.bundle 3.6.4 (561) <DBA5D7C1-CD82-CE7F-5AE5-A0E4E128236F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9155f000 - 0x917c4feb com.apple.security 6.1.1 (37594) <251BA05D-6F3D-F687-77C2-15E52539F308> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x917c5000 - 0x917d2ff7 com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x917d3000 - 0x917d3ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x917d4000 - 0x9184dff7 com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9184e000 - 0x9186dfe3 libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <7236668D-1D61-0ED8-9F22-35DBBF661175> /usr/lib/libexpat.1.dylib
    0x9186e000 - 0x91871ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B84D7376-EE9C-2B7F-04FA-D622E2C10CA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91872000 - 0x918b5ff7 libGLU.dylib ??? (???) <2C7B2727-26F6-F29D-9D15-33044E87359F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x918c0000 - 0x91910ff7 com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91911000 - 0x9191eff7 com.apple.AppleFSCompression 24.4 (1.0) <ADE29C24-087D-1795-2F46-34CE20A61669> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9191f000 - 0x9192fff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x91930000 - 0x919a7ff3 com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x919a8000 - 0x91ca1fef com.apple.QuickTime 7.6.6 (1756.15) <C2567783-4EAC-6803-522B-D701B95C4DAE> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91ca2000 - 0x91d59feb libFontParser.dylib ??? (???) <DDBBB503-5289-2E2B-AD35-F3BA00D00D5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92064000 - 0x92166fef com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x92191000 - 0x921ceff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x921ee000 - 0x922cefe7 com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x922cf000 - 0x922d5ff7 libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <218EC7C4-0520-2D8C-62EE-AA82D35448FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x922d6000 - 0x9233afff com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9233b000 - 0x9239cfe7 com.apple.CoreText 3.151.8 (???) <6F5D6C49-4693-B9B7-6612-832E8F155747> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9239d000 - 0x923a2ff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x923f6000 - 0x9243ffe7 libTIFF.dylib ??? (???) <5CE284EC-F637-EDBB-FDB3-61E86407CBB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92440000 - 0x925c2fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D375C1CF-C88D-C5F6-3C49-CD429023FBAC> /usr/lib/libicucore.A.dylib
    0x92604000 - 0x92608ff7 libGFXShared.dylib ??? (???) <4F2199F0-320F-0B59-0380-D3131D644CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x92669000 - 0x9284bfff 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
    0x9284c000 - 0x9284efe7 com.apple.ExceptionHandling 1.5 (10) <03218275-EBEC-39AA-895A-BA72A5FDBB7A> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9284f000 - 0x92857ff7 com.apple.DisplayServicesFW 2.3.0 (283) <305F9514-2404-5CF7-AFB4-00BB4D2EA69E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92858000 - 0x92994ff7 com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <781018FB-474B-E09C-D419-5BFF80590A10> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92af8000 - 0x92b7affb SecurityFoundation ??? (???) <2E1F1AF0-A258-D215-2600-5DF03896D1F1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92b7b000 - 0x92beaff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92beb000 - 0x92c59ff7 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
    0x92c5a000 - 0x92c65ff7 libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92c66000 - 0x92d10fe7 com.apple.CFNetwork 454.11.12 (454.11.12) <BE832CCE-B692-F55F-F5F8-3973649AFEA1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92d11000 - 0x92d1dff7 libkxld.dylib ??? (???) <9D8378E0-1C58-EED8-EA00-F4515B8BE7A3> /usr/lib/system/libkxld.dylib
    0x92d1e000 - 0x92dccff3 com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92dcd000 - 0x93202ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93203000 - 0x93205ff7 com.apple.securityhi 4.0 (36638) <C7DA80C1-DCFD-C321-08DA-5E6946CA66E0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93206000 - 0x93214ff7 com.apple.opengl 1.6.12 (1.6.12) <81AEF74E-E33A-B021-9CDB-6199104105FF> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93215000 - 0x93235fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x9339e000 - 0x9339eff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x933b5000 - 0x933ddff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <12FBE8CB-CC8E-FE8A-7362-C852625C5AAF> /usr/lib/libxslt.1.dylib
    0x93411000 - 0x93412ff7 com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93413000 - 0x9341eff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <4560936D-7730-5DD2-BFD7-95270DDC210A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93432000 - 0x9343ffe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x93440000 - 0x93479ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <90C5DE81-1BEF-D807-A898-0FC19BDD14EC> /usr/lib/libcups.2.dylib
    0x9347a000 - 0x9349cfef com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x934ce000 - 0x934ceff7 com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x934cf000 - 0x93516ffb com.apple.CoreMediaIOServices 134.0 (1160) <4CD78557-3CDA-A4B5-33CB-BBB876B4463D> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93517000 - 0x93536ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9353e000 - 0x93548ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93549000 - 0x93584fe7 com.apple.DebugSymbols 1.1 (70) <84F54FE1-A0E8-9A5B-DC47-21999D6F5EF5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x93585000 - 0x9362dffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x936cf000 - 0x936e4fff com.apple.ImageCapture 6.0.2 (6.0.2) <E9F4B952-27A1-5BFC-CA8D-DADA055D30E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x936e5000 - 0x93ed4557 com.apple.CoreGraphics 1.545.0 (???) <8A4CB0D9-1001-0F62-4DA4-B8AB3B45E226> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93ed5000 - 0x93f1bff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x93f1c000 - 0x93f6dff7 com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93f6e000 - 0x93f74fff com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93f75000 - 0x93fb9ff3 com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93fba000 - 0x93fc5ff7 com.apple.CrashReporterSupport 10.6.7 (258) <71CC59D1-E197-7431-5973-2C079A749257> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93fc6000 - 0x9447fffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94480000 - 0x947ebff7 com.apple.QuartzCore 1.6.3 (227.36) <8E927524-EB0A-D5BA-C2E4-FA26FE4C428A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x947ec000 - 0x94a5ffe7 com.apple.Foundation 6.6.6 (751.53) <C73FDD37-000B-C505-FD8D-80D1C9D17965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94a60000 - 0x94a93ffb libTrueTypeScaler.dylib ??? (???) <574C2C51-65EC-7D2A-086D-C9312287DE22> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94a94000 - 0x94abbff7 com.apple.quartzfilters 1.6.0 (1.6.0) <F45520B0-6B27-CD57-54B1-203FE32120DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94abc000 - 0x94cbaff3 com.apple.JavaScriptCore 6533.20 (6533.20.20) <011E271D-4CA4-FFB0-2EDD-13C31C239899> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94cbb000 - 0x94d36fff com.apple.AppleVAFramework 4.10.23 (4.10.23) <57B7C626-F344-AB15-8556-00425FA765DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94d37000 - 0x94df0fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x94df1000 - 0x94df8ff3 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
    0x9584c000 - 0x95872ffb 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
    0x95873000 - 0x95977fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x95978000 - 0x959bbff7 com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x959bf000 - 0x95ce3fef com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95ce4000 - 0x95d7fff7 com.apple.ApplicationServices.ATS 4.4 (???) <FD63F92B-8DDE-4DBA-A7A5-0294E3607083> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95d80000 - 0x95da1fe7 com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x95da2000 - 0x95e7eff3 com.apple.DiscRecording 5.0.8 (5080.4.1) <619D7858-6145-63F9-7023-4A6B1D3B91BC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95e93000 - 0x95e96ff7 libCoreVMClient.dylib ??? (???) <12EF6056-7AC7-6691-75A2-BD0675C56A35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95e97000 - 0x95ef4ff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95f13000 - 0x95f1dff7 com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96013000 - 0x96024ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96025000 - 0x96055ff7 com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96056000 - 0x9607aff7 libJPEG.dylib ??? (???) <A50127EB-C202-0436-E62D-41E2E893E436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9609d000 - 0x960a7fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x960a8000 - 0x96284ffb libType1Scaler.dylib ??? (???) <494D1BE1-8395-9A53-1224-1CFD4236D40E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x962ce000 - 0x962ffff7 libGLImage.dylib ??? (???) <1AF72191-087A-5D75-B3B9-3F537315F635> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96300000 - 0x9642efe7 com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9642f000 - 0x96572fef com.apple.QTKit 7.6.6 (1756.15) <32C49374-14BC-53E7-FBFF-E11B42A41F56> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96573000 - 0x965b1ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x965b2000 - 0x9668cffb com.apple.DesktopServices 1.5.10 (1.5.10) <2BA08DD4-35A2-A0FF-ADEA-B381F0CEEB81> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9668d000 - 0x9668dff7 liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x9668e000 - 0x96691ffb com.apple.help 1.3.1 (41) <6A5AD406-9D8E-5BAC-51E1-E09AB9A6D159> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96692000 - 0x966d6fe7 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
    0x966d7000 - 0x967d8fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x96803000 - 0x968a0fe3 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
    0x96b07000 - 0x97a5afe3 com.apple.QuickTimeComponents.component 7.6.6 (1756.15) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x97a5b000 - 0x97b67ff7 libGLProgrammability.dylib ??? (???) <2D172B4E-432F-D18E-EA99-3BD56DBE7649> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97b68000 - 0x97be5ff7 com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97be6000 - 0x97c3cff7 com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x97c3d000 - 0x97d69ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x97d6a000 - 0x97d6aff7 com.apple.Carbon 150 (152) <734BDB59-8B13-54FA-0653-AA8623DF9846> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97d7e000 - 0x97d82ff7 IOSurface ??? (???) <235E7E3D-B6E5-0AAA-C41A-7AC1F54A7EBF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97d83000 - 0x97d97fe7 libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x97d98000 - 0x98678ff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98679000 - 0x9874afe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <41417F73-42C5-FFC3-E7A1-EF94602CDCD6> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x98931000 - 0x98931ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98932000 - 0x9898cfe7 com.apple.CorePDF 1.3 (1.3) <EA168671-F44F-BFE4-AA7D-3801DA29A650> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9898d000 - 0x989ddff7 com.apple.Symbolication 1.1 (67) <FF4A09A2-DFA7-95C6-4589-9724CA141478> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98adb000 - 0x98ae9fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x98aea000 - 0x98ba6fff com.apple.ColorSync 4.6.6 (4.6.6) <D00B95AE-2379-CB8E-B18C-FF5B66741C23> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x98ba7000 - 0x98d4eff7 libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    0x98d7b000 - 0x98e46fef com.apple.CoreServices.OSServices 359 (359) <EC340F74-8192-C9DD-40B3-AE4E519A38D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98e47000 - 0x99167ff3 com.apple.CoreServices.CarbonCore 861.34 (861.34) <3DA9098F-B71B-4BDE-5DE5-4B76C49158EB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x99168000 - 0x9919ffe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x991a0000 - 0x993a7feb com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x993a8000 - 0x993e0ff7 com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x99432000 - 0x99472ff3 com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x99473000 - 0x994b0ff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x994f4000 - 0x9966ffe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x996a9000 - 0x996b2ff7 com.apple.DiskArbitration 2.3 (2.3) <6AA6DDF6-AFC3-BBDB-751A-64AE3580A49E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x996b3000 - 0x99760fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <C8925910-B927-968B-4B71-D83A4CEF8646> /usr/lib/libobjc.A.dylib
    0x997a2000 - 0x997baff7 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
    0x997c3000 - 0x99837fef com.apple.CoreSymbolication 2.0 (23) <D9B42341-A0B6-A1C7-29FF-3B18F82ECBA1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x99838000 - 0x9996fff7 com.apple.CoreAUC 6.04.05 (6.04.05) <4A2BEE1A-A74A-746B-EFA6-470CD3354252> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x99970000 - 0x999a6fff libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x999ac000 - 0x999affe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x99a1f000 - 0x99a61ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x99a62000 - 0x99a62ff7 com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99aa9000 - 0x99aa9ff7 com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99ab6000 - 0x99acaffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0xba300000 - 0xba301fe7 libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <80E8C2F7-3210-7A58-F083-F24AF7075E79> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7 libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) <02C6817E-B73A-6C2E-7575-9B73AFDA19FE> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <02CCC192-2AC9-73DF-4A40-0B3AF87B6372> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <8697CB9C-AC3B-301B-F1BD-382E30FA5642> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbad00000 - 0xbad01fe7 libLatin2Converter.dylib 49.0.0 (compatibility 1.0.0) <ED2FA4E7-5138-12E2-84DB-80497375BB7A> /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
    0xbaf00000 - 0xbaf01ff7 libLatin5Converter.dylib 49.0.0 (compatibility 1.0.0) <2D59C91C-66F8-B34C-CBAB-0A1C1C777459> /System/Library/CoreServices/Encodings/libLatin5Converter.dylib
    0xbb100000 - 0xbb103fe7 libLatinSuppConverter.dylib 49.0.0 (compatibility 1.0.0) <DF2E182B-F1CD-4B40-A6B9-942722E08176> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
    0xbb300000 - 0xbb301fe7 libSymbolConverter.dylib 49.0.0 (compatibility 1.0.0) <5A39462E-ADB3-B749-2C9C-25B335824BAE> /System/Library/CoreServices/Encodings/libSymbolConverter.dylib
    0xbb500000 - 0xbb500ff7 libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) <0B67094E-3A8B-5E3E-E529-A3574EE78DC8> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-40V6A0, 465.76 GB
    Serial ATA Device: HL-DT-STDVDRW GA32N
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Onyx Blackjack, 0x0a73, 0x0010, 0xfd130000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd110000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa120000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0xfa111000

    I don't have a clue. I have to keep my velocity at 100 or less or it crashes and the drums sound like crap if they are set that low. Another thing is, the logic drums sound like *** no matter what you do, so i have to use the Steven Slate drums. There is just no option. I am trying so hard to figure out a solution but no one seems to have an answer and I'm not a tec. The second I do, "if" I do I will let you know right away..I'm bummed, and Frustrated!

  • How to change the domain name

    Our company was bought in an acquisition and for a long time we kept out domain and firewall. Now, we have to move the servers physically and on the new domain. All Oracle servers have been installed with the service of ORANAME.usdv.sdv.com and the TNS names use the same Service tag. The databases created with dbca also get this service extension on install.
    I did not find a lot to read about a domain change in Oracle. Looking for an idea on what complications I may expect and how to actually perform the domain change, tips and tricks, some materials to read, etc.
    It looks that I have to change the tnsnames.ora on all clients,but is this going to be enough? Do I need to redo netca on clients and servers?
    Thanks a lot, mj

    Thanks a lot. I'm sorry I did not specify that in my initial post - this was actually what I read but could not find anything more on that...
    I have a couple of questions like:
    When do I have to alter the database to change tha name - before or after to join to the new domain?
    Also, is the statement "ALTER DATABASE RENAME GLOBAL_NAME TO <dbname.new.domain>" the only thing I need to do? It looks that this command never changes the v$parameter value. Do I need to change it and how to do that?
    The doc said :"DB_DOMAIN has no effect on the global database name" but it this true?
    Also, is this valid for both 10.2.0.2 and above and 9.2.0.7?
    Thanks a lot,mj
    Message was edited by:
    user494147

  • Photoshop CS2 has begun crashing. Can't identify what changes I have made may have started this. I a

    Photoshop CS2 has begun crashing. Can't identify what changes I have made may have started this. I am using a MacBook Pro (2.2 GHz Intel Core i7) running OS 10.6.8. The error message reads: Process:         Adobe Photoshop CS2 [8011] Path:            /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 Identifier:      com.adobe.Photoshop Version:         9.0 (9.0x196) (9.0) Code Type:       PPC (Translated) Parent Process:  launchd [136]  Date/Time:       2012-03-09 17:56:22.693 -0600 OS Version:      Mac OS X 10.6.8 (10K549) Report Version:  6  Interval Since Last Report:          326864 sec Crashes Since Last Report:           18 Per-App Interval Since Last Report:  6035 sec Per-App Crashes Since Last Report:   12 Anonymous UUID:                      68A4F14B-1933-472D-B2EA-3A01AA5C7653  Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffffc Crashed Thread:  0  Dispatch queue: com.apple.main-thread  Thread 0 Crashed:  Dispatch queue: com.apple.main-thread 0   ???                         
    0x73724189 0 + 1936867721  Thread 1: 0   libSystem.B.dylib           
    0x80142afa mach_msg_trap + 10 1   libSystem.B.dylib           
    0x80143267 mach_msg + 68 2   com.adobe.Photoshop         
    0xb819440f CallPPCFunctionAtAddressInt + 206231 3   libSystem.B.dylib           
    0x80170259 _pthread_start + 345 4   libSystem.B.dylib           
    0x801700de thread_start + 34  Thread 2: 0   com.adobe.Photoshop         
    0xb815acc0 spin_lock_wrapper + 90152 1   com.adobe.Photoshop         
    0xb8179c5b CallPPCFunctionAtAddressInt + 97763 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 3: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 4: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 5: 0   com.adobe.Photoshop         
    0xb815aa8b spin_lock_wrapper + 89587 1   com.adobe.Photoshop         
    0xb818c3eb CallPPCFunctionAtAddressInt + 173427 2   com.adobe.Photoshop         
    0xb818eeec CallPPCFunctionAtAddressInt + 184436 3   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 4   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 5   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 6   com.adobe.Photoshop         
    0xb8145c1d spin_lock_wrapper + 3973 7   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 6: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 7: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 8: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 9: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 10: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 11: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 12: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 13: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 14: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 15: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 16: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 17: 0   com.adobe.Photoshop         
    0xb815a93a spin_lock_wrapper + 89250 1   com.adobe.Photoshop         
    0xb8176f67 CallPPCFunctionAtAddressInt + 86255 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8badee0e 0 + 2343431694  Thread 0 crashed with X86 Thread State (32-bit):   eax: 0x00000000  ebx: 0x10beea0c  ecx: 0xbfff5c70  edx: 0xe05cffbf   edi: 0x00000045  esi: 0x00000001  ebp: 0x8a028d80  esp: 0xb7fffacc    ss: 0x00000023  efl: 0x00010283  eip: 0x73724189   cs: 0x0000001b    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f   cr2: 0xfffffffc  Binary Images: 0x80000000 - 0x8005dff7  com.apple.framework.IOKit 2.0 (???) <482CF2CC-DF02-2B5B-2133-18F5EA0052A8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x8007d000 - 0x800e7fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib 0x80142000 - 0x802e9ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib 0x8036b000 - 0x804e6fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x805de000 - 0x805ecfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib 0x805f1000 - 0x805fdff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib 0x80601000 - 0x80647ff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib 0x80654000 - 0x807d6fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib 0x80838000 - 0x808e5fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib 0x808f9000 - 0x808fcfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib 0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld 0xb8000000 - 0xb81defff +com.adobe.Photoshop 9.0 (9.0x196) (9.0) <6437A74D-607F-7339-5F7E-F6B0EF81C25D> /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib  Translated Code Information: objc[8011]: garbage collection is ON Rosetta Version:  22.27 Args: 
    /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 -psn_0_1774001  Exception: EXC_BAD_ACCESS (0x0001)  Thread 0: (0xb022078c, 0xb815aa8b) 0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0  0x91d344bc: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TS_exception_listener_thread + 128  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97ca2cc4
    ctr: 0x97ca2590 r00: 0xffffffe1
    r01: 0xf0203df0
    r02: 0xa0cf6090
    r03: 0x11800000
    r04: 0x00000002
    r05: 0x00000000
    r06: 0x00000054
    r07: 0x0000782b
    r08: 0x00000000
    r09: 0x00000000
    r10: 0x00000600
    r11: 0xa0ceb194
    r12: 0x97ca2590
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x11800000
    r23: 0x00000000
    r24: 0x00000054
    r25: 0x0000782b
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000002
    r29: 0x00000002
    r30: 0x00000000
    r31: 0x91d34444
      Thread 1: (0xb02a2e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0284da0
    r02: 0x0b985980
    r03: 0x00007b07
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80017
    r09: 0x4d555458
    r10: 0x2bb8000f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 2: (0xb04aae34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0488da0
    r02: 0x0b98b7b0
    r03: 0x00008303
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80c77
    r09: 0x4d555458
    r10: 0x2bb80c6f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000010
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 3: (0xb0778e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x01abbf90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36  0x01abc1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76  0x01abbba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf070dd20
    r02: 0x146ad4b0
    r03: 0x00009903
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00002ba7
    r09: 0x4d555458
    r10: 0x000f8cdf
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 4: (0xb011cd74, 0xb815a8ff) 0x97e26aa4: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248  0x97e25190: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e26abc
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0101dc0
    r02: 0x00000000
    r03: 0x00002a03
    r04: 0x00000040
    r05: 0x3b9ab190
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9ab190
    r09: 0x00000000
    r10: 0x3b9ab190
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0xa0cf17cc
    r22: 0xa0cf17c0
    r23: 0xa0cf17c8
    r24: 0x00005a6c
    r25: 0xb5b1300c
    r26: 0xa0cf150c
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d3190
    r30: 0xa0cf17a0
    r31: 0x97e269b4
      Thread 5: (0xb0428e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0407da0
    r02: 0x0b98a830
    r03: 0x00008103
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb8095f
    r09: 0x4d555458
    r10: 0x2bb80957
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x0000000c
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 6: (0xb06b2e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x01abbf90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36  0x01abc1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76  0x01abbba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf068cd20
    r02: 0x146ad4a0
    r03: 0x00009803
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00006ce0
    r09: 0x4d555458
    r10: 0x000d4c0b
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 7: (0xb087ce30, 0xb815a93a) 0x97d3f6a4: /usr/lib/libSystem.B.dylib : __pthread_cond_wait + 880  0x91d36984: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TSWaitOnConditionTimedRelative + 240  0x91d38a00: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 468  0x91cc6670: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : AsyncFileThread(void*) + 92  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x97d3f6e8
    ctr: 0x97ca2610 r00: 0xffffffd9
    r01: 0xf080f8b0
    r02: 0x00000001
    r03: 0x0000a703
    r04: 0x0000a803
    r05: 0x0000003c
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00021000
    r09: 0x00000001
    r10: 0xf080fe88
    r11: 0xa0ceb6a0
    r12: 0x97ca2610
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x91da71cc
    r19: 0x91da71d0
    r20: 0xa0cf26d0
    r21: 0x91da71d4
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x0000003c
    r25: 0x00000001
    r26: 0xa0cf271c
    r27: 0xf080fe88
    r28: 0xa02e74ac
    r29: 0x00000000
    r30: 0xa02e74e0
    r31: 0x97d3f340
      Thread 8: (0xb009ad38, 0xb815acc0) 0x97e254b8: /usr/lib/libSystem.B.dylib : __dispatch_mgr_invoke + 228  0x97e24e9c: /usr/lib/libSystem.B.dylib : __dispatch_queue_invoke + 308  0x97e2502c: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread2 + 372  0x97e25168: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 76  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e25480
    ctr: 0x97ce62d8 r00: 0x0000016b
    r01: 0xf0080bb0
    r02: 0x00000000
    r03: 0x00000004
    r04: 0x00000000
    r05: 0x00000000
    r06: 0xf0080d0c
    r07: 0x00000001
    r08: 0xf0080d28
    r09: 0x00000000
    r10: 0x00000028
    r11: 0xa0cea530
    r12: 0x97ce62d8
    r13: 0x10624dd3
    r14: 0x97e74b04
    r15: 0xf0080c0c
    r16: 0xf0080c8c
    r17: 0xa0d053dc
    r18: 0xf0080d28
    r19: 0xa0cff588
    r20: 0xa0d00588
    r21: 0xf0080d0c
    r22: 0xa0cff508
    r23: 0xa0cff488
    r24: 0xa0d053dc
    r25: 0x00000000
    r26: 0xa0cf162c
    r27: 0x00000000
    r28: 0xa0cf1604
    r29: 0xa0cf133c
    r30: 0xf0080d28
    r31: 0x97e253dc
      Thread 9: (0xb019ed74, 0xb815a8ff) 0x97e26aa4: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248  0x97e25190: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e26abc
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0182dc0
    r02: 0x00000000
    r03: 0x00002a03
    r04: 0x00000040
    r05: 0x3b9ab41a
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9ab41a
    r09: 0x00000000
    r10: 0x3b9ab41a
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0xa0cf17cc
    r22: 0xa0cf17c0
    r23: 0xa0cf17c8
    r24: 0x00005a6c
    r25: 0xb5b303ff
    r26: 0xa0cf150c
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d341a
    r30: 0xa0cf17a0
    r31: 0x97e269b4
      Thread 10: (0xb03a6e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0386da0
    r02: 0x0b974140
    r03: 0x00007f03
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80647
    r09: 0x4d555458
    r10: 0x2bb8063f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000008
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 11: (0xb05aee34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf058ada0
    r02: 0x0b98cc40
    r03: 0x00008703
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb812a7
    r09: 0x4d555458
    r10: 0x2bb8129f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000018
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 12: (0xb0630e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x01abbf90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36  0x01abc1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76  0x01abbba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf060bd20
    r02: 0x146ad590
    r03: 0x00009703
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00004fc0
    r09: 0x4d555458
    r10: 0x000e3c16
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 13: Crashed (0xb7fffacc, 0x73724189) 0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0  0x0019d464: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235840  0x0019d254: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235312  0x0019d340: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235548  0x0019d340: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235548  0x0019d340: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235548  0x0028daec: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 324124  0x0028da3c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 323948  0x0024b570: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 52384  0x00294c7c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 353196  0x002961c8: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 358648  0x00295590: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 355520  0x0024aaf0: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 49696  0x0024a85c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 49036  0x0024ab8c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 49852  0x002ae944: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 458868  0x0036aad4: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 140124  0x0036aa34: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 139964  0x00370efc: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 165764  0x00370e34: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 165564  0x00370674: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 163580  0x01103abc: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : XPEPLaunch::StartApp(unsigned short const*, unsigned short const*, unsigned short const*, void**) + 5911120  0x00633830: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : GlobalToViewPoint(TView*, CPoint const&, VPoint&) + 126828  0x007fea04: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsShowingAlert() + 53824  0x007ee36c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : InitUPrinting() + 381172  0x0006456c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : LookupErrString(short, short, ZString&) + 236304  0x007e9b04: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : InitUPrinting() + 362636  0x00837ba8: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : PercentageWindowVisible(TWindow*) + 6864  0x007f0df4: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : InitUPrinting() + 392060  0x000033f8: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : dyld_stub_binding_helper + 1288  0x000030d0: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : dyld_stub_binding_helper + 480  0x00002e64: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ___code_start__ + 512  0x00002c94: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ___code_start__ + 48   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x0019d3b0
    ctr: 0x00f3b450 r00: 0x0550ae98
    r01: 0xbfff5c70
    r02: 0x0143e7dc
    r03: 0x06eb0e20
    r04: 0x013e2688
    r05: 0x013e4e04
    r06: 0xbfff6190
    r07: 0x00000000
    r08: 0xbfff5d90
    r09: 0x0143ea44
    r10: 0x00002028
    r11: 0xa0ceb208
    r12: 0x00f3b450
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x0ceba1f0
    r17: 0x00000001
    r18: 0x00000000
    r19: 0x0141d780
    r20: 0x005af8aa
    r21: 0xbfff5d94
    r22: 0x0ceabde0
    r23: 0x0143ea44
    r24: 0xbfff6190
    r25: 0x00000001
    r26: 0xbfff5d90
    r27: 0x0cef3ad0
    r28: 0x011ada14
    r29: 0x0143d3b0
    r30: 0x013dd3b0
    r31: 0x013dd3b0
      Thread 14: (0xb0324e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0305da0
    r02: 0x0b984040
    r03: 0x00007d03
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb8032f
    r09: 0x4d555458
    r10: 0x2bb80327
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000004
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 15: (0xb052ce34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0509da0
    r02: 0x0b98c430
    r03: 0x00008503
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80f8f
    r09: 0x4d555458
    r10: 0x2bb80f87
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000014
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 16: (0xb07fad74, 0xb815a8ff) 0x97e26aa4: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248  0x97e25190: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e26abc
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf078edc0
    r02: 0x00000000
    r03: 0x00002b03
    r04: 0x00000040
    r05: 0x3b9a9a5d
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a9a5d
    r09: 0x00000000
    r10: 0x3b9a9a5d
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0xa0cf180c
    r22: 0xa0cf1800
    r23: 0xa0cf1808
    r24: 0x00005a6a
    r25: 0xa9088dda
    r26: 0xa0cf1588
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d1a5d
    r30: 0xa0cf17e0
    r31: 0x97e269b4
       Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.69f3 Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5) Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en1 Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB Serial ATA Device: MATSHITADVD-R   UJ-898 USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3 USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2 USB Device: Canon Digital Camera, 0x04a9  (Canon Inc.), 0x320f, 0xfa130000 / 6 USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 5 USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4 USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9 USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2 USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    That would be one of the reasons it’s unsupported. It was never tested on anything later than Tiger and running anything under Rosetta is a crapshoot as well.
    Be aware that when CS6 ships sometime this spring (no official announcement yet, but all hints from Adobe point to a second quarter ship date) you will be completely out of the upgrade loop and will have to buy a full priced license for CS6 or move to Creative Cloud. There are some pretty good deals out there on CS5.5 upgrades.
    Here’s the CS2 to CS5.5 Design Premium package: http://amzn.to/kZOsu7
    Bob

  • Acrobat 9.1.3 always crashes on closing if I have added/changed a toolbar

    I upgraded to Design Premium CS4 at the same time I upgraded to Snow Leopard in the hope that the CS4 apps would work better than CS3. Most do, except Acrobat.
    At the moment Acrobat 8 works better in Snow Leopard than Acrobat 9. A8 does not crash and all my toolbars do not disappear as they do in A9.1.3. Here is the latest A9 crash report. Can anyone help:
    Process:         AdobeAcrobat [737]
    Path:            /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         9.1.3 (9.1.3)
    Code Type:       X86 (Native)
    Parent Process:  launchd [236]
    Date/Time:       2009-09-02 07:39:59.887 +0100
    OS Version:      Mac OS X 10.6 (10A432)
    Report Version:  6
    Interval Since Last Report:          47964 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  20655 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      BFFC42D6-B825-4A67-B584-3B4DC605DA45
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AccHandlerView window]: unrecognized selector sent to instance 0x18d22640'
    *** Call stack at first throw:
    0   CoreFoundation                      0x920d158a __raiseError + 410
    1   libobjc.A.dylib                     0x970aff49 objc_exception_throw + 56
    2   CoreFoundation                      0x9211d9db -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   CoreFoundation                      0x92079026 ___forwarding___ + 950
    4   CoreFoundation                      0x92078bf2 _CF_forwarding_prep_0 + 50
    5   Accessibility                       0x7d6c6b50 AcroPluginMain + 25404
    6   AppKit                              0x912683aa ValueOfAttributeWithDefault + 69
    7   AppKit                              0x91278cd3 -[NSObject(NSAccessibilityUIElementSpecifier) _accessibilityUIElementPath] + 41
    8   AppKit                              0x91278c69 _NSAccessibilitySpecifierForUIElement + 67
    9   AppKit                              0x91200de6 NSAccessibilityPostNotificationForObservedElement + 383
    10  AppKit                              0x91200c65 NSAccessibilityPostNotification + 28
    11  Accessibility                       0x7d6c3f70 AcroPluginMain + 14172
    12  Accessibility                       0x7d6c7619 AcroPluginMain + 28165
    13  Accessibility                       0x7d6c14c4 AcroPluginMain + 3248
    14  Acrobat                             0x803ccc53 AcroSecurityBailOutImpl + 2952651
    15  Acrobat                             0x80140e03 AcroSecurityBailOutImpl + 282491
    16  Acrobat                             0x80adb75f AcroSecurityBailOutImpl + 10352855
    17  Acrobat                             0x80134ae9 AcroSecurityBailOutImpl + 232545
    18  Acrobat                             0x803f06c2 AcroSecurityBailOutImpl + 3098682
    19  Acrobat                             0x8038f9b9 AcroSecurityBailOutImpl + 2702129
    20  Acrobat                             0x80082ee6 AcroBundleThreadQuitProc + 3096
    21  Acrobat                             0x7fe46940 RunAcrobat + 326
    22  AdobeAcrobat                        0x00002e8b start + 2371
    23  AdobeAcrobat                        0x0000264a start + 258
    24  AdobeAcrobat                        0x00002571 start + 41
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation      0x9211bb07 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib               0x970aff49 objc_exception_throw + 56
    2   com.apple.CoreFoundation      0x9211d9db -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   com.apple.CoreFoundation      0x92079026 ___forwarding___ + 950
    4   com.apple.CoreFoundation      0x92078bf2 _CF_forwarding_prep_0 + 50
    5   ...AcrobatPlugin.Accessibility 0x7d6c6b50 AcroPluginMain + 25404
    6   com.apple.AppKit              0x912683aa ValueOfAttributeWithDefault + 69
    7   com.apple.AppKit              0x91278cd3 -[NSObject(NSAccessibilityUIElementSpecifier) _accessibilityUIElementPath] + 41
    8   com.apple.AppKit              0x91278c69 _NSAccessibilitySpecifierForUIElement + 67
    9   com.apple.AppKit              0x91200de6 NSAccessibilityPostNotificationForObservedElement + 383
    10  com.apple.AppKit              0x91200c65 NSAccessibilityPostNotification + 28
    11  ...AcrobatPlugin.Accessibility 0x7d6c3f70 AcroPluginMain + 14172
    12  ...AcrobatPlugin.Accessibility 0x7d6c7619 AcroPluginMain + 28165
    13  ...AcrobatPlugin.Accessibility 0x7d6c14c4 AcroPluginMain + 3248
    14  com.adobe.Acrobat.framework   0x803ccc53 AcroSecurityBailOutImpl + 2952651
    15  com.adobe.Acrobat.framework   0x80140e03 AcroSecurityBailOutImpl + 282491
    16  com.adobe.Acrobat.framework   0x80adb75f 0x7fe44000 + 13203295
    17  com.adobe.Acrobat.framework   0x80134ae9 AcroSecurityBailOutImpl + 232545
    18  com.adobe.Acrobat.framework   0x803f06c2 AcroSecurityBailOutImpl + 3098682
    19  com.adobe.Acrobat.framework   0x8038f9b9 AcroSecurityBailOutImpl + 2702129
    20  com.adobe.Acrobat.framework   0x80082ee6 AcroBundleThreadQuitProc + 3096
    21  com.adobe.Acrobat.framework   0x7fe46940 RunAcrobat + 326
    22  com.adobe.Acrobat.Pro         0x00002e8b start + 2371
    23  com.adobe.Acrobat.Pro         0x0000264a start + 258
    24  com.adobe.Acrobat.Pro         0x00002571 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x9835610a kevent + 10
    1   libSystem.B.dylib             0x98356824 _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x98355ce1 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x98355a86 _dispatch_worker_thread2 + 234
    4   libSystem.B.dylib             0x98355511 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x98355356 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x9835d82a __semwait_signal + 10
    1   libSystem.B.dylib             0x9835d4e6 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x9835f178 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x926fca2a TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x926e840d TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x926e3d2f MPWaitOnQueue + 250
    6   AdobeACE                      0x7fbb1179 ACEMPThread::Task() + 133
    7   AdobeACE                      0x7fbb10ed TaskGlue + 17
    8   ...ple.CoreServices.CarbonCore 0x926c79fa PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x9835cfe1 _pthread_start + 345
    10  libSystem.B.dylib             0x9835ce66 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x9832f942 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9835d480 _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x983a6743 pthread_cond_wait + 48
    3   AdobeAGM                      0x7e4f14c4 pthread_condition_base::Wait(pthread_scoped_lock_base&) + 26
    4   AdobeAGM                      0x7e4f141d AGMMessageQueueImpl::Pull() + 65
    5   AdobeAGM                      0x7e8e2c30 AGMWorkQueueTask::operator()() + 84
    6   AdobeAGM                      0x7e8e3ebb boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 75
    7   AdobeAGM                      0x7e4f12e1 thread_proxy + 45
    8   libSystem.B.dylib             0x9835cfe1 _pthread_start + 345
    9   libSystem.B.dylib             0x9835ce66 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x9835610a kevent + 10
    1   com.adobe.Acrobat.framework   0x807d121e AcroSecurityBailOutImpl + 7164822
    2   com.adobe.Acrobat.framework   0x8070272f AcroSecurityBailOutImpl + 6318247
    3   libSystem.B.dylib             0x9835cfe1 _pthread_start + 345
    4   libSystem.B.dylib             0x9835ce66 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x9832f95a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x9835d469 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9838c268 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x92e93aec -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation          0x92e4c881 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation          0x92e4c764 -[NSConditionLock lockWhenCondition:] + 69
    6   ...adobe.acrobat.amtlibwrapper 0x1735d2d1 AVAMTForegroundUpdateCheckEnabled + 116699
    7   ...adobe.acrobat.amtlibwrapper 0x17352341 AVAMTForegroundUpdateCheckEnabled + 71755
    8   ...adobe.acrobat.amtlibwrapper 0x1735bd60 AVAMTForegroundUpdateCheckEnabled + 111210
    9   com.apple.Foundation          0x92e57964 -[NSThread main] + 45
    10  com.apple.Foundation          0x92e57914 __NSThread__main__ + 1499
    11  libSystem.B.dylib             0x9835cfe1 _pthread_start + 345
    12  libSystem.B.dylib             0x9835ce66 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x970aff25  ecx: 0xa0aa7500  edx: 0x0000003b
      edi: 0xa0822ab0  esi: 0x18ca5270  ebp: 0xbffff408  esp: 0xbffff3f0
       ss: 0x0000001f  efl: 0x00000286  eip: 0x9211bb07   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x1751e000
    Binary Images:
        0x1000 -     0x2fff +com.adobe.Acrobat.Pro 9.1.3 (9.1.3) <8486DD3A-7448-4821-A5A5-CC399D74F967> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
      0x607000 -   0x609fff +com.unsanity.menuextraenabler 1.0.3 (1.0.3) /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
      0x619000 -   0x623fff +com.unsanity.smartcrashreports Smart Crash Reports version 1.5 (1.5) <7E3E7D42-BB62-6D09-E262-0140BA963851> /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
      0x7ca000 -   0x7cbff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x7da000 -   0x7dcffa +Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
      0x7e1000 -   0x7e4ff3 +com.stclairsoft.DefaultFolderX.osax Default Folder X Addition version 1.0 (4.3) <FE37E143-185D-1520-0608-141D04FD0D56> /Users/hansolo/Library/ScriptingAdditions/Default Folder X Addition.osax/Contents/MacOS/Default Folder X Addition
      0x7fa000 -   0x7faff7  libmx.A.dylib ??? (???) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x1726a000 - 0x17282fff +com.latenightsw.recordtools 1.0.3b1 (1.0.3b1) /Users/hansolo/Library/ScriptingAdditions/List & Record Tools.osax/Contents/MacOS/List & Record Tools
    0x1728a000 - 0x172abfe7 +com.stclairsoft.DefaultFolderX.CarbonPatcher kBundleVersion (kBundleVersion) <88AE819C-77A7-6017-66F6-FFC4CF39B9FF> /Users/hansolo/Library/PreferencePanes/Default Folder X.prefPane/Contents/Resources/Default Folder X.bundle/Contents/Resources/Carbon Patcher.bundle/Contents/MacOS/Carbon Patcher
    0x172b7000 - 0x172d6fff +Cocoa Patcher ??? (???) <83871E6B-81BD-E908-528A-CC4958032739> /Users/hansolo/Library/PreferencePanes/Default Folder X.prefPane/Contents/Resources/Default Folder X.bundle/Contents/Resources/Cocoa Patcher.bundle/Contents/MacOS/Cocoa Patcher
    0x172e2000 - 0x17338feb +com.adobe.AcroSQLite AcroSQLite (1.0.0) <379EA448-AC01-4FF7-83F4-602C5E180472> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/AcroSQLite
    0x1733f000 - 0x17474ff6 +com.adobe.acrobat.amtlibwrapper 1.1 (1.1) <3C934C99-5CA1-4F00-B3BD-72E5904694C1> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AMTLibWrapper.framework/AMTLibWrapper
    0x174a3000 - 0x174eafc7 +com.adobe.adobe_caps adobe_caps 0.0.120.0 (0.0.120.0) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    0x17e4e000 - 0x17e5bff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/asneu.framework/asneu
    0x17e5f000 - 0x17e80ff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/AdobeBIBUtils
    0x17e8d000 - 0x17ec4fd3 +com.adobe.epic adobe_epic 2.5.1.59 (2.5.1.59) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_epic.framework/adobe_epic
    0x18013000 - 0x1801ffef +com.adobe.eula adobe_eula 2.5.1.59 (2.5.1.59) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x180e9000 - 0x180fbff7  libTraditionalChineseConverter.dylib ??? (???) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x180ff000 - 0x1810dfe7  libSimplifiedChineseConverter.dylib ??? (???) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x18b1f000 - 0x18b7bff2 +com.adobe.ESD.AdobeUpdaterLibFramework AdobeUpdater 6.2.0.1474 (6.2.0.1474) <38089EBB-D1A2-4868-8DF3-FCE297546790> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Updater.acroplugin/Contents/Frameworks/AdobeUpdater.framework/A dobeUpdater
    0x190ed000 - 0x1914cfe7 +com.adobe.AdobeXMPCore Adobe XMP Core 4.2.1 -c 43 (???) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/AdobeXMP
    0x1a800000 - 0x1ac82fe3 +AdobeLM_libFNP.dylib ??? (???) <4DFC36E1-2564-47A0-A604-0C2733FB1E87> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeLM_libFNP.dylib
    0x1adab000 - 0x1af17fd7 +com.adobe.Acrobat.adm 9.0.0 (9.0.0) <E7D4DA2E-2289-4799-9AD0-6D520FF61E93> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x73f39000 - 0x73f70fe0 +com.adobe.AcrobatPlugin.Updater 9.1.0 (9.1.0) <2733231B-2D40-4299-A02D-4A97B1CCBA58> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Updater.acroplugin/Contents/MacOS/Updater
    0x75788000 - 0x76034f40 +com.adobe.AcrobatPlugin.PPKLite 9.1.2 (9.1.2) <BAF0A4C9-73E9-4036-8E31-800609114BF6> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x79983000 - 0x79b1cffb +com.adobe.AcrobatPlugin.EScript 9.1.2 (9.1.2) <F63D2247-ABB4-46AC-BDA3-942C29303126> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/EScript.acroplugin/Contents/MacOS/EScript
    0x7a757000 - 0x7a8b2fd6 +com.adobe.AcrobatPlugin.DigSig 9.1.2 (9.1.2) <9321144B-A836-4458-99DE-E5E07D63C7F7> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/DigSig.acroplugin/Contents/MacOS/DigSig
    0x7aada000 - 0x7af1813b +com.adobe.AcrobatPlugin.Comments 9.1.2 (9.1.2) <C00EB7A9-A3E5-45E7-8A39-3ED672802751> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Comments.acroplugin/Contents/MacOS/Comments
    0x7b915000 - 0x7c353f1e +com.adobe.AcrobatPlugin.AcroForm 9.1.2 (9.1.2) <AF4F37CC-75D9-47C4-90F1-3E9854F01507> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x7d6bf000 - 0x7d711ff3 +com.adobe.AcrobatPlugin.Accessibility 9.1.0 (9.1.0) <7BE9033E-E6B5-42F8-BCED-578F39F4F732> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Accessibility.acroplugin/Contents/MacOS/Accessibility
    0x7d7ba000 - 0x7da43ff7 +AdobeCoolType ??? (???) <40E3B5BA-ED88-41E5-A258-C71C430EC777> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x7e436000 - 0x7e450fff +AdobeBIB ??? (???) <8001249B-1DA7-4BFD-9AC4-6D6F3B03D7B6> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x7e4e9000 - 0x7e9fffef +AdobeAGM ??? (???) <9F9D523F-3D1A-41D6-B1BE-CA9BC8432F97> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x7fbae000 - 0x7fcbcfe7 +AdobeACE ??? (???) <51E7F026-752F-4D8E-8DAA-8CC31EBAA2DE> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x7fe44000 - 0x81111fe6 +com.adobe.Acrobat.framework 9.1.2 (9.1.2) <66A4CCC7-84D8-4015-A83A-01380E8812CC> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90067ffb  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
    0x90068000 - 0x90084fe3  com.apple.openscripting 1.3 (???) <D2FF4419-FD71-5D4A-F397-B03E82085232> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x90263000 - 0x90475fff  com.apple.RawCamera.bundle 2.2.1 (477) <10937A0D-0856-1B69-AE27-43BC15B7DD21> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90476000 - 0x90476ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90527000 - 0x90527ff7  com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x905c8000 - 0x9092cff7  com.apple.QuartzCore 1.6.0 (226.0) <7E29DD09-BE04-AA06-5C81-5C093F16901B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9092d000 - 0x90997fe7  libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x90998000 - 0x909e9ff7  com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x910a2000 - 0x91198ff7  libGLProgrammability.dylib ??? (???) <B8E40851-3A01-7D01-2F96-537BF7FA63B5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x911d4000 - 0x91ab0ff7  com.apple.AppKit 6.6 (1038) <25DDEBFC-8A2F-8434-1D97-AEC55B5205F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91ab4000 - 0x91c42fff  com.apple.JavaScriptCore 6531 (6531.5) <DDDCCE57-42D2-BAA1-63F1-F76458EE0927> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91c43000 - 0x91cdbfe7  edu.mit.Kerberos 6.5.8 (6.5.8) <BA9BD282-FF56-3BFD-E78C-7DBE73B48480> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91cdc000 - 0x91da6fef  com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x91ec7000 - 0x91ee7fe7  libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91fff000 - 0x92176fef  com.apple.CoreFoundation 6.6 (550) <193E33D6-2E92-3452-773B-60A1A9CCC573> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92177000 - 0x921bbff3  com.apple.coreui 0.2 (112) <A810DFFD-6314-5E2B-93A4-D5626634B1EE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x921bc000 - 0x922aeff7  libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x92486000 - 0x92490ff7  com.apple.HelpData 2.0.3 (33) <AD60F037-CE57-C93A-F865-2CEEE3F08F31> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92491000 - 0x92540ff3  com.apple.ink.framework 1.3 (104) <8526D880-D367-3EF9-DBFD-9A6AB240F57A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x92541000 - 0x92544ffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x92545000 - 0x92552ff7  com.apple.NetFS 3.2 (3.2) <E6FD80B0-0238-0C42-A3EC-EBDEC107A1C3> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92567000 - 0x925adff7  libauto.dylib ??? (???) <FAB17F30-A28B-E33D-6E21-C7119C9C83ED> /usr/lib/libauto.dylib
    0x925d9000 - 0x92629ff7  com.apple.framework.familycontrols 2.0 (2.0) <50617342-E578-4C1C-938A-19A37ECA91CA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9262a000 - 0x9266bff7  libRIP.A.dylib ??? (???) <6DB158C6-A84D-98C9-1D48-868A3DB17D09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9266c000 - 0x926a0ff7  libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x926a1000 - 0x929c0fe7  com.apple.CoreServices.CarbonCore 859.1 (859.1) <2E72AF56-4BE6-294A-7372-19C360688B8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x929c1000 - 0x92a43ffb  SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x92a44000 - 0x92a49ff7  com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92a93000 - 0x92ae0feb  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x92ae1000 - 0x92bbcfef  com.apple.DesktopServices 1.5.0 (1.5.0) <5295C246-805B-DBCD-BA61-1AE9A458CF73> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x92bbd000 - 0x92c01fe7  com.apple.Metadata 10.6.0 (507.1) <CBD1B22B-5F10-C784-03A2-35106B97DF3F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x92c50000 - 0x92c5efe7  libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x92cda000 - 0x92d1cfe7  libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x92d1d000 - 0x92d31fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x92d32000 - 0x92d34ff7  libRadiance.dylib ??? (???) <0E03CF64-0931-7B9A-F617-4387B809D6D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x92dcf000 - 0x92dcfff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92dd0000 - 0x92dd0ff7  com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92dd1000 - 0x92e0bfe7  libFontRegistry.dylib ??? (???) <EE633CF6-8827-EF05-10A4-5F2937120227> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92e0c000 - 0x92e40ff7  libcups.2.dylib ??? (???) <9078BA07-DEE1-6597-D15D-7BE3A20CB5A0> /usr/lib/libcups.2.dylib
    0x92e41000 - 0x930b1ffb  com.apple.Foundation 6.6 (751) <A61B645E-1A15-5BCA-3043-C8AB85C6AD30> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x930d8000 - 0x930e2ff7  libCSync.A.dylib ??? (???) <A05BB12D-CD51-DE43-323B-3A3E99A3EED5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x930e3000 - 0x930ecff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x930ed000 - 0x9310cfe7  com.apple.opencl 11 (11) <372A42E7-FB10-B74D-E1A0-980E94D07021> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9310d000 - 0x93140ff7  com.apple.AE 496 (496) <B638FDD4-7322-F0E4-ACEB-777D8A1399E1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x93141000 - 0x93159ff7  com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x93336000 - 0x933e8ffb  libFontParser.dylib ??? (???) <EB089832-660F-0B34-3AC8-CCDA937987D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x933fa000 - 0x93496fe7  com.apple.ApplicationServices.ATS 4.0 (???) <81700C90-2614-F7E2-CC6A-B01C24A2BD75> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x93497000 - 0x934a7ff7  libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x934c1000 - 0x934c7fff  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
    0x93504000 - 0x93507ff7  libCoreVMClient.dylib ??? (???) <16BB2178-B32D-E57E-F1E4-D177F7754232> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x93508000 - 0x93568fe7  com.apple.CoreText 3.0.0 (???) <8F4FCAE2-8E6F-F0DE-A6AA-15D0228B7F13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x93569000 - 0x93611ff7  com.apple.QD 3.31 (???) <40FCAC85-4E4F-2290-90D4-F66D550ADFDC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x93655000 - 0x93655ff7  com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x936a4000 - 0x936dcff7  com.apple.LDAPFramework 2.0 (120.1) <8C7F3F42-6A4D-D37A-4232-685D44E8769E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9374c000 - 0x9377dff7  libGLImage.dylib ??? (???) <0FB347C7-A579-4E51-4733-39AB28064554> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x94815000 - 0x94ff6497  com.apple.CoreGraphics 1.535.5 (???) <0B93D29C-D957-AD00-10F3-94112D75D6D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x94ff7000 - 0x95034ff7  com.apple.SystemConfiguration 1.10 (1.10) <897AEEAF-CF5D-2843-C33B-31A0A7C98A6A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x95036000 - 0x95060ff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95061000 - 0x9506bff7  libGL.dylib ??? (???) <B375A3B6-2983-A4E4-50FB-9087FD606FD6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x950e4000 - 0x950ffff7  libPng.dylib ??? (???) <38DD4AA1-0643-85A0-F2F5-EE9269729975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x95103000 - 0x95103ff7  com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x956d6000 - 0x957b9ff7  com.apple.WebKit 6531 (6531.9) <991912FB-1484-A0B2-593F-A8722BC6AFE7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x957ba000 - 0x9593cfe7  libicucore.A.dylib ??? (???) <FBB66376-CBA9-8149-A1AA-10AB8578C3B3> /usr/lib/libicucore.A.dylib
    0x9593d000 - 0x9594eff7  com.apple.LangAnalysis 1.6.5 (1.6.5) <E77440D0-76EE-EB4C-3D00-9EDE417F13CF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9594f000 - 0x9599ffe7  libGLU.dylib ??? (???) <55A69DCE-1237-341E-F239-CDFE1F5B19BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x959a0000 - 0x959a2ff7  com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x959db000 - 0x959e5fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x959e6000 - 0x95a17ff3  libTrueTypeScaler.dylib ??? (???) <F326E053-7425-2F10-F883-CBD56A1E1B72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x95a1d000 - 0x95ad6fe7  libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x95b2e000 - 0x95b4cff7  com.apple.CoreVideo 1.6.0 (43.0) <3A853574-DD9E-08D8-FD2C-6221B55C3E08> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95b4d000 - 0x95b51ff7  IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95b52000 - 0x95b95ff7  com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x95b96000 - 0x95c0fff3  com.apple.audio.CoreAudio 3.2.0 (3.2) <91AE891E-6015-AABE-3512-2D5EBCA0937B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95c10000 - 0x95c36fff  com.apple.DictionaryServices 1.1 (1.1) <07694B30-56A9-5C98-B8BC-DA0628715FA8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x95c45000 - 0x95c8efe7  libTIFF.dylib ??? (???) <6EF87001-6FB4-1405-C588-F6D8042D3534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x95ccf000 - 0x95cd9ffb  com.apple.speech.recognition.framework 3.10.10 (3.10.10) <E106CC3A-7633-5587-0B29-64E19FCBC613> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x95cda000 - 0x95ce0ff7  libCGXCoreImage.A.dylib ??? (???) <8E11578A-B46D-0BC1-DE50-05A92F377D7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95f80000 - 0x9602ffef  com.apple.ColorSync 4.6.0 (4.6.0) <66ABAE86-B0EC-D641-913D-08ACA965F9FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9618a000 - 0x9618aff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x961d8000 - 0x961dcff7  libGFXShared.dylib ??? (???) <ED62E870-E219-C873-88AA-9CE08108F811> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x961dd000 - 0x9627aff3  com.apple.LaunchServices 360.3 (360.3) <C8590D53-E46A-F58A-7CF2-03A8159D8569> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x96294000 - 0x96371ff7  com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9637f000 - 0x964a8fe7  com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <62BEEBE6-68FC-4A48-91CF-39DA2BD793F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x964a9000 - 0x964befff  com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x967b3000 - 0x967d7ff7  libJPEG.dylib ??? (???) <265DBF67-994E-E320-4CB1-9C3DE792C3B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x967d8000 - 0x9680efff  libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x96836000 - 0x96c4cff7  libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x96cf6000 - 0x96d65ff7  libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x96d9e000 - 0x96d9fff7  com.apple.TrustEvaluationAgent 1.0 (1) <71E2DA16-83EC-6056-FFEE-862A04B5599F> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x96da0000 - 0x96da7fff  com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x96da8000 - 0x96f64fef  com.apple.ImageIO.framework 3.0.0 (3.0.0) <A37E541F-3D6A-2BE9-AB32-F60CCDE13608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x970a6000 - 0x97153fe7  libobjc.A.dylib ??? (???) <410DD065-A18F-F054-0457-65525F4D1039> /usr/lib/libobjc.A.dylib
    0x9744f000 - 0x97461ff7  com.apple.MultitouchSupport.framework 200.20 (200.20) <1D7EE15B-ADDD-1F57-F1FB-FB5252910D5A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x97462000 - 0x974e2feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x974e3000 - 0x9750bff7  libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9751f000 - 0x975f0ff3  ColorSyncDeprecated.dylib ??? (???) <AFD6DAC8-12EF-B2A0-5322-E902D5B48B0A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
    0x976cc000 - 0x97b01ff7  libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x97b02000 - 0x97c2afe7  com.apple.CoreData 102 (246) <E7E6CE39-9B51-13C8-FE31-8FE57CF7BDE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97c2b000 - 0x97c2fff7  libGIF.dylib ??? (???) <51848EBF-27D4-0F85-C22A-D1AE10D328F3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x97c30000 - 0x97e92ff3  com.apple.security 6.0 (36910) <F045B57C-054F-F06F-EF7E-EABEC2700274> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x97e93000 - 0x97ea0ff7  com.apple.opengl 1.6.3 (1.6.3) <59D86286-B46F-B0E4-68F8-E5CDCADE393E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97f13000 - 0x97fbafe7  com.apple.CFNetwork 454.4 (454.4) <7C563385-9893-3B48-8607-5BC81DA2C4CF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x9801d000 - 0x98020ff7  libCGXType.A.dylib ??? (???) <3FB5E457-EABF-B33E-E01B-C695FB2D72EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98021000 - 0x9807bff7  com.apple.framework.IOKit 2.0 (???) <7618DDEC-2E3B-9C6E-FDC9-15169E24B4FB> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9807c000 - 0x9810dfe3  com.apple.print.framework.PrintCore 6.0 (312) <C588530A-0F2C-DD72-E308-3B8735125189> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9832f000 - 0x984d3feb  libSystem.B.dylib ??? (???) <068CC3F2-F867-A231-A16C-CC01C29A9816> /usr/lib/libSystem.B.dylib
    0x984d4000 - 0x984d5ff7  com.apple.audio.units.AudioUnit 1.6 (1.6) <68180B96-381C-A09D-5576-606A134FD953> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x984d6000 - 0x98cbbfe7  com.apple.WebCore 6531 (6531.9) <F9A9848B-9EB0-B912-49F5-7E8010AF2CF1> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x98cbc000 - 0x98cbcff7  com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98cbd000 - 0x98cd1ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x98dd5000 - 0x98df7ff3  com.apple.DirectoryService.Framework 3.6 (621) <61569C79-6567-BE8F-4F76-BAC04E5FBF79> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x98df8000 - 0x98ef9fe7  libxml2.2.dylib ??? (???) <C242A74D-280A-90C3-3F79-891624AA45D2> /usr/lib/libxml2.2.dylib
    0x98efa000 - 0x98f06ff7  libkxld.dylib ??? (???) <152C8DBB-0149-5827-3240-E57CA85CFE5F> /usr/lib/system/libkxld.dylib
    0x98f0f000 - 0x99232fef  com.apple.HIToolbox 1.6.0 (???) <6F95AF67-678A-D8BC-FFC2-029C9AA2F44A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x992a5000 - 0x992a8fe7  libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib ??? (???) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib ??? (???) <A23F9980-5CC8-A44D-6FD6-DBFCBFF4FF28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <068CC3F2-F867-A231-A16C-CC01C29A9816> /usr/lib/libSystem.B.dylib
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.18f5
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x87), Atheros 5416: 2.0.19.4
    Bluetooth: Version 2.2.0f18, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: Hitachi HTS541616J9SA00, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-85J, 6.83 GB
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x912f, 0xfd100000
    USB Device: General Purpose USB Hub, 0x0451  (Texas Instruments), 0x2036, 0xfd130000
    USB Device: PowerWave Composite, 0x077d, 0x041a, 0xfd131000
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd110000
    USB Device: 2.0 Card Reader, 0x0dda, 0x2005, 0xfd113000
    USB Device: Apple Cinema HD Display, 0x05ac  (Apple Inc.), 0x9221, 0xfd120000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021b, 0x5d200000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000
    USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x1a200000
    USB Device: Kensington Expert Mouse, 0x047d  (Kensington), 0x1020, 0x1a210000
    USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020c, 0x1a230000
    FireWire Device: 1394 Storage Front Panel*, Maxtor, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown
    FireWire Device: d2 quadra (button), LaCie, Up to 800 Mb/sec
    Note: if I do not change the toolbars, A9 does not crash. However, I need those toolbar changes, which is why I tend to open documents in A8 rather than A9.
    Thanks
    Merrie

    Over the weekend I wiped my hard drive and did a total clean instal of Leopard (not Snow Leopard) - total clean meaning I had to find all my serial numbers when reinstalling apps. A lot of work.
    The problems with InDesign have cleared up, but my Acrobat problem remains. However, I have isolated the problem: it occurs after I have done an "Examine document..." and removed all metadata and other stuff, then resaved the file. I close the saved file and the file closes leaving an empty window (same as a Microsoft Windows window). The little clock mouse icon spins wildly around (forever), I tell Acrobat to either close this window or quit, and it crashes.
    Acrobat closes other "unexamined" documents without any problems and thus I have been able to save my toolbars...
    Anyone else have this crashing problem? Does anyone have a solution?
    Note: if anyone else does a total reinstal of Leopard from Snow Leopard then export your iCal calendars first. They were the only things I lost and this loss was (fortunately) no big deal as they were backed up elsewhere in Leopard.

  • Changing global name of SES db

    Hi,
    I installed SES. While trying a simple sqlplus connect to the db, I saw that the global_name of the SES db is set to SES.server_name instead of SES.domain_name. I changed it with the alter database command and I found 2 config files: <ses home>\oc4j\j2ee\OC4J_SEARCH\config\data-sources.xml and <ses home>\search\webapp\config\search.properties. I also changed the listener.ora and restarted everything. After that I could login to the admin page http://server:port/search/admin/control/login.jsp and create a source, do some config etc. When trying to execute a schedule, I got the error EQG-30050: Could not connect to database. In the crawler log file, I could see the connect string was still wrong, using as service_name my old global_name.
    So my question is: where can I find the crawler settings or what do I have to modify when the global name of the SES database has changed?
    Kind regards,
    els

    It worked fine after the first install. But the db configuration assistant has set the global_name of the database to SES.<servername> instead of SES.<domainname>, which is the standard in our company.

  • Change of IP address resulting in unknown error when publishing.

    Hi there,
    I was recently forced to change my IP address to a dedicated one as I transferred the data of my website and the podcast associated with it from a desktop to the Macbook I'm currently on. I am quite a novice in all these affairs and the amount of things I've failed to wrap my head around is leaving me feeling quite dejected!
    So the issue is that after I changed my IP address, all the individual pages turned to red (rather than just the ones that I had recently edited), which didn't strike me as that odd. Then it asked me if I wanted to do this update I would have to replace this folder, which I did. Then it began publishing like it normally would and it got about 2/5 of the way through and it all of a sudden stops saying that an Unknown Error occurred and that is it. I've tried multiple times only to be met with the same error message each time.
    I'm not sure how to attach screenshots, but here are some links via photobucket of what I'm seeing,
    http://i739.photobucket.com/albums/xx34/jottster/jottster_screenshot1.png
    http://i739.photobucket.com/albums/xx34/jottster/jottster_screenshot3.png
    http://i739.photobucket.com/albums/xx34/jottster/jottster_screenshot2.png
    I've contacted my domain hoster Godaddy who have been mostly helpful until now, as they say that the details I provided are too generic for them to be able to diagnose the problem and that from those screenshots, nothing appears to be wrong.
    It is most frustrating as I've just figured out all the podcast changes and now I go to update this and my website goes completely down. In fact now if I go to my website (www.soundofthought.net) it gives the owner of the space an option to login which I did using my Godaddy details and it took me to their Web Hosting Control Centre for my account. But I'm assuming that is because the website just isn't publishing.
    So if there is anybody out there that can help it would be greatly appreciated as I've just about reached my limit!
    Or even if there is a method for accessing a more detailed error log rather than just an Unknown Error has occurred because that really provides me with far little too information to go on.
    Thanks in advance,
    jottster

    I'm pretty much desperate so I will paste this entire error report even at the risk of appearing ridiculous. Any help would be greatly appreciated.
    Process: iWeb [835]
    Path: /Applications/iWeb.app/Contents/MacOS/iWeb
    Identifier: com.apple.iWeb
    Version: 3.0.3 (303)
    Build Info: iWeb-5010000~4
    Code Type: X86 (Native)
    Parent Process: launchd [99]
    Date/Time: 2011-04-08 08:14:25.044 -0300
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 21528 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 928 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: CC350309-B9EF-40BD-BA56-0D42573B9C7F
    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 libJPEG.dylib 0x910fb4f1 vecycc_rgbxconvert + 711
    1 libJPEG.dylib 0x910fab98 sep_upsample + 182
    2 libJPEG.dylib 0x9110453c processdata_simplemain + 123
    3 libJPEG.dylib 0x910f8ad7 cg_jpeg_readscanlines + 150
    4 com.apple.ImageIO.framework 0x99255d28 copyImageBlockSetJPEG + 2970
    5 com.apple.ImageIO.framework 0x99240191 ImageProviderCopyImageBlockSetCallback + 174
    6 com.apple.CoreGraphics 0x9466e64b CGImageProviderCopyImageBlockSet + 228
    7 com.apple.CoreGraphics 0x94672e5c imgblockscreate + 348
    8 com.apple.CoreGraphics 0x94672ce1 imgblocksextent + 85
    9 com.apple.CoreGraphics 0x9460bb76 imgdatalock + 8882
    10 com.apple.CoreGraphics 0x94608c72 CGSImageDataLock + 172
    11 libRIP.A.dylib 0x95ab9750 ripc_AcquireImage + 2446
    12 libRIP.A.dylib 0x95ab73c6 ripc_DrawImage + 1245
    13 com.apple.CoreGraphics 0x946088ec CGContextDrawImage + 450
    14 com.apple.iWeb.sfrendering 0x00d78992 -[SFRBitmapRenderer drawInRect:] + 258
    15 com.apple.iWeb.sfdrawables 0x00947162 -[SFDTexturedImageFill _updateTintedRenderer] + 626
    16 com.apple.iWeb.sfdrawables 0x00919ba6 -[SFDTexturedImageFill renderingFill] + 230
    17 com.apple.iWeb 0x00176f0f 0x1000 + 1531663
    18 com.apple.iWeb 0x001759e5 0x1000 + 1526245
    19 com.apple.iWeb 0x0016ea6c 0x1000 + 1497708
    20 com.apple.iWeb 0x0016e74a 0x1000 + 1496906
    21 com.apple.iWeb 0x0016d428 0x1000 + 1492008
    22 com.apple.iWeb 0x0016cec7 0x1000 + 1490631
    23 com.apple.iWeb 0x0016679d 0x1000 + 1464221
    24 com.apple.iWeb 0x00165e5c 0x1000 + 1461852
    25 com.apple.iWeb 0x00164467 0x1000 + 1455207
    26 com.apple.iWeb 0x001417ac 0x1000 + 1312684
    27 com.apple.iWeb 0x0023b6c6 0x1000 + 2336454
    28 com.apple.iWeb 0x0023b735 0x1000 + 2336565
    29 com.apple.iWeb 0x00238f87 0x1000 + 2326407
    30 com.apple.AppKit 0x9748ac46 -[NSApplication sendAction:to:from:] + 112
    31 com.apple.sf.sfapplication 0x006fb794 -[SFAppApplication sendAction:to:from:] + 610
    32 com.apple.AppKit 0x9756a465 -[NSControl sendAction:to:] + 108
    33 com.apple.AppKit 0x97565f12 -[NSCell _sendActionFrom:] + 169
    34 com.apple.AppKit 0x97565209 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1808
    35 com.apple.AppKit 0x975ba8a1 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 524
    36 com.apple.AppKit 0x97563c5f -[NSControl mouseDown:] + 812
    37 com.apple.AppKit 0x97561c68 -[NSWindow sendEvent:] + 5549
    38 com.apple.AppKit 0x9747a817 -[NSApplication sendEvent:] + 6431
    39 com.apple.sf.sfapplication 0x006f73af -[SFAppApplication sendEvent:] + 789
    40 com.apple.AppKit 0x9740e2a7 -[NSApplication run] + 917
    41 com.apple.AppKit 0x974062d9 NSApplicationMain + 574
    42 com.apple.iWeb 0x0000bcbb 0x1000 + 44219
    43 com.apple.iWeb 0x00003eda 0x1000 + 11994
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x960cb982 kevent + 10
    1 libSystem.B.dylib 0x960cc09c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x960cb559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x960cb2fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x960cad81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x960cabc6 start_wqthread + 30
    Thread 2: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x960c40c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x94e35c83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x960d285d pthreadstart + 345
    3 libSystem.B.dylib 0x960d26e2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x960caa12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x960cafa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x960cabc6 start_wqthread + 30
    Thread 4:
    0 libSystem.B.dylib 0x960d30a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x960feee5 nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x960fee23 usleep$UNIX2003 + 61
    3 com.apple.AppKit 0x975b5fe1 -[NSUIHeartBeat _heartBeatThread:] + 2039
    4 com.apple.Foundation 0x962a4bf0 -[NSThread main] + 45
    5 com.apple.Foundation 0x962a4ba0 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x960d285d pthreadstart + 345
    7 libSystem.B.dylib 0x960d26e2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x960a5142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x960aac46 pthreadmutexlock + 490
    2 com.apple.Foundation 0x9629a74f -[NSLock lock] + 201
    3 SFWordProcessing 0x01047952 -[SFWPSpellThread pRun:] + 224
    4 com.apple.Foundation 0x962a4bf0 -[NSThread main] + 45
    5 com.apple.Foundation 0x962a4ba0 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x960d285d pthreadstart + 345
    7 libSystem.B.dylib 0x960d26e2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000010 ebx: 0x910fb23b ecx: 0x9110f430 edx: 0x00000000
    edi: 0x02ec8a10 esi: 0x9110f420 ebp: 0xbfffca88 esp: 0xbfffc960
    ss: 0x0000001f efl: 0x00010202 eip: 0x910fb4f1 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x3cffe7 com.apple.iWeb 3.0.3 (303) <BBE744CE-67DA-642F-C227-FE9C183AE072> /Applications/iWeb.app/Contents/MacOS/iWeb
    0x486000 - 0x53bfe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x581000 - 0x61fffc com.apple.MobileMe 11 (1.0.3) <B889EA46-59DF-719D-842D-C3A335B1AA88> /Applications/iWeb.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobile Me
    0x682000 - 0x6bbff7 com.apple.iWeb.SFAnimation 1.0 (0.0.1d1) <6759E456-36C2-3A90-1EEA-8CE2F4E3FAAD> /Applications/iWeb.app/Contents/Frameworks/SFAnimation.framework/Versions/A/SFA nimation
    0x6e7000 - 0x788ffb com.apple.sf.sfapplication 1.0.1 (1.0) <9E31D58E-584D-A978-D4D2-BBA34BA43691> /Applications/iWeb.app/Contents/Frameworks/SFApplication.framework/Versions/A/S FApplication
    0x7ee000 - 0x845ffb com.apple.iWeb.sfarchiving 1.0 (0.0.1d1) <9FCF61E7-0540-137E-49FB-05CB3027FC8F> /Applications/iWeb.app/Contents/Frameworks/SFArchiving.framework/Versions/A/SFA rchiving
    0x87e000 - 0x8c9ff3 com.apple.iWeb.SFControls 1.0 (20030306_1) <07CBC380-DBCA-7EEA-7841-926A93BC7A49> /Applications/iWeb.app/Contents/Frameworks/SFControls.framework/Versions/A/SFCo ntrols
    0x8fa000 - 0xa88fe3 com.apple.iWeb.sfdrawables 2.0 (2.0) <B6F41850-BCAC-8883-505F-F144FD3A5716> /Applications/iWeb.app/Contents/Frameworks/SFDrawables.framework/Versions/A/SFD rawables
    0xb58000 - 0xc0ffe3 com.apple.iWeb.sfinspectors 1.0 (1.0) <E84C09D8-82C3-F8C7-7FA6-620F26741AF2> /Applications/iWeb.app/Contents/Frameworks/SFInspectors.framework/Versions/A/SF Inspectors
    0xc71000 - 0xc9bff7 com.apple.iWeb.sflicense 1.0.1 (0.0.1d1) <6AEB0205-F83F-54F3-7FBF-1F06BC2781A5> /Applications/iWeb.app/Contents/Frameworks/SFLicense.framework/Versions/A/SFLic ense
    0xcb9000 - 0xd41fff com.apple.iWeb.proofreader 1.0 (1) <3CC80E4F-934C-E844-B4F2-1F711AC9EBCE> /Applications/iWeb.app/Contents/Frameworks/SFProofReader.framework/Versions/A/S FProofReader
    0xd52000 - 0xe5ffeb com.apple.iWeb.sfrendering 1.0 (1.0) <EBE92043-3A9E-985D-C6DD-11592B5E78B8> /Applications/iWeb.app/Contents/Frameworks/SFRendering.framework/Versions/A/SFR endering
    0xed0000 - 0xeeaff7 com.apple.iWeb.sfstyles 1.0 (1.0) <3B849143-B202-06EE-82B1-F787A82ED7C5> /Applications/iWeb.app/Contents/Frameworks/SFStyles.framework/Versions/A/SFStyl es
    0xefc000 - 0xfadff3 com.apple.iWeb.sfutility 1.0 (0.0.1d1) <3D433F20-A99F-2C4F-E67B-05A212177412> /Applications/iWeb.app/Contents/Frameworks/SFUtility.framework/Versions/A/SFUti lity
    0x1026000 - 0x1298fff +SFWordProcessing ??? (???) <46C3B1EB-1088-1C6D-4195-C0D8F6B65864> /Applications/iWeb.app/Contents/Frameworks/SFWordProcessing.framework/Versions/ A/SFWordProcessing
    0x13d8000 - 0x146aff7 +com.panic.FTPKit 1.2 (1.2) <9A6DDB6D-F28C-5E56-D2FF-CAABC1C4ED93> /Applications/iWeb.app/Contents/Frameworks/FTPKit.framework/Versions/A/FTPKit
    0x14b4000 - 0x14f0ff7 com.apple.OSAKit 1.2.1 (76) <6F598EE9-9973-5983-2A71-56FF1AB0081B> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x1514000 - 0x1520fe7 libexslt.0.dylib 9.13.0 (compatibility 9.0.0) <43856244-CC36-9DE9-3D60-D4F4D6F2825C> /usr/lib/libexslt.0.dylib
    0x1526000 - 0x154cfff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x276a000 - 0x276bff7 com.apple.iLMBAppDefPlugin 2.5.4 (252.1.7) <7A5DDDF6-DC0B-AC04-15C3-67B7AAB1AF7A> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x279c000 - 0x279ffff com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x27a5000 - 0x27a8ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x27f3000 - 0x27f5ff7 com.apple.iLMBFolderPlugin 2.5.4 (252.1.7) <B9B13CB6-D668-1891-EAF5-2ED5AA5B4F09> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x1567f000 - 0x156e4fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x15704000 - 0x15759fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x158bb000 - 0x158dffe7 GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x158e7000 - 0x158efff7 com.apple.iLMBAperturePlugin 2.5.4 (252.1.7) <D0F8BCE6-25FA-2841-4BF4-1737729059CA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x158f6000 - 0x158faff7 com.apple.iLMBGarageBandPlugin 2.5.4 (252.1.7) <6E1547CF-A32B-24A1-83A8-5C1E8B911DCD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x15d00000 - 0x15e78fe7 GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15eaa000 - 0x162affe7 libclh.dylib 3.1.1 C (3.1.1) <745CBD72-DF1F-EC12-BE51-4EEA9847EADF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x16324000 - 0x1646dfe7 com.apple.iLMBAperture31Plugin 2.5.4 (252.1.7) <8520D6E2-E389-B9C5-7E1C-CAB5E6030A54> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x164ae000 - 0x164baff7 com.apple.iLMBiMoviePlugin 2.5.4 (252.1.7) <C8BB5CA7-3CE6-5109-26EA-05DE22B96886> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x164c1000 - 0x164d5ffb com.apple.iLMBiPhoto8Plugin 2.5.4 (252.1.7) <31FA987B-29B1-4D12-2824-E6E7A2BE0D14> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x164dd000 - 0x16629fe7 com.apple.iLMBiPhoto9Plugin 2.5.4 (252.1.7) <9465185B-FBBE-1569-3FD1-DDD804598FF1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x1666b000 - 0x16674ff7 com.apple.iLMBiPhotoPlugin 2.5.4 (252.1.7) <20D6F650-C979-928B-6FDB-C073CB52FAD5> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1667b000 - 0x16683ff7 com.apple.iLMBiTunesPlugin 2.5.4 (252.1.7) <7942BA7F-DA8D-8FDF-F771-FBE24BF508E8> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1668a000 - 0x1677dffb com.apple.iTunesAccess 10.1.2 (10.1.2) <F1C51CEA-0E37-3885-D774-751DBB9AFB42> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x167ab000 - 0x167adff7 com.apple.iLMBMoviesFolderPlugin 2.5.4 (252.1.7) <C535A2BD-52DD-236A-1AB3-645CB097CFEB> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x167b2000 - 0x167b4ff7 com.apple.iLMBPhotoBoothPlugin 2.5.4 (252.1.7) <48B2EAB7-4467-C1D0-56CD-568F18A39130> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    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 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90009ff7 libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <DACD11D8-4B64-CD3B-C988-B1041E07D13A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x9000a000 - 0x90022ff7 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
    0x90023000 - 0x90f75fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x90f76000 - 0x90f9cffb 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
    0x90f9d000 - 0x90f9fff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90fa0000 - 0x910affe7 com.apple.WebKit 6533.19 (6533.19.4) <A942073C-83DF-33ED-3D01-A24DE8AEAB3D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x910b0000 - 0x910ebfe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x910ec000 - 0x91110ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91111000 - 0x911c7ff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x911c8000 - 0x91278ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91279000 - 0x9168fff7 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
    0x91690000 - 0x916c2fe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x916c3000 - 0x916e9fe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x916ea000 - 0x916ecff7 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
    0x916ed000 - 0x91ad3ffb com.apple.RawCamera.bundle 3.4.1 (546) <557C094F-BF8D-B298-E502-C4EE78914C55> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91ae4000 - 0x91af1fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x91af2000 - 0x91ccdff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x91cce000 - 0x91cd8ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91cd9000 - 0x91cdeff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91cdf000 - 0x91d17ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91e2c000 - 0x91f58ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91f59000 - 0x91f89ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x91fa0000 - 0x91fc0fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x91fc1000 - 0x91ffaff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E0D512DD-365D-46A0-F50C-435BC250424F> /usr/lib/libcups.2.dylib
    0x91ffb000 - 0x922f4fe7 com.apple.MessageFramework 4.4 (1082) <F3D9B838-3E4E-4632-7E75-36312BBFADF2> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x922f5000 - 0x924f2ff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x924f3000 - 0x92567fef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x92594000 - 0x925ddfe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x925de000 - 0x928feff3 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
    0x928ff000 - 0x9299cfe3 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
    0x9299d000 - 0x929a7ff7 com.apple.bsd.ServiceManagement 1.1 (1.1) <9514F2B1-140A-6C2F-F2E5-9E0D9684B876> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x929a8000 - 0x92a05ff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92a06000 - 0x92ab0fe7 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
    0x92ab1000 - 0x92ee6ff7 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
    0x92ee7000 - 0x92eeaff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x92eeb000 - 0x92f6dffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92f6e000 - 0x92fa7fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92fa8000 - 0x932ccfef 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
    0x932cd000 - 0x9330fff7 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
    0x933e2000 - 0x933f6fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x933f7000 - 0x933f7ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x933f8000 - 0x93420ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x93421000 - 0x93428ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93429000 - 0x9346cff7 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
    0x9346d000 - 0x9348afe7 com.apple.DotMacSyncManager 2.0.3 (446.9) <11FAEB92-AA44-CFA4-F2D3-73687984BAFD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x9348b000 - 0x934a6ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x934a7000 - 0x934c8fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x934c9000 - 0x934c9ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x934ca000 - 0x934caff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x934cb000 - 0x93523fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93524000 - 0x93528ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x93529000 - 0x9353bff7 com.apple.syncservices.syncservicesui 5.2 (578.3) <D3B86149-3466-B202-DBC1-06C575D451EB> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x9353c000 - 0x9357cfe7 com.apple.DAVKit 4.0.3 (732) <BE678EDA-B46C-6733-C0DD-447012450C9A> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x9357d000 - 0x935baff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x935bb000 - 0x935beff7 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
    0x935bf000 - 0x936edfe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x936ee000 - 0x93703fff 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
    0x937b9000 - 0x937beff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x93935000 - 0x9393dff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9393e000 - 0x93948fe7 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
    0x93949000 - 0x93b2bfff 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
    0x93b2c000 - 0x93b3aff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93b54000 - 0x93c30ff3 com.apple.DiscRecording 5.0.8 (5080.4.1) <C064D05B-5191-2AC9-43B4-42DF0A466250> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x93c31000 - 0x93e38feb com.apple.AddressBook.framework 5.0.3 (875) <759B660B-00F6-F08C-37CD-69468C774B5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93e39000 - 0x93e39ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93e3a000 - 0x93eb4fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93eb5000 - 0x93ef7fe7 com.apple.MediaKit 10.3 (485) <C97C899A-6A9A-784D-2BC2-0376536BB6FC> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x93ef8000 - 0x9403bfef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9403c000 - 0x94063ff7 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
    0x94084000 - 0x9437dfef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9437e000 - 0x94416fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94417000 - 0x94427ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x94428000 - 0x94496ff7 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
    0x94497000 - 0x944dbfe7 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
    0x944dc000 - 0x944e7ff7 com.apple.CrashReporterSupport 10.6.6 (256) <C8FFD4F5-5B5B-8ED4-AD82-E434A76ADC96> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x944e8000 - 0x944eefff 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
    0x944ef000 - 0x944efff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x944f0000 - 0x944fdff7 com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x944fe000 - 0x945c8fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x945c9000 - 0x94db8557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94db9000 - 0x94f34fe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94f35000 - 0x94f7cffb com.apple.CoreMediaIOServices 134.0 (1160) <D4F40A28-4E31-3210-7C2B-59D8A1903FB2> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94f7d000 - 0x94f84ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9507a000 - 0x9507aff7 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
    0x9507b000 - 0x95156feb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95157000 - 0x9525dff3 com.apple.DiskImagesFramework 10.6.5 (289) <B4E1799A-21F0-3E06-0537-2CC86D15D78A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9525e000 - 0x952abfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x952f3000 - 0x95329fff libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x9532a000 - 0x953c5ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x953c6000 - 0x95435ff7 com.apple.ISSupport 1.9.4 (52) <FC1E0AB0-1056-1CAC-430E-82197FEB5E85> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95436000 - 0x95487ff7 com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95488000 - 0x954a4fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x954a5000 - 0x954e4ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x954e5000 - 0x954e6ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x954e7000 - 0x95522feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95523000 - 0x95566ff7 libGLU.dylib ??? (???) <BB66EDB2-D5FE-61C9-21BE-747F9862819C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95567000 - 0x9560fffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95610000 - 0x9561bff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9561c000 - 0x9563bff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9563c000 - 0x9567cff3 com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9567d000 - 0x95781fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x95782000 - 0x95785ffb 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
    0x9578b000 - 0x957c3fe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <242954AD-3BE1-29E8-E2E0-08063201F105> /usr/lib/libcurl.4.dylib
    0x957d1000 - 0x957d5ff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95809000 - 0x958b9fe3 com.apple.QuickTimeImporters.component 7.6.6 (1756) <9276DEF5-B027-75CD-A0EB-69709F903196> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x958d3000 - 0x958fdff7 com.apple.framework.Admin 4.5 (4.5) <46734171-C58A-6989-C76C-AF651B27D802> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x958fe000 - 0x9594eff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x959a0000 - 0x95a17ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95a27000 - 0x95aa2fff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x95aa3000 - 0x95aa6fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95aa7000 - 0x95ae8ff7 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
    0x95ae9000 - 0x95af3ff7 com.apple.NSServerNotificationCenter 2.2 (2.2) <2E32AAD4-6DD9-AE40-D757-6EAB64CC7758> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x95b1e000 - 0x95b64ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x95b65000 - 0x95b79ffb 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
    0x95b7a000 - 0x95c57ff7 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
    0x95cb5000 - 0x95d02ff7 com.apple.ExchangeWebServices 1.3 (61) <B3705083-4186-5A27-6003-58E7264CAA3E> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x95d03000 - 0x95d2dff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95d2e000 - 0x95d8ffe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95d90000 - 0x95da0ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95da1000 - 0x95e0fff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x95e29000 - 0x95ea6ff7 com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95ea7000 - 0x95f27feb 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
    0x95f28000 - 0x95f66ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95f67000 - 0x95f6bff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95f6c000 - 0x960a3ff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x960a4000 - 0x9624bff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x9624c000 - 0x96283fe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x96284000 - 0x9628dff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9628e000 - 0x96501fe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96502000 - 0x96603fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x96604000 - 0x96610ff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x96611000 - 0x96642ff7 libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96643000 - 0x96654ff7 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
    0x96655000 - 0x96692ff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96693000 - 0x966f7ffb 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
    0x966f8000 - 0x96752fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x96753000 - 0x96759fe7 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
    0x9679b000 - 0x969fefff com.apple.security 6.1.1 (37594) <B6F2A8BF-C1B7-A0E2-83FB-4FF265E9BDDC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96aa9000 - 0x96babfef 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
    0x96c04000 - 0x96c06fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x96c07000 - 0x96cb4fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x96cb7000 - 0x96cc1ff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x96cc2000 - 0x96d0afff com.apple.iCalendar 1.0.3 (54) <1FF7C991-491D-6708-51C2-08FF8916BD84> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x96d0b000 - 0x96e06ffb com.apple.PubSub 1.0.5 (65.20) <6DD34479-F0B6-7A41-7229-A22BF8BFCAB5> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x96e07000 - 0x96f36fe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96f37000 - 0x973f0ffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x973f1000 - 0x973fcff7 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
    0x97404000 - 0x97ce4ff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97ce5000 - 0x97ce5ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97ce6000 - 0x97d08fef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97da9000 - 0x97df9ff7 com.apple.framework.familycontrols 2.0.2 (2020) <AF7F86F1-F7BF-CBA8-7A4A-D8F7A19F9601> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97dfb000 - 0x97e09fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x97e0a000 - 0x97e14ffb 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
    0x97e15000 - 0x97f21ff7 libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97f22000 - 0x9896dff7 com.apple.WebCore 6533.19 (6533.19.4) <DFCF1BC1-8BF3-E13E-F11B-C98CB36560FD> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9896e000 - 0x98a27fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x98a28000 - 0x98a29ff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98a4c000 - 0x98a53ff3 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
    0x98a54000 - 0x98abefe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x98abf000 - 0x98ceaff3 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
    0x98ceb000 - 0x98cebff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x98cec000 - 0x99057ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99058000 - 0x9909cfff MetadataLib.dylib 3.4.1 (compatibility 2.2.1) <66A034B9-85D6-438D-E8A3-B7D3F522A1AD> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
    0x9909d000 - 0x9909dff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9909e000 - 0x9914cff3 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
    0x9914d000 - 0x99191ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x99192000 - 0x991c5ff7 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
    0x991c6000 - 0x99235ff7 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
    0x99236000 - 0x993effeb 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
    0x993f0000 - 0x99572fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x99586000 - 0x99587ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99588000 - 0x996caff7 com.apple.syncservices 5.2 (578.3) <16A29689-1A80-3065-C4E7-AEC6A3C05C2E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x996cb000 - 0x996ddff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x996de000 - 0x998bafe7 com.apple.CalendarStore 4.0.4 (997) <3945580D-9062-DA47-2260-80114FBA17CD> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x998cf000 - 0x998dcff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x998dd000 - 0x99933ff7 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
    0x99934000 - 0x999c6fe7 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
    0x999c7000 - 0x99a40ff7 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
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: MacBook5,1, BootROM MB51.007D.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.32f8
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD7500BPVT-22HXZT1, 698.64 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000

Maybe you are looking for