Global Error Message Trapping

I would like to be able to trap an unexpected error at the application level and redirect the user to another page.
We are performing SQL Injection testing and are security analysts are able to inject text, for example in the source SQL for a region, that causes an unexpected database error. I would like to trap any ORA type error message and redirect the user. I have not been able to determine if there is a field/object/etc where the message is stored. If I knew that, I was hoping ot build an application process that could check for an error and if present, peform the redirect.
Any help would be appreciated.

Roel -
We found another article doing something similar to your solution but more simplistic. This is working for me. I modified the Javascript to look only for 'ORA-' messages and redirect to another page.
http://www.apex-blog.com/oracle-apex/capturing-custom-error-messages-from-database-triggers-21.html
This solution does not seem to work in trapping errors for the interactive report pages. Is there a different template used for these pages?
Thanks again.

Similar Messages

  • Global error message appearing twice

    I'm using the techniques from Steve Muench's toy store demo for saving a global error as an attribute error, so that it can be presented to the user next to the attribute. I have an employee form, and when the user enters a primary key that is already in use, it should flag that as an attribute error next to the employee id field. However, I'm getting the primary key error as a global error, and it's printing twice. Any ideas would be grealy appreciated!
    Thanks,
    David

    I corrected the problem by doing the following:
    1. created a commit action in my ui model and renamed it to save.
    2. put a UniquePkValidationBean on my primary key so that the overridden setAttributeInternal method would throw a JboException
    Thanks,
    David

  • Trap error messages in Forms

    Hi guys!
    I am using Oracle forms 10g. the validation unit of my form is set to form level.
    I want to validate data when I commit the form. If they are errors in several text items I'd like to trap all the errors and their origin in a data structure like RecordGroup or PL/SQL tables. Can somebody tell me how I can identify the text field(s) that produce the error. Is there any built-in I can use to identify that for example : textfeld1 is malformed , textfield2 invalid number .....

    I tried the ON-ERROR trigger and I also used WHEN-VALIDATE-ITEM but Forms still stops at the first exception it found. I cannot still trap the second one. I amdevelopping an application for a company and this is a client requirement. They want a message center. A display where they can see ALL the errors after committing the form. like:
    -- List of error messages---
    * Legal characters are 0-9-+E
    * Date must be entered in format like DD-MM-YYY
    * Not a valid month

  • When I turn on my computer I get the following error messages: Insecure Startup Item disabled. "Library/StartupItems/HP IO" has not been started because it does not have the proper security settings. Also for HP Trap Monitor.  How do I fix these?

    When I turn on my computer I get the following error messages:
    Insecure Startup Item disabled. "Library/StartupItems/HP IO" has not been started because it does not have the proper security settings.
    Insecure Startup Item disabled. "Library/StartupItems/HP Trap Monitor" has not been started because it does not have the proper security settings.
    How do I fix these?

    Library/LaunchAgents: com.promethean.activmgr.plist
    Library/LaunchDaemons: com.microsoft.office.licensing.helper.plist, com.promethean.activhardwareservice.plist
    Library/StartupItems: HP IO folder - HP IO, Resources, StartupParameters.plist
    HP Trap Monitor folder - HP Trap Monitor, Resources, StartupParameters.plist
    These are the system extension errors
    "/System/Library/Extensions/AppleGraphicsControl.kext"
    "/System/Library/Extensions/AppleGraphicsControl.kext/Contents/PlugIns/AppleMux Control.kext"
    "/System/Library/Extensions/AppleGraphicsControl.kext/Contents/PlugIns/ApplePoli cyControl.kext"
    "/System/Library/Extensions/BJUSBLoad.kext"
    "/System/Library/Extensions/EPSONUSBPrintClass.kext"
    I do not know what any of these do or how to fix them.  I have run multiple disk permission repairs & disk repairs.  The startup & system extension errors continue to come up.
    I even followed the directions to move HP IO & HP Trap Monitor to the trash, run disk permissions repair, put back in folder, then restart - and still am getting error message.

  • When i open the MS word, it is showing  error message " THe global template, Normal, is already open as an add-in program

    When i open the MS word, it is showing  error message " THe global template, Normal, is already open as an add-in program. How to clear this error?

    Post on the MS Mac forums as it's their software you have a question about: http://answers.microsoft.com/en-us/mac

  • Trap FM Exception Error MEssage

    Can anyone tell me how I can trap an error message
    which is triggered in a fm I am calling.
    e.g. 
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            SRC_SPOOLID                    = spoolno
            NO_DIALOG                      = ' '
          DST_DEVICE                     =
          PDF_DESTINATION                =
          IMPORTING
            PDF_BYTECOUNT                  = numbytes
            PDF_SPOOLID                    = pdfspoolid
          LIST_PAGECOUNT                 =
            BTC_JOBNAME                    = jobname
            BTC_JOBCOUNT                   = jobcount
          TABLES
            PDF                            = pdf
          EXCEPTIONS
            ERR_NO_ABAP_SPOOLJOB           = 1
            ERR_NO_SPOOLJOB                = 2
            ERR_NO_PERMISSION              = 3
            ERR_CONV_NOT_POSSIBLE          = 4
            ERR_BAD_DESTDEVICE             = 5
            USER_CANCELLED                 = 6
            ERR_SPOOLERROR                 = 7
            ERR_TEMSEERROR                 = 8
            ERR_BTCJOB_OPEN_FAILED         = 9
            ERR_BTCJOB_SUBMIT_FAILED       = 10
            ERR_BTCJOB_CLOSE_FAILED        = 11.
      case sy-subrc.
      when 0.
        WRITE: / 'Error 0'(006)          COLOR COL_POSITIVE.
      when 1.
        WRITE: / 'Error 1'(002)          COLOR COL_negative.
      when 2.
        WRITE: / 'Error 2'(003)          COLOR COL_negative.
    The error is occuring in the actual FM itself. My program
    does not reach the case sy-subrc statement above. Can
    this be forced in anyway???
    Cheers

    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
      EXPORTING
        src_spoolid                    =
    *   NO_DIALOG                      =
    *   DST_DEVICE                     =
    *   PDF_DESTINATION                =
    * IMPORTING
    *   PDF_BYTECOUNT                  =
    *   PDF_SPOOLID                    =
    *   LIST_PAGECOUNT                 =
    *   BTC_JOBNAME                    =
    *   BTC_JOBCOUNT                   =
    * TABLES
    *   PDF                            =
    * EXCEPTIONS
    *   ERR_NO_ABAP_SPOOLJOB           = 1
    *   ERR_NO_SPOOLJOB                = 2
    *   ERR_NO_PERMISSION              = 3
    *   ERR_CONV_NOT_POSSIBLE          = 4
    *   ERR_BAD_DESTDEVICE             = 5
    *   USER_CANCELLED                 = 6
    *   ERR_SPOOLERROR                 = 7
    *   ERR_TEMSEERROR                 = 8
    *   ERR_BTCJOB_OPEN_FAILED         = 9
    *   ERR_BTCJOB_SUBMIT_FAILED       = 10
    *   ERR_BTCJOB_CLOSE_FAILED        = 11
    *   OTHERS                         = 12
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    <b>CALL FUNCTION 'TB_MESSAGE_BUILD_TEXT'
           EXPORTING
                LANGU = SY-LANGU
                MSGID = P_SY_MSGID
                MSGNO = P_SY_MSGNO
                MSGV1 = P_SY_MSGV1
                MSGV2 = P_SY_MSGV2
                MSGV3 = P_SY_MSGV3
                MSGV4 = P_SY_MSGV4
           IMPORTING
                TEXT  = P_L_ERR_MSG.</b>
    ENDIF.

  • Trapping and creating a nice error message for users

    i wanted to find out how I to create a coldfusion code similar to my asp code. i'm trying to learn coldfusion.
    This code traps the error and emails it to me, while showing the user a "friendly message"
    <!--#include virtual="Errorpage.asp"-->
    on error resume next
    if Err.number <> 0 then
      TrapError Err.description
    ON ERROR goto 0
    End If
    processerrors
    the error page sends me the message and contains a nice error message
    thanks

    There's an awful ot of good info there if one was to look for it by googling "coldfusion error handling".
    However the short version is:
    Site-wide error handler
    http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf3638e6-7ffc .html#WSc3ff6d0ea77859461172e0811cbf3638e6-7ffb
    onerror:
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d 4a.html
    cferror:
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d 29.html
    Handling Errors:
    http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24 -7fc4.html
    Specifcally try/catch:
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7e c6.html
    Adam

  • Trapping exceptions/error messages on form based on procedure

    I am trying to display meaningful error messages when various exceptions arise. I have created a form based on a procedure and the procedure works and returns an exception where I want it.
    I have been trying to use the PL/SQL Button event handler to return an error message to the user, but have not succeeded. I have tried:
    doSubmit;
    exception
    when others then
    p_session.set_value(
    p_block_name => 'DEFAULT',
    p_attribute_name => '_STATUS',
    p_value => 'my error message';
    (I have run this code both with a return at the end and not.)
    This runs, but this return a page that says:
    Error: WWV-0000.
    (It does not display 'my error message'.)
    I have also tried, from the Portal FAQs:
    doSubmit;
    exception
    when others then
    wwa_app_module.set_target('myschema.MY_ERRORS.SHOW?p_arg_names=p_errcode&p_arg_values=-1',
    'GO');
    where my_errors is a dynamic page that displays an error message when you pass it a value, in this case, -1.
    I get the following error message from this code:
    PLS-00201: identifier 'WWA_APP_MODULE.SET_TARGET' must be declared
    I did find some discussions on problems with exceptions when you have a form based on a procedure, but these were from 2001. Any help with this or directions to documentation would be greatly appreciated.

    I worked out one answer: the code provided by Oracle for the second example omitted the portal schema qualifier on the wwa_app_module. It should be (for 10g release 2, at least)
    PORTAL.wwa_app_module.set_target('myschema.MY_ERRORS.SHOW?p_arg_names=p_errcode&p_arg_values=-1',
    ^^^^^^^^^^
    'GO');
    This worked, and returned the custom error message.
    I still can't figure out why the p_session.set_value returns an error message that's just WWV-0000, but I would like to. Any help, even just what page in what document to look at would be appreciated.

  • Power Policy Mananger unable to set global policy - error message

    As my laptop hibernates after 30 minutes being unattended I would like to adjust the power settings. However I get a message saying "Power Policy Mananger unable to set global policy" - access is denied. Any ideas how I overcome this ?

    hi found this on a forum hope it helps
    I had a situation on machine where the administrator could not change
    display settings, e.g., monitor blanking timeout period. After making
    any changes and trying to save them a "Power Policy Manager unable to
    set global policy" message box reported "Access is Denied".
    I eventually solved this by exporting
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion
    \ControlsFolder\PowerCfg\GlobalPowerPolicy
    from a working machine, and importing it into the problem machine.
    If that fails log on to the computer by using an account that has Administrator privileges, or make a new user and give them administrator privileges and try again with the new user account
    Message was edited by: bigmac

  • After installing yosemite its showing my safari is open and displaying a long error message. so now i cant get onto the internet!!!! Please help

    So I downloaded the new yosemite software onto my macbook pro 13 inch and every time I try to get onto the safari page it says
    Safari quit unexpectedly and gives an option to reopen
    If I click reopen the same error message pops up
    Then if I click the comments it's comes up with
    Process:               Safari [351]
    Path:                  /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:            com.apple.Safari
    Version:               8.0 (10600.1.25)
    Build Info:            WebBrowser-7600001025000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Safari [351]
    User ID:               501
    Date/Time:             2014-10-23 09:14:03.098 +0100
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11
    Anonymous UUID:        218B1CA4-7890-1373-B140-9116AC72C05E
    Time Awake Since Boot: 130 seconds
    Crashed Thread:        32
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
        __TEXT                 000000010d85c000-000000010d85d000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib        0x00007fff8e91f52e mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8e91e69f mach_msg + 55
    2   com.apple.CoreFoundation      0x00007fff8d977b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation      0x00007fff8d976fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation      0x00007fff8d976838 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff93d3243f RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff93d321ba ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff93d31ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit              0x00007fff931b7821 _DPSNextEvent + 964
    9   com.apple.AppKit              0x00007fff931b6fd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.Safari.framework    0x00007fff92628f20 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    11  com.apple.AppKit              0x00007fff934bbd27 -[NSApplication _realDoModalLoop:peek:] + 666
    12  com.apple.AppKit              0x00007fff934ba2d6 -[NSApplication runModalForWindow:] + 119
    13  com.apple.AppKit              0x00007fff934b9ea3 -[NSAlert runModal] + 144
    14  com.apple.AppKit              0x00007fff931bc7ad __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1037
    15  com.apple.AppKit              0x00007fff931bc35e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    16  com.apple.AppKit              0x00007fff931bc2fd -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    17  com.apple.AppKit              0x00007fff931bbfea -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    18  com.apple.AppKit              0x00007fff931bbdb9 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    19  com.apple.AppKit              0x00007fff931bb805 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    20  com.apple.Foundation          0x00007fff9604c458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    21  com.apple.Foundation          0x00007fff9604c2c9 _NSAppleEventManagerGenericHandler + 102
    22  com.apple.AE                  0x00007fff8872699c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    23  com.apple.AE                  0x00007fff88726719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    24  com.apple.AE                  0x00007fff88726623 aeProcessAppleEvent + 295
    25  com.apple.HIToolbox           0x00007fff93d3f37e AEProcessAppleEvent + 56
    26  com.apple.AppKit              0x00007fff931b7ec6 _DPSNextEvent + 2665
    27  com.apple.AppKit              0x00007fff931b6fd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    28  com.apple.Safari.framework    0x00007fff92628f20 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    29  com.apple.AppKit              0x00007fff931aaf73 -[NSApplication run] + 594
    30  com.apple.AppKit              0x00007fff93196424 NSApplicationMain + 1832
    31  libdyld.dylib                 0x00007fff8bed95c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_platform.dylib      0x00007fff94c66f2d _platform_bzero$VARIANT$Ivybridge + 77
    1   libsystem_malloc.dylib        0x00007fff9600f79a szone_malloc_should_clear + 2439
    2   libsystem_malloc.dylib        0x00007fff96010acb malloc_zone_calloc + 78
    3   libsystem_malloc.dylib        0x00007fff96016231 calloc + 49
    4   libobjc.A.dylib               0x00007fff8a772719 class_createInstance + 133
    5   libdispatch.dylib             0x00007fff883db921 _os_object_alloc_realized + 38
    6   libdispatch.dylib             0x00007fff883dc6d8 dispatch_mach_msg_create + 78
    7   libdispatch.dylib             0x00007fff883eec19 _dispatch_mach_msg_recv + 264
    8   libdispatch.dylib             0x00007fff883deccb _dispatch_mgr_invoke + 49
    9   libdispatch.dylib             0x00007fff883dea6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-qos
    0   libsystem_kernel.dylib        0x00007fff8e91f582 semaphore_timedwait_trap + 10
    1   libdispatch.dylib             0x00007fff883e2c0f _dispatch_semaphore_wait_slow + 143
    2   com.apple.CoreDuet            0x00007fff948496c0 -[CDAttribute historyOfValue:forWindow:filter:maximumElements:error:] + 529
    3   com.apple.Safari.framework    0x00007fff92b9f02b __57-[WBSParsecSearchClient updateRecentlyUsedAppIdentifiers]_block_invoke + 278
    4   libdispatch.dylib             0x00007fff883e0323 _dispatch_call_block_and_release + 12
    5   libdispatch.dylib             0x00007fff883dbc13 _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00007fff883de88f _dispatch_root_queue_drain + 935
    7   libdispatch.dylib             0x00007fff883ecfe4 _dispatch_worker_thread3 + 91
    8   libsystem_pthread.dylib       0x00007fff895376cb _pthread_wqthread + 729
    9   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 7:: WebCore: IconDatabase
    0   libsystem_kernel.dylib        0x00007fff8e924132 __psynch_cvwait + 10
    1   com.apple.WebCore             0x00007fff8acf3ebb WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore             0x00007fff8acf1009 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore      0x00007fff94f40a9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff895372fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff89537279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff895354b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib        0x00007fff8e91f52e mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8e91e69f mach_msg + 55
    2   com.apple.QuartzCore          0x00007fff88250d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore          0x00007fff88250c96 thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff895372fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff89537279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff895354b1 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib        0x00007fff8e91f52e mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8e91e69f mach_msg + 55
    2   com.apple.CoreFoundation      0x00007fff8d977b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation      0x00007fff8d976fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation      0x00007fff8d976838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff87a44e90 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation          0x00007fff96092b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff895372fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff89537279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff895354b1 thread_start + 13
    Thread 12:: Safari: WBSParsecSearchClient location
    0   libsystem_kernel.dylib        0x00007fff8e91f52e mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8e91e69f mach_msg + 55
    2   com.apple.CoreFoundation      0x00007fff8d977b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation      0x00007fff8d976fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation      0x00007fff8d976838 CFRunLoopRunSpecific + 296
    5   com.apple.Safari.framework    0x00007fff92b9fd3e -[WBSParsecSearchClient _locationThread] + 43
    6   com.apple.Foundation          0x00007fff96092b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff895372fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff89537279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff895354b1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 29:
    0   libsystem_kernel.dylib        0x00007fff8e924946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff895354a1 start_wqthread + 13
    Thread 30:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x00007fff8e9243f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff895372fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff89537279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff895354b1 thread_start + 13
    Thread 31:: Safari: HistoryTextCache caching
    0   libsystem_kernel.dylib        0x00007fff8e9255d6 pread + 10
    1   com.apple.SearchKit           0x00007fff8d2257b6 StoreStreamReadPastEndOfBuffer + 69
    2   com.apple.SearchKit           0x00007fff8d2256f8 StoreStreamReadBytes + 52
    3   com.apple.SearchKit           0x00007fff8d2256b1 StoreStreamReadUInt32 + 19
    4   com.apple.SearchKit           0x00007fff8d226f4d IAInputBlock::ReadUInt32() + 21
    5   com.apple.SearchKit           0x00007fff8d229275 ReadPage(unsigned int, IAStorage*, IAOrderedStorable*) + 61
    6   com.apple.SearchKit           0x00007fff8d229035 BTree::Open(IAStorage*, unsigned int, bool, bool) + 173
    7   com.apple.SearchKit           0x00007fff8d228619 TermIndex::Open() + 345
    8   com.apple.SearchKit           0x00007fff8d228467 InvertedIndex::Open() + 29
    9   com.apple.SearchKit           0x00007fff8d2261d6 TIAIndex::Open(IAStorage*, __CFString const*, unsigned char) + 76
    10  com.apple.SearchKit           0x00007fff8d225f80 IAIndexOpen + 108
    11  com.apple.SearchKit           0x00007fff8d224788 SKIndexOpen(void const*, __CFString const*, __CFString const*, unsigned char) + 844
    12  com.apple.SearchKit           0x00007fff8d2243fc SKIndexOpenWithURLAndLocale + 86
    13  com.apple.Safari.framework    0x00007fff927fadcb -[HistoryTextCache(FileInternal) _initializeSearchIndexCreatingIfNecessary:] + 251
    14  com.apple.Safari.framework    0x00007fff927fafe7 -[HistoryTextCache(FileInternal) _removeCachedPageTextForURLStringWithoutFlushing:] + 68
    15  com.apple.Safari.framework    0x00007fff927fa910 -[HistoryTextCache(FileInternal) _runCachingThread] + 649
    16  com.apple.Foundation          0x00007fff96092b7a __NSThread__main__ + 1345
    17  libsystem_pthread.dylib       0x00007fff895372fc _pthread_body + 131
    18  libsystem_pthread.dylib       0x00007fff89537279 _pthread_start + 176
    19  libsystem_pthread.dylib       0x00007fff895354b1 thread_start + 13
    Thread 32 Crashed:
    0   libsystem_pthread.dylib       0x00007fff89535695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib             0x00007fff88f99b78 vfprintf_l + 28
    2   libsystem_c.dylib             0x00007fff88f92620 fprintf + 186
    3   ???                           0x00000001543585dc 0 + 5707761116
    Thread 32 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff772041d8  rcx: 0x00007fff772041f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff772041f0  rsi: 0x00007fff89535b14  rbp: 0x0000000154354e30  rsp: 0x0000000154354db0
       r8: 0x000000014f2df000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff772036b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff89535695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:     3
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10d85c000 -        0x10d85cfff  com.apple.Safari (8.0 - 10600.1.25) <CCB419A4-D7C3-3F1C-B293-35543A15602C> /Applications/Safari.app/Contents/MacOS/Safari
           0x1522a2000 -        0x1522a2ff5 +cl_kernels (???) <D1E9D929-6134-4749-B405-C44BFC3CBF42> cl_kernels
           0x1522a7000 -        0x1522a7fef +cl_kernels (???) <48371977-D73C-4A0E-8E5A-14815200FBC6> cl_kernels
           0x152f1d000 -        0x153003fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff6c667000 -     0x7fff6c69d837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff86e28000 -     0x7fff86e42ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8778c000 -     0x7fff878d0ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff878d1000 -     0x7fff87962ff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff87963000 -     0x7fff879a3ff7  com.apple.CloudDocs (1.0 - 280.1) <21D7E10A-99EF-34BE-82D7-29A6F1761DE5> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff879a4000 -     0x7fff87ba7ff3  com.apple.CFNetwork (720.0.9 - 720.0.9) <78EE1B88-394F-3BB8-93A6-E068990559EC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff88229000 -     0x7fff883d9ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff883da000 -     0x7fff88404ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff88405000 -     0x7fff88408fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88409000 -     0x7fff88424ff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff88427000 -     0x7fff8870effb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8870f000 -     0x7fff88718ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff88719000 -     0x7fff88778ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff888e3000 -     0x7fff888e5ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff888e6000 -     0x7fff88952fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff88953000 -     0x7fff889e1ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff889e2000 -     0x7fff889edff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff889ee000 -     0x7fff88a7ffff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff88a80000 -     0x7fff88accfff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff88acd000 -     0x7fff88b0ffff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff88b74000 -     0x7fff88bc2fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff88bc3000 -     0x7fff88c69fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff88c6a000 -     0x7fff88c77ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff88c78000 -     0x7fff88c87fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff88c9d000 -     0x7fff88ca8ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
        0x7fff88ca9000 -     0x7fff88cfaff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff88cfb000 -     0x7fff88d2bffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff88d2c000 -     0x7fff88d2dff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff88d2e000 -     0x7fff88d36fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff88d37000 -     0x7fff88f1cff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff88f1d000 -     0x7fff88f54ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff88f55000 -     0x7fff88fe1fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff89011000 -     0x7fff89019ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff89024000 -     0x7fff8908bff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8908c000 -     0x7fff89096ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff89097000 -     0x7fff890e3ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff890e4000 -     0x7fff890e8ff7  com.apple.LoginUICore (3.0 - 3.0) <86C742AF-8F8A-3AD6-AFD3-DEC66815B5C0> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff890e9000 -     0x7fff891bfff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff894e7000 -     0x7fff89517ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff89525000 -     0x7fff89533fff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
        0x7fff89534000 -     0x7fff8953dfff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff89585000 -     0x7fff8958cff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8958d000 -     0x7fff89de4ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff89e0a000 -     0x7fff89e13ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89e14000 -     0x7fff89e19ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff89e1a000 -     0x7fff8a05aff7  com.apple.AddressBook.framework (9.0 - 1498) <EFCD7F23-4654-3B3F-997B-88054D29D442> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8a05b000 -     0x7fff8a084ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8a085000 -     0x7fff8a0f9fff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a0fa000 -     0x7fff8a13bfff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8a13c000 -     0x7fff8a13cff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8a13d000 -     0x7fff8a22ffff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8a310000 -     0x7fff8a311fff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff8a597000 -     0x7fff8a619fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8a61a000 -     0x7fff8a647fff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8a648000 -     0x7fff8a6c5fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8a745000 -     0x7fff8a76bff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8a76c000 -     0x7fff8a951267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8a952000 -     0x7fff8a954ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8a96f000 -     0x7fff8a976fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8a977000 -     0x7fff8aa6aff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8aa6b000 -     0x7fff8aa78fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8aa79000 -     0x7fff8aa7afff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8aa7b000 -     0x7fff8aa85ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8aa86000 -     0x7fff8aa88ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8aa89000 -     0x7fff8aaf7ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8ab1d000 -     0x7fff8abdcfff  com.apple.backup.framework (1.6 - 1.6) <5C38C168-5E9B-335D-9570-91AF8604BB10> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8abe0000 -     0x7fff8abf0ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8aced000 -     0x7fff8bc91ffb  com.apple.WebCore (10600 - 10600.1.25) <EE07107A-A63D-3077-B863-C82C1E80B56D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8bc92000 -     0x7fff8bcc3fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
        0x7fff8bcc4000 -     0x7fff8bceffff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8bcf0000 -     0x7fff8bdcdff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8bdce000 -     0x7fff8bdd0ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8be37000 -     0x7fff8be39fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8be3a000 -     0x7fff8beaeff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8beaf000 -     0x7fff8beb0fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8beb1000 -     0x7fff8bed5ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8bed6000 -     0x7fff8bed9ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff8beda000 -     0x7fff8c045ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c046000 -     0x7fff8c046fff  com.apple.WebKit2 (10600 - 10600.1.25) <32C26838-0090-388F-B5E3-DFB597B9B37B> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8c047000 -     0x7fff8c04afff  libScreenReader.dylib (390.2) <96ACAA49-21B6-3D10-ADF8-FF6C8F22FD9F> /usr/lib/libScreenReader.dylib
        0x7fff8c056000 -     0x7fff8c081fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8c082000 -     0x7fff8c082fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c08a000 -     0x7fff8c0a3fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8c0ff000 -     0x7fff8c106fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8c13a000 -     0x7fff8c252ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8c253000 -     0x7fff8c2f1fff  com.apple.Metadata (10.7.0 - 916) <DA8A1D18-19FE-37B3-BE12-85C5B0A00736> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8c2f2000 -     0x7fff8c312fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8c414000 -     0x7fff8c495ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8c606000 -     0x7fff8c61dff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8c61e000 -     0x7fff8c624fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8c625000 -     0x7fff8c6e0ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8c6e1000 -     0x7fff8c6e9ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8c6ea000 -     0x7fff8c6eafff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c6eb000 -     0x7fff8cbd7fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8cbd8000 -     0x7fff8cc21ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8cc22000 -     0x7fff8cc2dfff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8cc2e000 -     0x7fff8cdbcfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8cdbd000 -     0x7fff8cddaffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8cdf9000 -     0x7fff8d0a5fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8d0a6000 -     0x7fff8d0d6fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8d0d7000 -     0x7fff8d0e5fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1498) <0BD29957-C30F-376A-B28F-1510F80A9174> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8d0e6000 -     0x7fff8d104ff7  com.apple.addressbook.vCard (9.0 - 1498) <45C2138B-EA52-3576-8C5C-46637E648DF2> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff8d105000 -     0x7fff8d112fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8d113000 -     0x7fff8d222ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8d223000 -     0x7fff8d292fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d2a0000 -     0x7fff8d2b1fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8d34a000 -     0x7fff8d355ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8d356000 -     0x7fff8d39cff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8d39d000 -     0x7fff8d39efff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8d459000 -     0x7fff8d4b1ff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8d4b2000 -     0x7fff8d4c4ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8d4c5000 -     0x7fff8d779ff7  com.apple.WebKit (10600 - 10600.1.25) <84496A10-D8E5-3E8C-93B1-98D5AE790922> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8d793000 -     0x7fff8d7c1fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d7c2000 -     0x7fff8d904fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff8d905000 -     0x7fff8dc9bfff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8dcdd000 -     0x7fff8dcf1ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ddff000 -     0x7fff8e132fff  libmecabra.dylib (666) <2CE5540A-D412-3D53-9E11-86C24D61713B> /usr/lib/libmecabra.dylib
        0x7fff8e140000 -     0x7fff8e161fff  com.apple.framework.Apple80211 (10.0 - 1000.57.3) <F64EB1A1-57F3-3ABA-97D0-DB7C926FD07F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8e162000 -     0x7fff8e225ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e226000 -     0x7fff8e273ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8e274000 -     0x7fff8e64bfe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8e64c000 -     0x7fff8e699fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8e69a000 -     0x7fff8e6afff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8e6bd000 -     0x7fff8e703ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8e704000 -     0x7fff8e708fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8e709000 -     0x7fff8e749ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8e7fa000 -     0x7fff8e800ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8e801000 -     0x7fff8e826ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8e827000 -     0x7fff8e827ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff8e828000 -     0x7fff8e82aff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8e853000 -     0x7fff8e88efff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8e8de000 -     0x7fff8e8e0fff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e8e1000 -     0x7fff8e8e7ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8e8e8000 -     0x7fff8e8fbff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff8e8fc000 -     0x7fff8e90dff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8e90e000 -     0x7fff8e92bfff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8e92c000 -     0x7fff8e966ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8e9c8000 -     0x7fff8e9ccfff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8e9cd000 -     0x7fff8ea27ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8ea29000 -     0x7fff8ee7cfc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8ee7d000 -     0x7fff8eef3fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8eef4000 -     0x7fff8ef96fff  com.apple.Bluetooth (4.3.0 - 4.3.0f10) <70922125-2A01-37AE-9CB8-D8A9578092E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8ef97000 -     0x7fff8f07afff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8f07b000 -     0x7fff8f080ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8f081000 -     0x7fff8f081ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8f082000 -     0x7fff8f48fff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8f490000 -     0x7fff8f491fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8f492000 -     0x7fff8f4caffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff8f4cb000 -     0x7fff8f4e0fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff8f4e1000 -     0x7fff8f4e4fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8f4e5000 -     0x7fff8f4eefff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8f507000 -     0x7fff8f558ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8f559000 -     0x7fff8f57cff7  com.apple.framework.familycontrols (4.1 - 410) <41499068-0AB2-38CB-BE6A-F0DD0F06AB52> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8f57d000 -     0x7fff8f5d0ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8f5d1000 -     0x7fff8f5fdfff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff8f5fe000 -     0x7fff8f618ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8f61d000 -     0x7fff8f620fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8f621000 -     0x7fff8f753ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8f754000 -     0x7fff8f77cfff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8f77d000 -     0x7fff8f7f5ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8f7f6000 -     0x7fff8f8e8ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8f8e9000 -     0x7fff8f8ebfff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8f8ec000 -     0x7fff8f8eefff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8f8f1000 -     0x7fff8f8f9ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff8f8fa000 -     0x7fff8f911fff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8f937000 -     0x7fff8f972fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f978000 -     0x7fff8f97dff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8f97e000 -     0x7fff8f9d2fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8f9d3000 -     0x7fff8fe03fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8fe04000 -     0x7fff8fe0efff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8fe0f000 -     0x7fff8fe76ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8fe77000 -     0x7fff8fefbff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8fefc000 -     0x7fff901cbff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff901cc000 -     0x7fff901d9ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff901da000 -     0x7fff90224fff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff90258000 -     0x7fff904d2ff3  com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff904d3000 -     0x7fff904fffff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff90500000 -     0x7fff90501fff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
        0x7fff90518000 -     0x7fff9052cff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff9052d000 -     0x7fff90534ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff90535000 -     0x7fff90543ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff90544000 -     0x7fff90545ff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
        0x7fff90546000 -     0x7fff90547ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff90548000 -     0x7fff9054dff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff9054e000 -     0x7fff90564ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff90565000 -     0x7fff90598ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff90599000 -     0x7fff905f4fff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff905f5000 -     0x7fff9069dff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff9069e000 -     0x7fff90bc7ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff90bc8000 -     0x7fff90bd9ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff90be5000 -     0x7fff90c01ff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff90c02000 -     0x7fff90c0dfdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff90c79000 -     0x7fff90c7dfff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/C

    Check out this link https://discussions.apple.com/message/12835691#12835691

  • Error message with a hyperlink attached to it

    Hi Friends
    I have a requirement wherein I need to display a hyperlink along with the error message in webui.
    Example...
    Please enter a valid currency Details
    Here Details should appear as a Hyperlink and on clicking on this hyperlink it should navigate to a portal screen.
    Infact it is not actually a portal screen, it can be any URL.
    Could you please let me know how to add the hyperlink and how to navigate to portal screen on clicking on this hyperlink
    where do we need to write the code.
    Best Regards
    Anil
    Edited by: ANILKUMAR M on Mar 3, 2011 7:23 AM

    Hi Anil.
    According to SAP Help you can always get a link in a message for:
    . Fields that are defined as mandatory in the UI Configuration Tool
    . Fields that are defined as mandatory in the business object layer (BOL)
    Also it's possible with additional coding. The example is:
    lr_msg_service = view_manager->get_message_service( ).
    lr_msg_service->add_message_mapping( iv_message_class = 'CRM_BRC_MESSAGES'
    iv_message_number = '013'
    iv_binding_string = '//BRCBUSINESSROLE/STRUCT.CRMUI_NAVBAR'
    iv_page_id = component_id ).
    Check this [link|http://help.sap.com/saphelp_crm700_ehp01/helpdata/EN/cb/659ebfc880493baad66896518a55a1/content.htm] for details. Look at "Navigation to Field That Issued a Message" section and related link for "Enabling Links in Messages".
    Another option, which mentioned Arun and according [to this book|http://www.sap-press.com/products/SAP-CRM-Web-Client-Customizing-and-Development.html], is the global message service. The global message service enables you to register callback methods so that you can output navigable messages, that is, you can initiate a navigation to another view (or do whatever you want ) by clicking the message. Registration of the message service for a message looks like:
    DATA: lr_service TYPE REF TO cl_bsp_wd_message_service.
    lr_service = me->view_manager->get_message_service( ).
    TRY.
      lr_service->subscribe_message(
                      iv_message_class = 'CRM_IC_PPL_UI_BDC'
                      iv_message_number = '114'
                      iv_subscriber = me
                      iv_activation = abap_true ).
      CATCH cx_bsp_wd_dupl_mess_subscr.
    ENDTRY.
    where is the ME self reference points to a view controller that implements the IF_BSP_WD_MESSAGE_HANDLER interface, including HANDLE_MESSAGE method.

  • "Download Error" message in desktop app

    Had an issue with updated payment info not taking a little while back. Found out when the desktop app gave me the "download error" message and to contact customer service. Got the billing info squared away but the download error message I'm getting is still all I can get on the desktop app.
    I've tried signing out and signing back in, uninstalling the desktop app and reinstalling and still no joy. Anyone else having this issue? Or any insight as to what else I can try?
    Thanks

    What browser, and have you tried with your firewall temporarily disabled?
    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/
    OR
    -Comodo Security kills download http://forums.adobe.com/thread/1460361?tstart=0
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    -http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    -http://helpx.adobe.com/x-productkb/global/errors-or-unexpected-behavior-websites.html
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html
    -Server won't connect https://forums.adobe.com/thread/1233088

  • Error message when installing CS5

    When trying to re-install CS5 after harddisk crash I get error message with this text from log:
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 3 error(s), 1 warning(s)
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe Photoshop CS5 Swedish Language Pack_AdobePhotoshop12-sv_SE: Install failed
    ERROR:  - Adobe Photoshop CS5 Core: Failed due to Language Pack installation failure
    FATAL ERROR: Cannot create extract assets at 'C:\Program Files (x86)\Common Files\Adobe\Installers\adobeTemp\{7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}' from zip file 'E:\Adobe CS5\payloads\AdobePhotoshop12-Core\Assets1_1.zip'. Error 23 Datafel (CRC-fel, Cyclic Redundancy Check)
    Now what??

    Hi P.Daguerre,
    Use the Adobe Cleaner Tool to remove whatever Adobe softwares are there on the system.: http://www.adobe.com/support/contact/cscleanertool.html
    Please refer the Kb Doc : http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.
    Please see Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5 -cs5.html for information on how to review your installation logs
    Basic troubleshooting steps :
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-adminis trator-account-on-windows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-servic es-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and Install in the enabled Administrator account and check.

  • Illustrator quits with the following error message. Can you please help me?

    Process:         Adobe Illustrator [700]
    Path:            /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         256 (17.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [152]
    Responsible:     Adobe Illustrator [700]
    User ID:         501
    Date/Time:       2014-04-29 22:31:15.472 +0200
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  4C19C6C0-CD69-307F-3694-848B5E25B256
    Sleep/Wake UUID: 99981582-29F3-48D7-A330-E2BCEB605276
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      Symbol not found: _AMTRetrievePersonGUIDWithAuthSource
      Referenced from: /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
      Expected in: /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x00007fff69a9709d dyld_fatal_error + 1
    1   dyld                                    0x00007fff69a99df6 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 171
    2   libdyld.dylib                           0x00007fff8e6332dd dyld_stub_binder_ + 13
    3   ???                                     0x0000000101431030 0 + 4316139568
    4   com.adobe.illustrator                   0x0000000100688308 IMSConnection::GetUserInfoFromAmt() + 88
    5   com.adobe.illustrator                   0x0000000100688017 IMSConnection::IMSConnection(ServiceType const&) + 807
    6   com.adobe.illustrator                   0x00000001004cdcd7 PreferencesMgr::UpdateGlobalNameSpace(CAIAspectEntry&, CAIGlobalNameSpaceNotifier::Started const&) + 167
    7   com.adobe.illustrator                   0x000000010062f5e6 CAIAspectType<CAIGlobalNameSpaceNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 54
    8   com.adobe.illustrator                   0x000000010057d1e1 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 81
    9   com.adobe.illustrator                   0x000000010057cd5c CAIAspectBase::Notify(void const*) + 108
    10  com.adobe.illustrator                   0x000000010062dd91 CAIGlobalNameSpace::UpdateGlobalStringPool(CAIAspectEntry&, CAIGlobalStringPoolNotifier::Started const&) + 177
    11  com.adobe.illustrator                   0x00000001006387a6 CAIAspectType<CAIGlobalStringPoolNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 54
    12  com.adobe.illustrator                   0x000000010057d1e1 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 81
    13  com.adobe.illustrator                   0x000000010057cd5c CAIAspectBase::Notify(void const*) + 108
    14  com.adobe.illustrator                   0x0000000100638259 CAIGlobalStringPool::UpdateApplicationLaunchQuit(CAIAspectEntry&, CAIApplicationNotifier::Launching const&) + 169
    15  com.adobe.illustrator                   0x000000010042f9e6 CAIAspectType<CAIApplicationNotifier::AnyLaunchQuit>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 54
    16  com.adobe.illustrator                   0x000000010057d23e CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 174
    17  com.adobe.illustrator                   0x000000010057cd5c CAIAspectBase::Notify(void const*) + 108
    18  com.adobe.illustrator                   0x000000010042e640 CAIApplication::RunApp() + 128
    19  com.adobe.illustrator                   0x0000000100419a57 main + 135
    20  com.adobe.illustrator                   0x0000000100002c94 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8cd42662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8beb643d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8beb6152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8cd41e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff95e04f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff95e07fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8cd41e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff95e04f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff95e07fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8cd41e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff95e04f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff95e07fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8cd41716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff95e05c3b _pthread_cond_wait + 727
    2   com.adobe.AGM                           0x0000000103894dcb 0x103552000 + 3419595
    3   com.adobe.AGM                           0x000000010389587d 0x103552000 + 3422333
    4   com.adobe.AGM                           0x00000001038ab8a8 0x103552000 + 3512488
    5   libsystem_pthread.dylib                 0x00007fff95e03899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff95e0372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff95e07fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff69acbdb0  rbx: 0x000000010a024b70  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff69acbf20  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfe850  rsp: 0x00007fff5fbfe838
       r8: 0x00007fff69ab6b4c   r9: 0x0000000000000000  r10: 0x00007fff69ab9ce6  r11: 0x00007fff69acbf20
      r12: 0x000060800030e260  r13: 0x000060800030e268  r14: 0x00007fff69acbf20  r15: 0x000060800030e220
      rip: 0x00007fff69a9709d  rfl: 0x0000000000000246  cr2: 0x0000000109fff000
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
           0x100000000 -        0x101430fff +com.adobe.illustrator (256 - 17.0.0) <E34E6120-14D0-3467-A23C-C55B5B80B913> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x102520000 -        0x103265ff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x103279000 -        0x1032c8fff +com.adobe.headlights.LogSessionFramework (2.1.2.1756) <BD518257-970F-344A-92B8-B8BE1A8EB4D8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1032fe000 -        0x103300fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x103306000 -        0x103356fff +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.256) <CDE1A155-45AC-30BB-8347-943980377322> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport
           0x103379000 -        0x1033cdfff +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.256) <A7D0F187-0123-340C-B456-919DB5F661E7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport
           0x1033f6000 -        0x1033f6ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.256) <DBFFDCE5-C8A5-3C83-91A7-75E40BFF917D> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x1033fb000 -        0x10353ffff +com.adobe.ACE (AdobeACE 2.20.02.30929 - 2.20.02.30929) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x103552000 -        0x103b23fff +com.adobe.AGM (AdobeAGM 4.30.20.30929 - 4.30.20.30929) <7D9DF39D-A7FA-3284-84B2-5BA83794981A> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x103bc0000 -        0x103bfdfff +com.adobe.ARE (AdobeARE 1.5.02.30929 - 1.5.02.30929) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x103c05000 -        0x103d03ff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.30807 - 3.8.0.30807) <DF0EC9F6-D499-39B8-B2F4-CAF4F742D702> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x103daf000 -        0x103dccfff +com.adobe.BIB (AdobeBIB 1.2.03.30929 - 1.2.03.30929) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x103dd4000 -        0x103dfafff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIBUtils
           0x103e02000 -        0x104112ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30929 - 5.13.00.30929) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x10415a000 -        0x1046f3fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104770000 -        0x1056f3fef +com.adobe.psl (AdobePSL 14.0.0.30830 - 14.0.0.30830) <7BDC4AF7-B14F-3DE0-B47A-E69B37529A6B> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x1058b4000 -        0x105921fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151739) <95D40B8F-C287-3F7B-945C-CEEE0D5399A2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105954000 -        0x105a60fff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 50 - 79.151739) <6C763585-FC85-3A15-B089-7D43EF73F6A8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x105b0e000 -        0x105bb8fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x105be0000 -        0x105d20fe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x105da0000 -        0x105ea2fef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x105eeb000 -        0x106019fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x106077000 -        0x1061d0ff7 +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <F6095811-7D5F-3E06-A664-1EB9FBF8C761> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10621e000 -        0x106226fff +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <657ED4E5-4FC2-3012-B36F-B60896021CB2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x106230000 -        0x106254fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x106278000 -        0x106336ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.30772) <4FC0039A-A770-3A51-9D7A-D24167344540> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x106386000 -        0x10643fff7 +com.adobe.JP2K (1.2.2 - 1.2.2.29712) <869F46FB-FF39-39CA-B1E3-A13035A48B49> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x106489000 -        0x106652ff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x106695000 -        0x106e00fff +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.30505) <38762F4D-B5C5-3FD4-AFFE-5D1195FB76FC> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106eb8000 -        0x106fbcfff +com.adobe.PDFPort (AdobePDFPort 2.1.0.30929 - 2.1.0.30929) <46896FB3-8FDB-3554-B4F6-013BB944D5EB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x106fcf000 -        0x106ff4ffe +AdobePDFSettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
           0x10702e000 -        0x107073ff7 +com.adobe.pip (7.0.0.1768) <F022E031-1429-354F-B718-70F001B342EF> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x10707f000 -        0x10712aff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.30772) <5DE0B54D-CDAE-3146-904F-72CBC5C89FA7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10716f000 -        0x10722dfff +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <2FAB4B9A-EDB9-0FF9-55B2-52DEC380D2BF> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x107250000 -        0x107566fff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <D21D9020-0CD5-2CE3-FE04-8856C4F631E1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x107632000 -        0x107645ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10764f000 -        0x107667ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <CD612584-FFB3-3311-8A49-834F1DFA2841> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x10766e000 -        0x107752fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x107763000 -        0x107769ff7 +com.adobe.boost_date_time.framework (7.0.0 - 7.0.0.0) <C8A03503-9AF8-39E5-B52A-947940E9BE85> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x107780000 -        0x107792fff +com.adobe.boost_filesystem.framework (7.0.0 - 7.0.0.0) <E9A71FDE-E91D-3DB8-8C93-C4DC759440FF> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x1077b0000 -        0x10784bff7 +com.adobe.boost_regex.framework (7.0.0 - 7.0.0.0) <46B5DDAA-7B53-3295-9AC6-C4A5220FA9DD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1078e2000 -        0x107930fff +com.adobe.boost_serialization.framework (7.0.0 - 7.0.0.0) <102B6B3B-01A9-384C-ABDD-69E255EA0461> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x107a5c000 -        0x107a67fff +com.adobe.boost_signals.framework (7.0.0 - 7.0.0.0) <A07284DB-0BDE-3AA0-A9FD-9FD4080A58E0> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x107a7f000 -        0x107a83fff +com.adobe.boost_system.framework (7.0.0 - 7.0.0.0) <14201414-F4C5-3361-ABA8-225B6A997DBA> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x107a8c000 -        0x107a9afff +com.adobe.boost_threads.framework (7.0.0 - 7.0.0.0) <C4728FDF-6398-37CD-A9CF-4E8C3522BF8F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x107abe000 -        0x107ddcfff +com.adobe.dvaadameve.framework (7.0.0 - 7.0.0.0) <C527EBA1-3390-387A-935D-A5F37DBB00F3> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10847d000 -        0x108582fff +com.adobe.dvaai.framework (7.0.0 - 7.0.0.0) <D2763EF1-5B68-34DB-ADDA-F0B2B98D2668> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x108734000 -        0x10897dff7 +com.adobe.dvacore.framework (7.0.0 - 7.0.0.0) <73F833A6-5554-34A7-A625-ACAC06C25763> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x108bb4000 -        0x10902ffff +com.adobe.dvaui.framework (7.0.0 - 7.0.0.0) <15DAC32C-E639-33FE-A34B-990E77CE9C47> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x109622000 -        0x1096d0ff7 +com.adobe.dvaworkspace.framework (7.0.0 - 7.0.0.0) <C614AF0D-8386-3FC1-AE64-33BC3B5DAB37> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x1097db000 -        0x10989dff7 +com.adobe.exo.framework (7.0.0 - 7.0.0.0) <D923AF78-3EBF-3C1B-9698-E8D8A0FE02E2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1099f7000 -        0x109a68fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x109a7b000 -        0x109aa7ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x109ac2000 -        0x109ae1fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x109b06000 -        0x109b0afff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x109b11000 -        0x109b2dff7 +com.adobe.dvaflashview.framework (7.0.0 - 7.0.0.0) <390504EA-B04F-3B3D-AF17-5F99CE10613D> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x109b54000 -        0x109b58ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
           0x109b5f000 -        0x109caafff +com.adobe.dvascriptui.framework (7.0.6 - 7.0.6.0) <D8DCEBAB-E04E-373A-B9ED-820FC2A282F0> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x109f73000 -        0x109f75ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10e86a000 -        0x10e90dff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10ef80000 -        0x10f061fe7 +IMSLib.dylib (7.0.0.37 - 7.0.0.37) <4C57DB56-7A76-374F-8F81-3D29A86A4FF2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/IMSLib.dylib
        0x7fff69a96000 -     0x7fff69ac9817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff894c3000 -     0x7fff894c3fff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89517000 -     0x7fff89521ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff89564000 -     0x7fff89572fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff89573000 -     0x7fff8957cffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff895e8000 -     0x7fff896cfff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff89a26000 -     0x7fff89a26fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff89a27000 -     0x7fff89a57fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
        0x7fff89a58000 -     0x7fff89a59fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff89a5d000 -     0x7fff89bb0ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff89bb1000 -     0x7fff89bcdfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff89d13000 -     0x7fff89df2fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff89e7e000 -     0x7fff89e90ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff89e91000 -     0x7fff89e95fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff89ee3000 -     0x7fff89efeff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89f11000 -     0x7fff8a0c9ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8b1bb000 -     0x7fff8b1f3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff8b1f4000 -     0x7fff8b27dff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff8b2c8000 -     0x7fff8b2c9fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff8b3b8000 -     0x7fff8b3c5ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8b3c6000 -     0x7fff8b3cdfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b6f0000 -     0x7fff8b6f3ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8b6f4000 -     0x7fff8b6f7fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff8bb9f000 -     0x7fff8bbe6fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8bc69000 -     0x7fff8bc98ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8beb3000 -     0x7fff8becdfff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff8bece000 -     0x7fff8bed0ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8bed1000 -     0x7fff8bedaff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8bf25000 -     0x7fff8bf2ffff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8bf3f000 -     0x7fff8c23dfff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8c7e5000 -     0x7fff8c7e8fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8c7e9000 -     0x7fff8c824fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8cd2c000 -     0x7fff8cd48ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cd49000 -     0x7fff8ceb7ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff8ceb8000 -     0x7fff8cee0ffb  libRIP.A.dylib (599.20.11) <D79461A6-2E24-3531-ADA2-EAC972384A7D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8d7b0000 -     0x7fff8d7d9fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff8d7da000 -     0x7fff8e350fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8e3a0000 -     0x7fff8e3b7ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff8e3b8000 -     0x7fff8e3c4ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8e3c5000 -     0x7fff8e438fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8e61e000 -     0x7fff8e61efff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8e632000 -     0x7fff8e635ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8e656000 -     0x7fff8e671ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8e682000 -     0x7fff8e766fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8e767000 -     0x7fff8e768ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8e769000 -     0x7fff8ea39ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff8ecb5000 -     0x7fff8ecb7ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff8ecb8000 -     0x7fff8ecc0ff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
        0x7fff8ecc1000 -     0x7fff8ecc6fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8ecc7000 -     0x7fff8eccefff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8eccf000 -     0x7fff8ed9afff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8f51a000 -     0x7fff8f51eff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8f64f000 -     0x7fff8f6b2ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8f6b3000 -     0x7fff8f6c0ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8f6c1000 -     0x7fff8f85dff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f8ac000 -     0x7fff8fb96fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff8fb97000 -     0x7fff8fc81fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8fc82000 -     0x7fff8fd71fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8fd8a000 -     0x7fff8fd96ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
        0x7fff8fdbe000 -     0x7fff8feacfff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8fead000 -     0x7fff8feb3ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8fef4000 -     0x7fff8feffff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff90192000 -     0x7fff90196ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
        0x7fff90197000 -     0x7fff901a6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff901eb000 -     0x7fff9023cff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff9023d000 -     0x7fff9028aff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff9058a000 -     0x7fff906faff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff90704000 -     0x7fff90756fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff908f0000 -     0x7fff909b2ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff90a10000 -     0x7fff90a10fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff90a11000 -     0x7fff90a15ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff90a20000 -     0x7fff90a27ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff90a28000 -     0x7fff90a79fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff90aa5000 -     0x7fff90aa5fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff90aaf000 -     0x7fff90ac7ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff90be3000 -     0x7fff90c12fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff90d96000 -     0x7fff91040ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff91183000 -     0x7fff91184fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff91185000 -     0x7fff91187fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff91188000 -     0x7fff91238ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff91239000 -     0x7fff91239ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9123a000 -     0x7fff9123bff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff912ca000 -     0x7fff912d2ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff9180a000 -     0x7fff918ceff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff918cf000 -     0x7fff918f8ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff91947000 -     0x7fff91a4dff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff91c8d000 -     0x7fff91d1dfff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff91d1e000 -     0x7fff91d60ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff91d8e000 -     0x7fff91e17fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff91e18000 -     0x7fff91e19ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff91e1d000 -     0x7fff91e94fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff91e99000 -     0x7fff91ea4fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff91ec2000 -     0x7fff91ecbfff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff91eef000 -     0x7fff91f5cfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff91f84000 -     0x7fff91f9fff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff91fbf000 -     0x7fff92017ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff92121000 -     0x7fff92174fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff9217c000 -     0x7fff921d5fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff92263000 -     0x7fff922c8ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9234a000 -     0x7fff9234efff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff923a0000 -     0x7fff923a5fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff923a6000 -     0x7fff923d2fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
        0x7fff9241d000 -     0x7fff92602fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff92a36000 -     0x7fff92a39ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff92a98000 -     0x7fff92b07ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff92b13000 -     0x7fff92b61fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff92b68000 -     0x7fff92b69ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff92b6a000 -     0x7fff92bd4ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff9322a000 -     0x7fff93251ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff93254000 -     0x7fff9328dff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff9328e000 -     0x7fff9329bff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff9329c000 -     0x7fff93449f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff93562000 -     0x7fff9356aff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff9356b000 -     0x7fff93570ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff93571000 -     0x7fff93595fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff93598000 -     0x7fff935a5fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff935a6000 -     0x7fff935a8fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
        0x7fff935a9000 -     0x7fff935aaff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff935ab000 -     0x7fff935d3ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff935d4000 -     0x7fff9362fffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff93630000 -     0x7fff9366eff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff9366f000 -     0x7fff936bdff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff936f3000 -     0x7fff9377fff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff93780000 -     0x7fff937a5ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff93b82000 -     0x7fff93dcaff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff93dcb000 -     0x7fff93e12ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff93ed3000 -     0x7fff93f9cfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff93f9d000 -     0x7fff93febfff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff94139000 -     0x7fff94152ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff94199000 -     0x7fff941c0ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff941c8000 -     0x7fff941d8fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff9446b000 -     0x7fff94484ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff94487000 -     0x7fff944c8fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
        0x7fff944c9000 -     0x7fff9450effe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff9450f000 -     0x7fff94517fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff94518000 -     0x7fff9451cff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff9451d000 -     0x7fff94542ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff94543000 -     0x7fff94543fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff94544000 -     0x7fff94573fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff94574000 -     0x7fff94575ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff945e4000 -     0x7fff946d5ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff94764000 -     0x7fff94b97ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff94c6a000 -     0x7fff94d9aff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff94dc0000 -     0x7fff95019ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff9501a000 -     0x7fff9507efff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff9507f000 -     0x7fff95091fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff95092000 -     0x7fff950b6ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff950b8000 -     0x7fff950d0ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff950d1000 -     0x7fff950dcfff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
        0x7fff9511c000 -     0x7fff9519cfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff95529000 -     0x7fff95568fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff95583000 -     0x7fff95857fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff95cce000 -     0x7fff95cceffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff95d1e000 -     0x7fff95d2fff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff95e02000 -     0x7fff95e09ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff95e0a000 -     0x7fff9609bfff  com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff9609c000 -     0x7fff960a3ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff963ba000 -     0x7fff963bdfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff963be000 -     0x7fff963beff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff9643e000 -     0x7fff9681fffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff96875000 -     0x7fff97194af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff97195000 -     0x7fff97197ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff97198000 -     0x7fff971a9ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff971aa000 -     0x7fff971b4ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    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: 976
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=310.4M resident=144.3M(46%) swapped_out_or_unallocated=166.1M(54%)
    Writable regions: Total=87.6M written=24.0M(27%) resident=27.6M(31%) swapped_out=0K(0%) unallocated=60.0M(69%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  1928K
    CG raster data                        8K
    CG shared images                    172K
    Image IO                           1928K
    Kernel Alloc Once                     8K
    MALLOC                             65.7M
    MALLOC (admin)                       32K
    Memory Tag 242                       12K
    STACK GUARD                        56.0M
    Stack                              10.1M
    VM_ALLOCATE                        3460K
    __DATA                             27.1M
    __IMAGE                             528K
    __LINKEDIT                        109.4M
    __TEXT                            201.0M
    __UNICODE                           544K
    mapped file                        44.3M
    shared memory                         4K
    ===========                      =======
    TOTAL                             522.1M
    Model: MacBookPro7,1, BootROM MBP71.0039.B0E, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f7
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533654465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533654465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 250,06 GB
    Serial ATA Device: WDC WD7500BPKT-22PK4T0, 750,16 GB
    USB Device: Built-in iSight
    USB Device: Internal Memory Card Reader
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus:

    Marcell,
    What happens if you update (you seem to be with 17.0.0 still)?
    http://prodesigntools.com/adobe-cc-updates-direct-links-mac.html
    And just to make sure, are all the faces of the Verdana and Tahoma fonts installed and enabled/activated through the OS (not font mangement) as TTF (not OTF)?

  • Component level display of the Custom Error Message in 11g

    Iam using custom error handler that extends the default DCErrorHandlerImpl class to handle the Custom exceptions thrown from the service layer, and able to see the exception displayed in the ADF UI in a popup window.
    How can we do Customization in order to display the Custom error message inline with a component (i.e. associated with a specific UI component with the arrow mark look and feel ) instead of the global level message displayed as a pop up window on the ADF UI page? Please suggest.
    Thanks,
    Kayal.
    Edited by: user11217416 on Feb 15, 2012 6:07 AM
    Edited by: user11217416 on Feb 15, 2012 6:14 AM

    Hi,
    Try as follows
      final static int MSG_FATAL = 1;
      final static int MSG_ERROR = 2;
      final static int MSG_WARN = 3;
      final static int MSG_INFO = 4;
          public static void showMsgForRelevantComponentAll(int iSeverity, String sMsg, UIComponent uIComponent) {
              FacesMessage msg = null;
              switch (iSeverity) {
              case MSG_FATAL:
                  msg = new FacesMessage(FacesMessage.SEVERITY_FATAL, null, sMsg);
                  break;
              case MSG_ERROR:
                  msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, null, sMsg);
                  break;
              case MSG_WARN:
                  msg = new FacesMessage(FacesMessage.SEVERITY_WARN, null, sMsg);
                  break;
              case MSG_INFO:
              default:
                  msg = new FacesMessage(FacesMessage.SEVERITY_INFO, null, sMsg);
              FacesContext facesContext = FacesContext.getCurrentInstance();
              facesContext.addMessage(uIComponent.getClientId(facesContext), msg);
          }

Maybe you are looking for

  • Can I use more than one Apple ID on one device

    I have seen some answers to this type of question before but not that since the ios 6 so will ask again. My household shares an Apple ID and it has worked great as we have added devices and purchased apps.  My problem now is this, we have hit a point

  • Report Parameters with a space between, not working

    I have a problem with a report in SQL Server 2012 that uses cascading multi-valued parameters. I am using AdventureWorks2012DW as a sample, and all parameters work except for one with a space in this case its SalesTerritoryCountry and the parameter i

  • Install Guide - MS Exchange Server 2007

    Hello Portal Experts, we are looking for an Installation and Configuation Guide to get the EP->MS Exchange Connectivity. All Guides we found are just for MSX 2000 or 2003. The CDO Test with tool SAPXchTest.exe fails, because the file SapExchangeConne

  • Convert a UTF-8 string to ISO-8859-1 string

    Hello. As you can see from my other post, I am working on internationalization. I could not find an appropriate entry in the forum already. I want to convert form data (submitted from an HTML UTF-8 charset page) from the UTF-8 format to ISO-8859-1 fo

  • How can I connect a second Bluetooth track pad?

    I bought two track pads to use with my Lion OS on my MBP. One for the home and one for the office. The first one I set up was flawless. When I tried to repeate with the second one it would not connect. I tried to rename the first and the new name was