OSB Cloud crashes with call stack : kbhsxmDestroyNode - kbhscaDoCleaning

RMAN Backup using OSB Cloud is failing with the following errors in the alert.log :
ORA-07445: exception encountered: core dump [kbhsxmFreeNode()+26] [SIGSEGV] [ADDR:0x2700000009] [PC:0x2AFD2527545E] [Address not mapped to object] []
----- SQL Statement (None) -----
Current SQL information unavailable - no cursor.
----- PL/SQL Stack -----
----- PL/SQL Call Stack -----
object line object
handle number name
0x2049eb6a0 1372 package body SYS.DBMS_BACKUP_RESTORE
Top call stack functions:
kbhsxmFreeNode <- kbhsxmFreeNode <- kbhsxmFreeNode
kbhsxmDestroyNode <- kbhscaDoCleaning <- sbtbackup
SO: 0x2345f0320, type: 2, owner: (nil), flag: INIT/-/-/0x00 if: 0x3 c: 0x3
proc=0x2345f0320, name=process, file=ksu.h LINE:12451, pg=0
(process) Oracle pid:1002, ser:110, calls cur/top: 0x206b02538/0x206b02538
flags : (0x0) -
flags2: (0x800), flags3: (0x0)
intr error: 0, call error: 0, sess error: 0, txn error 0
intr queue: empty
ksudlp FALSE at location: 0
(post info) last post received: 0 0 27
last post received-location: ksa2.h LINE:286 ID:ksasnr
last process to post me: 235f6a748 1 6
last post sent: 0 0 9
last post sent-location: ksq.h LINE:1982 ID:ksqrcl
last process posted by me: 2345ed1a0 174 0
(latch info) wait_event=0 bits=0
Process Group: DEFAULT, pseudo proc: 0x234a07088
O/S info: user: oracle, term: UNKNOWN, ospid: 17906
OSD pid info: Unix process pid: 17906, image: [email protected]
Any suggestions on how to resolve this?

FINALLY!  Thanks to all... it was that #$%$ inputmanagers !!  SAVE THIS FIX!!!
All, after many hours trying EVERY proposed fix on many threads, I FINALLY found the solution.  It's pretty simple.  This fix is thanks to nickburlett on this thread (https://forums.adobe.com/thread/1636876).  Simply "Clearing the contents of "/Library/InputManagers" solves the problem of Creative Cloud Desktop not opening after installing OS X Yosemite.  

