Error message after opening .PDFs

I don't why changing a motherboard and loading new drivers would cause a problem, but since doing so today, about 10-15 seconds after opening a .pdf file from an email attachment or website, there is the following message: "Adobe Acrobat 8 Professional cannot be launched at this time.  You must launch at least one other suite component (such as Adobe Photoshop) before launching Acrobat 8 Professional."  I have CS3.  Any ideas?  Thanks.

~graffiti wrote:
PjonesCET wrote:
They noted its unual for them to do this but it does happen in special circumtances. Evevidently I had a one time repreive.
Thanks everyone. for finally getting down to matter at hand.
I bet they tell all the girls that.
Seriously. That's the same story I got a couple of years ago.
Well it proves thay can be accommodating if necessary, but its not something they do regularly. It has to be under under very special circumtances.
Now let's move on to another topic you (more than one) can beat me up on.

Similar Messages

  • Getting error message while opening PDF file.

    Hello Experts....
    I'm getting error message while opening the attached PDF file in mail.
    I'm Sending the payslip to mail which is converted into .PDF format.
    Where exactly the problem i m not getting.
    Please help....

    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid                    = rqident
            no_dialog                      = ' '
           DST_DEVICE                     = out_parms-pdest
          PDF_DESTINATION                =
           get_size_from_format           = out_parms-pdest
          IMPORTING
            pdf_bytecount                  = bytecount
           pdf_spoolid                    = pdfspoolid
          LIST_PAGECOUNT                 =
           btc_jobname                    = jobname
           btc_jobcount                   = jobcount
          TABLES
            pdf                            = out_tab
          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.
      IF sy-subrc NE 0.
      ENDIF.
    *CALL FUNCTION 'BAPI_GET_PAYSLIP_PDF'
    EXPORTING
       employeenumber       = PERNR-PERNR
       sequencenumber       = '00001'
       payslipvariant       = 'PAYSLIP-PM'
    IMPORTING
      RETURN               =
      PAYSLIP              = PAYSLIP
      PDF_FSIZE            =
    ******************CONVERTING PAYSLIP(XSTRING) TO BINARY FORMAT******
    call function 'SCMS_XSTRING_TO_BINARY'
       exporting
         buffer                = payslip
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
       tables
         binary_tab            = OUT_TAB.
        check not ( out_tab[]  is initial ).
        refresh i_record.
        clear : i_record.
        call function 'QCE1_CONVERT'
          tables
            t_source_tab         = out_tab
            t_target_tab         = i_record
          exceptions
            convert_not_possible = 1
            others               = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
       do.
         i_record = it_attachment_long.
         append i_record.
         shift it_attachment_long left by 255 places.
         if it_attachment_long is initial.
           exit.
         endif.
       enddo.
        select single ltx into subject from t247
                   where mnr eq pn-begda+4(2)
                     and spras eq 'EN'.
        condense subject.
        concatenate 'Payslip for the month of' subject pn-begda+0(4)
                                  into subject separated by space.
        describe table lt_objbin lines l_att_lines.
        read table lt_objbin index l_att_lines.
        lv_document_data-doc_size = tab_lines * 255 .
        lv_document_data-obj_name = 'Payslip'.
        lv_document_data-obj_descr = subject.
    e-mail body
        clear lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = tab_lines.
        lt_objpack-doc_type = 'RAW'.
    LT_OBJPACK-doc_size = STRLEN( LT_OBJTXT ).
        append lt_objpack.
    For e-mail attachment
        lt_objhead = 'payslip.pdf'.
        append lt_objhead.
        lt_objbin[] = out_tab[]."i_record[].
        "describe table i_record lines l_att_lines.
        describe table out_tab lines l_att_lines.
    CLEAR LT_OBJPACK.
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_att_lines.
        lt_objpack-doc_type = 'PDF'.
        lt_objpack-obj_name = 'attachment'.
        lt_objpack-obj_descr = 'payslip'.
        lt_objpack-doc_size = ( l_att_lines - 1 ) * 255 + strlen( lt_objbin ).
        append lt_objpack.
    make recipient list
       " check user_mail_id is not initial.
        lt_reclist-receiver =  user_mail_id.
        lt_reclist-rec_type = 'U'.
        append lt_reclist.
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = lv_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          tables
            packing_list               = lt_objpack
            object_header              = lt_objhead
            contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
            receivers                  = lt_reclist
          exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
        if sy-subrc = 0.
          write:/ 'Mail sent to', 30 user_mail_id.
          write : sy-uline.
        else.
          write:/ 'Error encountered'.
        endif.
        clear : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
        refresh : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
       clear : filepath+3(17), pdffile, encryptpdf, batch_file.
        clear : out_tab, i_record, filetable.
        clear : user_mail_id, password.
      else.
        write : 'payslip not generated'.
      endif.
    end-of-selection.
    Please Check....

  • Error message when opening pdf attachment in Outlook 2003

    I have several computers in my network running different version of Adobe Acrobat...Adobe 6.0 standard, Adobe 7.0 standard, Adobe 8.0 standard and pro, and Adobe 9.0 standard and pro. The problem I am having with a few of my end users is that when they receive an e-mail in Outlook 2003 with a pdf attachment from certain companies that we deal with in the insurance industry, they receive an error message saying they can not open the file...
    "Can't create file:XXXXXXXX.pdf. Right click on the folder you want to create the file in, and then click Properties on the shortcut menu to check permission for the folder."
    The strange part about this is they can forward the e-mail to another end user that may or may not be using the same version of Adobe as them, but the other end user has no problem opening and viewing the pdf attachment (also, if the company sending the e-mail sends the same e-mail to another end user who has no issues, they can open it with just fine) Now here is where it gets really strange... if the end user that can view the file saves the file to their hard drive, then sends it back as the same attachment in an e-mail back to the end user that could not open the file originally, now that end user can open and view the pdf attachment. I have three end users that this affecting and they each have a different version of Adobe Acrobat with all of the latest updates. I am stumped and searches so far have revealed no solutions...
    Any ideas?

    The can only open it on their machine if they save the pdf attachment after renaming it. All computers on the network have the latest Outlook 2003 updates, so it puzzles me that only three end users with the same version of Outlook 2003, with the same updates, are not able to view the attachment from Outlook, but the other users can. Also, why do those three end users have to rename the file if the save it to the their computer to be able to view it, but no one else has to. And, it is not every pdf attachment either, just some from certain people that send them an e-mail. Really puzzling issue that I need to get resolved...

  • I have always had trouble (including error messages)when opening pdf files from a website within Firefox

    More often than not when I open a pdf file from within Firefox the file fails to open (often you get an error message. "there was an error processing page. A file I/O error has ocurred"). Sometimes the file downloads but is only white pages. I usually then right click the file and save it to my desktop but this is cumbersom!

    Ok two things based on the crash report and the steps you took right before the crash:
    # Try to disable scrolling acceleration and restart Firefox. Does it continue to crash?
    # Try Safe Mode and do the same task as above with email and the pdf [[Troubleshoot Firefox issues using Safe Mode]]
    # Also pdf.js may be helpful to read pdfs in the meantime. You can change the default reader in the Preferences/Options > Application menu of Firefox.
    # Try to clear out the downloads folder and update flash to version 14 (that should do it)
    IF it crashes again please also provide the new crash signatures and we can take a look :-) Sorry for the crashing :-(

  • Adobe Premier Pro CC 2014 closes with no error message after opening project

    PC Spc:
    OS:Windows 8.1 64-bit
    Processor:Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz
    Ram: 2x 4GB  Samsung 1600MHz
    GPU:NVIDIA GeForce GTX 760
    please help

    abradders100 wrote:
    I have a PrPr project on an external GTech drive connected via USB which ran fine on my old MBP in PrPr CC 2014. When I open this project on the new MBP I cannot render or export without getting error message "Video Preview Error; Error Unknown."
    If I'm reading this correctly, it sounds like the project file was created on your previous MBP, and saved to that external USB (hopefully 3.0?) drive.  Is that correct?  Where did you have the media, scratch, etc files located on that previous MBP?  I'm wondering if Pr on the new MBP is tripping over itself trying to find other data that it might need?
    Also when the Warp Stabilizer effect is applied, it generates black lines across the video in the program window. This happens when using either Mercury Playback Open CL and/or Cuda. However if I switch to Mercury Playback Software only, everything is fine but of course much slower. In addition, if I remove the effects from the sequence: Warp Stabilizer and auto colour and levels, the sequence exports fine regardless of whether Mercury Playback Open CL and/or Cuda or Software only.
    What about other accelerated effects?  Can you apply any of them individually without getting black lines in the program window?  Further, have you tried installing the previous version of Pr CC to see if the same issues exist?  You'd have to create a new Pr project, as the 2014 project files aren't backward compatible.  But it might be interesting to see if you're experiencing the same problems with the older Pr.

  • Error message after opening Microsoft Ecosystem Metadata Exchange Powershell Module

    Hi,
    I am running into issue who I launch the Microsoft Ecosystem Metadata Exchange Powershell Module
    Here is the error message:
    Import-Module : Could not load file or assembly 'file:///C:\Program Files (x86)
    \Microsoft Ecosystem Metadata Exchange\MetadataExchange\Microsoft.Telemetry.Met
    adataExchange.Cmdlets.dll' or one of its dependencies. This assembly is built b
    y a runtime newer than the currently loaded runtime and cannot be loaded.
    At line:1 char:14
    + Import-Module <<<<  MetadataExchange
        + CategoryInfo          : NotSpecified: (:) [Import-Module], BadImageForma
       tException
        + FullyQualifiedErrorId : System.BadImageFormatException,Microsoft.PowerSh
       ell.Commands.ImportModuleCommand
    ========================================
    I am wondering what I should do to fix it...
    My OS is win7 x64 sp1
    Thanks,
    Jason

    May have to contact them here.
    http://blogs.msdn.com/b/wer/archive/2012/03/28/windows-hardware-dashboard-reports-faq.aspx#Support
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?category=windowsdesktopdev
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Error message when opening pdf in Photoshop

    Does anyone know how to get around this error when trying to open a pdf in Photoshop:
    Could not open “[file name]” because of a problem with the file-format module interface.”              

    Well, then the scanner software might produce faulty pdfs.
    Why do you use jpg?
    jpg is a lossy compression after all.

  • Adobe Reader 11 - error message when opening PDF's

    I have an iMac OSx.  Using Adobe Reader 11.  Everytime I open a PDF I get "an internal error has occured"  I was trying to uninstall Adobe Reader 11 but the uninstaller in my Applications/Utilities is not there.  HELP!!

    It's almost identical to what you posted. I think the difference was that I was trying on a machine with complete install of Acrobat which has the font packs and hence there was no hang/crash. Your file doesn't hang on that machine either.
    If you look at the fonts panel in your document: File>Properties>Fonts, you'll notice that it uses MS-PGothic font which is a Japanese fonts, and hence the Japanese font pack might fix this.
    Also, since you mentioned ACE.dll, the other possibility might be that there are conflicting DLLs on the system, commonly referred to as DLL Hell. Another thing to try would be to search the system for ACE.dll and see which all software install it.

  • Error Message when open iTunes -42032. What can I do?

    Error Message when open iTunes -42032. What can I do?

    Try 2 solutions: 1.  Press both Ctrl and Shift keys then double click on ITunes.  Hold keys down until a box appears on screen indicating ITunes is starting in "safe mode'.  left click on 'continue" and ITunes will run without closing.
    2;  Start ITunes normally, then  after loading, choose "Match" and then touch "stop" beforre step 3 , Uploading songs...",  runs for more than a few seconds.  The code problems are in Match;  the uploading function in Match.  ITunes won't crash if you stop Match soon enough!

  • Illustrator CS6 (UA version) started with error message, after start main menu looks like Illustrator ?????? ???? ?????? ????? ????????

    I have Illustrator CS 6 UA language version from Design Collection Bundle
    After starting app - i have 2 error message:
    after initialisation of inner modules live blends zip
    look pict 1
    second message - can't load inner plugins
    look pict
    after this - my illustrator workspace look like pict 3
    HELP ME - two weeks can't use legal buying product!!!
    ____________ CRUSH REPORT____________
    Process:         Adobe Illustrator [4446]
    Path:            /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         691 (16.0.5)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [158]
    User ID:         501
    Date/Time:       2014-06-16 14:41:45.317 +0300
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          113222 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  2301 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      611908C7-718D-8010-5BCA-804B5B5B8795
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-0000000101877000 [ 24.5M] r-x/rwx SM=COW  /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Thread 0 Crashed:: Main Thread  Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib             0x00007fff82fa7670 strlen + 16
    1   libstdc++.6.dylib             0x00007fff87a54a3f std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&) + 39
    2   com.adobe.illustrator         0x00000001009ae22c 0x100000000 + 10150444
    3   com.adobe.illustrator         0x00000001009af1bc 0x100000000 + 10154428
    4   com.adobe.illustrator         0x0000000100979137 0x100000000 + 9933111
    5   com.adobe.illustrator         0x00000001009793ca 0x100000000 + 9933770
    6   com.adobe.illustrator         0x0000000100993b6b 0x100000000 + 10042219
    7   com.adobe.illustrator         0x000000010084878e 0x100000000 + 8685454
    8   com.adobe.illustrator         0x00000001009904af 0x100000000 + 10028207
    9   com.adobe.illustrator         0x0000000100774bab 0x100000000 + 7818155
    10  com.adobe.illustrator         0x0000000100848995 0x100000000 + 8685973
    11  com.adobe.illustrator         0x00000001007742b1 0x100000000 + 7815857
    12  com.adobe.illustrator         0x0000000100705fab 0x100000000 + 7364523
    13  com.adobe.illustrator         0x000000010084878e 0x100000000 + 8685454
    14  com.adobe.illustrator         0x0000000100704369 0x100000000 + 7357289
    15  com.adobe.illustrator         0x00000001006f4ccc 0x100000000 + 7294156
    16  com.adobe.illustrator         0x00000001001634e8 0x100000000 + 1455336
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff83cf4d16 kevent + 10
    1   libdispatch.dylib             0x00007fff8170adea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff8170a9ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore 0x00007fff89c1a210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore 0x00007fff89c1a3e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore 0x00007fff89b7ca98 MPWaitOnQueue + 252
    5   com.adobe.ACE                 0x0000000102a2f2c9 0x1029f6000 + 234185
    6   com.adobe.ACE                 0x0000000102a2e5da 0x1029f6000 + 230874
    7   com.apple.CoreServices.CarbonCore 0x00007fff89bf17e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    9   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore 0x00007fff89c1a210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore 0x00007fff89c1a3e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore 0x00007fff89b7ca98 MPWaitOnQueue + 252
    5   com.adobe.ACE                 0x0000000102a2f2c9 0x1029f6000 + 234185
    6   com.adobe.ACE                 0x0000000102a2e5da 0x1029f6000 + 230874
    7   com.apple.CoreServices.CarbonCore 0x00007fff89bf17e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    9   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore 0x00007fff89c1a210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore 0x00007fff89c1a3e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore 0x00007fff89b7ca98 MPWaitOnQueue + 252
    5   com.adobe.ACE                 0x0000000102a2f2c9 0x1029f6000 + 234185
    6   com.adobe.ACE                 0x0000000102a2e5da 0x1029f6000 + 230874
    7   com.apple.CoreServices.CarbonCore 0x00007fff89bf17e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    9   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.adobe.AGM                 0x0000000102eddcfb AGMInitialize + 3255535
    3   com.adobe.AGM                 0x0000000102edeafc AGMInitialize + 3259120
    4   com.adobe.AGM                 0x0000000102ee5d8b AGMInitialize + 3288447
    5   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    6   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.adobe.ape.engine           0x00000001192c1c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine           0x000000011906fec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.adobe.ape.engine           0x00000001192c1c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine           0x000000011906fec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.adobe.ape.engine           0x00000001192c1c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine           0x000000011906fec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.adobe.ape.engine           0x00000001192c1c0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine           0x000000011906fec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff83cf2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83cf1c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff86f84233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff86f89916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff86f890e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMediaIO         0x00007fff8dd946e8 CMIO::DAL::RunLoop::OwnThread(void*) + 146
    6   com.apple.CoreMediaIO         0x00007fff8dd8c2ce CAPThread::Entry(CAPThread*) + 156
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdff3 _pthread_cond_wait + 927
    2   com.adobe.ape.engine           0x00000001192c1bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine           0x00000001192d9ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdff3 _pthread_cond_wait + 927
    2   com.adobe.ape.engine           0x00000001192c1bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine           0x00000001194542c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.adobe.AFlame               0x00000001206eb5f5 Flame_Terminate + 1642661
    3   com.adobe.AFlame               0x00000001206cc4cb Flame_Terminate + 1515387
    4   com.adobe.AFlame               0x000000012068428a Flame_Terminate + 1219898
    5   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    6   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff83cf4386 __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff830437c8 nanosleep + 163
    2   libsystem_c.dylib             0x00007fff830436df usleep + 54
    3   com.adobe.illustrator.plugins.dBrushTool 0x000000011c5912d2 PluginMain + 364594
    4   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    5   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff83cf26c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool 0x000000011c5937ea PluginMain + 374090
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff83cf26c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool 0x000000011c5937ea PluginMain + 374090
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff83cf26c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool 0x000000011c5937ea PluginMain + 374090
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff83cf26c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool 0x000000011c5937ea PluginMain + 374090
    Thread 19:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff83cf4322 __select + 10
    1   com.apple.CoreFoundation       0x00007fff86fc8f46 __CFSocketManager + 1302
    2   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    3   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 20:: IPCClient rcvr: FMClient.501.4446.140735100813696.1
    0   libsystem_kernel.dylib         0x00007fff83cf4322 __select + 10
    1   com.extensis.cpp-core-framework 0x0000000129930169 GIPCReceiver::OSWaitForData() + 2975
    2   com.extensis.cpp-core-framework 0x0000000129924b40 GIPCClient::ReceiverThreadProc(GThread*) + 798
    3   com.extensis.cpp-core-framework 0x00000001299a2ed9 GThread::PthreadInternal(void*) + 223
    4   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    5   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 21:: Agent IF Message Handler
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdfb9 _pthread_cond_wait + 869
    2   com.extensis.cpp-core-framework 0x00000001299623ce GSemaphore::TimedWait(unsigned int) + 76
    3   com.extensis.cpp-core-framework 0x00000001299293f9 GIPCClient::GIPCMTDataAccumulator::WaitForData(unsigned int, std::vector<char, std::allocator<char> >&, bool) + 37
    4   com.extensis.ExtensisFontManagement.sdk 0x0000000129ef11d5 GAgentIFMessageHandlerThread::RunMessageHandlerThread() + 445
    5   com.extensis.ExtensisFontManagement.sdk 0x0000000129ef18f2 GAgentIFMessageHandlerThread::AgentIFMessageHandlerThreadFunc(GThread*) + 42
    6   com.extensis.cpp-core-framework 0x00000001299a2ed9 GThread::PthreadInternal(void*) + 223
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 22:: IPCDataHandler for rcvr: FMClient.501.4446.140735100813696.1
    0   libsystem_kernel.dylib         0x00007fff83cf4322 __select + 10
    1   com.extensis.cpp-core-framework 0x000000012992c3d1 -[IPCDataHandler handleDataFromSocket:] + 2197
    2   com.apple.Foundation           0x00007fff8a2b9532 __NSThread__main__ + 1345
    3   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    4   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff83cf46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff82fbbf1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff82fbbce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff82fa6191 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff83cf46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff82fbbf1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff82fbbce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff82fa6191 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff83cf46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff82fbbf1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff82fbbce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff82fa6191 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff83cf4386 __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff830437c8 nanosleep + 163
    2   com.adobe.illustrator.plugins.ScriptingSupport 0x00000001158d78cb PluginMain + 1570155
    3   com.adobe.illustrator.plugins.ScriptingSupport 0x00000001158bf5b9 PluginMain + 1471065
    4   com.adobe.illustrator.plugins.ScriptingSupport 0x00000001158d7c16 PluginMain + 1570998
    5   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    6   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff83cf42aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x00000001150d65ec Invoke + 45721
    2   ServiceManager-Launcher.dylib 0x00000001150d5813 Invoke + 42176
    3   ServiceManager-Launcher.dylib 0x00000001150d4be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib 0x00000001150d4c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib 0x00000001150d030f Invoke + 20412
    6   ServiceManager-Launcher.dylib 0x00000001150d0616 Invoke + 21187
    7   ServiceManager-Launcher.dylib 0x00000001150d0cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib 0x00000001150d0f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib 0x00000001150d361d Invoke + 33482
    10  ServiceManager-Launcher.dylib 0x00000001150d3775 Invoke + 33826
    11  ServiceManager-Launcher.dylib 0x00000001150d3fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib 0x00000001150d40ad Invoke + 36186
    13  ServiceManager-Launcher.dylib 0x00000001150c6d6b Login + 480
    14  ServiceManager-Launcher.dylib 0x00000001150ca7ad Login + 15394
    15  ServiceManager-Launcher.dylib 0x00000001150d4412 Invoke + 37055
    16  ServiceManager-Launcher.dylib 0x00000001150d6253 Invoke + 44800
    17  libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    18  libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdff3 _pthread_cond_wait + 927
    2   com.adobe.ape.engine           0x00000001192c1bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine           0x00000001192d9ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib         0x00007fff83cf40fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff82fbdff3 _pthread_cond_wait + 927
    2   com.adobe.ape.engine           0x00000001192c1bd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine           0x00000001194542c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine           0x00000001192c1cd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine           0x00000001192c1d4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine           0x00000001192c1e79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff83cf26c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator         0x00000001001b9105 0x100000000 + 1806597
    2   com.adobe.illustrator         0x00000001001b8cde 0x100000000 + 1805534
    3   com.apple.CoreServices.CarbonCore 0x00007fff89bf17e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    5   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib         0x00007fff83cf26c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator         0x00000001001b9105 0x100000000 + 1806597
    2   com.adobe.illustrator         0x00000001001b8cde 0x100000000 + 1805534
    3   com.apple.CoreServices.CarbonCore 0x00007fff89bf17e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib             0x00007fff82fb9772 _pthread_start + 327
    5   libsystem_c.dylib             0x00007fff82fa61a1 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib         0x00007fff83cf46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff82fbbf1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff82fbbce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff82fa6191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00000000ffffffff  rbx: 0x0000000000000001  rcx: 0x0000000000000001  rdx: 0x0000000000000001
      rdi: 0x0000000000000000  rsi: 0xffffffffffffffff  rbp: 0x00007fff5fbff730  rsp: 0x00007fff5fbff708
       r8: 0x0000000000000000   r9: 0x000000000000000f  r10: 0x0000000024810001  r11: 0x000000013886c38a
      r12: 0x00007fff5fbff7d0  r13: 0x00007fff5fbff7a0  r14: 0x00007fff5fbff750  r15: 0x00007fff5fbff75f
      rip: 0x00007fff82fa7670  rfl: 0x0000000000010286  cr2: 0x0000000000000000
    Logical CPU: 1
    Binary Images:
           0x100000000 -        0x101876fef +com.adobe.illustrator (691 - 16.0.5) <33643694-AE8E-D193-92FA-25940D71D475> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101aba000 -        0x1027ffff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x102812000 -        0x102880fef +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1028d4000 -        0x1028d6fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x1028db000 -        0x102938ff7 +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.690) <577BD19B-B362-35B4-6020-2F038DEA5877> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/aiport.framework/Versions/A/aiport
           0x10295f000 -        0x1029c4ff7 +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.690) <0298BED7-3107-5330-292B-D7BAA1326B8E> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/filterport.framework/Versions/A/filterport
           0x1029f2000 -        0x1029f2ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.690) <5DB43D6A-1CA5-CD74-C2B9-5B02AAC809FD> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x1029f6000 -        0x102b6ffff +com.adobe.ACE (AdobeACE 2.19.18.20990 - 2.19.18.20990) <48C7C467-93A7-F609-1083-D0DD3C0B8988> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x102b82000 -        0x10318afff +com.adobe.AGM (AdobeAGM 4.26.20.20990 - 4.26.20.20990) <8F9BD5CF-287E-9EF1-926D-728359878CAC> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x103226000 -        0x103268ff7 +com.adobe.ARE (AdobeARE 1.5.02.20990 - 1.5.02.20990) <2FF36232-F715-2228-ACC0-BABFC0D6F779> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x103270000 -        0x10336afe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x10340e000 -        0x10342dfff +com.adobe.BIB (AdobeBIB 1.2.02.20990 - 1.2.02.20990) <84AEC009-ED37-875D-BA3B-19FF2A53F9EF> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x103434000 -        0x10345cff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4D9551F1-B07C-3BAF-0CED-1F83C866BCAA> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x103463000 -        0x1037c7ff7 +com.adobe.CoolType (AdobeCoolType 5.10.34.20990 - 5.10.34.20990) <3D5F8577-39F8-D1D0-81FE-6DC4203A9719> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x103813000 -        0x103c59fff +com.adobe.MPS (AdobeMPS 5.8.0.24821 - 5.8.0.24821) <E8E87710-F66B-32B5-97C6-A35D20867697> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103cd6000 -        0x104dd4fef +com.adobe.psl (AdobePSL 13.0.0.21041 - 13.0.0.21041) <910C283A-607C-F863-97EF-07FB2EEB38AD> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x104f95000 -        0x104ff5ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x104fff000 -        0x1050b7fe7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <9F30F410-B84E-EB85-7F2C-C72BCD50CB77> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x1050ea000 -        0x105194fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x1051bb000 -        0x1052fbfe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x10537a000 -        0x10547cfef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x1054c4000 -        0x105611ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x105685000 -        0x1058cefe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x105951000 -        0x105958fff +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <E1A491B4-8427-45ED-D312-5BC6E1ABF0A1> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x105962000 -        0x10598efff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x1059b1000 -        0x105a6efff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x105ab8000 -        0x105b7dfff +com.adobe.JP2K (2.0.0 - 2.0.0.25990) <1D61D0B2-F263-72E6-C2BB-C8BA6EBB9BAD> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bcc000 -        0x105d95fff +com.adobe.owl (AdobeOwl version 5.0.3 - 5.0.3) <1DEEBFAD-1C6D-303B-9F68-B39677534527> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105dd7000 -        0x1065aaff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.18562) <8DC49EE4-5700-97A1-EBFE-68024AE1980C> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106662000 -        0x106763fff +com.adobe.PDFPort (AdobePDFPort 2.1.0.20993 - 2.1.0.20993) <4356804E-2D42-1280-DC3B-66448D57F05A> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x106777000 -        0x10679cffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsetting s
           0x1067d8000 -        0x10681efe7 +com.adobe.pip (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x10682b000 -        0x1068d9fef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x106916000 -        0x1069d2fef +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <9C3A0810-22F9-5C20-C5A9-44C552076054> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x1069f4000 -        0x106d0afff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <041B948F-2768-2FC9-712A-43AE264510DB> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x106dd6000 -        0x106df0ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x106df9000 -        0x106e12fff  com.apple.carbonframeworktemplate (1.0 - 1.0) <0EDFCF84-BC82-4466-D878-69327B1722AF> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x106e19000 -        0x106efdfe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106f0e000 -        0x106f16fef +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <FEC30D42-7E6D-67F6-DE45-DF25D16AAFF5> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x106f30000 -        0x106f49ff7 +com.adobe.boost_filesystem.framework (6.0.0 - 6.0.0.0) <761BECE6-A9F6-0D48-44A1-677A44601F39> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x106f6b000 -        0x10701ffef +com.adobe.boost_regex.framework (6.0.0 - 6.0.0.0) <5315481A-D3FC-D8F9-137D-CADBE984299D> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1070ab000 -        0x107118fef +com.adobe.boost_serialization.framework (6.0.0 - 6.0.0.0) <A7509FBF-0BAB-C773-DE5D-E1CA3AD31628> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x10721b000 -        0x107228fff +com.adobe.boost_signals.framework (6.0.0 - 6.0.0.0) <9FAA55B3-B272-F747-270F-21D786E209E7> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x10723d000 -        0x10723fff7 +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <DD51C1B2-7FC1-81C1-1D88-FA3D12F01560> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x107246000 -        0x107252fff +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <8E8AD219-4C88-3140-D002-F07B74E15C43> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x107270000 -        0x1076bbfef +com.adobe.dvaadameve.framework (6.0.0 - 6.0.0.0) <993E4D4C-BEB3-A6F7-64E2-A4D742E147E6> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x107d16000 -        0x107e03fe7 +com.adobe.dvaai.framework (6.0.0 - 6.0.0.0) <AE668FE9-2D17-2DB6-34BF-2111565B7A6B> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x107eaf000 -        0x1080a3fff +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <76DA097D-FDE2-D4D9-7C7A-C4FF86F0A2CC> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10826b000 -        0x10878efef +com.adobe.dvaui.framework (6.0.0 - 6.0.0.0) <39B9DD96-CD3A-38AF-395B-E54C4ED8C620> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x108ca1000 -        0x108d6eff7 +com.adobe.dvaworkspace.framework (6.0.0 - 6.0.0.0) <0B5A7058-98EC-B242-BD62-03ED6DD6C1F2> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x108e62000 -        0x108f4eff7 +com.adobe.exo.framework (6.0.0 - 6.0.0.0) <7B65DA8D-501B-F242-C2E1-71F4C4EA3F20> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x109098000 -        0x109116fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x109127000 -        0x109153ff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x10916c000 -        0x10917aff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x109190000 -        0x109195fff  com.apple.agl (3.2.1 - AGL-3.2.1) <328CAFF6-C443-303F-923A-F9EEA8E71794> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10919c000 -        0x1091a5fff +com.adobe.dvaflashview.framework (6.0.0 - 6.0.0.0) <7941B717-142A-AC01-5E6E-87521BCFA6AA> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1091b3000 -        0x1091b7ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1091f2000 -        0x1091f4ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10a7fc000 -        0x10a7fcfff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 16.0.0 - 16.0.0) <F92F3F78-179C-2196-F172-4F89E3EDD850> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Resources/uk_UA/PluginRes.aip/Contents/MacOS/PlugInRes
           0x10d338000 -        0x10d349fef +com.adobe.illustrator.plugins.BNPlugin (BNPlugin version 16.0.3 - 16.0.3) <831635EC-F536-4557-AC4E-0035A4FE3394> /Applications/ADOBE_CS6_UA/*/BNPlugin
           0x10d350000 -        0x10d387ff7 +com.adobe.illustrator.plugins.ArtboardPanel (Artboard Panel version 16.0.3 - 16.0.3) <4DC9C186-8909-5EA0-4738-3FFA2DA0E58F> /Applications/ADOBE_CS6_UA/*/ArtboardPanel
           0x10d39f000 -        0x10d3acfef +com.adobe.illustrator.plugins.AppBarControls (AppBarControls version 16.0.3 - 16.0.3) <428E440C-F2B2-520E-FB0E-9EB387B09E0B> /Applications/ADOBE_CS6_UA/*/AppBarControls
           0x10d3bb000 -        0x10d404ff7 +com.adobe.illustrator.plugins.KeyboardShortcuts (Keyboard Shortcuts version 16.0.3 - 16.0.3) <4CE1A272-14F0-D49F-ACBF-AEE937CA9FA4> /Applications/ADOBE_CS6_UA/*/KeyboardShortcuts
           0x10d423000 -        0x10d424ff7 +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 16.0.3 - 16.0.3) <6C7A6A39-80D4-7135-43D8-BE5246FE4F8A> /Applications/ADOBE_CS6_UA/*/FlattenS
           0x10d428000 -        0x10d42ffff +com.adobe.illustrator.plugins.fileclipboardpref (FileClipboardPref version 16.0.3 - 16.0.3) <FFAE0E30-CD21-123B-1CFF-C8D3FFD309A6> /Applications/ADOBE_CS6_UA/*/fileclipboardpref
           0x10d9ea000 -        0x10d9f4fff +com.adobe.illustrator.plugins.Action (Action version 16.0.3 - 16.0.3) <34827E6E-5010-871E-C8CB-1665E460E1A9> /Applications/ADOBE_CS6_UA/*/Action
           0x10d9fb000 -        0x10d9fcff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10f22d000 -        0x10f2e6ff7  ColorSyncDeprecated.dylib (400) <3A647DD4-9BA1-3B5E-9680-64923371A9B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10f359000 -        0x10f362fe7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 16.0.3 - 16.0.3) <B124416D-B993-5F35-2941-299F5EB19B26> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
           0x10f386000 -        0x10f386ffb +cl_kernels (???) <60100E7E-1CA4-4FE6-B98C-A37458B06A37> cl_kernels
           0x10f3dc000 -        0x10f3e7fff +com.adobe.illustrator.plugins.FrameworkS (Framework Server version 16.0.3 - 16.0.3) <130FEFE5-3776-E667-4F50-DB73439CCAD2> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS
           0x10f3f9000 -        0x10f3fcff7 +com.adobe.illustrator.plugins.Geometry ( Geometry Suite version 16.0.3 - 16.0.3) <18183D21-9810-828D-EF04-3F9022E8A72F> /Applications/ADOBE_CS6_UA/*/Geometry
           0x110755000 -        0x1107c4ff7 +com.adobe.illustrator.plugins.PhotoshopAdapter (Photoshop Adapter version 16.0.3 - 16.0.3) <D4612C84-0D6E-DE51-C2EB-F2B128817DCA> /Applications/ADOBE_CS6_UA/*/PhotoshopAdapter
           0x1107d3000 -        0x110849fef +com.adobe.illustrator.plugins.UserInterface (User Interface version 16.0.3 - 16.0.3) <A13E07E0-0AA3-99C6-77B4-9FCF9C39196B> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/UserInterface.aip/Contents/MacOS/UserInterface
           0x1108b2000 -        0x1108e2ff7 +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 16.0.3 - 16.0.3) <F4EDBC44-2099-042B-AEDF-EB449789B35B> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
           0x1109ad000 -        0x1109b2fff +com.adobe.illustrator.plugins.FlattenTransparency ( Flatten Transparency version 16.0.3 - 16.0.3) <6403BC39-7744-5A1B-1E6C-00EB7D67CA6F> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/FlattenTransparency
           0x1109b7000 -        0x1109d2fe7 +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 16.0.3 - 16.0.3) <1A73D8CC-F6A2-9BA0-B2A0-9D461A2AE0F2> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
           0x1109df000 -        0x1109f7fff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 16.0.3 - 16.0.3) <D409517D-3E49-F928-357D-503E1F6CEC75> /Applications/ADOBE_CS6_UA/*/BrushManager
           0x110b00000 -        0x110b65fef +com.adobe.illustrator.plugins.PDFSuite (PDF Suite version 16.0.3 - 16.0.3) <BB034C1B-AB95-7177-BA2C-C0E56E5BED68> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDFSuite
           0x110b77000 -        0x110b9aff7 +com.adobe.illustrator.plugins.Rasterize (Rasterize version 16.0.3 - 16.0.3) <E99A8BFF-E554-1DC9-7F65-D6F8CF301DA3> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
           0x110ba2000 -        0x110ca5ff7 +com.adobe.illustrator.plugins.BeautifulStrokes (Beautiful Strokes Suite version 16.0.3 - 16.0.3) <D62349C0-C7E8-DCD5-492C-B1B4C5695FB4> /Applications/ADOBE_CS6_UA/*/BeautifulStrokes
           0x110cbc000 -        0x110de7fef +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 16.0.3 - 16.0.3) <22CABFBE-638E-DD92-D4FE-292E058A8A71> /Applications/ADOBE_CS6_UA/*/ColorHarmony
           0x110e1c000 -        0x110e39fff +com.adobe.illustrator.plugins.ControlPanel (ControlPalette version 16.0.3 - 16.0.3) <372D0849-3132-2252-1DA7-86378FFDA846> /Applications/ADOBE_CS6_UA/*/ControlPanel
           0x110e41000 -        0x110e7ffe7 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 16.0.3 - 16.0.3) <5712DBB5-5678-ADCC-A77D-DBC7EACA49AF> /Applications/ADOBE_CS6_UA/*/KinsokuDlg
           0x110e9e000 -        0x111076fff +com.adobe.illustrator.plugins.PlanetX (Live Paint version 16.0.3 - 16.0.3) <C5EF22AA-A270-6F51-9A55-6CE1A7ED4F41> /Applications/ADOBE_CS6_UA/*/PlanetX
           0x11108a000 -        0x11117fff7 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 16.0.3 - 16.0.3) <0BBB57F0-F021-15F9-3224-7428FEB25838> /Applications/ADOBE_CS6_UA/*/PaintStyle
           0x1111ae000 -        0x11123dfff +com.adobe.illustrator.plugins.Perspective (Perspective version 16.0.3 - 16.0.3) <796B4763-37CB-558F-C34B-3FC55B19B312> /Applications/ADOBE_CS6_UA/*/Perspective
           0x111248000 -        0x111327fef +com.adobe.AXEXSLT (AdobeAXSLE 3.7.101.18636 - 3.7.101.18636) <F0116E90-5C45-DFA3-9C17-9B5D1BF0FD1F> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
           0x1113b9000 -        0x111433fef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <C0AD101D-E452-4B4B-5B31-F467133EC20C> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x111442000 -        0x111468ff7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
           0x114f5c000 -        0x114fa2fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 6.0.0.24 - 6.0.0.24) <58C40EB9-2F38-2479-E710-344CAB0CEFB7> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNoti fications
           0x1150c1000 -        0x1150ecfff +ServiceManager-Launcher.dylib (389) <7AE35754-3413-206D-4B92-579AAA25B4F8> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
           0x115487000 -        0x115521ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
           0x115749000 -        0x1159e9ff7 +com.adobe.illustrator.plugins.ScriptingSupport (Scripting Support version 16.0.3 - 16.0.3) <E1383CA9-7A85-2B68-7197-8A9685B567C8> /Applications/ADOBE_CS6_UA/*/ScriptingSupport
           0x115ac3000 -        0x115bb4fff +com.adobe.AdbeScriptUIFlex (ScriptUIFlex 6.2.29 - 6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFle x
           0x115c38000 -        0x115d11ff7  libcrypto.0.9.7.dylib (106) <C1F22F70-84C5-39FC-9C73-5662AF4385E9> /usr/lib/libcrypto.0.9.7.dylib
           0x116d68000 -        0x116d6dfff  com.apple.audio.AppleHDAHALPlugIn (2.4.7 - 2.4.7fc4) <EA592C9E-AD15-3DD0-85BE-D47BBBE04286> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x116d72000 -        0x116d9aff7  com.apple.cmio.DAL.VDC-4 (309.0 - 4163.1) <321076BE-C843-3FA5-9076-5B4EB3049C99> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
           0x116da5000 -        0x116dc6fff  libKoreanConverter.dylib (61) <7A601BB8-19DF-3DDC-9C50-3A798290F377> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x116dca000 -        0x116dd0fe7 +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 16.0.3 - 16.0.3) <52A65375-0EFD-B641-8C1A-6A6D1EC6248E> /Applications/ADOBE_CS6_UA/*/ToolSelector
           0x119027000 -        0x119facfd7 +com.adobe.ape.engine (3.3.8.19346 - 3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
           0x11a68d000 -        0x11a6a9ff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11a916000 -        0x11aa61fef +com.adobe.illustrator.plugins.SwatchLibs (Swatch Libraries version 16.0.3 - 16.0.3) <FF6253E4-7712-FA39-5396-972BB67FC2C4> /Applications/ADOBE_CS6_UA/*/SwatchLibs
           0x11aa94000 -        0x11ab1bfe7 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 16.0.3 - 16.0.3) <5D5B49C1-6393-9DCB-C403-E760F7E06898> /Applications/ADOBE_CS6_UA/*/SymbolPalette
           0x11ab3b000 -        0x11ab59fe7 +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 16.0.3 - 16.0.3) <68576CA1-641C-68F8-E1AB-55AAAAC6BA0E> /Applications/ADOBE_CS6_UA/*/VariablesPalette
           0x11ab60000 -        0x11ab77ff7 +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 16.0.3 - 16.0.3) <2B54ABF2-A6F4-DE67-79A3-B12C5B6C2701> /Applications/ADOBE_CS6_UA/*/TextWrapDlg
           0x11ab89000 -        0x11abc1fef +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 16.0.3 - 16.0.3) <DC2DE251-744A-4BF3-91BD-6D4E6D5928FB> /Applications/ADOBE_CS6_UA/*/Mojikumi
           0x11abda000 -        0x11abe5fef +com.adobe.illustrator.plugins.DiffusionRasterSuite (DiffusionRaster version 16.0.3 - 16.0.3) <878FC1D8-B5BA-A151-AD8C-6DA6E86F643A> /Applications/ADOBE_CS6_UA/*/DiffusionRasterSuite
           0x11abf6000 -        0x11abfcfff +com.adobe.illustrator.plugins.ShapeSuite (Shape Construction Suite version 16.0.3 - 16.0.3) <A90CE444-CECF-F646-45C5-D9AB0EA2A353> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeSuite
           0x11ad00000 -        0x11b005ff7 +com.adobe.illustrator.plugins.Vectorize (TracingSuite version 16.0.3 - 16.0.3) <ED44F67F-2F83-33FC-289A-F3D4A7B86F35> /Applications/ADOBE_CS6_UA/*/Vectorize
           0x11b020000 -        0x11bc32ff7 +com.adobe.illustrator.plugins.DxfDwg (DxfDwg version 16.0.3 - 16.0.3) <CAF977AE-A6BD-124E-BFE9-389F085A8B65> /Applications/ADOBE_CS6_UA/*/DxfDwg
           0x11bdb8000 -        0x11bed4fe7 +com.adobe.illustrator.plugins.svgFileFormat ( SVG Format version 16.0.3 - 16.0.3) <F42331A2-D6D6-34FE-8DD5-5C89E5A581B4> /Applications/ADOBE_CS6_UA/*/svgFileFormat
           0x11bef6000 -        0x11bf0ffff +com.adobe.illustrator.plugins.DxfDwgUI (DxfDwgUI version 16.0.3 - 16.0.3) <189E2288-EF9B-79C8-6DA2-1283FF8B98AD> /Applications/ADOBE_CS6_UA/*/DxfDwgUI
           0x11bf23000 -        0x11bf84fff +com.adobe.illustrator.plugins.Deform (Envelope and Warp version 16.0.3 - 16.0.3) <81F37050-3849-0C2B-39A4-66DFDEB6A24F> /Applications/ADOBE_CS6_UA/*/Deform
           0x11bf90000 -        0x11bfc5fff +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 16.0.3 - 16.0.3) <4A847C50-BA46-DF56-22CF-6B807C912FD8> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAttributes
           0x11bfce000 -        0x11c008ff7 +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 16.0.3 - 16.0.3) <0A58ECE9-502C-EF50-A7B3-F13C928D0270> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
           0x11c041000 -        0x11c049fff +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 16.0.3 - 16.0.3) <7D787DD1-DAEB-B9BE-193F-70952CF22487> /Applications/ADOBE_CS6_UA/*/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
           0x11c062000 -        0x11c07afef +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 16.0.3 - 16.0.3) <58C84F40-5C8E-716C-B16D-1AA1428E1D0B> /Applications/ADOBE_CS6_UA/*/AssetMgmt
           0x11c084000 -        0x11c0a6ff7 +com.adobe.illustrator.plugins.DocInfo (Document Info version 16.0.3 - 16.0.3) <03164680-8935-571B-0B48-9D14F66B87D1> /Applications/ADOBE_CS6_UA/*/DocInfo
           0x11c0b1000 -        0x11c0fbff7 +com.adobe.illustrator.plugins.LinkPalette (Links Palette version 16.0.3 - 16.0.3) <BEBB87AB-5969-56AA-D8AE-070379006775> /Applications/ADOBE_CS6_UA/*/LinkPalette
           0x11c117000 -        0x11c16ffff +com.adobe.illustrator.plugins.Snapomatic (Snap version 16.0.3 - 16.0.3) <31DCCD99-EAF3-4D46-E10D-5B03A1D8BF49> /Applications/ADOBE_CS6_UA/*/Snapomatic
           0x11c17d000 -        0x11c185fff +com.adobe.illustrator.plugins.Colors (Colors version 16.0.3 - 16.0.3) <F62C388B-C7BD-B62B-2106-5548B1E87144> /Applications/ADOBE_CS6_UA/*/Colors
           0x11c18b000 -        0x11c18fff7 +com.adobe.illustrator.plugins.TrimMark (Crop Marks version 16.0.3 - 16.0.3) <EF53227A-0DEF-2149-3F5D-EFA5E04BBE26> /Applications/ADOBE_CS6_UA/*/TrimMark
           0x11c194000 -        0x11c198ff7 +com.adobe.illustrator.plugins.Distort (Free Distort version 16.0.3 - 16.0.3) <1868664C-8DB9-6471-0FB4-2EBEADBB77A5> /Applications/ADOBE_CS6_UA/*/Distort
           0x11c19d000 -        0x11c1acff7 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 16.0.3 - 16.0.3) <C2007F13-5E1D-D945-776E-9967228D6C7C> /Applications/ADOBE_CS6_UA/*/DropShadow
           0x11c1b3000 -        0x11c1e1fe7 +com.adobe.illustrator.plugins.EyeBucketTool (Eye Bucket Tool version 16.0.4 - 16.0.4) <FBE58F6C-25F3-19D2-91AC-DE395B0C83BC> /Applications/ADOBE_CS6_UA/*/EyeBucketTool
           0x11c1f7000 -        0x11c1fafff +com.adobe.illustrator.plugins.TypeCase (Change Case version 16.0.3 - 16.0.3) <5D17C625-7305-5B41-64AF-8B942848F95C> /Applications/ADOBE_CS6_UA/*/TypeCase
           0x11c300000 -        0x11c305fff +com.adobe.illustrator.plugins.TwirlTool (Twist Tool version 16.0.3 - 16.0.3) <C7453AAD-ED4C-6C90-6B06-879737663093> /Applications/ADOBE_CS6_UA/*/TwirlTool
           0x11c30a000 -        0x11c319ff7 +com.adobe.illustrator.plugins.Simplify (Simplify version 16.0.3 - 16.0.3) <DFA0F981-1CCC-F33E-4035-D28A8C174F1B> /Applications/ADOBE_CS6_UA/*/Simplify
           0x11c32a000 -        0x11c34fff7 +com.adobe.illustrator.plugins.ShapeTool (ShapeTool version 16.0.3 - 16.0.3) <881C5DC6-1E75-F61B-8A63-9EF67BE17D58> /Applications/ADOBE_CS6_UA/*/ShapeTool
           0x11c365000 -        0x11c392fff +com.adobe.illustrator.plugins.SimpleTools (Segment Tools version 16.0.3 - 16.0.3) <4C44243A-3604-2919-9D95-98C448425282> /Applications/ADOBE_CS6_UA/*/SimpleTools
           0x11c3a7000 -        0x11c3c7fff +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 16.0.3 - 16.0.3) <5C1A9746-F22D-AA52-13EA-D2B9DEA31154> /Applications/ADOBE_CS6_UA/*/ScatterBrushTool
           0x11c3cf000 -        0x11c3ecfff +com.adobe.illustrator.plugins.GlobAdjTool (Reshape Tool version 16.0.3 - 16.0.3) <33DC8D92-39CD-6626-A540-98A611BF1EC6> /Applications/ADOBE_CS6_UA/*/GlobAdjTool
      

    Mick,
    It may be worth trying to uninstall, run the Cleaner Tool and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    Or, you may try Customer Care,
    http://helpx.adobe.com/contact.html
    or Adobe Support (phone),
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html
    or this specialized forum (where you may be able find the answer from previous threads),
    http://forums.adobe.com/community/download_install_setup

  • CS6 Error message after download

    PS CS6 Error message after Download
    HP Pavilion dv7 Notebook PC
    Intel Core i7-2670QM CPU @2.20 GHz
    64 Bit OS
    Win 7 Home Premium SP1
    Question:  Should I open to use this, or erase and download again?  Wanted you to know as this is in Beta.
    Steps I followed:
    Found the download and installed
    I went through all steps directed by the download wizard, at the end of the
    process I received this message:
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW050 ...
    -------------------------------------- Summary ------------------------------
    - 0 fatal error(s), 5 error(s), 0 warning(s)
    ----------- Payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 -----------
    ERROR: Error 1935.An error occurred during the installation of assembly component {43CC1B37-B20C-3EBC-9C04-F809989E4FD3}. HRESULT: 0x80070091.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1935.An error occurred during the installation of assembly component {43CC1B37-B20C-3EBC-9C04-F809989E4FD3}. HRESULT: 0x80070091.
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Mini Bridge CS6: Install failed
    ERROR: DW050:  - Adobe SwitchBoard 2.0: Install failed

    Hi,
    This seems a third party issue.
    Please follow the instructions in the kb article at: kb2.adobe.com/cps/403/kb403969.html
    Regards,
    Ashutosh

  • Error message after executing KKRC- How to define Hierarchy ID ?

    Hi Gurus
    Ours’ is a Chemical Mfg./ Marketing Company. We have ECC 5.0 version implemented in our Company. We  have the Production process orders of different types ( Normal Process order , Reprocess Process order etc.). For the purpose of MIS it is our regular practice to download data in Worksheets & then work upon it ( pivot tables etc.)  &  compile the reports. We have the requirement to have SKU wise ( Finished Goodswise ) summarised compilation of  different type of Variances ( both Qty. , value of input materials, wherever applicable) .
    While browsing the SAP’s BPX community database I have come across the query similar to my requirement . refer thread Product costing - Information system, order summarization  
    Posted: Sep 30, 2007 3:21 AM
    As suggested in the response to that query  I have followed the steps .
    KKRV followed by KKRC . The error message after executing  KKRC reads
    “ No IDs defined for Hierarchy type CO
    Diagnosis No Hierarchy id is defined in customising for the hierarchy type you selected
    Procedure : go in to the customising and define the structure of hierarchy  by means of an appropriate Hierarchy ID. “
    Can some one give me further leads ( i.e. navigation/path and clues for  defining   Hierarchy ID)
    Or
    is there any other way to address the requirement mentioned in opening para.
    With best regards
    Sudheer

    Hi Patrick,
    unfortunately I cannot provide an ad-hoc solution for your nested exception without further investigations.
    Nevertheless I'm very interested to know, why you "gave up" using the Adaptive WS Model in Web Dynpro. What's the problem?
    Perhaps the coding which now requires to create a model instance:
    /** Hook method called to initialize controller. */
    //@@end
    public void wdDoInit() {
      //@@begin wdDoInit()
      // create a new model instance (1)
      EmailAdWSModel model = new EmailAdWSModel();
      // create model objects (2, 3)
      Request_SendEmail requestMO = new Request_SendEmail(model);
      SendEmail emailMO = new SendEmail(model);
      // associate model objects (4)
      requestMO.setSendEmail(emailMO);
      // bind executable model object to context node (5)
      wdContext.nodeRequest_SendEmail().bind(requestMO);
      //@@end
    Regards, Bertram

  • Hi on MAC OSX 10.7.4 update on Aperture 3.3.1 has been done, still gget the error message "By opening the databank  for the Mediathek „~/Pictures/Aperture Library.aplibrary" is an error" is anybody out there to help me?

    Hi on MAC OSX 10.7.4 update on Aperture 3.3.1 has been done, still gget the error message "By opening the databank  for the Mediathek „~/Pictures/Aperture Library.aplibrary“ is an error" is anybody out there to help me?

    Alex,
    did you just upgrade from an Aperture 3.2.x version to Aperture 3.3.1? This error message usually occures after the upgrade to 3.3.1, when Aperture cannont convert the library format to 3.3. format.
    I'd try to repair the Aperture Library (Mediathek), before upgrading it. Hold down the option-command key combination (⌥⌘) while double-clicking Aperture. This will bring the "Aperture Library First Aid Tools" panel forward. Select "Rebuild Database" and see, if it will resolve the the problem.
    Good luck
    Léonie

  • I received the error (in iCal on my iMac): "The server responded with an error". The error message is very large, and if there is a way to acknowledge and close it I can't find it. Because this error message is open, I can't do anything in iCal. Any sugge

    I received the error (in iCal on my iMac): "The server responded with an error". The error message is very large, and if there is a way to acknowledge and close it I can't find it. Because this error message is open, I can't do anything in iCal. Any suggestions on how I could kill this error message? Thanks.
    iMac, Mac OS X (10.7.2)
    Basically i tried to enter too much information into my calendar and it has crashed  now i can not get rid of the error message or use the calendar  can anyone help please

    did you find ou how to get rid of it i can't

  • I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help?

    I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help? I am not that technically inclined and really simple terms  are appreciated.

    Try downloading the songs from a different device. If you are doing it from your iOS device, try form your computer.

Maybe you are looking for

  • Problems with in/out points when submitting jobs via Terminal/command-line

    I've writting a GUI based script which allows a user to select a source Quicktime file, and will encode that file to multiple formats, and trims each destination based on specific timecode in/out points. However, I'm having problems getting the Compr

  • Please please help. I need to get this code working ASAp

    hi! right, I am a java dunce. I am doing a web design degree at uni and annoyingly have to take a programming module. I just don't get it one bit and the lecturer is a sadist and won't help. I have tried countless books and what not but it all goes o

  • Databse connectivity problem

    hai everyone, i have done a small databse application in Sun creator studio with MySql as backend.It worked well with with the sun application server. but when the same is deployed on tomcat , i met with the following error Exception Handler Descript

  • Add UDF linked to a UDT

    Hi all, I added a user-defined table (type 'no object') to be able to enter some master data with only a code and description. I want to link this table to a user-defined field. I tried to add an user-defined field linked to this table (just by follo

  • Tab Thru Adobe Reader Documents

    Is there any way to set up the adobe reader so I can tab thru my documents instead of a new window opening up every time I open a new document? Now I  have a dozen or more windows open at one time and it is taking up my task bar not to mention it is