Similar Messages

  • Can any one tell me how to work with call stacks

    i am working with user-exits and facing problem with call stacks  , i want to keep a error message .

    Use this FM to trace the program Call stack list: SYSTEM_CALLSTACK.
    Hope That Helps
    Anirban M.

  • Qosmio X300-14X Crashes with call of duty modern warfare 2

    I now have windows 7. It was the same with Vista !!! Please Help

    Thanks for the help, but the laptop is brand new does not need cleaning and the drivers is from the original toshiba cd for windows7 upgrade. I cannot find any update driver from toshiba website !!!
    I dont know if it helps but while playing the game the computer crashes and makes a noise like a partner saw and the only way to recover it is by switching it of by pressing the power button for a few secs !!!!
    thanks again for the help, and if you find a solution please let me know.

  • SQL Toolkit crashing with multiple threads

    Hello everyone and Happy New Year!
    I was hoping someone might be able to shed some light on this problem. I am updating an older application to use multiple threads. Actually the thread that is causing a problem right now is created by using an Asynchronous timer.
    I am using CVI 2010, and I think the SQL toolkit is version 2.2.
    If I execute an SQL statement from the main thread, there is no problem.
    stat = DBInit (DB_INIT_MULTITHREADED);
    hdbc = DBConnect( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=sample.mdb;Mode=ReadWrite|Share Deny None" );
    hstmt = DBActivateSQL( hdbc, "SELECT * FROM SAMPLES" );
    DBDeactivateSQL(hstmt);
    DBDisconnect(hdbc);
    If I add code to do the same functions in a timer callback, it causes a stack overflow error.
    .. start main thread
    stat = DBInit (DB_INIT_MULTITHREADED);
    NewAsyncTimer (5.0, -1, 1, &gfn_quicktest, 0);
     .. end main thread
    .. and then the timer callback
    int CVICALLBACK gfn_quicktest (int reserved, int timerId, int event, void *callbackData, int eventData1, int eventData2)
    int hdbc = DBConnect( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=params\\sample.mdb;Mode=ReadWrite|Share Deny None" );
    int hstmt = DBActivateSQL( hdbc, "SELECT * FROM SAMPLES" );
    DBDeactivateSQL(hstmt);
    DBDisconnect(hdbc);
    return 0;
    The program crashes with a stack overflow error when the DBActivateSQL statement is called.
    I understand that the ODBC driver for Access may not support multithreading, but I am only connecting to that database from the same thread with those 2 statements only so it should be fine ?
    Any insight would be appreciated,
    Thanks,
    Ed.
    Solved!
    Go to Solution.

    I just tried this using the sample access database that comes with CVI. It uses a DSN instead of mdb. It worked fine though. I don't see any reason multithreading would be a problem here if you are opening and closing the connection in the same code segment. I do notice that you are using params in the asyn callback connection string. Where does this come from? Maybe try using the sample database and see if that works.
    National Instruments
    Product Support Engineer

  • Jdk 1.4.2.07  crashes with "stack too small" error

    http://forum.java.sun.com/thread.jspa?threadID=756468
    Cross posting this problem from the HotSpot internals forum:
    I am using jdk 1.4.2.07 and run into the following error with the VM crashing with a defunct process:"Fatal: Stack size too small. Use 'java -Xss' to increase default stack size." on Linux. Does this imply a JVM bug given that this happens only when the VM attempts to launch a large number of threads (Tomcat).
    It looks like in the absence of the Xss VM parameter, the JVM picks up the stack size based on the Linux process limits. In my case it was set to 2048k. Why would the VM crash when starting more than a threshold number of threads? My assumption is that the VM allocates the stack size to every thread. As the number of threads launched by the VM were to increase, there would be a state in which the VM would not be able to acquire more memory from the system. I have tried the latest version of the JDK 1.4.2 but it did not help.
    Any suggestions?
    Thanks

    http://forum.java.sun.com/thread.jspa?threadID=756468
    Cross posting this problem from the HotSpot internals forum:
    I am using jdk 1.4.2.07 and run into the following error with the VM crashing with a defunct process:"Fatal: Stack size too small. Use 'java -Xss' to increase default stack size." on Linux. Does this imply a JVM bug given that this happens only when the VM attempts to launch a large number of threads (Tomcat).
    It looks like in the absence of the Xss VM parameter, the JVM picks up the stack size based on the Linux process limits. In my case it was set to 2048k. Why would the VM crash when starting more than a threshold number of threads? My assumption is that the VM allocates the stack size to every thread. As the number of threads launched by the VM were to increase, there would be a state in which the VM would not be able to acquire more memory from the system. I have tried the latest version of the JDK 1.4.2 but it did not help.
    Any suggestions?
    Thanks

  • Crash "DAbort 0x37C03D in MemoryMana​ger.cpp" when calling DLL with "Call Library Function Node"

    Hi all,
    I would like to work with a LabVIEW program that I did not programm by myself.
    In this programm an external DLL needs to be called. in the Momente this dll ist called with the "Call Library Dunction Node" LabVIEW crashes with this Error Message:
    DAbort 0x37C03D in MemoryManager.cpp
    Attached is the entire Log.
    The programm runs on the computer of the original programer.
    I have never handeled with DLLs or something like that before, so I have absolutely no idea how to rsolve this problem.
    Thanks for your help!
    Attachments:
    lvlog.txt ‏2 KB

    A DLL can be compiled by different compilers. By "generic" C DLL, i refer to ANSI C (so no C++, no Borland C or something else).
    My question is raised as parameters, esp. arrays and strings, can lead to this behavior when used in the wrong way (including "Calling Convention").
    Also, interfacing with the LV memory manager can lead to crashes like this, but this wouldn't be a "generic" DLL as it binds to LV (due to LV API calls).
    Without a better knowledge on the DLL and its functions, there is not much we can help you with.
    Where does the DLL come from?
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • JVM crash when calling no-arg methods of a COM object with JACOB

    When I try to call no-arg functions of a COM object with JACOM JVM crashes with the following error
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x770e47c5, pid=5424, tid=3392
    # JRE version: 6.0_17-b04
    # Java VM: Java HotSpot(TM) Client VM (14.3-b01 mixed mode, sharing windows-x86 )
    # Problematic frame:
    # C [ntdll.dll+0x347c5]
    The log is at [http://paste.linux-sevenler.org/index.php?id=32319|http://paste.linux-sevenler.org/index.php?id=32319]
    Thanks in advance
    Serkan

    This only happens with sun JDK IBM jdk works fine

  • Yosemite Creative Cloud crash

    Every time I launch the Creative Cloud app, it crashes. The menu item appears briefly, and then the problem report window comes up with the crash info. This has been happening ever since I upgraded to Yosemite. I've tried all of the options I could find online:
    I've uninstalled Creative Cloud and tried reinstalling. No change
    I've tried running the Adobe Application Installer. No change
    I've tried running the Creative Cloud Cleaner Tool. No change
    Any ideas how to fix this?
    The call stack for the change is always the same and seems to be coming from the Chromium Embedded Framework library. The invalid address being accessed changes every time, but it's always from a release message:
    Process:               Creative Cloud [7179]
    Path:                  /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
    Identifier:            com.adobe.acc.AdobeCreativeCloud
    Version:               1.8.1.451 (???)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           Creative Cloud [7179]
    User ID:               502
    Date/Time:             2014-11-16 18:10:51.076 -0800
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11
    Anonymous UUID:        <redacted>
    Time Awake Since Boot: 10000 seconds
    Crashed Thread:        0  CrBrowserMain  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000024344563
    VM Regions Near 0x24344563:
        VM_ALLOCATE            000000000d0db000-000000000d0dc000 [    4K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            000000007b600000-000000007b800000 [ 2048K] rw-/rwx SM=COW 
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x9c0300ab objc_msgSend + 27
    1   com.apple.CoreFoundation       0x9a97189f _CFAutoreleasePoolPop + 47
    2   com.apple.AppKit               0x96e88340 -[NSApplication finishLaunching] + 745
    3   com.apple.AppKit               0x96e87c70 -[NSApplication run] + 143
    4   libcef.dylib                   0x04536e17 0x432c000 + 2141719
    5   libcef.dylib                   0x0453661c 0x432c000 + 2139676
    6   libcef.dylib                   0x0456a6f8 0x432c000 + 2352888
    7   libcef.dylib                   0x0458311e 0x432c000 + 2453790
    8   libcef.dylib                   0x04569d6a 0x432c000 + 2350442
    9   libcef.dylib                   0x043a322f 0x432c000 + 487983
    10  HEX.dylib                     0x042b1c2a HEXMessageProcessor::runLoop(std::string const&) + 378
    11  HEX.dylib                     0x042847e8 0x4282000 + 10216
    12  HEX.dylib                     0x042b961d HEXMessageProcessor::processMessage(std::string const&, std::string const&, ProcessMessageOutput&, MessageObject const&) + 77
    13  HEX.dylib                     0x04282eaf processMessage + 175
    14  NXGCore.dylib                 0x0021ec30 ExternalGateway::sendMessageToApplet(MessageObject const&, MessageStruct const*, bool (**)(void const*), char const**) + 896
    15  NXGCore.dylib                 0x0021e753 ExternalGateway::handleMessage(MessageObject const&, MessageStruct const*, bool (**)(void const*), char const**) + 435
    16  NXGCore.dylib                 0x0021f36e ExternalGateway::processMessageFromOutside(MessageStruct const*, bool (**)(void const*)) + 302
    17  com.adobe.acc.AdobeCreativeCloud 0x000594b5 0x53000 + 25781
    18  com.adobe.acc.AdobeCreativeCloud 0x0005d4d5 0x53000 + 42197
    19  com.adobe.acc.AdobeCreativeCloud 0x000559d9 0x53000 + 10713
    20  com.adobe.acc.AdobeCreativeCloud 0x0005498a 0x53000 + 6538
    21  com.adobe.acc.AdobeCreativeCloud 0x0005996e 0x53000 + 26990
    22  com.adobe.acc.AdobeCreativeCloud 0x00054675 start + 53
    <snip>
    VM Region Summary:
    ReadOnly portion of Libraries: Total=286.7M resident=80.5M(28%) swapped_out_or_unallocated=206.2M(72%)
    Writable regions: Total=219.3M written=10.4M(5%) resident=23.7M(11%) swapped_out=0K(0%) unallocated=195.6M(89%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                    16K
    CG image                              4K
    CG shared images                    208K
    CoreUI image data                    40K
    Foundation                            4K
    Image IO                           4104K
    Kernel Alloc Once                     4K
    MALLOC                             89.5M
    MALLOC (admin)                       48K
    Stack                             178.1M
    VM_ALLOCATE                        1260K
    WebKit Malloc                      1248K
    __DATA                             11.1M
    __IMAGE                             528K
    __IMPORT                             12K
    __LINKEDIT                         52.9M
    __OBJC                             3044K
    __TEXT                            233.8M
    __UNICODE                           544K
    mapped file                       136.2M
    shared memory                         4K
    ===========                      =======
    TOTAL                             712.3M
    Model: MacBookPro10,1, BootROM MBP101.00EE.B05, 4 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 2.3f36
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (7.15.124.12.8)
    Bluetooth: Version 4.3.0f10 14890, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM512E, 500.28 GB
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Pro, Apple Inc., 23.4

    FINALLY!  Thanks to all... it was that #$%$ inputmanagers !!  SAVE THIS FIX!!!
    All, after many hours trying EVERY proposed fix on many threads, I FINALLY found the solution.  It's pretty simple.  This fix is thanks to nickburlett on this thread (https://forums.adobe.com/thread/1636876).  Simply "Clearing the contents of "/Library/InputManagers" solves the problem of Creative Cloud Desktop not opening after installing OS X Yosemite.  

  • Adobe Creative Cloud Crashes on startup under OS X 10.8.5

    After working with Adobe Support on the problem of the Adobe Creative Cloud Installer crashing:
    http://forums.adobe.com/thread/1301546
    The Adobe Support person had be create a root account to install Adobe Creative Cloud.   While this did allow me to install the Adobe Creative Cloud.app, it does not allow be to run it as a normal user or as an administrator user.
    When I attempt to run the Adobe Creative Cloud.app, it crashes immediately on startup under OS X 10.8.5 unless I am running logged into the root account.  This happens when I try to run Adobe Creative Cloud.app as a standard user or as a user with admin privileges.
    In other words, the only way I am able to run the Adobe Creative Cloud application is if I take the dangerious option of enablign the root account, logging into it and then directly running the application.
    See the next message for a crash dump.
    Please advise me on how I can run Adobe Creative Cloud.app without having to both enable and login to the root account.

    Here is the crash report when I attempt to run Adobe Creative Cloud.app without dangerious option of enablign the root account, logging into it and then directly running the application:
    Process:         Creative Cloud [535]
    Path:            /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
    Identifier:      com.adobe.acc.AdobeCreativeCloud
    Version:         2.1.2.232 (2.1.2.232)
    Code Type:       X86 (Native)
    Parent Process:  launchd [160]
    User ID:         501
    Date/Time:       2013-09-24 00:51:57.293 +0200
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Interval Since Last Report:          108 sec
    Crashes Since Last Report:           2
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      67B74E60-DD9E-19A1-5BD5-D6CBA5C03C63
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x974243ba __kill + 10
    1   libsystem_kernel.dylib                  0x974234b8 kill$UNIX2003 + 32
    2   libsystem_c.dylib                       0x9962b660 abort + 215
    3   libc++abi.dylib                         0x96cab7e0 abort_message + 151
    4   libc++abi.dylib                         0x96ca9249 default_terminate() + 34
    5   libc++abi.dylib                         0x96ca9289 safe_handler_caller(void (*)()) + 13
    6   libc++abi.dylib                         0x96ca92f1 std::terminate() + 23
    7   libc++abi.dylib                         0x96caa3e6 __cxa_throw + 110
    8   com.adobe.acc.AdobeCreativeCloud          0x000be09f 0x9f000 + 127135
    9   com.adobe.acc.AdobeCreativeCloud          0x000be1e6 0x9f000 + 127462
    10  com.adobe.acc.AdobeCreativeCloud          0x000bd86e 0x9f000 + 125038
    11  com.adobe.acc.AdobeCreativeCloud          0x000bd8dc 0x9f000 + 125148
    12  com.adobe.acc.AdobeCreativeCloud          0x000bdb9a 0x9f000 + 125850
    13  com.adobe.acc.AdobeCreativeCloud          0x000bddb6 0x9f000 + 126390
    14  dyld                                    0x8feb1cda ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 230
    15  dyld                                    0x8feb1fde ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 64
    16  dyld                                    0x8feae268 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 356
    17  dyld                                    0x8feae0ba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 62
    18  dyld                                    0x8fe9fe05 dyld::initializeMainExecutable() + 211
    19  dyld                                    0x8fea3adb dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 3050
    20  dyld                                    0x8fe9f376 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 704
    21  dyld                                    0x8fe9f077 _dyld_start + 71
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbff60bc4  ecx: 0xbff60b3c  edx: 0x974243ba
      edi: 0x9962b596  esi: 0xbff60b74  ebp: 0xbff60b58  esp: 0xbff60b3c
       ss: 0x00000023  efl: 0x00000282  eip: 0x974243ba   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xacc9c054
    Logical CPU: 0
    Binary Images:
       0x9f000 -    0xe8ff7 +com.adobe.acc.AdobeCreativeCloud (2.1.2.232 - 2.1.2.232) <10478D70-6468-35CD-8B3A-8D8D8C3C7B5F> /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
       0xf8000 -   0x125ff7 +com.growl.growlframework (1.3 - 1.3) <5C271922-7459-3DCB-BDC2-53135B47CDDC> /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
    0x8fe9e000 - 0x8fed0e57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90008fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x90009000 - 0x90032fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x90033000 - 0x90075ff7  libcups.2.dylib (327.7) <6FAC537D-7EC3-3E82-B6E8-F87DE07546B5> /usr/lib/libcups.2.dylib
    0x90076000 - 0x900ebff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x900ec000 - 0x900f9ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x901b2000 - 0x901b6fff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x901b7000 - 0x901dcffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x901e4000 - 0x901ecfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x901ed000 - 0x905a5ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x905a6000 - 0x9062bff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x906b6000 - 0x906bfff9  com.apple.CommonAuth (3.0 - 2.0) <B28B58CA-C5B1-378E-A969-6A36C7F754D1> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x906c0000 - 0x906ccffe  libkxld.dylib (2050.48.11) <CDE64419-0291-3E5E-906D-2974E25AC008> /usr/lib/system/libkxld.dylib
    0x906cd000 - 0x9076dff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9076e000 - 0x9077cfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x90c25000 - 0x90d7effb  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <461C4CCD-5F52-3D2F-AE22-D0CA7EF3F01A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90d80000 - 0x90d8afff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x90d8b000 - 0x90d8eff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x90d8f000 - 0x90d98fff  com.apple.CommerceCore (1.0 - 26.2) <B05709DD-3755-3635-B0CC-6CBBD17CFBD5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x90daa000 - 0x90e24ff3  com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x90e38000 - 0x90e38fff  com.apple.vecLib (3.8 - vecLib 3.8) <2D2064EB-FDD5-38AB-B722-4AFA4C6EE0C9> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x911b2000 - 0x911d1ff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x911d2000 - 0x911d4fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x911d5000 - 0x911e5ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x911e6000 - 0x911e9ffc  libCoreVMClient.dylib (32.5) <CA150AC5-F98C-3F96-8B11-715B75A89C80> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x911ea000 - 0x91238ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x91244000 - 0x912a6fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x912ab000 - 0x912afffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x912b0000 - 0x91347ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x9134c000 - 0x9134dfff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x9134e000 - 0x913caff3  com.apple.Metadata (10.7.0 - 707.12) <D9221655-56FE-332C-82FF-0CA7EDD521C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x914dc000 - 0x91617ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x916a6000 - 0x916aaff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x916ab000 - 0x916aeffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x916af000 - 0x916d3fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x916f6000 - 0x91713fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x91714000 - 0x9174ffef  libGLImage.dylib (8.10.1) <E29ED217-09B3-3436-A961-B6F8EBAA7BED> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x917cd000 - 0x919e4fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x919e6000 - 0x925a2ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x925a3000 - 0x925acffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x925ad000 - 0x92611ff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x92612000 - 0x9261bfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9261c000 - 0x9276affb  com.apple.CFNetwork (596.5 - 596.5) <E2EE5B64-4DFD-3D5E-BB38-9DD0899FFB42> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x93521000 - 0x93530fff  libGL.dylib (8.10.1) <74BE67B7-9EA0-3F16-B43B-48CB92C9ED27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93531000 - 0x93535ffc  libGIF.dylib (851) <4821D945-2E32-3007-8E97-4A69807046FF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93f16000 - 0x94007ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x94008000 - 0x94016ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94017000 - 0x94019ffb  libRadiance.dylib (851) <2739A726-2E9C-38DC-8A6E-412ABDC14405> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x941ae000 - 0x941aefff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <E54083A7-7467-3C3C-B30F-EE14C8D781A1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x9449c000 - 0x944a8ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x944a9000 - 0x944e8ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9451f000 - 0x94522ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x94523000 - 0x945d2ff7  com.apple.CoreText (260.0 - 275.17) <433387A6-69C1-32A5-9B61-9E2F6A5F9040> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x945d3000 - 0x946e0ff3  com.apple.ImageIO.framework (3.2.2 - 851) <36EEBDDC-0619-327E-826F-4413217C9D21> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x946e1000 - 0x946ebfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x946ec000 - 0x94730ff7  libGLU.dylib (8.10.1) <5520818E-F290-3942-80B8-370CF9C9B54C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94731000 - 0x94756ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94757000 - 0x9484fff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x9485e000 - 0x9485efff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x949f0000 - 0x94bd8ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94bd9000 - 0x94bdaffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x94bdb000 - 0x94c73fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x94f23000 - 0x94f23fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94f24000 - 0x94f51ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94f83000 - 0x95037fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x950b2000 - 0x954cffff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x954d0000 - 0x954dcff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x954dd000 - 0x955dbff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x956a6000 - 0x956bffff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x956c0000 - 0x957cd057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x957ce000 - 0x957d5fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x957d6000 - 0x95809ff3  com.apple.GSS (3.0 - 2.0) <EFFA5947-B6BA-3171-B667-9CCB17E0FF2A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9580a000 - 0x9580affd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <CFAAB1B1-DBC7-3FF1-97BA-065C6620360D> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9580b000 - 0x95811fff  libGFXShared.dylib (8.10.1) <99622AD6-7A1D-368E-B163-A38400885B45> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x95812000 - 0x95873ff7  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <C1D471E9-B4D6-3A59-975C-B3B3A25E6058> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95874000 - 0x958a5fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x958a6000 - 0x958a8ffd  libCVMSPluginSupport.dylib (8.10.1) <F7CD59FE-314A-366E-9A27-CE5BD1D438BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x958a9000 - 0x958f8ff6  libTIFF.dylib (851) <CC0B94FF-DE56-3CE4-AF93-BCA00C03924B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95904000 - 0x95919fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9591a000 - 0x95936fff  libPng.dylib (851) <8814CC4D-A472-32CD-8D5C-24F35240F28B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95937000 - 0x959a6ffb  com.apple.Heimdal (3.0 - 2.0) <C007CED7-DDC9-3BA1-8077-294FAE9C78D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x95c15000 - 0x95c15ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x95c16000 - 0x95c70ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x95c71000 - 0x95c83ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x96422000 - 0x96422fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x96423000 - 0x96423fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <D4F5AB2C-0727-39FD-8EE9-E4DD3D78EB2E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96424000 - 0x965adff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x965ae000 - 0x965c4fff  com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x965d1000 - 0x965d8fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x965d9000 - 0x9666bffb  libvMisc.dylib (380.10) <D9567F48-ED35-3362-B769-50916D30C601> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x96671000 - 0x9675aff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x9675b000 - 0x96a60ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x96a61000 - 0x96a7efff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x96aba000 - 0x96ad7ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x96ad8000 - 0x96ad9ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x96ada000 - 0x96b40fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x96b41000 - 0x96b61ffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x96b62000 - 0x96b86fff  libJPEG.dylib (851) <2425AE18-C181-3371-922F-4A09C1AC71CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96bd3000 - 0x96ca7ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96ca8000 - 0x96ccafff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x96ccb000 - 0x96ccbfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x96ccc000 - 0x96d76fff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x96d77000 - 0x96d78fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x96d79000 - 0x96dd3fff  com.apple.Symbolication (1.3 - 93) <A839CFC2-F870-3652-B353-15A55D88F88D> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x96e14000 - 0x96e5cff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96e5d000 - 0x96f1bff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x97093000 - 0x9709efff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x970a9000 - 0x970b0ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x97410000 - 0x9742affc  libsystem_kernel.dylib (2050.48.11) <BC3F8E07-5606-3A05-9BF8-C4BACE96BCCD> /usr/lib/system/libsystem_kernel.dylib
    0x9742b000 - 0x97536ff7  libJP2.dylib (851) <0D40428F-B7BE-307B-BEDB-256A7FED9804> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97537000 - 0x97653ffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9768a000 - 0x9769cfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9769d000 - 0x976a4ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97922000 - 0x97923fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x97927000 - 0x97be7ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x97be8000 - 0x97c36ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x97c39000 - 0x97edcff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x9801c000 - 0x9802fff9  com.apple.MultitouchSupport.framework (237.4 - 237.4) <59197044-E513-3223-9337-6EB0F828CB82> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x98030000 - 0x9803affe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9803b000 - 0x9835bff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9845a000 - 0x98490ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x98491000 - 0x984f9ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <230C6EEC-A926-3720-82DB-25D0FAAEF962> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x984fa000 - 0x984fbfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x984fc000 - 0x984fcfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x984fd000 - 0x98598fff  com.apple.CoreSymbolication (3.0 - 117) <9ECC6770-6FBB-36B3-A4EE-0B60875019A9> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x98599000 - 0x989dbff7  com.apple.CoreGraphics (1.600.0 - 333.1) <76C4858B-AD0A-3165-A65D-64729D6F186C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x98ad4000 - 0x98b38ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x98bb5000 - 0x98bccfff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x98c18000 - 0x98c1cfff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98c1d000 - 0x98c5fffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x98c60000 - 0x98c61fff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x98c62000 - 0x98cb9ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x98cbd000 - 0x98e79ffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x98e7a000 - 0x98e86ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x98e87000 - 0x98ec9fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x98eca000 - 0x98f16fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x991e3000 - 0x991e3fff  libSystem.B.dylib (169.3) <F479E729-89C7-3B4C-9731-678EB673A861> /usr/lib/libSystem.B.dylib
    0x991ea000 - 0x995cdfff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x995ce000 - 0x995dcff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x995dd000 - 0x9969affb  libsystem_c.dylib (825.40.1) <A5C0B70C-5F14-3BF8-AA5B-B22E7B12A4AE> /usr/lib/system/libsystem_c.dylib
    0x9969b000 - 0x996f2ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x996f3000 - 0x99701fff  com.apple.opengl (1.8.10 - 1.8.10) <385E048A-FFB2-348A-8F80-572C2494A776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x99702000 - 0x9987aff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99cca000 - 0x99d31fe7  libvDSP.dylib (380.10) <A9BB03FC-F70B-388F-8917-F8CE69F2164A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x99d32000 - 0x99d5eff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 492
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=112.7M resident=27.5M(24%) swapped_out_or_unallocated=85.2M(76%)
    Writable regions: Total=19.5M written=228K(1%) resident=440K(2%) swapped_out=0K(0%) unallocated=19.1M(98%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             11.3M
    MALLOC guard page                    48K
    Memory tag=35                      7480K
    Stack                              64.0M
    VM_ALLOCATE                         632K
    __DATA                             5048K
    __DATA/__OBJC                       180K
    __IMAGE                             528K
    __LINKEDIT                         30.3M
    __OBJC                             1532K
    __OBJC/__DATA                       128K
    __PAGEZERO                            4K
    __TEXT                             82.4M
    __UNICODE                           544K
    mapped file                        83.0M
    shared memory                        12K
    ===========                      =======
    TOTAL                             286.7M
    System Profile:
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 13 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Network Service: Ethernet 10.19, Ethernet, en0
    Serial ATA Device: OWC Mercury EXTREME Pro 6G SSD, 480.1 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: iPad, apple_vendor_id, 0x12ab, 0x26200000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06110000 / 3
    FireWire Device: OEM ATA Device 00, Other World Computing, 800mbit_speed

  • Ical crashes with error log

    When i'm trying to start Ical on my Imac with intel i3 10.6.8, sice today it crasshes.
    The next error log is shown after Ical was closed:
    Process:         iCal [229]
    Path:            /Applications/iCal.app/Contents/MacOS/iCal
    Identifier:      com.apple.iCal
    Version:         4.0.4 (1395.7)
    Build Info:      iCal-13950700~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2012-07-06 10:33:32.316 +0200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          6840 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  1214 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      1388268B-54D2-4ED1-A67D-081D3B0333F2
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  4  Dispatch queue: com.apple.root.default-priority
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Thread <NSThread: 0x1169a7180>{name = (null), num = 42} is not prepared to receive inter-thread messages.  You must invoke +prepareForInterThreadMessages first.'
    *** Call stack at first throw:
              0   CoreFoundation                      0x00007fff81858784 __exceptionPreprocess + 180
              1   libobjc.A.dylib                     0x00007fff869b6f03 objc_exception_throw + 45
              2   CoreFoundation                      0x00007fff818585a7 +[NSException raise:format:arguments:] + 103
              3   CoreFoundation                      0x00007fff81858534 +[NSException raise:format:] + 148
              4   DAVKit                              0x00007fff830794fd postMessage + 214
              5   DAVKit                              0x00007fff83077185 -[AYOperation notifyWithName:infos:] + 253
              6   DAVKit                              0x00007fff83078edd +[AYOperation _dispatchNextOperationInQueue] + 512
              7   DAVKit                              0x00007fff8307814b __+[AYOperation _queueOneBlock]_block_invoke_1 + 94
              8   libSystem.B.dylib                   0x00007fff87ac2d64 _dispatch_call_block_and_release + 15
              9   libSystem.B.dylib                   0x00007fff87aa12d1 _dispatch_worker_thread2 + 239
              10  libSystem.B.dylib                   0x00007fff87aa0c08 _pthread_wqthread + 353
              11  libSystem.B.dylib                   0x00007fff87aa0aa5 start_wqthread + 13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff869b3d5e _class_getInstanceSize + 22
    1   libobjc.A.dylib                         0x00007fff869b3dde _internal_class_createInstanceFromZone + 47
    2   com.apple.CoreFoundation                0x00007fff817d0b39 +[NSObject(NSObject) allocWithZone:] + 25
    3   com.apple.AppKit                        0x00007fff8961a9fa -[NSTableView drawRect:] + 628
    4   com.apple.AppKit                        0x00007fff89610cc5 -[NSView _drawRect:clip:] + 3390
    5   com.apple.AppKit                        0x00007fff8960f938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    6   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    7   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    8   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    9   com.apple.AppKit                        0x00007fff8960e00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    10  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    11  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    12  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    13  com.apple.AppKit                        0x00007fff8960db2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    14  com.apple.AppKit                        0x00007fff8960a3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    15  com.apple.AppKit                        0x00007fff89583c0e -[NSView displayIfNeeded] + 969
    16  com.apple.AppKit                        0x00007fff8957eaba _handleWindowNeedsDisplay + 678
    17  com.apple.CoreFoundation                0x00007fff81817b07 __CFRunLoopDoObservers + 519
    18  com.apple.CoreFoundation                0x00007fff817f3434 __CFRunLoopRun + 468
    19  com.apple.CoreFoundation                0x00007fff817f2d8f CFRunLoopRunSpecific + 575
    20  com.apple.HIToolbox                     0x00007fff84bc77ee RunCurrentEventLoopInMode + 333
    21  com.apple.HIToolbox                     0x00007fff84bc7551 ReceiveNextEventCommon + 148
    22  com.apple.HIToolbox                     0x00007fff84bc74ac BlockUntilNextEventMatchingListInMode + 59
    23  com.apple.AppKit                        0x00007fff89553eb2 _DPSNextEvent + 708
    24  com.apple.AppKit                        0x00007fff89553801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    25  com.apple.AppKit                        0x00007fff8951968f -[NSApplication run] + 395
    26  com.apple.AppKit                        0x00007fff895123b0 NSApplicationMain + 364
    27  com.apple.iCal                          0x00000001000027cc 0x100000000 + 10188
    28  com.apple.iCal                          0x00000001000a4654 0x100000000 + 673364
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff87a9fc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff87aa1add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff87aa17b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff87aa12de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff87aa0c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 2:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff87aca932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff81815468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff87abffd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff87abfe89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff87ac1a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87ac18f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff87ac1863 usleep + 57
    3   com.apple.AppKit                        0x00007fff8969f3a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff83b36114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff87abffd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff87abfe89 thread_start + 13
    Thread 4 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff87af99ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff87af98d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff87b563ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff87b75a00 abort + 93
    4   libstdc++.6.dylib                       0x00007fff8697b5d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff869bab39 _objc_terminate + 100
    6   libstdc++.6.dylib                       0x00007fff86979ae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff86979b16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff86979bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libobjc.A.dylib                         0x00007fff869b6fa2 object_getIvar + 0
    10  com.apple.CoreFoundation                0x00007fff818585a7 +[NSException raise:format:arguments:] + 103
    11  com.apple.CoreFoundation                0x00007fff81858534 +[NSException raise:format:] + 148
    12  com.apple.DAVKit                        0x00007fff830794fd postMessage + 214
    13  com.apple.DAVKit                        0x00007fff83077185 -[AYOperation notifyWithName:infos:] + 253
    14  com.apple.DAVKit                        0x00007fff83078edd +[AYOperation _dispatchNextOperationInQueue] + 512
    15  com.apple.DAVKit                        0x00007fff8307814b __+[AYOperation _queueOneBlock]_block_invoke_1 + 94
    16  libSystem.B.dylib                       0x00007fff87ac2d64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                       0x00007fff87aa12d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                       0x00007fff87aa0c08 _pthread_wqthread + 353
    19  libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff87aa0a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff87aa0e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x00000001037a8b20  rcx: 0x00000001037a8ad8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x00000001037a8b10  rsp: 0x00000001037a8ad8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff87af99ce  rfl: 0x0000000000000247  cr2: 0x0000000058a43000
    Binary Images:
           0x100000000 -        0x1002d6fef  com.apple.iCal 4.0.4 (1395.7) <063A7FEF-C2D3-246E-D6CB-C9A3E75DFB4B> /Applications/iCal.app/Contents/MacOS/iCal
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80005fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff80006000 -     0x7fff80006ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff80083000 -     0x7fff801e3ff7  com.apple.syncservices 5.2 (578.3) <F86C878E-8B5E-DBCE-8592-7AF88DE53261> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff801e4000 -     0x7fff80244fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8027c000 -     0x7fff80507fef  com.apple.JavaScriptCore 6534.52 (6534.52.7) <C8340CAE-B6AC-BCBB-24AB-A6B8B1276C23> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80508000 -     0x7fff80646fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff80647000 -     0x7fff80670ff7  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <778F7753-F0DD-5B89-0908-B2EC9B66B30A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff80681000 -     0x7fff807a9ff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff807b9000 -     0x7fff807e4ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff807e5000 -     0x7fff80828ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff80829000 -     0x7fff80940fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff80964000 -     0x7fff80965ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80c65000 -     0x7fff80ce2fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff80ce3000 -     0x7fff80d7dfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80d7e000 -     0x7fff80da6fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff80da7000 -     0x7fff80da7ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80da8000 -     0x7fff80dbdff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8162c000 -     0x7fff8164dfff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff8164e000 -     0x7fff816ccff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff816f2000 -     0x7fff816f8fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff816f9000 -     0x7fff81734fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff81735000 -     0x7fff817a6ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff817a7000 -     0x7fff8191efe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8191f000 -     0x7fff81960fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8196a000 -     0x7fff819dcfef  com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff819dd000 -     0x7fff81b7afef  com.apple.WebKit 6534.52 (6534.52.7) <CE3B2C17-67CD-E5DA-1580-B08B10A8FFBB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff81b7b000 -     0x7fff81b81ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81b82000 -     0x7fff81ba7ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81ba8000 -     0x7fff823b2fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff823b3000 -     0x7fff82468fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82491000 -     0x7fff824a2fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff824a3000 -     0x7fff8255cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff825f2000 -     0x7fff8263dfef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8263e000 -     0x7fff82685ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82686000 -     0x7fff82686ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff826af000 -     0x7fff82dabff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff82dac000 -     0x7fff82de9fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff82dea000 -     0x7fff82fa8ff7  com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff82fa9000 -     0x7fff83049fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8304a000 -     0x7fff83094ff7  com.apple.DAVKit 4.0.3 (732.2) <7DC4C8B4-9259-2D5D-BDA5-82F0DE3C95CA> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
        0x7fff83095000 -     0x7fff83096fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff83097000 -     0x7fff830a9fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff830aa000 -     0x7fff830cdfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff830ce000 -     0x7fff8317efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8317f000 -     0x7fff833e8fff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff833e9000 -     0x7fff833ecfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff833ed000 -     0x7fff833edff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff833ee000 -     0x7fff8341ffff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83420000 -     0x7fff8342dfff  com.apple.NSServerNotificationCenter 3.0 (3.0) <FF7063D0-A25F-C22E-FA20-3225ADF089E2> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff8342e000 -     0x7fff834bafef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff834bb000 -     0x7fff83504fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8350d000 -     0x7fff83518ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff83519000 -     0x7fff8352dfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8352e000 -     0x7fff83638ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff83639000 -     0x7fff83837fe7  com.apple.CalendarStore 4.0.4 (997.7) <9A357B3C-F083-BEAA-4094-B00B423DDE47> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff83838000 -     0x7fff838bafff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff838bb000 -     0x7fff838c6fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff838c7000 -     0x7fff838cdff7  com.apple.AOSNotification 1.2.0 (124) <19CCCD17-6888-58F3-17B6-7DC5D49276A4> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff838ce000 -     0x7fff838dafff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff838e1000 -     0x7fff838e1ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff838e2000 -     0x7fff838e2ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff838e3000 -     0x7fff8391cff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8391d000 -     0x7fff83965ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff83966000 -     0x7fff83b24fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff83b25000 -     0x7fff83da7fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff83da8000 -     0x7fff83e08ff7  com.apple.ExchangeWebServices 1.3 (61) <7DB2989C-1362-8688-C73E-8405734A6566> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff83e09000 -     0x7fff83e46ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff83e47000 -     0x7fff83eb1fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83eb2000 -     0x7fff83ebcfff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff83eee000 -     0x7fff83f07fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff83fd3000 -     0x7fff83fd4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff83fd5000 -     0x7fff8403dfff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff8403e000 -     0x7fff84485fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84486000 -     0x7fff84543fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff84544000 -     0x7fff84663fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84664000 -     0x7fff84673fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84674000 -     0x7fff8467aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8467d000 -     0x7fff84684fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84685000 -     0x7fff846a5fef  com.apple.DotMacSyncManager 2.0.3 (446.9) <E8F9E7E2-A696-4111-C4FF-20AB5DFBC3FC> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
        0x7fff846a6000 -     0x7fff84a43fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff84a56000 -     0x7fff84a5aff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84a5b000 -     0x7fff84a68fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84a69000 -     0x7fff84a72ff7  com.apple.aps.framework 1.2 (1.2) <2E09D42F-2021-C995-44D0-B80AAAAA99E5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff84b99000 -     0x7fff84e97fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff84e98000 -     0x7fff84e9fff7  com.apple.KerberosHelper 2.1 (1.0) <8BCCEA2D-7CE7-1B3E-F371-AB8485A1588F> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84ea0000 -     0x7fff84ea4ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff84ea5000 -     0x7fff84f34fff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff84f35000 -     0x7fff84f68ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff84f69000 -     0x7fff84fa3fff  com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff84fa4000 -     0x7fff84fa4ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff84fa5000 -     0x7fff84fb6ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff84fb7000 -     0x7fff84fb8fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff84fb9000 -     0x7fff84fcffe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff84fd0000 -     0x7fff8501cfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8501d000 -     0x7fff85060fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff85061000 -     0x7fff850c3fe7  com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff850c4000 -     0x7fff85109fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff8527c000 -     0x7fff852bafe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff852bb000 -     0x7fff8530aff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff8530b000 -     0x7fff8530eff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8530f000 -     0x7fff85413ff7  com.apple.PubSub 1.0.5 (65.28) <0C94CB22-B6B6-F37A-A4FD-A33BB2A29996> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8542d000 -     0x7fff85433ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85464000 -     0x7fff85466fef  com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff85467000 -     0x7fff85472fff  com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
        0x7fff85473000 -     0x7fff85550fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8557e000 -     0x7fff857c0fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff857c1000 -     0x7fff85802fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85803000 -     0x7fff85832ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff85833000 -     0x7fff86865fef  com.apple.WebCore 6534.52 (6534.52.11) <78740DDE-7B9C-92EC-9CF6-C8DD1815B609> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff86898000 -     0x7fff86928fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff86929000 -     0x7fff8692efff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8692f000 -     0x7fff869acfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff869ad000 -     0x7fff86a63ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff86a64000 -     0x7fff86a67ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86a68000 -     0x7fff86a75ff7  com.apple.AppleFSCompression 24.4 (1.0) <56B27685-B6A7-7FD7-85F3-402C4E0C988E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff86a76000 -     0x7fff86ac9ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff86aca000 -     0x7fff86d04fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff86d05000 -     0x7fff86d0afff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff86d0b000 -     0x7fff86d87ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff86d88000 -     0x7fff86e0dff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86e0e000 -     0x7fff86e57ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff876a0000 -     0x7fff8771ffe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87720000 -     0x7fff87720ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff87751000 -     0x7fff8778bfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff8778c000 -     0x7fff87871fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87872000 -     0x7fff878defe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87997000 -     0x7fff8799cff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87a6a000 -     0x7fff87a85ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff87a86000 -     0x7fff87c47fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87c48000 -     0x7fff8814eff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8814f000 -     0x7fff88284fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff88351000 -     0x7fff88694fff  com.apple.MessageFramework 4.5 (1084) <C291835F-FD0E-443D-05BA-3DC0A1634E0C> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff88695000 -     0x7fff886e4fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff886e5000 -     0x7fff887a7fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff888a1000 -     0x7fff888c8ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff888c9000 -     0x7fff88907fef  com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff88b0f000 -     0x7fff88b66fff  com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88b67000 -     0x7fff88b69fff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff88b6a000 -     0x7fff88b87ff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff88bcb000 -     0x7fff88be2fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c18000 -     0x7fff88d32fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff88d33000 -     0x7fff88d49fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff88d4a000 -     0x7fff88d9fff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff88da0000 -     0x7fff88e61fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88e62000 -     0x7fff88ea9fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff88eaa000 -     0x7fff88f7efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff88f7f000 -     0x7fff88f8efef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88f9b000 -     0x7fff893defef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C

    Mail account > network account, yes.
    This is the log of the Console
    The error with unauthorized accounts/passwords, comes because on the account we changed the password.
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.290 [iCal:2175] ERROR (AYOPERATION): <[Request 0x118033f80] PROPFIND /principals/__uids__/395E4C1F-CEE4-4330-BC11-3B72AEF1C5AE/ (for <DAVSession 0x1019c4c90(SERVER ADDRESS)>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba1f90 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b862b0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.315 [iCal:2175] ERROR (AYOPERATION): <[Request 0x118033f80] PROPFIND /principals/__uids__/1E9C1426-DFDD-451F-BCAC-BEA41D33CCD7/ (for <DAVSession 0x1163442c0 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x116540cf0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x10196ef00 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.419 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/7EB9A32E-0940-4A7D-BF8E-980C3C5F6596/ (for <DAVSession 0x1019e4590 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bacae0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bc6df0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.524 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/B8AD2ED7-5056-477D-B316-C102AAA199C4/ (for <DAVSession 0x1163135a0 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bbc870 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b86080 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.627 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/4ACD2BC1-37BC-4BAE-9C16-A3DEE043B52F/ (for <DAVSession 0x11635b270 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x118002460 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b86080 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.732 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/CA598031-091D-4757-86D1-BAF64BEAEB51/ (for <DAVSession 0x1019eda00 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bad9e0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b24a50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.960 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/16C46998-F75D-4A35-9E84-11978C2FDE67/ (for <DAVSession 0x11635b890 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b69c10 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x11702fa40 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.977 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/AC8C4E8C-7190-45E9-94A3-67079CB2E7DE/ (for <DAVSession 0x1163f9380 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba3720 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b9ca50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.040 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/37A0E0D6-C383-4071-8005-086B147D8B68/ (for <DAVSession 0x11635c220 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b83990 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b9ca50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.144 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/A477C8B6-6413-4E11-A5B3-684917E3D51C/ (for <DAVSession 0x116359440 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b7f450 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba66e0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.248 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/0E703019-155D-4B74-8054-5C30F354DC49/ (for <DAVSession 0x116347860 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b7def0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b6eb50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.351 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/F2118006-FB38-4B57-AD2A-DAF2AD75011F/ (for <DAVSession 0x11631e800 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b72a50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b77030 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.461 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/A41A50F1-3D87-4A9E-AE6F-F3B43F003963/ (for <DAVSession 0x116359930 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bc55c0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b8d8f0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.630 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/2DEDB61B-CF41-4E0A-A959-A26F1FCC59EC/ (for <DAVSession 0x10193c990 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b73b10 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b70200 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.668 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/5F06B255-AD07-4D0A-9366-129FA31A6354/ (for <DAVSession 0x10198ac50 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b77720 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bbe840 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:42 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:40 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="655567066705680629856015390420100222343823624532540240874", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:40 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:42 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:40 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="86233837381709637792687613964965059846593283836775444391", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:40 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:43 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:41 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="558077760900657414480520995007282074272601601878391817905", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:41 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:45 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:45.672 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1160ebd70] PROPFIND /principals/__uids__/395E4C1F-CEE4-4330-BC11-3B72AEF1C5AE/ (for <DAVSession 0x1019c4c90 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x11702b170 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x117071440 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:45 PM          iCal[2175]          CalDAV CalDAVRefreshDelegateListQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x0="DAV:">
    <x0:prop>
      <x0:group-membership/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:45 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="467035962767024934544068053588574762419090495224343160582", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:45 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive

  • Safari crashes with EXC_BAD_ACCESS (SIGSEGV) Exception Type

    Hi -  Looking for some help!
    After I updated to OS X 10.8.3, Safari will not open, but immediately crashes with the following exception type:
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    I have reinstalled 10.8.3 five times (what do they say about you if you expect a different answer when trying the same thing?), but no joy.  Also repaired Disk Permissions a few times (hmmm...  what did I say about repeating things?), again without any effect. 
    Others have reported a similar problem, but their solutions do not seem applicable here (I've tried all that were relevant without luck).  This is even more sad since I usually don't use Safari now (I dislike the unified URL-Search window), but I would like it to function in case it becomes advantageous to use it over Firefox.
    Anyway, I'd appreciate any advice to help make it fucntion.  Here's the entire error message:
    Process: Safari [574]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version:         6.0.3 (8536.28.10)
    Build Info: WebBrowser-7536028010000000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [188]
    User ID:         501
    Date/Time: 2013-03-23 21:12:28.795 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          4978 sec
    Crashes Since Last Report:           1
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: 43D941AC-4F78-4CBA-651B-492B3B83E818
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT 000000010f01c000-000000010f01d000 [ 4K] r-x/rwx SM=COW /Applications/Safari.app/Contents/MacOS/Safari
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 libsystem_c.dylib              0x00007fff913b29ae strtoul_l + 81
    1 com.apple.Safari.framework          0x00007fff9582275a Safari::SWebPreferences::setWebKitLinkTimeVersionString(Safari::CF::String const&) + 44
    2 com.apple.Safari.framework          0x00007fff957e2396 SafariMain + 120
    3   libdyld.dylib                      0x00007fff95ca77e1 start + 1
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7e72ba90  rbx: 0x00007fff50be3cc8  rcx: 0x00007fff7e729788  rdx: 0x000000000000000a
      rdi: 0x0000000000000000  rsi: 0x00007fff7e72ba98  rbp: 0x00007fff50be3c80  rsp: 0x00007fff50be3c50
       r8: 0x000000000000000a   r9: 0x00007fff7e72d890  r10: 0x00007fff7e729788  r11: 0x00007fff959239c8
      r12: 0x00007f9f3180b038  r13: 0x0000000000000000  r14: 0x00007fff50be3d18  r15: 0x00007fff50be3c98
      rip: 0x00007fff913b29ae  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU: 4
    Binary Images:
           0x10f01c000 -        0x10f01cfff  com.apple.Safari (6.0.3 - 8536.28.10) <F65DC101-5E84-3DE2-8494-CA90BD70AB3F> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff6ec1c000 -     0x7fff6ec5093f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8e2c4000 -     0x7fff8e2dbfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8e2e5000 -     0x7fff8e2edfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8e346000 -     0x7fff8e347fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e681000 -     0x7fff8e776fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8e877000 -     0x7fff8e882ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e883000 -     0x7fff8f2136ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f214000 -     0x7fff8f296ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8f2c3000 -     0x7fff8f2e8ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8f324000 -     0x7fff8f331fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f5f6000 -     0x7fff8f632fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8f681000 -     0x7fff8f68eff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f68f000 -     0x7fff8f933ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8f9fb000 -     0x7fff8f9fdfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff902b4000 -     0x7fff902b5fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff902b6000 -     0x7fff902bbfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff902bc000 -     0x7fff90557fff  com.apple.JavaScriptCore (8536 - 8536.28.10) <BC911515-D051-3E2E-8E57-D36878407C60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff90558000 -     0x7fff9059bff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff9059c000 -     0x7fff905aeff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff905af000 -     0x7fff905b9ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff905ba000 -     0x7fff905c2ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff905c3000 -     0x7fff9062bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff9062c000 -     0x7fff90632fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff90633000 -     0x7fff90650ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9067e000 -     0x7fff906fdff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff906fe000 -     0x7fff9070dfff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9070e000 -     0x7fff90730ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff90731000 -     0x7fff90731fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff9074a000 -     0x7fff90750fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90751000 -     0x7fff90770ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff90771000 -     0x7fff90772fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff90ba6000 -     0x7fff90baaff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff90bab000 -     0x7fff90c7dff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff90c7e000 -     0x7fff90c85fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90c86000 -     0x7fff90cdbff7  libTIFF.dylib (849) <C4D0E196-9319-319B-AF72-8B63FB5AF71B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff90d7a000 -     0x7fff90d89ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff90d8b000 -     0x7fff90db5ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff90f15000 -     0x7fff90f83fff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff90f84000 -     0x7fff912b4fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff912b5000 -     0x7fff91301ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff9130a000 -     0x7fff91349ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff9134a000 -     0x7fff91416ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff91417000 -     0x7fff91417fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff91418000 -     0x7fff91461fff  com.apple.framework.CoreWiFi (1.2.2 - 122.12) <D237551E-0E2C-30FB-8FAA-003D8F25E819> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff91462000 -     0x7fff914beff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff914bf000 -     0x7fff914d5fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff914d7000 -     0x7fff914eaff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff914f9000 -     0x7fff914fbff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff914fc000 -     0x7fff914fffff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff91500000 -     0x7fff9153dfef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff9153e000 -     0x7fff91773ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91780000 -     0x7fff9178bfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff91b79000 -     0x7fff91b90fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff91b91000 -     0x7fff91b9fff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff91bbb000 -     0x7fff91c55fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91c60000 -     0x7fff91c67fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91c68000 -     0x7fff91cd1fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff91dc6000 -     0x7fff91ec3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff91ec4000 -     0x7fff91f75fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff91f8b000 -     0x7fff91f8cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff91f8d000 -     0x7fff91f94fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff92075000 -     0x7fff920cbfff  com.apple.HIServices (1.20 - 417) <839B4EE4-B96F-3371-BE90-3B4EBB86C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff92115000 -     0x7fff92472ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92473000 -     0x7fff92492ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92777000 -     0x7fff92912fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff92964000 -     0x7fff929befff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff929bf000 -     0x7fff929f9ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff929fa000 -     0x7fff92a08ff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff92a09000 -     0x7fff92a34fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff92a35000 -     0x7fff92a35fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff92a84000 -     0x7fff92bd5fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92bed000 -     0x7fff92c31fff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff92c32000 -     0x7fff92c3cfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff92c74000 -     0x7fff92d94fff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff92d95000 -     0x7fff92da3fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92da5000 -     0x7fff92dcdfff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff92e5e000 -     0x7fff92efcff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff936ea000 -     0x7fff936eaffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9377e000 -     0x7fff93a4fff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff93aa5000 -     0x7fff93b25ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff93b38000 -     0x7fff93b3cfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff93bad000 -     0x7fff93bfcff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff93bfd000 -     0x7fff93bfdfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff93bfe000 -     0x7fff93bfefff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff93bff000 -     0x7fff9482cff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94fd7000 -     0x7fff95028ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff95029000 -     0x7fff9503eff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff950a2000 -     0x7fff950adff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff950bc000 -     0x7fff95162ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95163000 -     0x7fff95167fff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff95168000 -     0x7fff95169fff  libquit.dylib (130) <DC77F406-C5D4-301B-A96D-9A3DCA263756> /usr/lib/libquit.dylib
        0x7fff95177000 -     0x7fff9518efff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9519e000 -     0x7fff95595fff libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff955bf000 -     0x7fff95abcfff  com.apple.Safari.framework (8536 - 8536.28.10) <3A95B221-2F54-38D1-A916-FA79400EB8D8> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff95abd000 -     0x7fff95b25fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff95c53000 -     0x7fff95c53fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff95c70000 -     0x7fff95c72fff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff95c73000 -     0x7fff95ca4ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff95ca5000 -     0x7fff95ca8ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff95cae000 -     0x7fff95e98ff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9629c000 -     0x7fff9629ffff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff963f0000 -     0x7fff963f6ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff9642b000 -     0x7fff96430fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff96434000 -     0x7fff965bafff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff9661b000 -     0x7fff9661dfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff96661000 -     0x7fff9671eff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff967a2000 -     0x7fff967c3ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff9688b000 -     0x7fff96926fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff96927000 -     0x7fff96928ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff96929000 -     0x7fff96929fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9692c000 -     0x7fff96b14fff  com.apple.WebKit2 (8536 - 8536.28.10) <B9D84DFC-E7D5-3398-B0E8-5108DE9EC546> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff96b15000 -     0x7fff96b58ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff96d08000 -     0x7fff96d1efff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff96d1f000 -     0x7fff96d46ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96d47000 -     0x7fff96d4bfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff96d84000 -     0x7fff96dd3ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff96dd8000 -     0x7fff96dddfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff97054000 -     0x7fff9712efff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff9712f000 -     0x7fff971bcff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff972c0000 -     0x7fff9732dff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9732e000 -     0x7fff9735cff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff9735d000 -     0x7fff9735eff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff9735f000 -     0x7fff97397fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff97398000 -     0x7fff973e2ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff97483000 -     0x7fff974b9fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff974ba000 -     0x7fff97668fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff97669000 -     0x7fff976c0ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff979a8000 -     0x7fff979bdfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff97a1f000 -     0x7fff97a7cff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff97a7d000 -     0x7fff97b7afff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff97b7b000 -     0x7fff97cf0fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff97cf1000 -     0x7fff97ef1fff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff97ef2000 -     0x7fff9800bfff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9800c000 -     0x7fff98017fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff98018000 -     0x7fff98072ff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff98073000 -     0x7fff9818b92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff9818c000 -     0x7fff9818eff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff9818f000 -     0x7fff981b0fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff981b1000 -     0x7fff9916efff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9916f000 -     0x7fff991a3fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff991fb000 -     0x7fff9920ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9964d000 -     0x7fff99683fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff99c52000 -     0x7fff99c56ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff99c57000 -     0x7fff99c57fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff99c58000 -     0x7fff99d5afff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff99d5b000 -     0x7fff99d82fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff99d83000 -     0x7fff99e04fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff99e12000 -     0x7fff99ed7ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff99ee0000 -     0x7fff99f2bfff  com.apple.framework.CoreWLAN (3.0.2 - 302.12) <896D75EB-069B-3674-936E-27A81568BECB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff99f71000 -     0x7fff99f91fff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff99f92000 -     0x7fff99f93ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff99ffc000 -     0x7fff99ffefff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff9a05a000 -     0x7fff9a371ff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9a377000 -     0x7fff9a399ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9a39a000 -     0x7fff9a3c6fff  com.apple.framework.Apple80211 (8.3.2 - 832.18.1) <5D601780-9AD9-31C9-9AB5-716D8634CB78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9a3c7000 -     0x7fff9a3d4fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff9a445000 -     0x7fff9a550fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9a551000 -     0x7fff9a55dfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff9a5c4000 -     0x7fff9a623fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff9a624000 -     0x7fff9aa41fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9aa42000 -     0x7fff9aa55ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff9aa56000 -     0x7fff9aa58fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff9aa85000 -     0x7fff9aa8eff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9aa8f000 -     0x7fff9aa93fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9ae36000 -     0x7fff9ae36fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff9aec9000 -     0x7fff9af25fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9af26000 -     0x7fff9af41ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9af42000 -     0x7fff9b0cdff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 578
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=170.9M resident=140.5M(82%) swapped_out_or_unallocated=30.4M(18%)
    Writable regions: Total=19.7M written=732K(4%) resident=848K(4%) swapped_out=0K(0%) unallocated=18.9M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             11.5M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              8192K
    __DATA                             13.7M
    __IMAGE                             528K
    __LINKEDIT                         52.0M
    __TEXT                            118.9M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             261.2M
    Model: iMac11,3, BootROM IM112.0057.B01, 4 processors, Intel Core i7, 2.93 GHz, 32 GB, SMC 1.59f2
    Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.72.0-P2P
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Parallels Shared #0, Ethernet, vnic0
    Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    Serial ATA Device: APPLE SSD TS256B, 251 GB
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: USB2.0 Hub, 0x2109  (VIA Labs, Inc.), 0x3431, 0xfa130000 / 6
    USB Device: Officejet Pro 8500 A910, 0x03f0  (Hewlett Packard), 0x5312, 0xfa131000 / 15
    USB Device: hub_device, apple_vendor_id, 0x9126, 0xfa140000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa141000 / 14
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa141400 / 16
    USB Device: HP LaserJet P2035, 0x03f0  (Hewlett Packard), 0x5d17, 0xfa142000 / 13
    USB Device: Apple LED Cinema Display, apple_vendor_id, 0x9226, 0xfa146000 / 12
    USB Device: Display Audio, apple_vendor_id, 0x1105, 0xfa144000 / 11
    USB Device: Display iSight, apple_vendor_id, 0x8508, 0xfa145000 / 10
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0610, 0xfd140000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0610, 0xfd141000 / 6
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd141200 / 8
    USB Device: CRCA102-3I1, 0x0764  (Cyber Power Systems, Inc.), 0x0501, 0xfd141100 / 7
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    FireWire Device: My Book 111D, WD, 800mbit_speed

    After trying the update on the 10.8.2 version from Time Machine, the problem re-appeared.  Resetting the NVRAM did not help.  Finally tried Apple Support who suggested reinstalling the OS (which writes a complete version of 10.8.3 rather than the updated files).  That worked. 

  • JVM CRASH with the error msg  An unexpected error has been detected by HotS

    Iam using Jboss 4.2.2 for my application
    the JVM is crashing with the following msg when i call a function in a DLL (JNI)
    the error msg :
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    # An error report file with more information is saved as hs_err_pid3356.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Press any key to continue . . .
    and the log file generated:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    --------------- T H R E A D ---------------
    Current thread (0x00991488): VMThread [id=3544]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000440
    Registers:
    EAX=0x00000440, EBX=0x48284758, ECX=0x2cbefa5c, EDX=0x6dbcd170
    ESP=0x2cbef9c4, EBP=0x000001c4, ESI=0x3800d3a4, EDI=0x2cbefa5c
    EIP=0x6d963733, EFLAGS=0x00010283
    Top of Stack: (sp=0x2cbef9c4)
    0x2cbef9c4: 2cbefa5c 3800d3a0 6d982aab 3800d3a4
    0x2cbef9d4: 2cbefa5c 2cbefa5c 0092a538 0092a538
    0x2cbef9e4: 009449d0 6db4ff25 2cbefa5c 0092a7d0
    0x2cbef9f4: 6d995c41 2cbefa5c 0092a538 0092a7d0
    0x2cbefa04: 00000000 0092a538 6d964252 00000000
    0x2cbefa14: 00000001 00000000 00000001 2cbefaa8
    0x2cbefa24: 2cbefa5c 0092a538 0092a580 2cbefbfc
    0x2cbefa34: 00990b70 0003f758 08bdef90 6dbcd110
    Instructions: (pc=0x6d963733)
    0x6d963723: 24 08 57 8b f9 8b 06 85 c0 74 3e 3b 47 1c 73 39
    0x6d963733: 8b 08 83 e1 03 80 f9 03 75 06 8b 00 24 fc eb 0a
    Stack: [0x2bcf0000,0x2cbf0000), sp=0x2cbef9c4, free space=15358k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x93733]
    [error occurred during error reporting, step 120, id 0xc0000005]
    VM_Operation (0x65dbee54): generation collection for allocation, mode: safepoint, requested by thread 0x496f2dd0
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x35f27498 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3508]
    0x3178fde8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=748]
    0x496f2dd0 JavaThread "http-0.0.0.0-8080-3" daemon [_thread_blocked, id=3044]
    0x356c4008 JavaThread "IdleRemover" daemon [_thread_blocked, id=2832]
    0x496bdae0 JavaThread "http-0.0.0.0-8080-2" daemon [_thread_blocked, id=2452]
    0x31713dc0 JavaThread "http-0.0.0.0-8080-1" daemon [_thread_blocked, id=2740]
    0x49538008 JavaThread "Thread-6" [_thread_blocked, id=752]
    0x485d4008 JavaThread "ajp-0.0.0.0-8009-Acceptor-0" daemon [_thread_in_native, id=1548]
    0x498b6dd0 JavaThread "http-0.0.0.0-8080-Acceptor-0" daemon [_thread_blocked, id=3892]
    0x493eb008 JavaThread "JBossLifeThread" [_thread_blocked, id=3392]
    0x3827f260 JavaThread "UILServerILService Accept Thread" [_thread_in_native, id=1900]
    0x388c9758 JavaThread "TimeoutFactory-0" daemon [_thread_blocked, id=1996]
    0x35a187b0 JavaThread "JCA PoolFiller" [_thread_blocked, id=2460]
    0x4948c448 JavaThread "Timer-2" daemon [_thread_blocked, id=3816]
    0x48712e80 JavaThread "HSQLDB Timer @9db0ad" daemon [_thread_blocked, id=2456]
    0x35706d30 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=3088]
    0x385ed548 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=2876]
    0x38282e60 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=2916]
    0x38282708 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=2172]
    0x36061c68 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=2680]
    0x31865dd8 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=3868]
    0x483a8d48 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=3208]
    0x483a8a90 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=4000]
    0x355bcd90 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=1056]
    0x48998d38 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=1712]
    0x383e7d58 JavaThread "DefaultQuartzScheduler_Worker-0" [_thread_blocked, id=3752]
    0x485e6ed0 JavaThread "WorkManager(2)-1" daemon [_thread_blocked, id=3448]
    0x488a0008 JavaThread "Thread-7" daemon [_thread_blocked, id=3620]
    0x38410008 JavaThread "JBossMQ Cache Reference Softner" daemon [_thread_blocked, id=928]
    0x382d1bf0 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=3116]
    0x37fb6de0 JavaThread "SubscriptionWatchDog" [_thread_blocked, id=3512]
    0x357e78c8 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1128]
    0x381fb310 JavaThread "AcceptorThread#0:3873" [_thread_in_native, id=3096]
    0x381e33b0 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1076]
    0x318e5d90 JavaThread "AcceptorThread#0:4446" [_thread_in_native, id=2340]
    0x35d15b80 JavaThread "PooledInvokerAcceptor#0-4445" [_thread_in_native, id=2332]
    0x35fa1c98 JavaThread "RMI TCP Accept-4444" daemon [_thread_in_native, id=164]
    0x35d15df0 JavaThread "Listener:2365" daemon [_thread_in_native, id=3408]
    0x35d13dc8 JavaThread "Thread-5" daemon [_thread_blocked, id=1928]
    0x35f35c60 JavaThread "Thread-4" daemon [_thread_blocked, id=4032]
    0x35d66db0 JavaThread "Listener:2361" daemon [_thread_in_native, id=2168]
    0x3828dd90 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=3052]
    0x35da8ab0 JavaThread "GC Daemon" daemon [_thread_blocked, id=2028]
    0x35d390c8 JavaThread "RMI Reaper" [_thread_blocked, id=488]
    0x35cedaa8 JavaThread "Timer-1" daemon [_thread_blocked, id=2900]
    0x35ced920 JavaThread "RMI TCP Accept-1098" daemon [_thread_in_native, id=3908]
    0x35dd35a0 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=872]
    0x35e42e48 JavaThread "ScannerThread" daemon [_thread_blocked, id=168]
    0x31895da8 JavaThread "Timer-0" daemon [_thread_blocked, id=3324]
    0x00037aa0 JavaThread "DestroyJavaVM" [_thread_blocked, id=1244]
    0x316f0c48 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3904]
    0x0099f900 JavaThread "CompilerThread1" daemon [_thread_blocked, id=228]
    0x0099ea98 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2696]
    0x0099dbf0 JavaThread "AdapterThread" daemon [_thread_blocked, id=3360]
    0x0099cf10 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=892]
    0x00993968 JavaThread "Finalizer" daemon [_thread_blocked, id=2776]
    0x00993620 JavaThread "Reference Handler" daemon [_thread_blocked, id=1348]
    Other Threads:
    =>0x00991488 VMThread [id=3544]
    0x316f1f58 WatcherThread [id=3288]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00037158/0x0000071c] Threads_lock - owner thread: 0x00991488
    [0x000372d8/0x000006e0] Heap_lock - owner thread: 0x496f2dd0
    Heap
    def new generation total 20736K, used 17960K [0x03a60000, 0x050e0000, 0x07340000)
    eden space 18432K, 97% used [0x03a60000, 0x04be8eb0, 0x04c60000)
    from space 2304K, 0% used [0x04ea0000, 0x04ea1350, 0x050e0000)
    to space 2304K, 0% used [0x04c60000, 0x04c605b0, 0x04ea0000)
    tenured generation total 183196K, used 125267K [0x07340000, 0x12627000, 0x23a60000)
    the space 183196K, 68% used [0x07340000, 0x0ed94d90, 0x0ed94e00, 0x12627000)
    compacting perm gen total 131072K, used 39965K [0x23a60000, 0x2ba60000, 0x2ba60000)
    the space 131072K, 30% used [0x23a60000, 0x261677a8, 0x26167800, 0x2ba60000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      F:\Java\jdk1.5.0_07\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d8d0000 - 0x6dc85000      F:\Java\jdk1.5.0_07\jre\bin\server\jvm.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d2f0000 - 0x6d2f8000      F:\Java\jdk1.5.0_07\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      F:\Java\jdk1.5.0_07\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      F:\Java\jdk1.5.0_07\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      F:\Java\jdk1.5.0_07\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      F:\Java\jdk1.5.0_07\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d520000 - 0x6d528000      F:\Java\jdk1.5.0_07\jre\bin\management.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x39e60000 - 0x39e88000      C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x6d550000 - 0x6d559000      F:\Java\jdk1.5.0_07\jre\bin\nio.dll
    0x6d070000 - 0x6d1d7000      F:\Java\jdk1.5.0_07\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x462a0000 - 0x462d8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d2b0000 - 0x6d2ef000      F:\Java\jdk1.5.0_07\jre\bin\fontmanager.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x6d430000 - 0x6d44f000      F:\Java\jdk1.5.0_07\jre\bin\jpeg.dll
    0x47290000 - 0x472a3000      F:\jboss-4.2.2.GA\bin\locateprintsdll.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x472b0000 - 0x472bd000      C:\WINDOWS\system32\MFC42LOC.DLL
    VM Arguments:
    jvm_args: -Dprogram.name=run.bat -Dreports.configDir=F:/jboss-4.2.2.GA/server/default/conf/ -XX:PermSize=128m -Xms128m -Xmx512m -Xss15m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.endorsed.dirs=F:\jboss-4.2.2.GA\lib\endorsed
    java_command: org.jboss.Main -b 0.0.0.0
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=F:\Java\jdk1.5.0_07
    CLASSPATH=F:\Tomcat 5.5\webapps\IWS\WEB-INF\lib\servlet-api.jar;.
    PATH=D:\oracle\ora92\bin;C:\Program Files\PC Connectivity Solution\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\PROGRA~1\CA\SHARED~1\SCANEN~1;C:\PROGRA~1\CA\ETRUST~1;C:\Program Files\Rational\common;F:\Java\jdk1.5.0_07\bin;F:\Java\jre1.5.0_07\bin;F:\jboss-4.2.2.GA\DLLs;
    USERNAME=Arun
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1013660k(193696k free), swap 2444544k(642724k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_07-b03) for windows-x86, built on May 3 2006 00:45:13 by "java_re" with MS VC++ 6.0
    pls help me ...
    thanks in advance

    Iam using Jboss 4.2.2 for my application
    the JVM is crashing with the following msg when i call a function in a DLL (JNI)
    the error msg :
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    # An error report file with more information is saved as hs_err_pid3356.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Press any key to continue . . .
    and the log file generated:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    --------------- T H R E A D ---------------
    Current thread (0x00991488): VMThread [id=3544]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000440
    Registers:
    EAX=0x00000440, EBX=0x48284758, ECX=0x2cbefa5c, EDX=0x6dbcd170
    ESP=0x2cbef9c4, EBP=0x000001c4, ESI=0x3800d3a4, EDI=0x2cbefa5c
    EIP=0x6d963733, EFLAGS=0x00010283
    Top of Stack: (sp=0x2cbef9c4)
    0x2cbef9c4: 2cbefa5c 3800d3a0 6d982aab 3800d3a4
    0x2cbef9d4: 2cbefa5c 2cbefa5c 0092a538 0092a538
    0x2cbef9e4: 009449d0 6db4ff25 2cbefa5c 0092a7d0
    0x2cbef9f4: 6d995c41 2cbefa5c 0092a538 0092a7d0
    0x2cbefa04: 00000000 0092a538 6d964252 00000000
    0x2cbefa14: 00000001 00000000 00000001 2cbefaa8
    0x2cbefa24: 2cbefa5c 0092a538 0092a580 2cbefbfc
    0x2cbefa34: 00990b70 0003f758 08bdef90 6dbcd110
    Instructions: (pc=0x6d963733)
    0x6d963723: 24 08 57 8b f9 8b 06 85 c0 74 3e 3b 47 1c 73 39
    0x6d963733: 8b 08 83 e1 03 80 f9 03 75 06 8b 00 24 fc eb 0a
    Stack: [0x2bcf0000,0x2cbf0000), sp=0x2cbef9c4, free space=15358k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x93733]
    [error occurred during error reporting, step 120, id 0xc0000005]
    VM_Operation (0x65dbee54): generation collection for allocation, mode: safepoint, requested by thread 0x496f2dd0
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x35f27498 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3508]
    0x3178fde8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=748]
    0x496f2dd0 JavaThread "http-0.0.0.0-8080-3" daemon [_thread_blocked, id=3044]
    0x356c4008 JavaThread "IdleRemover" daemon [_thread_blocked, id=2832]
    0x496bdae0 JavaThread "http-0.0.0.0-8080-2" daemon [_thread_blocked, id=2452]
    0x31713dc0 JavaThread "http-0.0.0.0-8080-1" daemon [_thread_blocked, id=2740]
    0x49538008 JavaThread "Thread-6" [_thread_blocked, id=752]
    0x485d4008 JavaThread "ajp-0.0.0.0-8009-Acceptor-0" daemon [_thread_in_native, id=1548]
    0x498b6dd0 JavaThread "http-0.0.0.0-8080-Acceptor-0" daemon [_thread_blocked, id=3892]
    0x493eb008 JavaThread "JBossLifeThread" [_thread_blocked, id=3392]
    0x3827f260 JavaThread "UILServerILService Accept Thread" [_thread_in_native, id=1900]
    0x388c9758 JavaThread "TimeoutFactory-0" daemon [_thread_blocked, id=1996]
    0x35a187b0 JavaThread "JCA PoolFiller" [_thread_blocked, id=2460]
    0x4948c448 JavaThread "Timer-2" daemon [_thread_blocked, id=3816]
    0x48712e80 JavaThread "HSQLDB Timer @9db0ad" daemon [_thread_blocked, id=2456]
    0x35706d30 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=3088]
    0x385ed548 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=2876]
    0x38282e60 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=2916]
    0x38282708 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=2172]
    0x36061c68 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=2680]
    0x31865dd8 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=3868]
    0x483a8d48 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=3208]
    0x483a8a90 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=4000]
    0x355bcd90 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=1056]
    0x48998d38 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=1712]
    0x383e7d58 JavaThread "DefaultQuartzScheduler_Worker-0" [_thread_blocked, id=3752]
    0x485e6ed0 JavaThread "WorkManager(2)-1" daemon [_thread_blocked, id=3448]
    0x488a0008 JavaThread "Thread-7" daemon [_thread_blocked, id=3620]
    0x38410008 JavaThread "JBossMQ Cache Reference Softner" daemon [_thread_blocked, id=928]
    0x382d1bf0 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=3116]
    0x37fb6de0 JavaThread "SubscriptionWatchDog" [_thread_blocked, id=3512]
    0x357e78c8 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1128]
    0x381fb310 JavaThread "AcceptorThread#0:3873" [_thread_in_native, id=3096]
    0x381e33b0 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1076]
    0x318e5d90 JavaThread "AcceptorThread#0:4446" [_thread_in_native, id=2340]
    0x35d15b80 JavaThread "PooledInvokerAcceptor#0-4445" [_thread_in_native, id=2332]
    0x35fa1c98 JavaThread "RMI TCP Accept-4444" daemon [_thread_in_native, id=164]
    0x35d15df0 JavaThread "Listener:2365" daemon [_thread_in_native, id=3408]
    0x35d13dc8 JavaThread "Thread-5" daemon [_thread_blocked, id=1928]
    0x35f35c60 JavaThread "Thread-4" daemon [_thread_blocked, id=4032]
    0x35d66db0 JavaThread "Listener:2361" daemon [_thread_in_native, id=2168]
    0x3828dd90 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=3052]
    0x35da8ab0 JavaThread "GC Daemon" daemon [_thread_blocked, id=2028]
    0x35d390c8 JavaThread "RMI Reaper" [_thread_blocked, id=488]
    0x35cedaa8 JavaThread "Timer-1" daemon [_thread_blocked, id=2900]
    0x35ced920 JavaThread "RMI TCP Accept-1098" daemon [_thread_in_native, id=3908]
    0x35dd35a0 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=872]
    0x35e42e48 JavaThread "ScannerThread" daemon [_thread_blocked, id=168]
    0x31895da8 JavaThread "Timer-0" daemon [_thread_blocked, id=3324]
    0x00037aa0 JavaThread "DestroyJavaVM" [_thread_blocked, id=1244]
    0x316f0c48 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3904]
    0x0099f900 JavaThread "CompilerThread1" daemon [_thread_blocked, id=228]
    0x0099ea98 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2696]
    0x0099dbf0 JavaThread "AdapterThread" daemon [_thread_blocked, id=3360]
    0x0099cf10 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=892]
    0x00993968 JavaThread "Finalizer" daemon [_thread_blocked, id=2776]
    0x00993620 JavaThread "Reference Handler" daemon [_thread_blocked, id=1348]
    Other Threads:
    =>0x00991488 VMThread [id=3544]
    0x316f1f58 WatcherThread [id=3288]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00037158/0x0000071c] Threads_lock - owner thread: 0x00991488
    [0x000372d8/0x000006e0] Heap_lock - owner thread: 0x496f2dd0
    Heap
    def new generation total 20736K, used 17960K [0x03a60000, 0x050e0000, 0x07340000)
    eden space 18432K, 97% used [0x03a60000, 0x04be8eb0, 0x04c60000)
    from space 2304K, 0% used [0x04ea0000, 0x04ea1350, 0x050e0000)
    to space 2304K, 0% used [0x04c60000, 0x04c605b0, 0x04ea0000)
    tenured generation total 183196K, used 125267K [0x07340000, 0x12627000, 0x23a60000)
    the space 183196K, 68% used [0x07340000, 0x0ed94d90, 0x0ed94e00, 0x12627000)
    compacting perm gen total 131072K, used 39965K [0x23a60000, 0x2ba60000, 0x2ba60000)
    the space 131072K, 30% used [0x23a60000, 0x261677a8, 0x26167800, 0x2ba60000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      F:\Java\jdk1.5.0_07\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d8d0000 - 0x6dc85000      F:\Java\jdk1.5.0_07\jre\bin\server\jvm.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d2f0000 - 0x6d2f8000      F:\Java\jdk1.5.0_07\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      F:\Java\jdk1.5.0_07\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      F:\Java\jdk1.5.0_07\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      F:\Java\jdk1.5.0_07\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      F:\Java\jdk1.5.0_07\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d520000 - 0x6d528000      F:\Java\jdk1.5.0_07\jre\bin\management.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x39e60000 - 0x39e88000      C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x6d550000 - 0x6d559000      F:\Java\jdk1.5.0_07\jre\bin\nio.dll
    0x6d070000 - 0x6d1d7000      F:\Java\jdk1.5.0_07\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x462a0000 - 0x462d8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d2b0000 - 0x6d2ef000      F:\Java\jdk1.5.0_07\jre\bin\fontmanager.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x6d430000 - 0x6d44f000      F:\Java\jdk1.5.0_07\jre\bin\jpeg.dll
    0x47290000 - 0x472a3000      F:\jboss-4.2.2.GA\bin\locateprintsdll.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x472b0000 - 0x472bd000      C:\WINDOWS\system32\MFC42LOC.DLL
    VM Arguments:
    jvm_args: -Dprogram.name=run.bat -Dreports.configDir=F:/jboss-4.2.2.GA/server/default/conf/ -XX:PermSize=128m -Xms128m -Xmx512m -Xss15m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.endorsed.dirs=F:\jboss-4.2.2.GA\lib\endorsed
    java_command: org.jboss.Main -b 0.0.0.0
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=F:\Java\jdk1.5.0_07
    CLASSPATH=F:\Tomcat 5.5\webapps\IWS\WEB-INF\lib\servlet-api.jar;.
    PATH=D:\oracle\ora92\bin;C:\Program Files\PC Connectivity Solution\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\PROGRA~1\CA\SHARED~1\SCANEN~1;C:\PROGRA~1\CA\ETRUST~1;C:\Program Files\Rational\common;F:\Java\jdk1.5.0_07\bin;F:\Java\jre1.5.0_07\bin;F:\jboss-4.2.2.GA\DLLs;
    USERNAME=Arun
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1013660k(193696k free), swap 2444544k(642724k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_07-b03) for windows-x86, built on May 3 2006 00:45:13 by "java_re" with MS VC++ 6.0
    pls help me ...
    thanks in advance

  • Endless crashes with Photoshop Elements 10

    Can one of you very smart people help me with this?  I've had a ton of trouble with installing and running Photoshop Elements 10.  Now when I quit the application, I get this error message.  Can someone help me out here?  It's been extremely frustrating.  I have a 2010 MacBook Pro running Lion 10.7.2.  Thank you!
    Process:         Adobe Photoshop Elements Editor [217]
    Path:            /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/MacOS/Adobe Photoshop Elements Editor
    Identifier:      com.adobe.PhotoshopElements
    Version:         10.0 [20110831.m.17215] (10)
    Code Type:       X86 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2011-11-26 14:53:18.542 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          185334 sec
    Crashes Since Last Report:           110
    Per-App Interval Since Last Report:  94609 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      E366834E-C27F-448C-8616-27451FDBCF93
    Crashed Thread:  3
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    VM Regions Near 0x4:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/MacOS/Adobe Photoshop Elements Editor
        __TEXT                 0000000000001000-0000000002228000 [ 34.2M] r-x/rwx SM=COW  /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/MacOS/Adobe Photoshop Elements Editor
    Application Specific Information:
    objc[217]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.adobe.PhotoshopElements             0x0002c6c7 0x1000 + 177863
    1   com.adobe.PhotoshopElements             0x000342a0 0x1000 + 209568
    2   com.adobe.PhotoshopElements             0x000342ba 0x1000 + 209594
    3   com.adobe.PhotoshopElements             0x001c4f81 0x1000 + 1851265
    4   com.adobe.PhotoshopElements             0x000aaaf6 0x1000 + 695030
    5   libsystem_c.dylib                       0x93a23944 __cxa_finalize + 243
    6   libsystem_c.dylib                       0x93a237f2 exit + 25
    7   com.adobe.PhotoshopElements             0x003b79ee start + 266
    8   com.adobe.PhotoshopElements             0x003b790d start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9c27890a kevent + 10
    1   libdispatch.dylib                       0x93e07c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x93e066a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9c27783e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x93a34e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x939dc82a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x07f65900 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x07f5e650 C_EULA_SetState + 2164
    5   com.adobe.amt.services                  0x07f65966 C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x93a30ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x93a346de thread_start + 34
    Thread 3 Crashed:
    0   com.adobe.PhotoshopElements             0x00034450 0x1000 + 210000
    1   com.adobe.PhotoshopElements             0x004b4d8a start + 1037478
    2   com.adobe.PhotoshopElements             0x01249e40 start + 15279452
    3   com.adobe.PhotoshopElements             0x0124aff4 start + 15283984
    4   com.adobe.PhotoshopElements             0x0124b14a start + 15284326
    5   com.adobe.PhotoshopElements             0x01638421 Pt::ThreadStartInternal(void*) + 29
    6   libsystem_c.dylib                       0x93a30ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x93a346de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9c27802e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93a32ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x93a346fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x9c27802e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93a32ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x93a346fe start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x9c27802e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93a32ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x93a346fe start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x9c27783e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x93a34e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x93a34f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9afbd5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9afbd319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9afbd12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9b0017b5 AsyncFileThread(void*) + 248
    7   libsystem_c.dylib                       0x93a30ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x93a346de thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xb01a1dbc  ecx: 0x0000001f  edx: 0xb01a1dbc
      edi: 0xb01a1e98  esi: 0xb01a1dbc  ebp: 0xb01a1c98  esp: 0xb01a1c80
       ss: 0x00000023  efl: 0x00010282  eip: 0x00034450   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000004
    Logical CPU: 0
    Binary Images:
        0x1000 -  0x2227fe3 +com.adobe.PhotoshopElements (10.0 [20110831.m.17215] - 10) <1B04ADC3-E3D8-A190-822F-969CC9559AB2> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/MacOS/Adobe Photoshop Elements Editor
    0x2a6b000 -  0x2a71fff  org.twain.dsm (1.9.4 - 1.9.4) <C0CCCE50-2929-3853-BE08-0DAE14CA29B8> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x2a78000 -  0x2e5201f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLingui stic
    0x2f0d000 -  0x30adfe7 +com.adobe.owl (AdobeOwl version 3.1.12 - 3.1.12) <CDEF4B02-FC22-7D48-3FE3-61BA27E7B770> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x311b000 -  0x323cfeb +AdobeACE (??? - ???) <4ED19D67-5FCE-653F-FE47-63F2642FFD3C> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x3263000 -  0x365effb +AdobeMPS (??? - ???) <746FBFB2-5AFA-B27F-51B1-949B3CE65FCE> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x36dd000 -  0x3a02ff7 +AdobeAGM (??? - ???) <B4C93913-5929-0DD9-B6AA-F31898A40579> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x3a78000 -  0x3d97ff7 +com.adobe.CoolType (AdobeCoolType 5.08.104.14136 - 5.08.104.14136) <C8D029C6-B48A-A2B9-79E3-6022A22A6E32> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3dee000 -  0x3e09ff3 +AdobeBIB (??? - ???) <CF6D168F-10ED-7B79-9346-4607F3064DB9> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3e11000 -  0x3e37ff3 +AdobeBIBUtils (??? - ???) <185B4EA9-AF0A-0D6C-1E12-709827408B54> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x3e3f000 -  0x3e62ff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeA XE8SharedExpat
    0x3e76000 -  0x3f032cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dy lib.36.0
    0x3f33000 -  0x3f4e80f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib. 36.0
    0x3f52000 -  0x3fc0ffb +com.adobe.amtlib (amtlib 4.2.0.4 - 4.2.0.4) <997A56A4-498F-BBB1-189F-DF28DCDF9440> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x3fd7000 -  0x4067fc3 +WRServices (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x41ec000 -  0x4243fff +aif_core (??? - ???) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x425e000 -  0x427bffd +data_flow (??? - ???) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x42a9000 -  0x4322fff +image_flow (??? - ???) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x438b000 -  0x439bfff +image_runtime (??? - ???) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x43b2000 -  0x4571ffe +aif_ogl (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x4627000 -  0x46f8fef +AdobeAXEDOMCore (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOM Core
    0x47af000 -  0x486cfff +AdobeAXSLE (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x4917000 -  0x491bffc +AdobeOperaMgr (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeOperaMgr.framework/Versions/A/AdobeOperaMgr
    0x4927000 -  0x4952ff3  com.apple.DiscRecordingUI (6.0 - 6000.4.1) <06C371CB-E783-3051-9608-BFEC2218E915> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x496a000 -  0x49d7fef +FileInfo (??? - ???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x49f4000 -  0x4a51fff +AdobeXMP (??? - ???) <7577D84C-17DF-E00C-F720-AE40E88F29A6> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x4a5c000 -  0x4ae8fef +AdobeXMPFiles (??? - ???) <03DDE52B-E9AB-EFDD-CA13-C8DF1DB345D0> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x4b22000 -  0x4bc1ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.13.2 - 4.13.2.13472) <5E71AEDA-B617-EC2A-A131-3780B4C904AA> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExte ndScript
    0x4c2b000 -  0x4cbdfe3 +com.adobe.AdobeScCore (ScCore 4.13.2 - 4.13.2.13472) <4D01E91C-F2D4-CC20-EBC6-6EA099AE2CF9> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x4d0d000 -  0x4d28ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSe ttings
    0x4d42000 -  0x4dbffff +AdobeOwlCanvas (??? - ???) <7AA102E0-B244-9265-38B9-9831AE50388A> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanv as
    0x4dde000 -  0x5126fe7 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <909D96B9-E5EA-57C2-77F6-4485D4B65108> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x562a000 -  0x57a6fe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <C69521DA-0A39-8FE2-1F02-240209E2FD8E> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5920000 -  0x5c06fff +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <E469635D-2271-EB2C-F96A-5BFE77FC16BB> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x5f25000 -  0x5f28ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x5f2f000 -  0x5f36ff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <6D2E0799-9E36-6F46-33B5-7F8C91D4C1DD> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x5f47000 -  0x5f9affb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5fe2000 -  0x6087ffb +FaceDetector (??? - ???) <1275F007-B8A7-CA23-8F89-570E182FCBA8> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/FaceDetector.framework/Versions/A/FaceDetector
    0x61aa000 -  0x6257ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x629c000 -  0x62bfffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
    0x62cd000 -  0x62d1ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCra shReporter
    0x62d8000 -  0x62faff7 +libtbb.dylib (??? - ???) <AAA2AFA2-789A-41B8-D03D-C03861305060> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/libtbb.dylib
    0x630f000 -  0x630ffff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x6312000 -  0x634ffff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x7ef8000 -  0x7ef9ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7f40000 -  0x7facfe7 +com.adobe.amt.services (AMTServices 4.2.0.4 [BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00] - 4.2.0.4) <4AB06004-C6E0-593E-912C-821526F14DF9> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xd0c3000 -  0xd0d1ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D3F1CC34-55EB-3D33-A7C2-025D5C8025D0> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xd0d5000 -  0xd0e7fff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <ADEB72F9-0048-3C87-AD9B-71AA57D523E9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xd0eb000 -  0xd0ecffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xd918000 -  0xd988feb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xd996000 -  0xd99efff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x175e1000 - 0x1761affb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <3A9CF871-6678-90BB-3770-CDBF56AF21D5> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/Update rNotifications
    0x1767a000 - 0x176a3fef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x178b2000 - 0x17a04fc7 +com.adobe.coretech.adm (3.10x16 - 3.1) /Applications/Adobe Photoshop Elements 10/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x17cbe000 - 0x17cc2ffb  com.apple.audio.AudioIPCPlugIn (1.2.1 - 1.2.1) <B8333059-00BE-33A6-AEC0-0C8F285E6E07> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17df5000 - 0x17dfbffb  com.apple.audio.AppleHDAHALPlugIn (2.1.3 - 2.1.3f7) <C2DD672D-46CE-34BB-8456-129C65DDE583> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x18336000 - 0x1833bff7 +com.srslabs.iwow (??? - 3.3) <D710AA27-8935-D12E-A848-2742170C2A1F> /Library/Audio/Plug-Ins/HAL/iWow.plugin/Contents/MacOS/iTea
    0x1859e000 - 0x185cbff3 +libcurl (??? - ???) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/libcurl.framework/Versions/A/libcurl
    0x1ac00000 - 0x1acf8fef +com.yourcompany.ems (1.0 - 1) <D0C54C8B-59B4-04D7-E441-4EB71F36D173> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ems.framework/ems
    0x1ad81000 - 0x1bbdefeb +com.adobe.adobeswfl (??? - 2.0.0.11360) <3E243C12-18DB-469A-DFA9-B0AE4A1C620F> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS /AdobeSWFL
    0x40000000 - 0x400c7ff3 +AdobeJP2K (??? - ???) <88B283E5-7E2A-693F-C2D0-0398430A2933> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe70000 - 0x8fea29c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x90005ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x90006000 - 0x9000bff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x9000c000 - 0x9005cff4  libTIFF.dylib (??? - ???) <E86EA22A-82C0-3E77-9EAF-739F385790D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9013f000 - 0x90140ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x90141000 - 0x90222fff  com.apple.DiscRecording (6.0 - 6000.4.1) <DA12E1A4-063B-3319-996B-AFF9B361561C> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x90260000 - 0x90294ff3  libTrueTypeScaler.dylib (??? - ???) <A3A9D11A-74C6-3E0F-99D9-B57FE56C6646> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90295000 - 0x90311fff  libType1Scaler.dylib (??? - ???) <DFBB3B4F-31F4-3ED0-B57C-713493CA2756> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x90312000 - 0x9031bffb  com.apple.DisplayServicesFW (2.5.2 - 317) <DF4FCE9C-A4EE-3590-B079-495AC83836EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9031c000 - 0x904f2fe3  com.apple.CoreFoundation (6.7.1 - 635.15) <AC9F6462-6315-3D89-8075-D048DB4DBF7E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9053d000 - 0x9053dfff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9053e000 - 0x9056cff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9056d000 - 0x9056efff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x90649000 - 0x90868ff7  com.apple.imageKit (2.1.1 - 1.0) <9AF0A882-BEAD-3AEC-8A72-497A7C3C2358> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90869000 - 0x90f12eeb  com.apple.CoreGraphics (1.600.0 - ???) <322FC806-0B9F-3A58-8C88-D477E32A50F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90f13000 - 0x90f14fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90f15000 - 0x90f18ffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90f19000 - 0x90f1cffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90f1d000 - 0x9100dff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9100e000 - 0x91017fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x910bb000 - 0x910befff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x910bf000 - 0x91221fff  com.apple.QTKit (7.7.1 - 2306) <5A7E5ED0-C4DC-3CEC-ABE0-24899134ACE1> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91222000 - 0x91265ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x91266000 - 0x912f0ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91300000 - 0x9139bff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9139c000 - 0x915c5ffb  com.apple.QuartzComposer (5.0 - 236) <7BD138F0-C748-3013-98C0-4D5F5E10B9AB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9161e000 - 0x9165eff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x9165f000 - 0x9165ffff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91678000 - 0x9167fff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x91680000 - 0x91680fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91685000 - 0x91745ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <A39EA668-D042-377F-BC81-26748CD57ADC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91746000 - 0x9175bfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91782000 - 0x91785ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91789000 - 0x91796fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91797000 - 0x91797fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x91798000 - 0x917bbfff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x917bc000 - 0x917c7ffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x918f5000 - 0x9194dfff  com.apple.HIServices (1.10 - ???) <76B50B43-6CFD-3067-A085-11420FD4FAA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9194e000 - 0x91950ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x91951000 - 0x91957ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91958000 - 0x91c62ff3  com.apple.Foundation (6.7.1 - 833.20) <B5092554-485A-3A7D-904B-B04B1EE5C50C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91f8e000 - 0x91f8fff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x91f90000 - 0x92034fff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92058000 - 0x92063ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92064000 - 0x92067ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x92a7d000 - 0x92a8dfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92a8e000 - 0x92a8fff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x92a90000 - 0x92b0cffd  com.apple.PDFKit (2.6.1 - 2.6.1) <7BC3186B-80B7-3E68-AFDD-2734164BCCFB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92b0d000 - 0x92b5bff3  com.apple.ImageCaptureCore (3.0.1 - 3.0.1) <DB40F137-4519-339B-81DC-7375B2FE8FD2> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x92b7d000 - 0x92bccffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92bcd000 - 0x92bd2ffd  libGFXShared.dylib (??? - ???) <820D744C-C641-3918-A72A-AC2E5276BCB6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x92c44000 - 0x92c94fff  libFontRegistry.dylib (??? - ???) <81E03B82-1F31-3702-97DC-BE20298E326F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x92ce1000 - 0x92d03ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x92e35000 - 0x938c3ffe  com.apple.AppKit (6.7.2 - 1138.23) <ADFA8D70-601E-3B5C-96FD-F45F52055CC8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x938c4000 - 0x939d3ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <90D36793-04A5-3BFF-BE83-EEEDCBEDC756> /usr/lib/libsqlite3.dylib
    0x939d4000 - 0x93a9ffff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x93aa0000 - 0x93aa1ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93aa2000 - 0x93aa4ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93aa5000 - 0x93bb6ff7  libJP2.dylib (??? - ???) <35D120D4-3304-3A02-9259-EB933E74E63A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x93bb7000 - 0x93c1efff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x93c25000 - 0x93c29ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x93c2a000 - 0x93c49fff  com.apple.RemoteViewServices (1.2 - 39) <C7B638D2-2F8B-3A45-916A-73103FADC822> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x93d77000 - 0x93e04fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93e05000 - 0x93e13fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x93e14000 - 0x93e42fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <07D9A827-9567-34C2-9022-AF4BF975C9A7> /usr/lib/libSystem.B.dylib
    0x93e43000 - 0x93e4efff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x9410c000 - 0x94204ff7  libFontParser.dylib (??? - ???) <83E7E71E-D217-3DEE-B288-F5BAE7E118C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94205000 - 0x942dcffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x942dd000 - 0x942f3ffe  libxpc.dylib (77.17.0 - compatibility 1.0.0) <E01E0074-0830-3F20-8703-EA7722BFD358> /usr/lib/system/libxpc.dylib
    0x942f4000 - 0x942f4fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x942f5000 - 0x94346ff3  com.apple.CoreMediaIO (210.0 - 3180) <79AA7CA8-FC39-375D-9485-855D302DF7AA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9434f000 - 0x9435affb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9436b000 - 0x946abffb  com.apple.HIToolbox (1.8 - ???) <DFED9BD0-E142-397B-BE16-16EBCF3CE1EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94abd000 - 0x94ac1ff7  com.apple.OpenDirectory (10.7 - 146) <3D3D30CE-6D82-3681-AA98-4E3AEFFA4229> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94b17000 - 0x94b28fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x94b29000 - 0x94b93ff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x94b94000 - 0x94b97ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x94bb2000 - 0x95027ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x95028000 - 0x950bcff7  com.apple.LaunchServices (480.21 - 480.21) <E3621817-B627-3EEC-A7F9-0D45583B7FE8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9512c000 - 0x9512dffd  libCVMSPluginSupport.dylib (??? - ???) <96F2F2F4-E7A9-36C8-B1CF-D58AA3DB2B44> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9512e000 - 0x95204a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x95205000 - 0x9522dff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x9522e000 - 0x9528bffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9528c000 - 0x952cafff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x952cb000 - 0x952d8fff  com.apple.HelpData (2.1.0 - 70) <0145664A-4AD4-3CD3-AAF9-73B9EE906B9D> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x952f2000 - 0x95309ff8  com.apple.CoreMediaAuthoring (2.0 - 889) <49B55753-BD7E-3889-BA60-15294DA49CB7> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9530a000 - 0x955bcff7  com.apple.security (7.0 - 55010) <BE0350C5-5221-3BFF-B674-646AB1BA0F2E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95a5c000 - 0x95e16ffb  com.apple.SceneKit (2.1 - 125.1) <7BFC0028-18AC-3B49-8DDC-CB7A7359D4F7> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x95e17000 - 0x95f26ffb  com.apple.DesktopServices (1.6.1 - 1.6.1) <9F02752A-617B-3AC7-BCA1-F040C105EDDE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95f27000 - 0x95f63ffd  libGLImage.dylib (??? - ???) <8251242B-E04E-3467-BD0F-834578B18AC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95f64000 - 0x96084fec  com.apple.vImage (5.1 - 5.1) <008B989F-F080-398E-ACB1-FBF5BA107D6D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96085000 - 0x960b9ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x9616a000 - 0x9616efff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9616f000 - 0x9619afff  com.apple.GSS (2.1 - 2.0) <05A0171B-76EA-3E4C-8A36-65D1A978AF4B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9619b000 - 0x961aeffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3D94520B-C976-370F-AF56-278002BCF11D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x961af000 - 0x961b7fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x961ef000 - 0x961f7ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x96237000 - 0x96389fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <7646E131-08EE-3D72-ADA2-4A61C562B36E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9638a000 - 0x963b4ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x963b5000 - 0x963b5fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x963b6000 - 0x963bdff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x963be000 - 0x963ccfff  com.apple.opengl (1.7.5 - 1.7.5) <81166D23-DE8E-3938-AAD3-29B1FA5E446E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x963cd000 - 0x96431fff  com.apple.framework.IOKit (2.0 - ???) <D14460ED-2B6C-375D-B3A4-B8C82E922666> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96432000 - 0x96432ff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96697000 - 0x96b73ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96b7f000 - 0x96b9cff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96b9d000 - 0x96be6ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96c2d000 - 0x96cbaff7  com.apple.CoreText (220.11.0 - ???) <4F98D709-75AC-35F0-AD88-8F2C4BD744C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96cf7000 - 0x96f3ffff  com.apple.JavaScriptCore (7534.51 - 7534.51.21) <FEDF4D88-FB61-3A3F-ABE2-72BE2234DDF4> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96f79000 - 0x96f96fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x96f97000 - 0x96fdefff  com.apple.SystemConfiguration (1.11.1 - 1.11) <CA6CE2B6-DC18-31FF-9668-70BB2FD8D7BB> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96fdf000 - 0x96fe5ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x97194000 - 0x971caff4  com.apple.LDAPFramework (3.0 - 120.1) <EA92FCA5-7A7E-328F-8C7F-4250FCC45879> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x971cb000 - 0x971f4ffe  com.apple.opencl (1.50.63 - 1.50.63) <C4EC60D6-9A7C-3CE9-AA80-2F81D9BB4465> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x971fb000 - 0x972e3fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x972e4000 - 0x973b3fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <8B8A3DD3-BB3D-33FC-A714-81E1B883B155> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x973c0000 - 0x974a3ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x974a4000 - 0x9752bfff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9752c000 - 0x97588ff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97839000 - 0x9786fff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97870000 - 0x97892ffe  com.apple.framework.familycontrols (3.0 - 300) <F87D87EF-553A-3165-9C9A-6E117C537FE9> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97893000 - 0x97893ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97913000 - 0x97975ffb  com.apple.datadetectorscore (3.0 - 179.4) <12EF80E0-35CC-30A7-942F-2F9E87C4C98C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97976000 - 0x9799fffe  com.apple.shortcut (2.0 - 2.0) <7F289D05-DDEC-3993-9F86-0DB896E1E686> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x979a0000 - 0x979a3ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x979af000 - 0x979ebfff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <AA56493C-D7C6-3D4F-8DC8-855405AFF57B> /usr/lib/libcups.2.dylib
    0x979ec000 - 0x979fcff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x979fd000 - 0x97abdfff  com.apple.CoreServices.OSServices (478.29 - 478.29) <EAAAAC1B-2599-3875-9068-DF7E6B5760A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97abe000 - 0x97acefff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x97acf000 - 0x97cb8ff7  com.apple.CoreData (104 - 358.12) <F8AD7990-2C30-31A4-8E78-FA8DD5CF03CC> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97cb9000 - 0x97e6dff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x97e6e000 - 0x97eacfff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97ead000 - 0x97eb5ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x97eb6000 - 0x97f17ffb  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <089D78E0-46A6-38DB-9545-7F35CC815939> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97f18000 - 0x97f8dfff  com.apple.Metadata (10.7.0 - 627.20) <1E7C8194-8CE4-3103-A3D1-8913238AF923> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x97f8e000 - 0x97fa7fff  libPng.dylib (??? - ???) <A83B66DC-302C-3A4C-8107-0E5560708024> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97fa8000 - 0x97fbdff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98343000 - 0x98343fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98344000 - 0x98371ff7  com.apple.securityinterface (5.0 - 55004) <93C0285A-A266-3F21-82C9-434CBD3FA712> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x98372000 - 0x9842fff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <ADBA42F5-0130-315B-880C-70AA70666474> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x98530000 - 0x98595ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x985a7000 - 0x98609ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9860a000 - 0x9865aff9  com.apple.QuickLookFramework (3.1 - 500.1) <28CB604E-2426-3491-BF16-2CDFD4C392B0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9865b000 - 0x986d3ff2  com.apple.CorePDF (3.0 - 3.0) <A0EC8F60-A622-347E-979A-F71939C45E5F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x986d4000 - 0x98a16fff  com.apple.MediaToolbox (1.0 - 705.42) <5AEFD5BE-6FA3-38F8-966A-B0AB56C472B8> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98a86000 - 0x98a90ff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98af2000 - 0x98b6dffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <D5AC5C21-CE1E-333D-94F7-F0F534FD4DC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98b6e000 - 0x98b72ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x98b73000 - 0x991eefe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x992c2000 - 0x992e8ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x99320000 - 0x993b7ff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x993b8000 - 0x993ddff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x994f7000 - 0x99550ffb  com.apple.coreui (1.2.1 - 164.1) <890E0BE9-3360-3B56-BE46-5A2421875A40> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x99551000 - 0x99551fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x995c2000 - 0x995c3ff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x995c4000 - 0x995defff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x995df000 - 0x99864fe3  com.apple.QuickTime (7.7.1 - 2306) <F8C64DC4-3FE4-3A06-B10B-59E7F3BA6FDD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9a592000 - 0x9a6beff9  com.apple.CFNetwork (520.2.5 - 520.2.5) <02193949-50A8-3CBC-9920-5FCDB8EBE17A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9a715000 - 0x9a71cffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9a743000 - 0x9a8a4ffb  com.apple.QuartzCore (1.7 - 270.0) <0916DA83-6400-3FEA-BC53-5F4BA4D126EC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9a8a6000 - 0x9a97cff6  com.apple.QuickLookUIFramework (3.1 - 500.1) <4E259D94-6081-32D7-AD60-565E57B11EBA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9a982000 - 0x9ad84ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9adc0000 - 0x9adc4fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9adc7000 - 0x9addbff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9addc000 - 0x9addeff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9aebd000 - 0x9aebefff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9aebf000 - 0x9af00ff7  com.apple.CoreMedia (1.0 - 705.42) <B45070F1-4097-3BAD-AA7C-0F7AFD6EAC27> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9af7f000 - 0x9b281fff  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <8094724D-591D-3CC2-81DE-4E3029624E11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9b282000 - 0x9b283fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9b35f000 - 0x9b366fff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9b36d000 - 0x9b3dcfff  com.apple.Heimdal (2.1 - 2.0) <DE626683-DF32-341B-8997-AE63309590C7> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9b3e8000 - 0x9b404ff5  com.apple.GenerationalStorage (1.0 - 125) <F1D67293-9192-367D-AE74-2732B23E7E77> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9b405000 - 0x9b413fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x9b414000 - 0x9b43cff0  com.apple.CoreServicesInternal (113.8 - 113.8) <9930695C-1C48-329F-93FD-5AEEE2EF942C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9b43d000 - 0x9b441ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x9b442000 - 0x9b478fff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9b479000 - 0x9b482ff3  com.apple.CommonAuth (2.1 - 2.0) <D49B41B1-A5DD-366A-8C30-49E9B875AA13> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9b483000 - 0x9b4b2ff7  libsystem_info.dylib (??? - ???) <B86A363D-6EA2-3A69-A6CB-18B7F98FC61A> /usr/lib/system/libsystem_info.dylib
    0x9b4b3000 - 0x9b4bbff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9b4bc000 - 0x9b50dff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x9c25f000 - 0x9c27dff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x9c27e000 - 0x9c4f1fff  com.apple.CoreImage (7.82 - 1.0.1) <6C99F458-E83A-3538-9B71-2C8BD0C9DCD5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9c4f2000 - 0x9c8e5feb  com.apple.VideoToolbox (1.0 - 705.42) <3F12F8A3-ED41-3EAD-A887-B7805353122C> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9cb07000 - 0x9cb3afef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0xb0000000 - 0xb000fff8 +com.adobe.ahclientframework (1.5.0.30 - 1.5.0.30) <24B39C2F-79B0-BDE3-C6D0-1F0E943070C7> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba900000 - 0xba91bffd  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <5635DF40-8D8E-3B8C-B075-7B3FC0F184A4> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ff6  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <17226124-8E8A-34EB-A2C4-D4A0469CF45B> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 226
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=272.1M resident=164.2M(60%) swapped_out_or_unallocated=107.9M(40%)
    Writable regions: Total=156.7M written=33.4M(21%) resident=45.6M(29%) swapped_out=0K(0%) unallocated=111.1M(71%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 32.9M
    CG backing stores                   840K
    CG raster data                      192K
    CG shared images                   3416K
    CoreGraphics                          8K
    CoreServices                       1972K
    MALLOC                             91.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    Stack                              67.6M
    VM_ALLOCATE                        16.2M
    __CI_BITMAP                          80K
    __DATA                             22.0M
    __DATA/__OBJC                       304K
    __IMAGE                            1256K
    __IMPORT                            236K
    __LINKEDIT                         61.3M
    __OBJC                             2520K
    __OBJC/__DATA                        76K
    __PAGEZERO                            4K
    __TEXT                            210.8M
    __UNICODE                           544K
    mapped file                       266.2M
    shared memory                       312K
    shared pmap                        8124K
    ===========                      =======
    TOTAL                             787.6M
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.100.98.75.18)
    Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    Ken, The problem is: The buttons don't work. So I cannot use Edit...
    But:
    I reïnstalled Adobe Elements 10 for the 4th time
    Cleaned my register again.
    restarted my computer
    Did a computer reset to an earlier date
    Installed Elements 10 again but .......not the try version of Premiere Elements.
    Now Elements 10 has a normal screen.
    This was a try and error sollution. I hope it will last.
    Jan

  • OS X 10.7.4 crashes with Chrome

    Dear Support,
    I have just purchased new macbook air with OS X 10.7.4.  Then I used Time Machine to recover my previous mac pro system.
    Since then when I use Chrome for a while it suddenly crashes. Screen freezes, and mouse keyboard all become unresponsive. I have to hard restart OS.
    I have attach the last crash report below. Does anyone have any clue why it's happening?
    Many Thanks!!
    Edward
    Process:         GrowlHelperApp [294]
    Path:            /Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/C ontents/MacOS/GrowlHelperApp
    Identifier:      com.Growl.GrowlHelperApp
    Version:         1.1.4 (1.1.4)
    Code Type:       X86 (Native)
    Parent Process:  launchd [208]
    Date/Time:       2012-06-26 13:27:24.942 +0800
    OS Version:      Mac OS X 10.7.4 (11E2705)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010
    VM Regions Near 0x10:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/C ontents/MacOS/GrowlHelperApp
        __TEXT                 0000000000001000-000000000002d000 [  176K] r-x/rwx SM=COW  /Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/C ontents/MacOS/GrowlHelperApp
    Application Specific Information:
    objc[294]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x98f0ac22 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 350
    1   com.apple.CoreFoundation                0x97aa3e05 _CFAutoreleasePoolPop + 53
    2   com.apple.Foundation                    0x93348c7e __NSFireTimer + 377
    3   com.apple.CoreFoundation                0x97acd2a6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    4   com.apple.CoreFoundation                0x97accc37 __CFRunLoopDoTimer + 743
    5   com.apple.CoreFoundation                0x97aabcd0 __CFRunLoopRun + 1888
    6   com.apple.CoreFoundation                0x97aab1dc CFRunLoopRunSpecific + 332
    7   com.apple.CoreFoundation                0x97aab088 CFRunLoopRunInMode + 120
    8   com.apple.HIToolbox                     0x998c9723 RunCurrentEventLoopInMode + 318
    9   com.apple.HIToolbox                     0x998d0a8b ReceiveNextEventCommon + 381
    10  com.apple.HIToolbox                     0x998d08fa BlockUntilNextEventMatchingListInMode + 88
    11  com.apple.AppKit                        0x97df90d8 _DPSNextEvent + 678
    12  com.apple.AppKit                        0x97df8942 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    13  com.apple.AppKit                        0x97df4cb1 -[NSApplication run] + 911
    14  com.Growl.GrowlHelperApp                0x000228ac 0x1000 + 137388
    15  com.Growl.GrowlHelperApp                0x00006c38 0x1000 + 23608
    16  com.Growl.GrowlHelperApp                0x0000243e 0x1000 + 5182
    17  com.Growl.GrowlHelperApp                0x00002365 0x1000 + 4965
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x956c890a kevent + 10
    1   libdispatch.dylib                       0x973aee10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x973ad85f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x956c5c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x956c51f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x97aa29da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x97aabb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x97aab1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x97aab088 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x933abdf9 -[NSConnection run] + 269
    7   com.apple.Foundation                    0x9334ae25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9334add5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x936dded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x936e16de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00824028  ebx: 0x0002cc21  ecx: 0x00824028  edx: 0x04002c88
      edi: 0x00824000  esi: 0x00000000  ebp: 0xbfffe688  esp: 0xbfffe450
       ss: 0x00000023  efl: 0x00010246  eip: 0x98f0ac22   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000010
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x2cfff +com.Growl.GrowlHelperApp (1.1.4 - 1.1.4) <80E73C9C-B9B0-A4CD-8E21-EE4FC91F7D03> /Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/C ontents/MacOS/GrowlHelperApp
    0x8feb3000 - 0x8fee5aa7  dyld (195.6 - ???) <60FD3471-A1D7-342E-99A7-3EDECDAEC6EC> /usr/lib/dyld
    0x90005000 - 0x90005fff  com.apple.Carbon (153 - 153) <C9EFFCAA-618B-3ADD-A81E-D8B7F1731FBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9002a000 - 0x9009efff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9033d000 - 0x90849fff  com.apple.RawCamera.bundle (3.13.0 - 627) <3859CCFE-E5FB-3EA6-7D4D-D32801FC31E4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90e65000 - 0x90e75fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8BE2D2EF-9AF0-3960-9845-052CCE04B53A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90e76000 - 0x90e93ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90f7e000 - 0x91380ff6  libLAPACK.dylib (??? - ???) <687048BD-EA20-3C20-B848-B6D730F58281> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91381000 - 0x91417ff7  com.apple.LaunchServices (480.34 - 480.34) <147520D6-7EBE-3701-9C47-04F122DC165A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91418000 - 0x914f0ff6  com.apple.QuickLookUIFramework (3.2 - 500.16) <D493E627-6636-3DA6-A88E-8003584C6CBF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x914f1000 - 0x914f8ff9  libsystem_dnssd.dylib (??? - ???) <63E70DAA-EA33-32A1-ACA9-387F447CCBBE> /usr/lib/system/libsystem_dnssd.dylib
    0x914f9000 - 0x91540ff5  com.apple.opencl (2.0.16 - 2.0.16) <7A21862B-0513-3C8D-847A-58E5810CA356> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x915f0000 - 0x91742fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <6F378B30-BB90-3550-8292-A5129FD9C49C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91743000 - 0x91813ffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <9CD13789-93CE-35C6-8E5C-B38E41E9A73F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9182d000 - 0x9184dff7  com.apple.RemoteViewServices (1.4 - 44.1) <1F831750-1E77-3013-B1A6-0DF528623790> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x91862000 - 0x91865ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x91866000 - 0x91869ffd  libCoreVMClient.dylib (??? - ???) <B8F8916D-F12A-3D95-ABF3-999D57B7D581> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x918a6000 - 0x918abff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <6DCCA207-8F4D-343A-B77D-C4FB905DADC4> /usr/lib/system/libmacho.dylib
    0x918ac000 - 0x918c8ffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x918c9000 - 0x919b9ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9258d000 - 0x92590fff  com.apple.AppleSystemInfo (1.0 - 1) <573589DF-802F-302A-A954-ACCE4174B81C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x925d6000 - 0x925deff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x925e7000 - 0x925e8ff7  libsystem_sandbox.dylib (??? - ???) <EBC6ED6B-7D94-32A9-A718-BB9EDA1732C9> /usr/lib/system/libsystem_sandbox.dylib
    0x925e9000 - 0x92606fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x92607000 - 0x9263efef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x92642000 - 0x92648ffd  com.apple.CommerceCore (1.0 - 17) <595A67CF-3546-35FD-8D2E-2861CB959379> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x92649000 - 0x92686fef  libGLImage.dylib (??? - ???) <5646AA4B-11B7-3B40-B6AC-527F9613E8C8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92687000 - 0x92687fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <B95984A1-6C16-338A-9B60-D4F080924243> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92688000 - 0x926f0ff7  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <FE3304C5-C000-3DA0-9E53-0E4CA074B73B> /usr/lib/libc++.1.dylib
    0x927ae000 - 0x92800ffb  com.apple.CoreMediaIO (216.0 - 3199.8) <63E1CB8C-ADF7-3B9C-8151-DEFA94C2EAA0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x92801000 - 0x92802fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x92803000 - 0x92804ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <DA59E228-076B-39B5-B6EA-52E6FD4EDC53> /usr/lib/system/libremovefile.dylib
    0x92805000 - 0x92805ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92806000 - 0x92857ff9  com.apple.QuickLookFramework (3.2 - 500.16) <CDE61EAA-FAF9-32AD-9FBA-D7BB6ACF3B3B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92bcd000 - 0x92c8dffb  com.apple.ColorSync (4.7.4 - 4.7.4) <61203FBE-54F0-3034-B7EF-25D885D89661> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92c8e000 - 0x92c90ff7  libdyld.dylib (195.6.0 - compatibility 1.0.0) <1F865C73-5803-3B08-988C-65B8D86CB7BE> /usr/lib/system/libdyld.dylib
    0x92c91000 - 0x92c9fff7  libxar-nossl.dylib (??? - ???) <9C927E1E-D9F6-34AE-979F-5D60E7E9211C> /usr/lib/libxar-nossl.dylib
    0x92cd5000 - 0x92cdcff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x92dfb000 - 0x92e43ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92e44000 - 0x92e94ff8  libTIFF.dylib (??? - ???) <4DC2025D-15E7-35CA-B7C5-9F73B26C8B53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92e95000 - 0x92ebbffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <F99A23D7-8CBD-3E94-AC56-9C9CF25C2319> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92ebc000 - 0x92ec4fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <9F3DB59B-9C51-3D2E-8DF0-D4443B8A22A9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92ec5000 - 0x92f3bfff  com.apple.Metadata (10.7.0 - 627.35) <9C265FE6-6706-3E0A-BA82-F81166619BDF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92f3c000 - 0x93158ff7  com.apple.imageKit (2.1.2 - 1.0) <4865C8BE-4EA3-3A7D-A874-3E3D3BEDFB65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93291000 - 0x932eafff  com.apple.HIServices (1.21 - ???) <ACF3C451-C235-32A7-849E-3D0A40E90546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x932eb000 - 0x935f5ff3  com.apple.Foundation (6.7.2 - 833.25) <361418ED-589D-36DE-9668-A88B35937524> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x935f6000 - 0x93680ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <F2583C09-86DB-33CD-A933-F3B8A70CF9A2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93681000 - 0x9374cfff  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <03E608FA-1689-3D85-9A21-31C1922AEC1A> /usr/lib/system/libsystem_c.dylib
    0x9374d000 - 0x93758ffe  com.apple.NetAuth (3.2 - 3.2) <57F7966E-3CFD-3425-B048-709CFDF52476> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x93763000 - 0x9387afe9  com.apple.WebKit (7534.57 - 7534.57.5) <995F3923-3783-35C9-9253-07298C7293E6> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9387b000 - 0x9387bfff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x9387c000 - 0x9387fff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x93880000 - 0x93881ff7  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <600909D9-BD75-386E-8D3E-7CBD29079DF3> /usr/lib/system/libquarantine.dylib
    0x93882000 - 0x93882fff  com.apple.Cocoa (6.6 - ???) <30E6ABEE-B390-3C02-8C76-9C62F19FAA83> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93883000 - 0x93887ff3  libsystem_network.dylib (??? - ???) <6C0CB421-5DDD-3BD4-B3C5-C1DB6037576F> /usr/lib/system/libsystem_network.dylib
    0x93888000 - 0x9389bff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x938b1000 - 0x93b5efff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <5AE5C3B8-D807-356B-80D9-4D0A706A10D1> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93b5f000 - 0x93b75ffe  libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
    0x93bb9000 - 0x93be7ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <5B2FE73A-C5E3-3BCA-B775-4F6437E49CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93c41000 - 0x93c56fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <029E71CE-5D53-3637-A129-B0C4BFC837CF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93c83000 - 0x93ca5ffe  com.apple.framework.familycontrols (3.0 - 300) <E94CE585-F2E6-355C-BD06-4893B8631803> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93ce5000 - 0x93cfcff8  com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x93cfd000 - 0x93da1fff  com.apple.QD (3.40 - ???) <B866D191-AA6C-31C6-96B7-94BE165062F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93da2000 - 0x93e03ffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <5E015BA4-A8D1-33B8-A877-625E9977EFC4> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93ebb000 - 0x93ec9fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x93f88000 - 0x93f8effb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94159000 - 0x9426aff7  libJP2.dylib (??? - ???) <845C74F4-1074-3983-945F-EB669538CAA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9426b000 - 0x9426cfff  com.apple.TrustEvaluationAgent (2.0 - 1) <CE0A7AC9-ACB9-3554-BAAC-1FDEF07E6707> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9426d000 - 0x94661feb  com.apple.VideoToolbox (1.0 - 705.78) <DF7BB3DE-376E-330E-B990-735A893E3F2A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94662000 - 0x94664ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94665000 - 0x94687ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x949b8000 - 0x949ddff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x949de000 - 0x94a3bffb  com.apple.htmlrendering (76 - 1.1.4) <792F1D51-3A88-3430-8A32-F252FAAE0D13> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94d4b000 - 0x94d53ff3  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <D7F6E875-263A-37B5-B403-53F76710538C> /usr/lib/system/liblaunch.dylib
    0x94d54000 - 0x94d82fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <0CB10B1D-3B95-3029-A58D-15C6D2879EA3> /usr/lib/libSystem.B.dylib
    0x94d83000 - 0x94d9bfff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <FD578B2E-21FF-30AC-9087-DDDE3439B1AD> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x94d9c000 - 0x94d9cfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <2112D5A4-7A37-352A-9291-2A6BBA2B34B9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94d9d000 - 0x94da1fff  libGIF.dylib (??? - ???) <A6F1ACAE-7B9B-3B3F-A54A-ED4004EA1D85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94da2000 - 0x94daaff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <97E73059-F645-33F4-BCC5-1FEA367D60D4> /usr/lib/system/libcopyfile.dylib
    0x94dab000 - 0x94dabfff  com.apple.vecLib (3.7 - vecLib 3.7) <656463C6-AD21-38FF-B68C-2A7F7922113E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94dac000 - 0x94ea4ff7  libFontParser.dylib (??? - ???) <EEA7A5AC-5123-3988-A6D7-0FF8664EDD0D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94ea5000 - 0x94ea5ff2  com.apple.CoreServices (53 - 53) <F28F38DC-C5C1-399F-84D7-A28CCC269850> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94ea8000 - 0x94ef7ffb  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <BC8C47E5-54AC-39C1-A039-639888C83454> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x950fa000 - 0x95103ffc  com.apple.DisplayServicesFW (2.5.4 - 323.3) <820C4B45-814A-3101-A1FA-044CA6D2FBC8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95152000 - 0x95156ff7  com.apple.OpenDirectory (10.7 - 146) <CFBA4CCF-65D4-3879-BC6A-8888C13E3345> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9518e000 - 0x9522afef  com.apple.ink.framework (1.4 - 110) <1A3E2916-60C1-3AC1-86BF-202F6567B228> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9522b000 - 0x95423ff7  com.apple.CoreData (104.1 - 358.14) <92830C09-780F-3021-ADC0-2D9BB56D8E7B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9556c000 - 0x95599ff9  com.apple.securityinterface (5.0 - 55022.4) <E275CEA4-B9CE-39F3-B31B-185F98BD3B1A> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x955f0000 - 0x9566bffb  com.apple.ApplicationServices.ATS (317.11.0 - ???) <298A1BDD-B5D6-393B-A10C-3D141A949E5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x956af000 - 0x956cdff7  libsystem_kernel.dylib (1699.31.2 - compatibility 1.0.0) <EE8DD7FD-53FC-3DE0-8622-7CCF062716EC> /usr/lib/system/libsystem_kernel.dylib
    0x956ce000 - 0x9572cfff  com.apple.coreui (1.2.2 - 165.10) <C6B099D6-7F02-3971-99B9-E415308959CF> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95764000 - 0x9578cff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x957d4000 - 0x957e5fff  libbsm.0.dylib (??? - ???) <BB4E736B-E068-376A-B28D-6B2D6A70EE50> /usr/lib/libbsm.0.dylib
    0x957e6000 - 0x95826ff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x958c5000 - 0x958cefff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x958cf000 - 0x958f2fff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x958f3000 - 0x958fdff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <79D55070-BBFF-3D67-AFB9-3668FF8C5F98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x958fe000 - 0x95b72ffb  com.apple.CoreImage (7.98 - 1.0.1) <C77DADCB-C871-3A49-AAA0-0689E4DCFA10> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x95b74000 - 0x95c01ff7  com.apple.CoreText (220.20.0 - ???) <334FBF91-877C-38AC-8143-2458E8E62FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95c02000 - 0x95c0dffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <13FF02F8-7AF6-3E12-B183-9A725B526B50> /usr/lib/libbz2.1.0.dylib
    0x95c0e000 - 0x95c8bffe  com.apple.PDFKit (2.6.3 - 2.6.3) <BE1E6E97-9750-3D48-AE62-1F183F60C4B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95c8c000 - 0x95cceff7  com.apple.CoreMedia (1.0 - 705.78) <C2635524-8F87-3816-8DD0-509E69D1A35D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95e6f000 - 0x95e72ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x95e8d000 - 0x95eb7ff1  com.apple.CoreServicesInternal (113.17 - 113.17) <33B14C4B-B697-3265-86C5-05328EF0F186> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x95f1d000 - 0x95f32ff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <1C8933A9-C7C6-36E9-9D8B-0EF08ACA3315> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9606c000 - 0x96086fff  com.apple.Kerberos (1.0 - 1) <A1ED8518-29DB-3511-83AE-EEAB2C0AB1FD> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96087000 - 0x96094fff  libGL.dylib (??? - ???) <8B034E73-7AF5-3ACC-8A07-DDE8AC165D4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96095000 - 0x96099fff  com.apple.CommonPanels (1.2.5 - 94) <DFA0D001-9890-32FB-B1BD-039DDA8F3E9E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96118000 - 0x9612cfff  com.apple.CFOpenDirectory (10.7 - 146) <982C417B-5A0F-3DD6-AB50-7E8273A80B38> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96e85000 - 0x96ee7ffb  com.apple.datadetectorscore (3.0 - 179.4) <CABD9D84-8911-3C66-BC29-44FE304EC8F7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96ee8000 - 0x9704affb  com.apple.QuartzCore (1.7 - 270.5) <50375E9D-7F2B-3130-B003-4EF792D016B8> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9704b000 - 0x9708effd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x971b2000 - 0x971e1ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x971e2000 - 0x97300fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97301000 - 0x97379ff8  com.apple.CorePDF (3.1 - 3.1) <0C7FE9C2-D743-3FA1-8CAB-48139F1A3B02> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97394000 - 0x9739afff  libGFXShared.dylib (??? - ???) <157F45BD-00DC-3864-9155-54D4303A5756> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9739b000 - 0x973abff7  libCRFSuite.dylib (??? - ???) <B68CDEA4-8D6E-3625-B80F-3489E321E858> /usr/lib/libCRFSuite.dylib
    0x973ac000 - 0x973bafff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <2F918480-12C8-3F22-9B1A-9B2D76F6F4F5> /usr/lib/system/libdispatch.dylib
    0x973bb000 - 0x974cafff  com.apple.DesktopServices (1.6.4 - 1.6.4) <C4E42CF3-9AFB-3C95-AFA9-79F790ED8BB3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x974cb000 - 0x974cbff0  com.apple.ApplicationServices (41 - 41) <45032433-76F6-365A-95CA-641C9427EAA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x974cc000 - 0x97887ffb  com.apple.SceneKit (125.3 - 125.4) <0CE983CF-B345-3A62-8491-28ED0CC401B9> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x97888000 - 0x978c5ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <953B4F4C-283C-3AEF-949A-E149F10AC775> /usr/lib/libcups.2.dylib
    0x97933000 - 0x97997fff  com.apple.framework.IOKit (2.0 - ???) <77A0CEC1-4E9D-3729-B229-A8F46933A1AA> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97998000 - 0x97a6fff3  com.apple.avfoundation (2.0 - 180.40) <D803EA6E-6DA9-3CF4-93DA-B4CB75A5D19E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x97a70000 - 0x97c47fe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97c48000 - 0x97c48fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97c49000 - 0x97d31fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x97d93000 - 0x97deeff3  com.apple.Symbolication (1.3 - 91) <B5A9433A-0915-343A-90FF-5C469D4DC508> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97def000 - 0x98884ff6  com.apple.AppKit (6.7.3 - 1138.47) <73F9D213-2E73-3D5E-A36C-942F5CB44E12> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98920000 - 0x98972ff7  libFontRegistry.dylib (??? - ???) <B5324310-C140-392B-8324-B408AB7E3BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x98973000 - 0x98e4fff6  libBLAS.dylib (??? - ???) <67AF68CD-8E05-3355-92D1-341C2A9A6BCF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x98e50000 - 0x98eddfe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <514C9266-865D-3655-BA59-A8BA4EA80EA1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98ee9000 - 0x98ef4fff  libkxld.dylib (??? - ???) <15081A7C-C06E-397C-B8BB-3A703A6AD07B> /usr/lib/system/libkxld.dylib
    0x98f01000 - 0x98fd7aab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C784297D-1FF6-3D89-9DE6-98C028AF73D2> /usr/lib/libobjc.A.dylib
    0x98fd8000 - 0x990e8fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x9912e000 - 0x99139ffb  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <A1764D2F-EB84-33DC-9ED5-CDA3B468FF3E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9913a000 - 0x99365ffb  com.apple.QuartzComposer (5.0 - 236.7) <1B641D56-D530-3D08-9B65-6CAC28E4C3FF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x99366000 - 0x995ebfe3  com.apple.QuickTime (7.7.1 - 2331) <BAA85ECB-64DB-35DC-852A-A07DE762E700> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x995ec000 - 0x996cfff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <F4D67C02-BD15-3E7D-A3D2-A30AA791F722> /usr/lib/libcrypto.0.9.8.dylib
    0x99712000 - 0x998c6ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x998c7000 - 0x99c0dff3  com.apple.HIToolbox (1.9 - ???) <96AFBCE8-61CC-31A6-8E57-2EC21D7A7851> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99c0e000 - 0x99c10ff9  com.apple.securityhi (4.0 - 1) <36CB6370-E023-3102-A36B-7A3808563063> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x99db0000 - 0x99e47ff3  com.apple.securityfoundation (5.0 - 55116) <8A08978E-0705-393D-8AA8-8F59FC6B3C6B> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x99eb1000 - 0x99eb8ffd  com.apple.NetFS (4.0 - 4.0) <53E2BE37-51A3-322E-BE62-86EBDFB1A071> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99eb9000 - 0x9a1bbfff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6035A1AE-8657-304D-8918-1DBD322C9738> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a1bc000 - 0x9a1d8ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9a1d9000 - 0x9a219ff7  com.apple.NavigationServices (3.7 - 193) <E87ADFC7-25FC-319B-B3A8-1A89F692988A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9a21a000 - 0x9a21afff  com.apple.quartzframework (1.5 - 1.5) <E897CB0C-1CCC-393F-AE36-A182723AFD37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9a21b000 - 0x9a21cff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <9EF47F4C-32F6-3379-A3DD-89183D821B48> /usr/lib/system/libunc.dylib
    0x9a21d000 - 0x9a221ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <9DFB61F2-9B1F-31B2-BF41-099994D74E1F> /usr/lib/system/libcache.dylib
    0x9a222000 - 0x9a258ff7  com.apple.AE (527.7 - 527.7) <31E7FEF2-290C-3686-9E9A-AE58AAC36833> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9a259000 - 0x9a264ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <A6AD144D-19FE-3551-AFB3-FE9DE8199EB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9a265000 - 0x9a268ffb  com.apple.help (1.3.2 - 42) <46BC94D1-14C4-3178-9BFB-85470F1ED805> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9a283000 - 0x9a2f2fff  com.apple.Heimdal (2.2 - 2.0) <181AC1B1-39F5-3578-B247-792B37EFD3CC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9a34d000 - 0x9a39eff9  com.apple.ScalableUserInterface (1.0 - 1) <3E650401-FB58-3704-8A24-E0B2F3914884> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x9a407000 - 0x9a431ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9a432000 - 0x9a778fff  com.apple.MediaToolbox (1.0 - 705.78) <7D76E46A-CF6D-341A-8734-B300F21EBC45> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9a779000 - 0x9a77afff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9a804000 - 0x9a869ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <2AB35EAF-CB90-3456-BFC8-C14B04C4CA9C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a874000 - 0x9a87dff3  com.apple.CommonAuth (2.2 - 2.0) <C3FD6EC2-8EB3-38FB-BBB7-05009CA49024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9a87e000 - 0x9acf3ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x9acf4000 - 0x9afb7fff  com.apple.security (7.0 - 55148.1) <21EFBE4A-0F05-3939-B83F-5454CA6AFADC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9afb8000 - 0x9b00aff3  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <9791341A-8859-39F6-814A-D960922CC56A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9b0f1000 - 0x9b77dff5  com.apple.CoreAUC (6.16.00 - 6.16.00) <D55D5A6C-2C79-321C-A866-CA017DA66F0B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9b77e000 - 0x9b782ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9b783000 - 0x9c1b4fff  com.apple.WebCore (7534.57 - 7534.57.5) <84CBC975-CB65-3886-98D2-DFD6DE1C3D20> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9c1b5000 - 0x9c1b6fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9c1b7000 - 0x9c31afff  com.apple.QTKit (7.7.1 - 2331) <48C9AA24-4BF3-3FB2-92EF-7A4549813CC5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9c31b000 - 0x9c37dff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9c37e000 - 0x9c3a9fff  com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9c3b3000 - 0x9c4dfff9  com.apple.CFNetwork (520.4.3 - 520.4.3) <E9E315D4-CE22-3715-BED2-BB95AD5E10E8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9c4e0000 - 0x9c567fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EBD5A94E-8E1D-3510-9457-EB0EAE2F51EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9c568000 - 0x9ce90c5b  com.apple.CoreGraphics (1.600.0 - ???) <2026CDBD-F6EA-36EF-BD21-574EBA3E0ED5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9ce91000 - 0x9ce9ffff  com.apple.opengl (1.8.0 - 1.8.0) <6CD7C09D-F06F-3002-B86A-E5BD89823B64> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9cea0000 - 0x9cee9ff7  libGLU.dylib (??? - ???) <3E370DE3-3F36-352F-A7A1-CF6C55C44F9B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9cf1c000 - 0x9cf1dffd  libCVMSPluginSupport.dylib (??? - ???) <2D89E97F-8E33-389B-B76C-4508CE3B6778> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9d06b000 - 0x9d12efff  com.apple.CoreServices.OSServices (478.46 - 478.46) <B4D06EFD-D11D-3C81-A394-9076EED5D738> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 12
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 576
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=180.4M resident=68.8M(38%) swapped_out_or_unallocated=111.6M(62%)
    Writable regions: Total=74.7M written=7884K(10%) resident=25.2M(34%) swapped_out=0K(0%) unallocated=49.5M(66%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                    128K
    CoreServices                       1632K
    MALLOC                             48.8M
    MALLOC guard page                    64K
    MALLOC_LARGE (reserved)             688K        reserved VM address space (unallocated)
    Memory tag=240                        4K
    Memory tag=242                       12K
    Stack                              65.0M
    VM_ALLOCATE                        16.1M
    __CI_BITMAP                          80K
    __DATA                             9416K
    __DATA/__OBJC                       232K
    __IMAGE                             528K
    __IMPORT                              8K
    __LINKEDIT                         43.1M
    __OBJC                             2528K
    __OBJC/__DATA                        12K
    __PAGEZERO                            4K
    __RC_CAMERAS                        248K
    __TEXT                            137.3M
    __UNICODE                           544K
    mapped file                        88.9M
    shared memory                       312K
    shared pmap                        7448K
    ===========                      =======
    TOTAL                             422.5M
    TOTAL, minus reserved VM space    421.8M

    Dear X423424X,
    Thank you very much for your help first!
    I installed the newest version of Growl as I was afraid the old version wasn't compatible with OS X 10.7.4. The situation seems better afterward.
    However just half an hour ago it crashes again while I'm using chrome.
    Here is the crash report I find under console /Library/Logs/DiagnosticReports:
    Fri Jun 29 13:34:20 2012
    panic(cpu 3 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f816589b1, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x00000004001be342, CR3: 0x000000002b994038, CR4: 0x00000000001606e0
    RAX: 0xffffff7f81658a84, RBX: 0x0000000000000077, RCX: 0x00000004001be33a, RDX: 0x00000000009e65d7
    RSP: 0xffffff8104d539b0, RBP: 0xffffff8104d539c0, RSI: 0xffffff8018304200, RDI: 0xffffff801b343000
    R8:  0x0000000000000075, R9:  0xffffff7f816b2380, R10: 0xffffff8104d5392c, R11: 0xffffff8104d53930
    R12: 0xffffff8017650888, R13: 0xffffff801b343000, R14: 0xffffff80d159b000, R15: 0xffffff801b343000
    RFL: 0x0000000000010282, RIP: 0xffffff7f816589b1, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x00000004001be342, Error code: 0x0000000000000002, Faulting CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8104d53660 : 0xffffff8000220792
    0xffffff8104d536e0 : 0xffffff80002c4794
    0xffffff8104d53890 : 0xffffff80002da55d
    0xffffff8104d538b0 : 0xffffff7f816589b1
    0xffffff8104d539c0 : 0xffffff7f8165cf7d
    0xffffff8104d53b00 : 0xffffff7f81659ed4
    0xffffff8104d53b60 : 0xffffff800065593e
    0xffffff8104d53b80 : 0xffffff800065621a
    0xffffff8104d53be0 : 0xffffff80006569bb
    0xffffff8104d53d20 : 0xffffff80002a3f08
    0xffffff8104d53e20 : 0xffffff8000223096
    0xffffff8104d53e50 : 0xffffff80002148a9
    0xffffff8104d53eb0 : 0xffffff800021bbd8
    0xffffff8104d53f10 : 0xffffff80002af140
    0xffffff8104d53fb0 : 0xffffff80002dab5e
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelHD4000Graphics(7.2.8)[6B02D782-A79F-399C-81FD-353EBF F2AB81]@0xffffff7f81650000->0xffffff7f816b6fff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[C0404427-3360-36B4-B483-3C9F0C54A3CA]@0xffffff 7f80829000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[A004D087-8FB7-3630-AD65-18DC2A9B2EEA]@0xff ffff7f80c7e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[2E0BAC50-C4B6-3353-BADA-0168305F3D06]@0 xffffff7f80c45000
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    11E2705
    Kernel version:
    Darwin Kernel Version 11.4.2: Wed May 30 20:13:51 PDT 2012; root:xnu-1699.31.2~1/RELEASE_X86_64
    Kernel UUID: 25EC645A-8793-3201-8D0A-23EA280EC755
    System model name: MacBookAir5,2 (Mac-2E6FAB96566FE58C)
    System uptime in nanoseconds: 60665669798275
    last loaded kext at 6190071636346: com.apple.driver.AppleUSBCDC          4.1.19 (addr 0xffffff7f8079c000, size 16384)
    last unloaded kext at 10992295024738: com.apple.driver.AppleUSBEthernetHost          2.3.0 (addr 0xffffff7f80797000, size 20480)
    loaded kexts:
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.ApplePlatformEnabler          2.0.5d3
    com.apple.driver.X86PlatformShim          5.0.0d8
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleHDA          2.2.3f13
    com.apple.driver.AppleMikeyDriver          2.2.3f13
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.7f2
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.32
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHD4000Graphics          7.2.8
    com.apple.driver.AppleIntelFramebufferCapri          7.2.8
    com.apple.driver.AppleUSBTCButtons          227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.7f2
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.driver.AppleUSBCardReader          3.0.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.0.4
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleUSBHub          5.0.7
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AirPort.Brcm4331          560.7.21
    com.apple.driver.AppleAHCIPort          2.3.0
    com.apple.driver.AppleUSBEHCI          5.0.7
    com.apple.driver.AppleUSBXHCI          1.0.7
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.3
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.2.3f13
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.2.3f13
    com.apple.iokit.IOHDAFamily          2.2.3f13
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.1.32
    com.apple.driver.X86PlatformPlugin          5.1.1d6
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.7f2
    com.apple.iokit.IOBluetoothFamily          4.0.7f2
    com.apple.driver.AppleUSBMultitouch          230.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.4
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.4
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.3
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.driver.AppleUSBMergeNub          5.0.7
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.0.7
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.5
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4

  • Application crashes with timesten database  over  OCI connection

    Application crashes with timesten database over OCI connection
    #0 0x405e09f8 in kpudsany () from /home/oracle/TimesTen/ratingtt1121/ttoracle_home/instantclient_11_1/libclntsh.so.10.1
    #1 0x405728d0 in OCIDescribeAny () from /home/oracle/TimesTen/ratingtt1121/ttoracle_home/instantclient_11_1/libclntsh.so.10.1
    #2 0x43748a5a in GDBociDriver::StoredProcArgumentList () from /home/omni/library/libgfr_dboci.so
    #3 0x4374e865 in GDBociDriver::StoredProcCallFormat () from /home/omni/library/libgfr_dboci.so
    #4 0x4376ec9a in GDBociDriver::ExecuteStmtBind () from /home/omni/library/libgfr_dboci.so
    #5 0x4376fc69 in GDBociDriver::Execute () from /home/omni/library/libgfr_dboci.so
    #6 0x436ba240 in GDBstatement::Execute () from /home/omni/library/libgfr_dblayer.so
    #7 0x43736106 in GDBociDriver::SetModule () from /home/omni/library/libgfr_dboci.so
    #8 0x4366cb22 in GDBconnectionPool::GetConnection () from /home/omni/library/libgfr_dblayer.so
    #9 0x4367a9db in GDBdriver::LoginConnectionGet () from /home/omni/library/libgfr_dblayer.so
    #10 0x4373dbaa in GDBociDriver::Login () from /home/omni/library/libgfr_dboci.so
    #11 0x4377380f in CreateOCIDriver () from /home/omni/library/libgfr_dboci.so
    #12 0x4367bb2a in GDBdriverLoader::CreateDriver () from /home/omni/library/libgfr_dblayer.so
    #13 0x436d423d in IGDBdriverMgr::GetDriverAndLogin () from /home/omni/library/libgfr_dblayer.so
    #14 0x436d4da1 in IGDBdriverMgr::GetDriver () from /home/omni/library/libgfr_dblayer.so
    #15 0x436a5071 in GDBserverDef::InitialLogin () from /home/omni/library/libgfr_dblayer.so
    #16 0x433247cc in CcapAdbAccess::Init (this=0x9e85a88) at CcapAdbAccess.C:161
    #17 0x43331c44 in CcapMain::Run (this=0x434eeb80, sdpId=2, processName=0x9dae29c "URE61_O2") at CcapMain.C:132
    #18 0x080947d1 in ccap_thread (arg=0x0) at main.C:1588
    #19 0x080e7bd2 in ThreadManager::WrapperRoutine (ipArg=0x9e84fc0) at ThreadManager.C:176
    #20 0x0035f44a in start_thread () from /lib/libpthread.so.0
    Timesten has some limitations and it says:
    Describing objects with OCIDescribeAny() is supported only by name. Describing PL/SQL objects is not supported.
    home/omni/library/libgfr_dblayer.so
    Cloud you please tell us whit might be the reason for this

    Are you able to provide exact details of the OCIDescribeAny call being made by the application (including parameter values)?
    Chris

Maybe you are looking for

  • Apple TV refuses 802.11n

    Howdy folks... Bad week for Apple products for me. I went through two iPhones and now my Apple TV has decided to downshift! In the middle of watching a movie, the screen went black and came back with "Your iTunes Library is unavailable, make sure *co

  • Canon IR Adv 5030 on 10.6 Client

    Hi Guys, Have come across an issue with Canon IR Adv 5030 photocopier on 10.6 clients deployed via WGM from 10.6 Server. Get Illegal Ticket error when trying to print. Prints ok if add printer/driver manually on 10.6 client. But if via 10.6 Server to

  • A series of error messages, starting with syncing playlists.

    I have been trying to sync new playlists to my ipod without much luck. I go to the music tab of the ipod screen on my computer, and check the playlists that i want to sync. I have tried this several times now, and I hit the apply button in the corner

  • Error message (-69) - tried restoring etc.... no good...

    i connected my ipod one day to add a few albums and an error message came up saying "Attempting to copy to the disk 'Ipod name' failed. An unknown error occurred (-69)". I restored my Ipod but it did it again after uploading about 3000 songs! I again

  • Oracle 11g Express for Ubuntu Linux

    Just like Oracle provided express edition for linux for 10g, will there be an easy to install express edition of 11g for linux? I mean via apt-get or debs or synaptic. Of course, synaptic being the easiest I have EVER seen oracle install on linux. I