Need help in rdf report 'footer'printing option

Dear All,
I have a requirement as below.
I have a RDF report in that i am printing 3 copies of print in the printer,my requirement is in the second print copy i need to print a different footer.
Ex: 1st copy footer:'ABC'
      2nd copy footer:'DEF'
      3rd copy footer:'ABC'
Please help me on this.

Than perhaps you don't have your mail system configured properly, such as a missing "smart host" or missing smtp relay in your sendmail configuraiton, or perhaps security options on your smtp gateway, or a networking or DNS issue, etc, etc.
I suggest to try sending a normal e-mail and check the logs to make sure that it works, before troubleshooting the script.

Similar Messages

  • Need help on classical report

    hi friends i need help on classical reports,
    sold-party,
    material
    sales and distrubitutation channel ,division,
    incoming orders,order number,invoice ,credit,
    i need sub totals and final total of invoice and each customer should display in new page .

    Hi
    Use the Tables KNA1,VBAk,VBAP,VBRK and VBRP and design the report
    see the sample report using KNA1,VBAK and VBAP.
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Reward points for useful Answers
    Regards
    Anji

  • I need help with the conditional build tag option RoboHelp 10

    I need help with the conditional build tag option. I want to apply CBT to content in a topic. I looked at the Help topics and believed that I applied the feature correctly. Howver, it is not working as desired. In the 2nd sentence below I want the text highlighted in blue to only appear for the printed output and the text printed in purple to only appear for the .htm /online output. Please help.
    There are common tasks used to manage the folders in the Navigator and the folders
    in the BBS Folders Viewer Grid. For more information on these common tasks see Help
    and Support in Success Enterprise. click the links below.

    Hi there
    Using tagging is a two part process.
    Part One
    You create and apply the tags to the information you wish to control.
    Part Two
    You create a Build Expression that is used when you generate your output. The Build Expression typically reads something like: NOT Tag1 (or whatever your tag name is)
    Then when you generate and use the Build Expression, the information tagged is not included in the build.
    Cheers... Rick

  • Need help connecting a windows network printer to my Mac (Xerox Phaser 3600) over a windows home network

    Need help connecting a windows network printer to my Mac (Xerox Phaser 3600) over a windows home network.
    My Mac runs lion and the windows desktop runs Windows XP
    I have tried for a few hours or so to connect my mac to this printer over a home network.
    For your information it does work when connected directly to my mac using a USB Cable.
    If there is no soultion could I have help getting the drivers for a Dell All-in-One Photo 926

    In most cases you can connect to the Windows shared printer from the Mac. But there is a dependence on the Mac driver being compatible. For many consumer inkjets, the vendor created driver cannot be used for this type of connection so you need to look at alternative drivers, such as Gutenprint or PrintFab. If you can tell us which brand and model of printer you have shared from Windows then we can answer your question with the preferred procedure on the Mac.

  • Need help on Oracle Report format

    Hi,
    I need help on Oracle Reports. I am generating a report in excel sheet. I have a column which is 13 digit number (In database it is CHAR datatype). In excel sheet it showing some thing like 9.78381E+12. I want to show complete number like 9783805591331.
    Also sometimes leading zero's are not showing when my column values is something like 0098794859583. I need to show the leading zero's as well in excel without losing them.
    Below are the parameters i am using for the report
    DESFORMAT=SPREADSHEET AND DESTYPE=FILE
    My Oracle 9i developer version.
    Any help on this would be much appreciated.
    Thanks
    Kishore

    An additional quote string ' character with the number field will solve this problem but if u want to display this field in report then it will look ugly
    '''||yourfield from table; check ur regional settings also
    plz mark it helpful correct if it is

  • Need help Connecting Crystal Reports 8.5 with GBS Agency Expert 6.7.6c

    Need help Connecting Crystal Reports 8.5 with GBS Agency Expert 6.7.6c.  I need assistance on connecting these together so I can run a report.  I am not an IT person so if someone could dumb it down it would be great.
    Thanks,
    NBGHealth

    Hello,
    I assume GBS Agency Expert 6.7.6c is some sort of database or data source? If you have an ODBC driver then create or use a System DSN to the database. Then you can create a report using that DSN.
    Otherwise I suggest you contact the makers of GBS Agency Expert 6.7.6c and ask them how to connect to the database.
    Let them know CR is ANSII 92 ODBC 3 compliant.
    Thank you
    Don

  • Need Help on choosing Color Laser Printer

    Hello Everyone;
    I am strugling to decide which Laser Colour Printer to buy, and I need some advice; I have the following options so far:
    HP 2605dn
    Brother HL-4070CDW
    Oki C3400n
    I only found here reviews for the HP, and they were mostly all negative, a lot of users complaining about the speed when printing in color.
    But couldn't find reviews for the other two, only posts regarding the lack of drivers for them. Is there anyone who have used the above printers on a Mac succesfully?
    Any comment would help. Can anyone review the Oki and/or the Brother printer?
    This is what I need from my printer:
    Relatively fast on a Mac
    Duplex (is not a must but would be nice)
    Wireless Printer (again is not a must, but it would be awesome)
    Color printing
    Basically I will use it at home for personal use: newsletters, some documents, etc.
    Many Thanks!

    Take a look at the Canon line. By that, I mean the output.

  • Need help in dynamic report for a range of year and period

    Dear all,
    I need help in creating an ALV report with dynamic columns based on the Year and period entered on the selection screen. for example if in the year we enter 2002 and period range from 10 to 12 then we should get the 3 columns display for cost(example) for period 10/2002, 11/2002 and 12/2002.
    Can anyone help me in achieving this dynamically since the user can enter the year also in intervals along with the period and data also needs to be populated in the corresponding columns.
    An example code would be of great help.
    Thanks,
    Amit

    Hi,
    Use field symbols as follows.
    TYPE-POOLS : SLIS.
    TABLES : MARC,T001W.
    DATA : BEGIN OF ITAB OCCURS 0,
           MATNR LIKE MARC-MATNR,
           END OF ITAB.
    DATA : FIELDSTAB TYPE LVC_T_FCAT,
           STAB      TYPE LVC_S_FCAT,
           T_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           S_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
           NEW_LINE TYPE REF TO DATA,
           NEW_TABLE TYPE REF TO DATA,
           INDEX(3) TYPE C,
           STR(70),
           TEXT(6),
           CNT(1),
           TEXT1(16),
           REPID LIKE SY-REPID.
    FIELD-SYMBOLS : <FS> TYPE STANDARD TABLE,
                    <WA> TYPE ANY.
    SELECT-OPTIONS : S_WERKS FOR MARC-WERKS NO INTERVALS,
                     S_MATNR FOR MARC-MATNR NO INTERVALS.
    INITIALIZATION.
      REPID = SY-REPID.
    START-OF-SELECTION.
      SELECT * FROM MARC
               INTO CORRESPONDING FIELDS OF TABLE ITAB
               WHERE MATNR IN S_MATNR
               AND   WERKS IN S_WERKS.
      SORT ITAB BY MATNR.
      DELETE ADJACENT DUPLICATES FROM ITAB COMPARING MATNR.
      STAB-FIELDNAME = 'MATNR'.
      STAB-DATATYPE  = 'CHAR'.
      STAB-INTLEN    = '18'.
      APPEND STAB TO FIELDSTAB.
      CLEAR CNT.
      LOOP AT S_WERKS.
        CLEAR TEXT.
        CNT = CNT + 1.
        CONCATENATE  'EISLO' CNT INTO TEXT.
        STAB-FIELDNAME = TEXT.
        STAB-DATATYPE  = 'CHAR'.
        STAB-INTLEN    = '16'.
        APPEND STAB TO FIELDSTAB.
        CLEAR S_WERKS.
      ENDLOOP.
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = FIELDSTAB
        IMPORTING
          EP_TABLE        = NEW_TABLE.
      ASSIGN NEW_TABLE->* TO <FS>.
      CREATE DATA NEW_LINE LIKE LINE OF <FS>.
      ASSIGN NEW_LINE->* TO <WA>.
      PERFORM MOVE_DATA.
      CLEAR S_FIELDCAT.
      S_FIELDCAT-FIELDNAME = 'MATNR'.
      S_FIELDCAT-TABNAME = ITAB.
      S_FIELDCAT-SELTEXT_M = 'Part Number'.
      S_FIELDCAT-NO_ZERO = 'X'.
      S_FIELDCAT-DDICTXT   = 'M'.
      APPEND S_FIELDCAT TO T_FIELDCAT.
      CLEAR CNT.
      LOOP AT S_WERKS.
        CLEAR T001W.
        CNT = CNT + 1.
        SELECT SINGLE * FROM T001W WHERE WERKS = S_WERKS-LOW AND SPRAS = SY-LANGU.
        CLEAR TEXT.
        CONCATENATE 'EISLO' CNT INTO TEXT.
        S_FIELDCAT-FIELDNAME = TEXT.
        S_FIELDCAT-SELTEXT_M = T001W-NAME2.
    S_FIELDCAT-NO_ZERO = 'X'.
        S_FIELDCAT-DDICTXT   = 'M'.
        APPEND S_FIELDCAT TO T_FIELDCAT.
        CLEAR S_WERKS.
      ENDLOOP.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          IT_FIELDCAT = T_FIELDCAT[]
        TABLES
          T_OUTTAB    = <FS>.
    *&      Form  MOVE_DATA
          text
    FORM MOVE_DATA.
      LOOP AT ITAB.
        CLEAR STR.
        CONCATENATE ITAB-MATNR ' ' INTO STR SEPARATED BY SPACE.
        LOOP AT S_WERKS.
          CLEAR MARC.
          SELECT SINGLE * FROM MARC WHERE MATNR = ITAB-MATNR AND WERKS = S_WERKS-LOW.
          IF SY-SUBRC EQ 0.
            CLEAR TEXT1.
            TEXT1 = MARC-EISLO.
            CONCATENATE STR TEXT1 INTO STR SEPARATED BY SPACE.
          ELSE.
            CONCATENATE STR '0' INTO STR SEPARATED BY SPACE.
          ENDIF.
        ENDLOOP.
        <WA> = STR.
        APPEND <WA> TO <FS>.
        CLEAR ITAB.
      ENDLOOP.
    ENDFORM.                    "MOVE_DATA
    Reward points if helpful.
    Regards,
    Sankar..

  • Need help to create report with jpeg/gif image

    Hello,
    I need help with creating a form with a special jpeg/gif seal. I never done this Java. Until now, I created all forms with ansi C++ with HP escape characters to draw lines, boxs, and text. This form will contain boxes which is populated with database information read from a text file.
    Since this form contains a special seal on the upper right, I don't think it can be done with old fashion ansi C++. How can I create a form with Java and create it as a simple exe to just print the form to a specified printer.
    Thanks,
    John

    Hi,
    I am creating a form with boxes (lines and text). What is special about this form is that it has an image jpeg or gif at the top right corner. Is is a state department seal. Up to this form, I had used ansi C++ and print out escape HP character to print out the lines, boxes, and text. I have no idea how to print out the image. I am new to JAVA and only 1 class in it. Is there sample code out there to create this type of form with the image? I need a starting point.
    Thanks,
    John

  • Need Help XML Publisher Report

    Hi Friends
    I need to generate a report in xml publisher responsibility .
    I have create and designed the RTF file using word , And i have genetared an XML file(template )
    I have some doubt please clarify by doubts
    In RTF template i have some 4columns
    For EXample i Give some column name
    Invoice Number , Invoice Line Number ,Tax Type ,Tax Code Name etc....
    In my RTF I have done like this
    I have created two 2 row and 4column
    In the 1st row i have all the 4 column heading
    In the 2nd row i have done like this
    Developer tab> Design mode > In the legacy tool i have selected text Form field
    Once i double click the text form field in the default text i have Given C1 Then in the Add help text button i have given <?C_INVOICE_NUMBER?> like this i have done for alls the columns
    My RTF design is completed
    Now i need load the XML is it?
    In the XMl data query i have placed my sql statement
    Here my doubt starts
    wether all the column in the RTF should be in the XML sql statement ha?
    2)In the top of my RTF i need to add date and page No how to add that ?
    Thanks In advance
    AT

    Hi Friend
    Iam saying this is my XML file
    <LIST_G_TAX_NAME>
    <G_TAX_NAME>
    <C_SORT_TAX_NAME>USE TAX</C_SORT_TAX_NAME>
    <C_TAX_NAME>Use Tax</C_TAX_NAME>
    <C_TAX_RATE>8.25</C_TAX_RATE>
    <C_TAX_TYPE>USE</C_TAX_TYPE>
    <C_PERIOD_NAME>OCT-11</C_PERIOD_NAME>
    <LIST_G_VENDOR>
    <G_VENDOR>
    <C_SORT_VENDOR_NAME/>
    <C_SORT_SITE_CODE/>
    <C_VENDOR_ID>851</C_VENDOR_ID>
    <C_VENDOR_NAME>ORACLE CORPORATION</C_VENDOR_NAME>
    <C_SITE_CODE>CHICAGO</C_SITE_CODE>
    <LIST_G_INVOICE>
    <G_INVOICE>
    <C_INVOICE_DATE>17-OCT-11</C_INVOICE_DATE>
    <C_SORT_INVOICE_NUMBER>1308</C_SORT_INVOICE_NUMBER>
    <C_INVOICE_ID>350889</C_INVOICE_ID>
    <C_INVOICE_NUMBER>1308</C_INVOICE_NUMBER>
    <C_INVOICE_LINE_NUMBER>1</C_INVOICE_LINE_NUMBER>
    <C_PO_NUMBER>256388</C_PO_NUMBER>
    <C_DESCRIPTION>TEST</C_DESCRIPTION>
    <C_GL_DATE>17-OCT-11</C_GL_DATE>
    <C_INVOICE_LINE_AMOUNT>15</C_INVOICE_LINE_AMOUNT>
    <C_CHARGE_ACCOUNT>412.00.6410.7831.1076.1001.00.000.0000</C_CHARGE_ACCOUNT>
    <C_LIABILITY_ACCOUNT>412.00.0000.2152.1208.1001.00.000.0000</C_LIABILITY_ACCOUNT>
    <C_BATCH_NAME>101711</C_BATCH_NAME>
    <C_SITE_CODE2>CHICAGO</C_SITE_CODE2>
    <C_INVOICE_AMOUNT>15</C_INVOICE_AMOUNT>
    <LIST_G_DIST>
    <G_DIST>
    <C_INVOICE_TAX_ID>10061</C_INVOICE_TAX_ID>
    <C_LINE_TYPE>ITEM</C_LINE_TYPE>
    </G_DIST>
    </LIST_G_DIST>
    <C_TAXABLE_AMOUNT>15</C_TAXABLE_AMOUNT>
    <C_TAX_AMOUNT>1.24</C_TAX_AMOUNT>
    <C_INVOICE_AMOUNT_DISP> 15.00 </C_INVOICE_AMOUNT_DISP>
    <C_TAXABLE_AMOUNT_DISP> 15.00 </C_TAXABLE_AMOUNT_DISP>
    <C_TAX_AMOUNT_DISP> 1.24 </C_TAX_AMOUNT_DISP>
    </G_INVOICE>
    </LIST_G_INVOICE>
    <C_INVOICE_SITE_SUM>124.9</C_INVOICE_SITE_SUM>
    <C_INVOICE_SITE_SUM_DISP> 124.90 </C_INVOICE_SITE_SUM_DISP>
    <C_TAX_SITE_SUM>5.4</C_TAX_SITE_SUM>
    <C_TAX_SITE_SUM_DISP> 5.40 </C_TAX_SITE_SUM_DISP>
    <C_TAXABLE_SITE_SUM>65.66</C_TAXABLE_SITE_SUM>
    <C_TAXABLE_SITE_SUM_DISP> 65.66 </C_TAXABLE_SITE_SUM_DISP>
    </G_VENDOR>
    </LIST_G_VENDOR>
    <C_OLD_VENDOR_ID>0</C_OLD_VENDOR_ID>
    <C_INVOICE_SUM>124.9</C_INVOICE_SUM>
    <C_INVOICE_SUM_DISP> 124.90 </C_INVOICE_SUM_DISP>
    <C_TAX_SUM>5.4</C_TAX_SUM>
    <C_TAX_SUM_DISP> 5.40 </C_TAX_SUM_DISP>
    <C_TAXABLE_SUM>65.66</C_TAXABLE_SUM>
    <C_TAXABLE_SUM_DISP> 65.66 </C_TAXABLE_SUM_DISP>
    </G_TAX_NAME>
    </LIST_G_TAX_NAME>
    And if i need all the column to be displayed in my report
    1)Invoice Number
    2)Invoice Line Number
    3)Tax Type
    4)Tax Code Name
    5)Tax Rate Percent
    6)Supplier Name
    7)Description
    8)Gl Date
    9)Invoive Line Amount
    10)Taxable Line Amount
    11)Tax Liability
    12)Po Number
    13)Charge Account
    14)Liability Account
    Which tag do i need to use fro grouping
    For ex
    Instead of this <?for-each:G_TAX_NAME?> <?end for-each?>
    which one i need to use
    Please help
    Thanks
    AT

  • I need help in Custom Reporting

    Hi,
    i need help in auditing, SCOM 2012 R2 is deployed in 2 servers with ACS, i have 2 file server that has some shared folder in which users work on some certain document i need to have a report that i can run on certain file that will show me who access that
    file when he access what he did like (read write, delete). i don't think we have this type of capability in default report. let me know if someone can help me in that. (free/paid) i know its a bit customized. let me know if u need any more info.
    Syed Kasif

    Hi,
    As far as I know, to audit file access, we should Enable Audit Policy, and then Set up Audit System Access Control List (SACL).
    After that, we can make sure that under security event logs there are auditing logs for file access.
    Please refer to the below link for more details about auditing file access on file server:
    http://blogs.technet.com/b/mspfe/archive/2013/08/27/auditing-file-access-on-file-servers.aspx
    And for Collecting Security Events Using Audit Collection Services in Operations Manager:
    http://technet.microsoft.com/en-us/library/hh212908.aspx
    Regards,
    Yan Li
    Regards, Yan Li

  • Need Help on calling report in OAF Page

    Hi,
    At present i am wokring EAM Module. Here i need to call one report.
    In my OAF Page one button is there("The name of the button is *Issue*"). After clicking this button i need to fire one report(The name of the report is "Maintenance Picking Slip Issued Report").
    Please help me how to call report? I don't have any idea how to proceed for this.please explain clearly.
    Thanks in advance..
    Thanks,
    Somasekhar.

    Somasekhar,
    you want to call PLSQL Report or XML Publisher report or you want to submit the concurrent request.
    If this XML Publisher report then refer following code for your refrence
    public BlobDomain getXMLData(String as[], String s, String s1, String s2, String s3, String s4, String s5,
    String s6, String s7, String s8, String s9, String s10)
    throws Throwable
    int i;
    int j;
    int k;
    int l;
    int i1;
    int j1;
    int k1;
    int l1;
    int i2;
    int j2;
    int k2;
    OracleCallableStatement oraclecallablestatement;
    ARRAY array;
    int ai[] = new int[as.length];
    i = 0;
    j = 0;
    k = 0;
    l = 0;
    i1 = 0;
    j1 = 0;
    k1 = 0;
    l1 = 0;
    i2 = 0;
    j2 = 0;
    k2 = 0;
    for(int l2 = 0; l2 < as.length; l2++)
    ai[l2] = Integer.parseInt(as[l2]);
    if(s.equals("Y"))
    i = 1;
    if(s1.equals("Y"))
    j = 1;
    if(s2.equals("Y"))
    k = 1;
    if(s3.equals("Y"))
    l = 1;
    if(s4.equals("Y"))
    i1 = 1;
    if(s5.equals("Y"))
    j1 = 1;
    if(s6.equals("Y"))
    k1 = 1;
    if(s7.equals("Y"))
    l1 = 1;
    if(s8.equals("Y"))
    j2 = 1;
    if(s10.equals("Y"))
    k2 = 1;
    i2 = Integer.parseInt(s9);
    DBTransaction dbtransaction = getDBTransaction();
    String s11 = "BEGIN :1 :=EAM_WorkOrderRep_PVT.getWoReportXML(:2, :3, :4, :5, :6, :7, :8, :9,:10,:11,:12,:13); END;";
    oraclecallablestatement = (OracleCallableStatement)dbtransaction.createCallableStatement(s11, 1);
    java.sql.Connection connection = oraclecallablestatement.getConnection();
    ArrayDescriptor arraydescriptor = ArrayDescriptor.createDescriptor("SYSTEM.EAM_WIPID_TAB_TYPE", connection);
    array = new ARRAY(arraydescriptor, connection, ai);
    BlobDomain blobdomain;
    oraclecallablestatement.registerOutParameter(1, 2005);
    oraclecallablestatement.setArray(2, array);
    oraclecallablestatement.setInt(3, i);
    oraclecallablestatement.setInt(4, j);
    oraclecallablestatement.setInt(5, k);
    oraclecallablestatement.setInt(6, l);
    oraclecallablestatement.setInt(7, k1);
    oraclecallablestatement.setInt(8, l1);
    oraclecallablestatement.setInt(10, i1);
    oraclecallablestatement.setInt(11, j1);
    oraclecallablestatement.setInt(9, j2);
    oraclecallablestatement.setInt(12, i2);
    oraclecallablestatement.setInt(13, k2);
    oraclecallablestatement.execute();
    CLOB clob = ((OracleCallableStatement)oraclecallablestatement).getCLOB(1);
    blobdomain = new BlobDomain();
    OutputStream outputstream = blobdomain.getBinaryOutputStream();
    long l3 = clob.length();
    byte abyte0[] = new byte[(int)l3];
    String s12 = clob.getSubString(1L, (int)l3);
    abyte0 = s12.getBytes("UTF-8");
    outputstream.write(abyte0);
    outputstream.close();
    return blobdomain;
    SQLException sqlexception;
    sqlexception;
    try
    oraclecallablestatement.close();
    catch(Exception exception) { }
    throw OAException.wrapperException(sqlexception);
    public void initSearchCriteria()
    log(this, "init search crieria", 1);
    getWorkPlanSearchCriteriaVO().executeQuery();
    Let me know you got your point or not.
    Thanks,
    Kumar

  • Need help translating crash report

    Hi. I wonder if someone can help me translate this crash report. It occurs when using Adobe Illustrator on a MacPro (10.6.8) with 9GB RAM. Many thanks.
    Process:         Adobe Illustrator [597]
    Path:            /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         399 (15.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [130]
    Date/Time:       2011-07-25 16:52:24.607 -0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          361676 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  344285 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      0C8D5993-63CA-4720-8CD8-E97C6F196170
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x91fe9382 kevent + 10
    1   libSystem.B.dylib                 0x91fe9a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x91fe8f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x91fe8cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x91fe8781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x91fe85c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x91fc2b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x9203905f pthread_cond_wait + 48
    3   com.adobe.amt.services            0x046bf126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services            0x046b7db0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services            0x046bf18c AMTThread::Worker(void*) + 24
    6   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    7   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x91ff0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x91ff075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x91ff23f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x9269421e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x9267fb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x9267b533 MPWaitOnQueue + 250
    6   AdobeACE                          0x01682579 0x1648000 + 238969
    7   AdobeACE                          0x01681f71 0x1648000 + 237425
    8   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    10  libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x91ff0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x91ff075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x91ff23f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x9269421e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x9267fb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x9267b533 MPWaitOnQueue + 250
    6   AdobeACE                          0x01682579 0x1648000 + 238969
    7   AdobeACE                          0x01681f71 0x1648000 + 237425
    8   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    10  libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x91ff0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x91ff075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x91ff23f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x9269421e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x9267fb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x9267b533 MPWaitOnQueue + 250
    6   AdobeACE                          0x01682579 0x1648000 + 238969
    7   AdobeACE                          0x01681f71 0x1648000 + 237425
    8   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    10  libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x91fc2b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x9203905f pthread_cond_wait + 48
    3   AdobeAGM                          0x01abc59d AGMInitialize + 3243373
    4   AdobeAGM                          0x01abd1ed AGMInitialize + 3246525
    5   AdobeAGM                          0x01ac2de0 AGMInitialize + 3270064
    6   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    7   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x91fc2b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x9203905f pthread_cond_wait + 48
    3   com.adobe.adobeswfl               0x288ab1af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl               0x28644b0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl               0x288ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl               0x288ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl               0x288ab426 APXGetHostAPI + 2599686
    8   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    9   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x91fc2b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x9203905f pthread_cond_wait + 48
    3   com.adobe.adobeswfl               0x288ab1af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl               0x28644b0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl               0x288ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl               0x288ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl               0x288ab426 APXGetHostAPI + 2599686
    8   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    9   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x91fc2b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x9203905f pthread_cond_wait + 48
    3   com.adobe.adobeswfl               0x288ab1af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl               0x28644b0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl               0x288ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl               0x288ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl               0x288ab426 APXGetHostAPI + 2599686
    8   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    9   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x91fc2b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x9203905f pthread_cond_wait + 48
    3   com.adobe.adobeswfl               0x288ab1af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl               0x28644b0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl               0x288ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl               0x288ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl               0x288ab426 APXGetHostAPI + 2599686
    8   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    9   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x91ff0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x9201c9c5 nanosleep$UNIX2003 + 188
    2   ...r.plugins.Scripting Support    0x1f9e783b PluginMain + 447467
    3   ...r.plugins.Scripting Support    0x1f9c9a13 PluginMain + 325059
    4   ...r.plugins.Scripting Support    0x1f9e7948 PluginMain + 447736
    5   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    6   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                 0x920000d6 recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib                 0x9201feab recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib     0x1ebef6cf Invoke + 54887
    3   ServiceManager-Launcher.dylib     0x1ebee76e Invoke + 50950
    4   ServiceManager-Launcher.dylib     0x1ebed61f Invoke + 46519
    5   ServiceManager-Launcher.dylib     0x1ebed671 Invoke + 46601
    6   ServiceManager-Launcher.dylib     0x1ebed6fb Invoke + 46739
    7   ServiceManager-Launcher.dylib     0x1ebe7afe Invoke + 23190
    8   ServiceManager-Launcher.dylib     0x1ebe7ce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib     0x1ebe88c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib     0x1ebe89c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib     0x1ebebdb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib     0x1ebec059 Invoke + 40945
    13  ServiceManager-Launcher.dylib     0x1ebec687 Invoke + 42527
    14  ServiceManager-Launcher.dylib     0x1ebec884 Invoke + 43036
    15  ServiceManager-Launcher.dylib     0x1ebde826 Login + 1654
    16  ServiceManager-Launcher.dylib     0x1ebdfc71 Login + 6849
    17  ServiceManager-Launcher.dylib     0x1ebecdf3 Invoke + 44427
    18  ServiceManager-Launcher.dylib     0x1ebef341 Invoke + 53977
    19  libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    20  libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                 0x91fc2b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x9201f5a8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl               0x288ab177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl               0x288c60ee APXGetHostAPI + 2709454
    5   com.adobe.adobeswfl               0x288ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl               0x288ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl               0x288ab426 APXGetHostAPI + 2599686
    8   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    9   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x91fc2b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x91ff06e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x9201f5a8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl               0x288ab177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl               0x28a22428 APXGetHostAPI + 4135688
    5   com.adobe.adobeswfl               0x288ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl               0x288ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl               0x288ab426 APXGetHostAPI + 2599686
    8   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    9   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                 0x91fc2b36 semaphore_wait_trap + 10
    1   com.adobe.illustrator             0x00678014 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator             0x006791f9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator             0x006793c9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    5   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    6   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                 0x91fc2b36 semaphore_wait_trap + 10
    1   com.adobe.illustrator             0x00678014 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator             0x006791f9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator             0x006793c9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    5   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    6   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 17:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x91fe1ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x94afdc83 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    3   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                 0x91fc2b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x92691942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2efba124 ThreadFunction(void*) + 78
    3   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    5   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                 0x91fc2b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x92691942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2efba124 ThreadFunction(void*) + 78
    3   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    5   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                 0x91fc2b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x92691942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2efba124 ThreadFunction(void*) + 78
    3   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    5   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                 0x91fc2b36 semaphore_wait_trap + 10
    1   ...lustrator.plugins.Rasterize    0x1f675b28 basic::semaphore::acquire() + 126
    2   ...lustrator.plugins.Rasterize    0x1f676416 basic::detail::thread_function_base::operator()() + 238
    3   ...lustrator.plugins.Rasterize    0x1f67664e basic::thread_base::_call(void*) + 114
    4   ...ple.CoreServices.CarbonCore    0x9265f54a PrivateMPEntryPoint + 68
    5   libSystem.B.dylib                 0x91ff0259 _pthread_start + 345
    6   libSystem.B.dylib                 0x91ff00de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                 0x91fe8412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x91fe89a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x91fe85c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xa04fcdb0  ebx: 0x00000000  ecx: 0xa04fcdb0  edx: 0x579947b8
      edi: 0x00000000  esi: 0x00000000  ebp: 0x00000000  esp: 0xbfffe840
       ss: 0x0000001f  efl: 0x00010246  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x10ddfe7 +com.adobe.illustrator 399 (15.0.2) <E981EB14-E985-235C-5B50-36ECD01A3851> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1409000 -  0x14d6fe7 +AdobeAXEDOMCore ??? (???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
    0x1545000 -  0x1555fff  com.apple.carbonframeworktemplate 1.0 (1.0) <52191201-4C2A-FC9B-06E4-0327B5203D7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x155a000 -  0x1575ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x158f000 -  0x15d3fff +com.adobe.illustrator.aiport AIPort version 1.0 (1.0) <AF5B961D-03B5-1F8F-0DE0-E7DE0863E578> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1636000 -  0x1636fff +SPBasic ??? (???) <574E14ED-6879-7536-E9A1-77F66D81FCBB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x163a000 -  0x1640ffb +com.adobe.coretech.adobesplashkit AdobeSplashKit version 1.0 (1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x1648000 -  0x175dfff +AdobeACE ??? (???) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1780000 -  0x1ca6fff +AdobeAGM ??? (???) <72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1de7000 -  0x1e23fff +AdobeARE ??? (???) <B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1e2c000 -  0x1e52ff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1e63000 -  0x1e7efff +AdobeBIB ??? (???) <5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1e88000 -  0x1ea9ff7 +AdobeBIBUtils ??? (???) <1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1eb5000 -  0x21a7ff7 +AdobeCoolType ??? (???) <90757246-5467-2606-4095-19B63B255F2F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x222f000 -  0x22c7fff +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <F68E96A7-E657-7275-09DF-4C412554CD4A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x2326000 -  0x2409fef +AdobePDFPort ??? (???) <26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x243e000 -  0x2a73feb +AdobePDFL ??? (???) <B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2b9f000 -  0x2c2cff7 +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <6A15402A-09B2-B1F8-5ECC-D7871EC054C3> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x2c71000 -  0x2d11fef +AdobeSVGExport ??? (???) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2d3b000 -  0x2fd9ff2 +AdobeSVGRE ??? (???) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x30b2000 -  0x310aff7 +AdobeXMP ??? (???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x3119000 -  0x31a5fef +AdobeXMPFiles ??? (???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x31dc000 -  0x32a9ff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x330c000 -  0x33e6fef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3426000 -  0x3dd6fff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3dd9000 -  0x41b1ff7 +AdobeMPS ??? (???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x42e0000 -  0x4346ffb +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4376000 -  0x4407ff7 +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x4426000 -  0x460cff7 +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x469a000 -  0x4701fea +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4740000 -  0x47bdfff +AdobeOwlCanvas ??? (???) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x47d9000 -  0x4911fe7 +WRServices ??? (???) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4953000 -  0x4957ffc +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x495e000 -  0x49b1ffb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x49f9000 -  0x4a0bfff +com.adobe.pip ??? (5.0.0.2021) <5251926B-C2C0-282C-B3A9-94A9FEF0FCB8> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x4a14000 -  0x5766feb +com.adobe.psl AdobePSL 12.0.0.11086 (12.0.0.11086) <ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5aa8000 -  0x5c25fef +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <565B8F4B-EFEA-D847-91FE-17B8ED169DF2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5da0000 -  0x6090fef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <7E7F77B3-0CB3-8885-915E-EDACEE27500E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x63b8000 -  0x66feff3 +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E97C356-CEE3-9CA3-3C90-8196F560164E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c0d000 -  0x6c1ffef +com.adobe.dvaai.framework dvaai version 5.0.0 (5.0.0.0) <2D9772CA-D866-6A7F-CF74-FD7F485350B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c30000 -  0x6c36fef +com.adobe.boost_date_time.framework boost_date_time version 5.0.0 (5.0.0.0) <FB5A16A5-D6E7-71B7-78A8-A174A64EF477> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_ date_time
    0x6c47000 -  0x6c52ff3 +com.adobe.boost_filesystem.framework boost_filesystem version 5.0.0 (5.0.0.0) <604EA207-EEF2-AC6E-A8B1-26737E5AB0A7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost _filesystem
    0x6c66000 -  0x6ce4fe2 +com.adobe.boost_regex.framework boost_regex version 5.0.0 (5.0.0.0) <F95BC864-6CFC-EAF4-A6DF-27608A5DD30E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_rege x
    0x6d48000 -  0x6d52fff +com.adobe.boost_signals.framework boost_signals version 5.0.0 (5.0.0.0) <08C988D8-10F3-66EF-AE15-B086AD240942> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_si gnals
    0x6d65000 -  0x6d67ffb +com.adobe.boost_system.framework boost_system version 5.0.0 (5.0.0.0) <7ACBC8B3-0BEA-7B7B-04FF-95C6A93E3E7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_sys tem
    0x6d6e000 -  0x6d75ff2 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <4942ACFF-5944-0F7F-8481-49CAF902D15F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_th reads
    0x6d85000 -  0x6de3fe2 +com.adobe.boost_serialization.framework boost_serialization version 5.0.0 (5.0.0.0) <FBAA7D86-4F90-3337-4657-022BA313C894> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/bo ost_serialization
    0x6eba000 -  0x7059fe7 +com.adobe.owl AdobeOwl version 3.0.89 (3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x70c2000 -  0x712ffef +FileInfo ??? (???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x714a000 -  0x71fffe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x7245000 -  0x7285ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x729e000 -  0x72a1ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x72f1000 -  0x72f2ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x776a000 -  0x776afff +com.adobe.illustrator.plugins.PlugInRes Localizer version 15.0.0 (15.0.0) <31807739-9A66-20D1-2D8D-1077383E76C7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0x779e000 -  0x77a2fff +com.adobe.illustrator.plugins.OffsetPath Offset Path version 15.0.0 (15.0.0) <35CE0262-CD14-E308-E3DD-6B47805CFC22> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/OffsetPath.aip/Contents/MacOS/OffsetPath
    0x77a7000 -  0x77a9fff +com.adobe.illustrator.plugins.Expand Expand version 15.0.0 (15.0.0) <4CD29AD5-4C75-F4AF-8DF9-C302E65A39DE> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/Expand.aip/Contents/MacOS/Expand
    0xb039000 -  0xb045ff7 +com.rogueamoeba.audio_hijack_server.hermes 2.2.7 (2.2.7) <ED8425EF-125A-BDC9-E862-0A9F431AF3D9> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0xb06a000 -  0xb0dafeb +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xb0e8000 -  0xb0f0fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xb29c000 -  0xb29dfff +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0xb2c5000 -  0xb2c5ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0xb2de000 -  0xb2dffff +com.adobe.illustrator.plugins.ASLib ASLib version 15.0.0 (15.0.0) <E0248AB4-BFC9-A137-113D-6B7C9E9EC662> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ASLib.aip/Contents/MacOS/ASLib
    0xb3a7000 -  0xb3afff3  com.apple.URLMount.AFPPlugin 3.2.2 (3.2.2) <46711A0E-D330-BD32-8B30-1FFE8B3346F0> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0xb3b6000 -  0xb3fdff7  com.apple.AppleShareClientCore 2.1 (2.1) <351D93FA-D8AB-657F-2A67-9A6FF3875F82> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0xb446000 -  0xb449fff +com.adobe.illustrator.plugins.Round Round Corners version 15.0.0 (15.0.0) <3C18BA2A-869A-AFBA-E4CE-F4206374155E> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/Round.aip/Contents/MacOS/Round
    0xb44d000 -  0xb456feb +com.adobe.illustrator.plugins.Transform Transform Each version 15.0.0 (15.0.0) <8F55DFD9-AEDF-520C-B506-184BBC1624F2> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Transform.aip/Contents/MacOS/Transf orm
    0xb49f000 -  0xb4aefe0 +com.adobe.illustrator.plugins.StrokeOffset StrokeOffset version 15.0.1 (15.0.1) <655A4676-B25E-E953-2EAA-6680AAD85A4E> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/StrokeOffset.aip/Contents/MacOS/Str okeOffset
    0xb566000 -  0xb56cfc7 +com.Adobe.print.AdobePDF8.pde AdobePDF 8.1.2 (8.1.2) /Library/Printers/PPD Plugins/AdobePDFPDE800.plugin/Contents/MacOS/AdobePDFPDE800
    0xb5c6000 -  0xb5c8ff7  com.apple.printingprivate.framework.PrintingPrivate 6.1 (15.2) <1A6E0614-420C-1E2B-43DA-722639B1FBCB> /System/Library/PrivateFrameworks/PrintingPrivate.framework/PrintingPrivate
    0x1d5f1000 - 0x1d5f7ff7  com.apple.qldisplay.NSImage 2.3 (327.6) <73FE36E6-9532-5158-A4F3-20DA63E23D9F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/NSImage.qldisplay/Contents/MacOS/NS Image
    0x1d716000 - 0x1d71aff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1d72d000 - 0x1d734ffe +com.adobe.illustrator.plugins.Action Action version 15.0.0 (15.0.0) <142864FE-DD35-352E-D04F-3CEC42460B58> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Action.aip/Contents/MacOS/Action
    0x1d79c000 - 0x1d7a9fff +com.adobe.illustrator.plugins.Gaussian Blur Gaussian Blur version 15.0.0 (15.0.0) <68817486-235C-ECD4-28D0-F356F3BD79CC> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Gaussian Blur.aip/Contents/MacOS/Gaussian Blur
    0x1d7c1000 - 0x1d7c5ffb +com.adobe.illustrator.plugins.Simplify Simplify version 15.0.0 (15.0.0) <E41E73CE-9707-6E8A-ED55-AAA569C3A7B9> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Simplify.aip/Contents/MacOS/Simplify
    0x1d7cb000 - 0x1d7ceffb +com.adobe.illustrator.plugins.GIF89 GIF89a Format version 15.0.0 (15.0.0) <929AF430-A08D-0A96-C140-C14D2D8A848F> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Formats.localized/GIF89a.aip/Contents/MacOS/GIF89
    0x1d7f7000 - 0x1d7fbffb +com.adobe.illustrator.plugins.ToolSelector Tool Selector version 15.0.0 (15.0.0) <5F46ADCB-63B5-9C82-4EC3-AADF25CCBE2F> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ToolSelector.aip/Contents/MacOS/Too lSelector
    0x1e570000 - 0x1e5c5ff0 +com.adobe.illustrator.plugins.Photoshop Adapter Photoshop Adapter version 15.0.0 (15.0.0) <F760E076-0C60-0E96-47E4-EE0D4140C5BB> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/Photoshop Adapter.aip/Contents/MacOS/Photoshop Adapter
    0x1e5d6000 - 0x1e5dffff +com.adobe.illustrator.plugins.FrameworkServer Framework Server version 15.0.0 (15.0.0) <49D2AB8D-EDA1-D195-7F30-A0F43FB445BB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0x1e5e3000 - 0x1e5e9ff7 +com.adobe.illustrator.plugins.ArtConverters  ArtConverters version 15.0.0 (15.0.0) <3CBFAF3A-3B7E-3AC9-EDAF-8AA214A87EA1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0x1eb00000 - 0x1eb2cfe8 +com.adobe.illustrator.plugins.CropAreaTool CropAreaTool version 15.0.1 (15.0.1) <3C09618F-F3D6-5FEC-8D27-0415EC3E8549> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Crop Area Tool.aip/Contents/MacOS/CropAreaTool
    0x1eb88000 - 0x1ebc1ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <C64CCBDC-B8E9-45E8-53E7-8577CFE9F2F0> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/U pdaterNotifications
    0x1ebdc000 - 0x1ebfffe7 +ServiceManager-Launcher.dylib ??? (???) <12CEC4C0-8682-A5FD-BAD4-A3E4A4F6218A> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
    0x1ec1c000 - 0x1ec2afe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <AFA4C3C8-D752-EC96-FF56-6E2F8ABB391B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1ec2e000 - 0x1ec40ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <08801444-00D2-E55B-AE80-B807B99BB0C6> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1ec56000 - 0x1ec57ff7  ATSHI.dylib ??? (???) <F06AB560-C2AF-09F6-7328-773E43CA2713> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1ec6d000 - 0x1ec72ffd +com.adobe.illustrator.plugins.Scripts Menu Scripts Menu version 15.0.0 (15.0.0) <E78BB908-6C5F-9EE1-63C7-6B0BAD790001> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Scripts Menu.aip/Contents/MacOS/Scripts Menu
    0x1f095000 - 0x1f0aafff +PNG ??? (???) <CD501D1F-79F3-45D4-BFD4-0D6A8C0D9C35> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Formats.localized/PNG.plugin/Contents/MacOS/PNG
    0x1f0d7000 - 0x1f109fe7  com.apple.print.PrintingCocoaPDEs 6.4 (305.4) <CFF55F65-133F-A1DD-67A1-7D08C53FDFBF> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
    0x1f149000 - 0x1f15dfef +com.adobe.illustrator.plugins.EyeBucketTool Eye Bucket Tool version 15.0.0 (15.0.0) <6F536971-AA45-8F82-309E-F8BC4F6E4A98> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/EyeBucketTool.aip/Contents/MacOS/EyeBuck etTool
    0x1f173000 - 0x1f19cfeb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <F3239526-C171-AD3C-835E-FC9998EEFB28> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
    0x1f1ac000 - 0x1f1d6fff +com.adobe.illustrator.plugins.BRSPencilTool  Pencil Tool version 15.0.0 (15.0.0) <ED8C5A7E-A1FC-B46B-B537-6E41529B2DD1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0x1f1dd000 - 0x1f1edfff +com.adobe.illustrator.plugins.Flatten Transparency  Flatten Transparency version 15.0.0 (15.0.0) <7CAAAD9E-050B-4B94-712B-7F33C76A204C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0x1f1f4000 - 0x1f1f7fff +com.adobe.illustrator.plugins.GeometryS  Geometry Suite version 15.0.0 (15.0.0) <F8F2B1CA-D293-7192-E07E-93909A2A6828> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Geometry.aip/Contents/MacOS/Geometr yS
    0x1f1fb000 - 0x1f1fcfff +com.adobe.illustrator.plugins.MPSCommon MPSCommon version 15.0.0 (15.0.0) <D7CD8FCC-D327-056C-44F2-65D1653946A4> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Formats.localized/MPSCommon.aip/Contents/MacOS/MPSCommon
    0x1f300000 - 0x1f3d8fff +com.adobe.coretech.adm 3.10x04 (3.1) <8919B146-1010-690F-C369-FBA8C1F090CD> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x1f61b000 - 0x1f630fef +com.adobe.illustrator.plugins.FOConversionSuite FOConversionSuite version 15.0.1 (15.0.1) <7FB772B5-A8F9-1663-73DB-D51629DF9FC0> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0x1f65e000 - 0x1f67efe2 +com.adobe.illustrator.plugins.Rasterize Rasterize version 15.0.2 (15.0.2) <1460C2EC-66AE-3120-F4C6-37EA9015E9DB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0x1f6a1000 - 0x1f6d9fff +com.adobe.illustrator.plugins.BrushManager Brush Manager version 15.0.0 (15.0.0) <004D0CCF-80BD-8DC1-7E44-5FD113507384> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/BrushManager.aip/Contents/MacOS/Bru shManager
    0x1f6e2000 - 0x1f78efea +com.adobe.illustrator.plugins.ColorHarmony ColorHarmony version 15.0.0 (15.0.0) <E52FE44A-D024-94CB-D70B-4E0EE79D2906> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ColorHarmony.aip/Contents/MacOS/Col orHarmony
    0x1f7aa000 - 0x1f7c0ffb +com.adobe.illustrator.plugins.ControlPalette ControlPalette version 15.0.0 (15.0.0) <F9F1ABE1-547B-38B4-F95B-704AE58B97E3> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Control Panel.aip/Contents/MacOS/ControlPalette
    0x1f7c6000 - 0x1f7e0fe2 +com.adobe.illustrator.plugins.KinsokuDlg  KinsokuDlg version 15.0.1 (15.0.1) <C7051AF4-E06C-0EE4-1B1C-43271C060CEC> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/KinsokuDlg.aip/Contents/MacOS/Kinso kuDlg
    0x1f811000 - 0x1f8a1feb +com.adobe.illustrator.plugins.PaintStyle Paint Style Palettes version 15.0.0 (15.0.0) <21DEC189-D1E8-6D28-2591-90AD613A4A7B> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Paint Style Panel.aip/Contents/MacOS/PaintStyle
    0x1f8b0000 - 0x1fb31fef +com.adobe.illustrator.plugins.Scripting Support Scripting Support version 15.0.0 (15.0.0) <D06A593F-B9A2-154A-6222-DF90FD0F836D> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ScriptingSupport.aip/Contents/MacOS /Scripting Support
    0x1fc6b000 - 0x1fc71ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f13) <76BC9284-582A-EF9A-960D-5CD0801B1917> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1fccc000 - 0x1fd3efff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1fd93000 - 0x1fd9fffb +com.adobe.illustrator.plugins.Navigator Adobe Navigator Plugin version 15.0.0 (15.0.0) <9B00BF8C-C1D2-B733-3F8D-A5E482DB3624> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Navigator.aip/Contents/MacOS/Naviga tor
    0x1fda3000 - 0x1fdb3ffb +com.adobe.illustrator.plugins.TransformPalette Transform Palette version 15.0.0 (15.0.0) <262222A8-37F8-4CB2-75ED-AEF703DFE749> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Transform Panel.aip/Contents/MacOS/TransformPalette
    0x1fdb7000 - 0x1fdd9ff3 +com.adobe.illustrator.plugins.TracingUI TracingUI version 15.0.0 (15.0.0) <8009CBB1-0B1A-8239-AF37-075D512561B1> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/TracingUI.aip/Contents/MacOS/Tracin gUI
    0x1feee000 - 0x1ff6cfe2 +com.adobe.illustrator.plugins.SwatchLibraries Swatch Libraries version 15.0.0 (15.0.0) <F0AA6574-0276-E239-A888-F2F412FEF4B0> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/SwatchLibraries.aip/Contents/MacOS/ SwatchLibraries
    0x1ff7d000 - 0x1ffadffc +com.adobe.illustrator.plugins.SymbolPalette Symbol Palette version 15.0.0 (15.0.0) <66A518A1-A747-6EE5-0AF4-5E5B30CEB789> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Symbol Panel.aip/Contents/MacOS/SymbolPalette
    0x1ffb6000 - 0x1ffceff3 +com.adobe.illustrator.plugins.Workspaces Workspaces version 15.0.0 (15.0.0) <AAD61C6D-603D-08A6-D432-71CFB155E25C> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Workspaces.aip/Contents/MacOS/Works paces
    0x1ffd5000 - 0x1ffe7fef +com.adobe.illustrator.plugins.Mojikumi  MojiKumiUI version 15.0.0 (15.0.0) <58C626FE-3268-C256-2ABC-734D12C61F64> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Formats.localized/Mojikumi.aip/Contents/MacOS/Mojikumi
    0x1ffee000 - 0x20015ff0 +com.adobe.illustrator.plugins.slicingAttributes Slicing version 15.0.0 (15.0.0) <6219DB20-8CF6-C888-B841-D2CA302EA747> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0x2001d000 - 0x20021fff +com.adobe.illustrator.plugins.ShapeS Shape Construction Suite version 15.0.0 (15.0.0) <70176E68-D9D8-6D0E-599F-56A0BE108A53> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0x20025000 - 0x20051fff +com.adobe.illustrator.plugins.PathfinderS Pathfinder Suite version 15.0.0 (15.0.0) <BE233974-06C3-BFDA-BD0C-69C489BE04B6> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0x2005a000 - 0x20060ffb +com.adobe.illustrator.plugins.ExpandS Expand Suite version 15.0.0 (15.0.0) <CC1AACFA-13DB-1D99-2AF9-17370C050B1A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0x20064000 - 0x20074fff +com.adobe.illustrator.plugins.DocInfo Document Info version 15.0.0 (15.0.0) <A89FFFC5-7CB4-4229-467F-B36013B66576> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/DocInfo.aip/Contents/MacOS/DocInfo
    0x2007b000 - 0x200b9fff +com.adobe.illustrator.plugins.Snap Snap version 15.0.0 (15.0.0) <50C67BFC-673E-60E5-6A83-FDF61ACB7878> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Snap.aip/Contents/MacOS/Snap
    0x200c9000 - 0x200d8ff0 +com.adobe.illustrator.plugins.DropShadow Drop Shadow version 15.0.0 (15.0.0) <02FA5CA0-49AC-9A14-5EC8-3A524F82F52E> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/DropShadow.aip/Contents/MacOS/DropShadow
    0x200de000 - 0x200ecfff +com.adobe.illustrator.plugins.ADMTP Tool Palette version 15.0.0 (15.0.0) <FCA09360-78BF-A043-F191-3D680057F439> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Tool Panel.aip/Contents/MacOS/ADMTP
    0x200f1000 - 0x20102ffb +com.adobe.illustrator.plugins.Segment Tools Segment Tools version 15.0.0 (15.0.0) <BAA1E4D6-6108-1014-13A9-966CB55B9D69> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Segment Tools.aip/Contents/MacOS/Segment Tools
    0x20108000 - 0x20126ffa +com.adobe.illustrator.plugins.ScatterBrushTool Adobe Scatter Brush Tool version 15.0.0 (15.0.0) <3C0686CB-1C0F-F4A0-369A-90E805B45C08> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/ScatterBrushTool.aip/Contents/MacOS/Scat terBrushTool
    0x2012d000 - 0x20145fff +com.adobe.illustrator.plugins.GlobalAdjust Reshape Tool version 15.0.0 (15.0.0) <3BADB03E-24CB-BD81-E23C-C1102B84FDC7> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Reshape Tool.aip/Contents/MacOS/GlobalAdjust
    0x2014b000 - 0x20169fef +com.adobe.illustrator.plugins.ParticlePaint Symbolism version 15.0.0 (15.0.0) <5534630E-ED3D-1122-6C57-DA7A2D830DD7> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/ParticleSystem.aip/Contents/MacOS/Partic lePaint
    0x20172000 - 0x2017bff7 +com.adobe.illustrator.plugins.Magic Wand Magic Wand version 15.0.0 (15.0.0) <2E7B598F-B5E0-873E-4E40-E84F537BD935> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Magic Wand.aip/Contents/MacOS/Magic Wand
    0x20180000 - 0x20197ff3 +com.adobe.illustrator.plugins.Liquify Liquify version 15.0.0 (15.0.0) <9F18C32A-BE54-EBFD-4AC1-7FEA633243AE> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Liquify.aip/Contents/MacOS/Liquify
    0x2019c000 - 0x201a3fec +com.adobe.illustrator.plugins.Lasso Lasso version 15.0.0 (15.0.0) <B61316E3-6BD8-4372-0196-79ACD7B2ADDC> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Lasso.aip/Contents/MacOS/Lasso
    0x201a9000 - 0x201adffb +com.adobe.illustrator.plugins.KnifeTool Knife Tool version 15.0.0 (15.0.0) <48A118A6-14C1-26B1-9F6D-B7430F77505A> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/KnifeTool.aip/Contents/MacOS/KnifeTool
    0x201b2000 - 0x201e8feb +com.adobe.illustrator.plugins.EraserTool EraserTool version 15.0.0 (15.0.0) <F47ACCBC-6AF5-FB7D-7D4F-F0F2C0140328> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/EraserTool.aip/Contents/MacOS/EraserTool
    0x201f0000 - 0x20276fff +com.adobe.illustrator.plugins.dBrushTool Bristle Brush Tool version 15.0.1 (15.0.1) <96C468D5-73FF-DC72-EB25-BC122F4D7686> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/dBrushTool.aip/Contents/MacOS/dBrushTool
    0x2036a000 - 0x20393fec +com.adobe.illustrator.plugins.CalligBrushTool Calligraphic Brush Tool version 15.0.0 (15.0.0) <E1531DB8-AEFF-8A8F-230E-D2BF98C12B96> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/CalligBrushTool.aip/Contents/MacOS/Calli gBrushTool
    0x2039a000 - 0x203aeff7 +com.adobe.illustrator.plugins.BoundingBox BoundingBox version 15.0.0 (15.0.0) <B1C6964F-818D-2C57-ACFB-0DA783285D67> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/BoundingBox.aip/Contents/MacOS/BoundingB ox
    0x203b3000 - 0x203dcff2 +com.adobe.illustrator.plugins.ArtBrushTool Art Brush Tool version 15.0.0 (15.0.0) <E73A65AA-C929-01B7-68EC-58EB2D87CB34> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/ArtBrushTool.aip/Contents/MacOS/ArtBrush Tool
    0x203e3000 - 0x20407fff +com.adobe.illustrator.plugins.ExpressView Support OS Express Views version 15.0.0 (15.0.0) <21FCD83B-F1CD-6EB7-1B48-91FE9022E2FE> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Photoshop Filters.localized/ExpressView Support.aip/Contents/MacOS/ExpressView Support
    0x2040f000 - 0x2042dffe +com.adobe.illustrator.plugins.MPSExport MPSExport version 15.0.1 (15.0.1) <249488E3-8D1F-C05E-20C0-4B9A2CC811E7> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Formats.localized/MPSExport.aip/Contents/MacOS/MPSExport
    0x2045c000 - 0x20467ffb +com.adobe.illustrator.plugins.Pathfinder Pathfinder Plugin version 15.0.0 (15.0.0) <ACC0A0E6-C4D4-6072-473A-D7E976B0D7EF> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/Pathfinder.aip/Contents/MacOS/Pathfinder
    0x2046b000 - 0x20480ff0 +com.adobe.illustrator.plugins.WelcomeScreen WelcomeScreenn version 15.0.0 (15.0.0) <E19BD90F-BA6C-2383-15AD-1F843A0CD68A> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/WelcomeScreen.aip/Contents/MacOS/We lcomeScreen
    0x20486000 - 0x20499fff +com.adobe.illustrator.plugins.TransparencyPalette Transparency Palette version 15.0.0 (15.0.0) <62E98A07-BD56-1EF2-FCFA-17F4C16ADE59> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Transparency Panel.aip/Contents/MacOS/TransparencyPalette
    0x2049d000 - 0x204bafe2 +com.adobe.illustrator.plugins.Services Services version 15.0.0 (15.0.0) <105A501F-C4A0-81B1-90D9-7023FE3C42D3> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Services.aip/Contents/MacOS/Service s
    0x204c3000 - 0x204d4fe8 +com.adobe.illustrator.plugins.SeparationPreview Separation Preview version 15.0.0 (15.0.0) <01485368-267F-5BF4-6628-FC51862C93E1> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/SeparationPreview.aip/Contents/MacO S/SeparationPreview
    0x204da000 - 0x204dffff +com.adobe.illustrator.plugins.PathSuite PathConstruction Suite version 15.0.0 (15.0.0) <F551B927-E001-B314-2A34-C2D3C2CE3F95> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/PathSuite.aip/Contents/MacOS/PathSu ite
    0x204e3000 - 0x20509fff +com.adobe.illustrator.plugins.LiveBlends Live Blends version 15.0.0 (15.0.0) <0940CEDC-3D38-3603-A714-846973128528> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/LiveBlends.aip/Contents/MacOS/LiveB lends
    0x2050f000 - 0x2053dffc +com.adobe.illustrator.plugins.Layers Layers Palette version 15.0.0 (15.0.0) <8F0EA34C-0884-6A5E-42AF-797BE76AF318> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Layers Panel.aip/Contents/MacOS/Layers
    0x20545000 - 0x2055bff3 +com.adobe.illustrator.plugins.KBSCPlugin Keyboard Shortcuts version 15.0.0 (15.0.0) <AA3FE4E5-2E39-2BDC-29FA-2B4A80B1758B> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Keyboard Shortcuts.aip/Contents/MacOS/KBSCPlugin
    0x20562000 - 0x20563fff +com.adobe.illustrator.plugins.FlattenS Flatten Suite version 15.0.0 (15.0.0) <D605DB82-C56B-3CDC-01DB-8E4492AA5621> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/FlattenS.aip/Contents/MacOS/Flatten S
    0x20567000 - 0x2056cfef +com.adobe.illustrator.plugins.FileClipboardPref FileClipboardPref version 15.0.0 (15.0.0) <D36E49AB-3A0A-20A7-BC60-9EC2D1461B4A> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/FileClipboardPref.aip/Contents/MacO S/FileClipboardPref
    0x20570000 - 0x205cafea +com.adobe.illustrator.plugins.ArtStyle Art Style version 15.0.0 (15.0.0) <3A39E0EB-0978-4867-1330-C34D3EC5C217> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ArtStyle.aip/Contents/MacOS/ArtStyl e
    0x205d6000 - 0x205eeff7 +com.adobe.illustrator.plugins.ArtboardPanel Artboard Panel version 15.0.0 (15.0.0) <7590F0B2-136E-8262-47EB-76EB405576CD> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/ArtboardPanel.aip/Contents/MacOS/Ar tboardPanel
    0x205f5000 - 0x20605fff +com.adobe.illustrator.plugins.AppBarControlsPlugin Adobe App Bar Controls Host version 15.0.0 (15.0.0) <D1E094B3-146F-85F7-CA05-8267471B86BF> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/AppBarControlsPlugin.aip/Contents/M acOS/AppBarControlsPlugin
    0x2060b000 - 0x2062cfef +com.adobe.illustrator.plugins.AltGlyphPal AdobeAltGlyphPalette version 15.0.1 (15.0.1) <B2AE8337-FCD0-29DC-BBFC-A55DF0751A87> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/AltGlyphPal.aip/Contents/MacOS/AltG lyphPal
    0x20664000 - 0x20674ffc +com.adobe.illustrator.plugins.Align AdobeAlignObjects version 15.0.0 (15.0.0) <1779311C-23B6-09AC-173D-F204ABA34004> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Align.aip/Contents/MacOS/Align
    0x20678000 - 0x206b0fff +com.adobe.illustrator.plugins.ActionPalette  Action Palette version 15.0.0 (15.0.0) <4BB61412-8F86-9318-1298-5F33D99C3C12> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Action Panel.aip/Contents/MacOS/ActionPalette
    0x206b9000 - 0x2074dff3 +com.adobe.illustrator.plugins.PDF Format PDF Format version 15.0.1 (15.0.1) <75C81DFB-2D4E-FD42-2F1C-15859E9868A1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDF Format
    0x207bd000 - 0x20803fff +FilterPort ??? (???) <0FA05E77-48C4-2AE4-EC28-BA37EA2884B8> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x20877000 - 0x208bcfff +ADMEveParserCarbon ??? (???) <1DB008C3-2846-97FE-8CC4-B1137E068E8C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ADMEveParserCarbon.bundle/Contents/MacOS/ADME veParserCarbon
    0x208d2000 - 0x208d8fe8 +com.adobe.illustrator.plugins.TextWrapDlg TextWrapDlg version 15.0.0 (15.0.0) <AFCFCBDC-8EA9-8150-7415-538DA59A30FB> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/TextWrapDlg.aip/Contents/MacOS/TextWrapDlg
    0x208dc000 - 0x208eafff +com.adobe.illustrator.plugins.Advanced Select Advanced Select version 15.0.0 (15.0.0) <D4C8AF84-087F-EE42-445B-D0477022645F> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/Advanced Select.aip/Contents/MacOS/Advanced Select
    0x208ef000 - 0x208f2fff +com.adobe.illustrator.plugins.TypeCase Change Case version 15.0.0 (15.0.0) <53912D41-3BF1-646F-1261-134FFB516F2C> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Text Filters.localized/TypeCase.aip/Contents/MacOS/TypeCase
    0x20a00000 - 0x20a0efff +com.adobe.illustrator.plugins.ShapeTool ShapeTool version 15.0.0 (15.0.0) <09AE83AB-98F8-3FF3-2A4C-5C6A08F1629C> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Tools.localized/ShapeTool.aip/Contents/MacOS/ShapeTool
    0x20eaf000 - 0x20ebcfe6 +com.adobe.illustrator.plugins.BNPlugin BNPlugin version 15.0.1 (15.0.1) <1B088BB7-7928-787B-BC2C-6C2381001128> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/BNPlugin.aip/Contents/MacOS/BNPlugi n
    0x21665000 - 0x216a3fff +com.adobe.illustrator.plugins.Print Print version 15.0.0 (15.0.0) <CAD5B8DC-4FF1-830D-C952-1960D8E2CE57> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/Print.aip/Contents/MacOS/Print
    0x216ac000 - 0x216eeff7  com.apple.print.framework.Print.Private 6.4 (305.4) <97FD461E-ACFC-6F2B-9E48-5A22D1537422> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x2176e000 - 0x2178bff7  libPDFRIP.A.dylib 545.0.0 (compatibility 64.0.0) <9AD51723-AE24-5C9F-FBD4-3621D1B40A87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x281b8000 - 0x281d1fe3 +com.adobe.illustrator.plugins.PerspectiveUI PerspectiveUI version 15.0.0 (15.0.0) <E0C4FC8C-38ED-2F1B-7A53-11E5A9AC83FD> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator UI.localized/PerspectiveUI.aip/Contents/MacOS/PerspectiveUI
    0x281df000 - 0x2823fff6 +com.adobe.illustrator.plugins.CharParaStyles CharParaStyles version 15.0.0 (15.0.0) <EBF66F7B-D6F5-B198-E9CC-C8D51346E9B6> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Extensions.localized/CharParaStyles.aip/Contents/MacOS/C harParaStyles
    0x28280000 - 0x2828aff3 +com.adobe.illustrator.plugins.Find Find version 15.0.0 (15.0.0) <A154DE76-543A-63B7-1653-4D3567FE25DB> /Applications/Adobe Illustrator CS5/Plug-ins.localized/Illustrator Filters.localized/Find.aip/Contents/MacOS/Find
    0x2843d000 - 0x284b1fe7 +com.adobe.illustrator.plugins.Perspective Perspective version 15.0.0 (15.0.0) <B6

    hi, I have a similar problem, i have a macbook pro (Mac OSX 10.6.8) with 8GB in ram
    Process:         Adobe Illustrator [292]
    Path:            /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         399 (15.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [138]
    Date/Time:       2011-12-09 17:52:53.930 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          788632 sec
    Crashes Since Last Report:           48
    Per-App Interval Since Last Report:  10868 sec
    Per-App Crashes Since Last Report:   36
    Anonymous UUID:                      BA272843-B384-44A1-9B36-ABBF418E607D
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x93d34c5a __kill + 10
    1   libSystem.B.dylib                       0x93d34c4c kill$UNIX2003 + 32
    2   libSystem.B.dylib                       0x93dc75a5 raise + 26
    3   libSystem.B.dylib                       0x93ddd6e4 abort + 93
    4   libSystem.B.dylib                       0x93d59b1b _Unwind_Resume + 59
    5   com.adobe.illustrator                   0x0010a817 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 974787
    6   com.adobe.illustrator                   0x000cc97e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 721194
    7   com.adobe.illustrator                   0x00003346 0x1000 + 9030
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x93cfa382 kevent + 10
    1   libSystem.B.dylib                       0x93cfaa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x93cf9f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x93cf9cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x93cf9781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x93cf95c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x93cf9412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x93cf99a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x93cf95c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x93cd3b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93d016f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93d4a05f pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0458d126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x04585db0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services                  0x0458d18c AMTThread::Worker(void*) + 24
    6   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    7   libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x93cd3b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x93d016e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x93d305a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x9a242b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x9a2428ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x9a266b8b TimerThread + 97
    6   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    7   libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x93d01aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d0175e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d033f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9a25721e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9a242b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x9a23e533 MPWaitOnQueue + 250
    6   AdobeACE                                0x015526f1 0x1518000 + 239345
    7   AdobeACE                                0x015520ed 0x1518000 + 237805
    8   ...ple.CoreServices.CarbonCore          0x9a22254a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x93cd3b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93d016f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93d4a05f pthread_cond_wait + 48
    3   AdobeAGM                                0x0198b8f5 AGMInitialize + 3243373
    4   AdobeAGM                                0x0198c545 AGMInitialize + 3246525
    5   AdobeAGM                                0x01992138 AGMInitialize + 3270064
    6   libSystem.B.dylib                       0x93d01259 _pthread_start + 345
    7   libSystem.B.dylib                       0x93d010de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x93ddd693  ecx: 0xbffff5bc  edx: 0x93d34c5a
      edi: 0xffffffff  esi: 0xbffff640  ebp: 0xbffff5d8  esp: 0xbffff5bc
       ss: 0x00000023  efl: 0x00000286  eip: 0x93d34c5a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x93dc758b
    Binary Images:
        0x1000 -   0xff7ff6 +com.adobe.illustrator 399 (15.0.0) <E4A81060-96D8-01B9-093D-04CBB8C0459B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x12d9000 -  0x13a6fe7 +AdobeAXEDOMCore ??? (???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
    0x1415000 -  0x1425fff  com.apple.carbonframeworktemplate 1.0 (1.0) <5E8425F4-3852-F874-5091-CA17727F863C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x142a000 -  0x1445ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x145f000 -  0x14a3fff +com.adobe.illustrator.aiport AIPort version 1.0 (1.0) <D16914DF-84AF-46F5-DBE7-4E69FDF57C2B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1506000 -  0x1506fff +SPBasic ??? (???) <9025F209-C255-BA15-EE86-BCF54706917D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x150a000 -  0x1510ffb +com.adobe.coretech.adobesplashkit AdobeSplashKit version 1.0 (1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x1518000 -  0x162cfff +AdobeACE ??? (???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x164f000 -  0x1b75fff +AdobeAGM ??? (???) <BD6EEC99-2691-BD5F-5888-2436562E5227> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1cb6000 -  0x1cf2fff +AdobeARE ??? (???) <EFF04636-11C5-BFF0-6DC4-0E4909802EEA> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1cfb000 -  0x1d21ff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1d32000 -  0x1d4dfff +AdobeBIB ??? (???) <6E3DC6A9-066C-B736-6465-7F91D18860FB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1d57000 -  0x1d78ff7 +AdobeBIBUtils ??? (???) <0405CA59-8136-7A32-CCDE-D5289F02B4EC> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1d84000 -  0x2076ff7 +AdobeCoolType ??? (???) <AEC9EB8F-2122-1708-3207-2A8BE3308FFA> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x20fe000 -  0x2196fff +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <F68E96A7-E657-7275-09DF-4C412554CD4A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x21f5000 -  0x22d8fef +AdobePDFPort ??? (???) <A3B34989-24B0-04AF-D9BC-2B2718803809> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x230d000 -  0x2941feb +AdobePDFL ??? (???) <1A619F3E-A9D4-A99C-791E-92B564F64609> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2a6d000 -  0x2afaff7 +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <6A15402A-09B2-B1F8-5ECC-D7871EC054C3> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x2b3f000 -  0x2bdffef +AdobeSVGExport ??? (???) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2c09000 -  0x2ea7ff2 +AdobeSVGRE ??? (???) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2f80000 -  0x2fd8ff7 +AdobeXMP ??? (???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2fe7000 -  0x3073fef +AdobeXMPFiles ??? (???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x30aa000 -  0x3177ff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x31da000 -  0x32b4fef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x32f4000 -  0x3ca4fff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3ca7000 -  0x407fff7 +AdobeMPS ??? (???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x41ae000 -  0x4214ffb +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4244000 -  0x42d5ff7 +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x42f4000 -  0x44daff7 +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x4568000 -  0x45cffea +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x460e000 -  0x468bfff +AdobeOwlCanvas ??? (???) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x46a7000 -  0x47dffe7 +WRServices ??? (???) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4821000 -  0x4825ffc +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x482c000 -  0x487fffb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x48c7000 -  0x48d9fff +com.adobe.pip ??? (5.0.0.2021) <5251926B-C2C0-282C-B3A9-94A9FEF0FCB8> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x48e2000 -  0x5625fff +com.adobe.psl AdobePSL 12.0.0.7524 (12.0.0.7524) <CFBCB19A-03F7-D095-1F48-8D68F05A25C5> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5964000 -  0x5ae1fef +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <565B8F4B-EFEA-D847-91FE-17B8ED169DF2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5c5c000 -  0x5f4cfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <7E7F77B3-0CB3-8885-915E-EDACEE27500E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x6274000 -  0x65baff3 +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E97C356-CEE3-9CA3-3C90-8196F560164E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6ac9000 -  0x6adbfef +com.adobe.dvaai.framework dvaai version 5.0.0 (5.0.0.0) <2D9772CA-D866-6A7F-CF74-FD7F485350B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6aec000 -  0x6af2fef +com.adobe.boost_date_time.framework boost_date_time version 5.0.0 (5.0.0.0) <FB5A16A5-D6E7-71B7-78A8-A174A64EF477> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_ date_time
    0x6b03000 -  0x6b0eff3 +com.adobe.boost_filesystem.framework boost_filesystem version 5.0.0 (5.0.0.0) <604EA207-EEF2-AC6E-A8B1-26737E5AB0A7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost _filesystem
    0x6b22000 -  0x6ba0fe2 +com.adobe.boost_regex.framework boost_regex version 5.0.0 (5.0.0.0) <F95BC864-6CFC-EAF4-A6DF-27608A5DD30E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_rege x
    0x6c04000 -  0x6c0efff +com.adobe.boost_signals.framework boost_signals version 5.0.0 (5.0.0.0) <08C988D8-10F3-66EF-AE15-B086AD240942> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_si gnals
    0x6c21000 -  0x6c23ffb +com.adobe.boost_system.framework boost_system version 5.0.0 (5.0.0.0) <7ACBC8B3-0BEA-7B7B-04FF-95C6A93E3E7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_sys tem
    0x6c2a000 -  0x6c31ff2 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <4942ACFF-5944-0F7F-8481-49CAF902D15F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_th reads
    0x6c41000 -  0x6c9ffe2 +com.adobe.boost_serialization.framework boost_serialization version 5.0.0 (5.0.0.0) <FBAA7D86-4F90-3337-4657-022BA313C894> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/bo ost_serialization
    0x6d76000 -  0x6f15fe7 +com.adobe.owl AdobeOwl version 3.0.89 (3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x6f7e000 -  0x6febfef +FileInfo ??? (???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x7006000 -  0x70bbfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <78B6EEB6-50D9-4479-D1A5-B4C381A07E4D> /usr/lib/libcrypto.0.9.7.dylib
    0x7101000 -  0x7141ff7  com.apple.vmutils 4.2 (106) <92BB4844-304C-C7AB-1F9B-686537C56099> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x715a000 -  0x715dff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x71ec000 -  0x71edff7  com.apple.textencoding.unicode 2.3 (2.3) <A7D310DB-A5E6-C834-F72F-A66453834CC0> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xb662000 -  0xb6d2feb +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xb6e0000 -  0xb6e8fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x40000000 - 0x400d1fe7 +AdobeJP2K ??? (???) <EF392886-5A95-6A96-C95D-43DA0322925C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld
    0x90003000 - 0x90009fff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90012000 - 0x9001bff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <AAE0185D-4A47-1833-27A3-03FDF734A3BA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9001c000 - 0x9001fffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x902b8000 - 0x902bfff3  com.apple.print.framework.Print 6.1 (237.1) <726A7F31-8C27-8403-0016-71E022EDC14C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9076c000 - 0x9077eff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x907a5000 - 0x90a9ffef  com.apple.QuickTime 7.6.6 (1787) <AC48EAD9-7201-7CE6-C826-41B12963FECF> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90aa0000 - 0x90ab0ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x90b02000 - 0x90b21ff7  com.apple.CoreVideo 1.6.2 (45.6) <F9E52A13-E181-D302-3B0E-0799ED6D6130> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90b22000 - 0x91405ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91406000 - 0x9144ffe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91450000 - 0x91450ff7  com.apple.Carbon 150 (152) <8DD4F8DB-6DBD-1F65-F4EB-2981DBFDED50> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91462000 - 0x914fafe7  edu.mit.Kerberos 6.5.11 (6.5.11) <88CA2CC8-9005-E017-6D61-5809C3CE5FC6> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x914fb000 - 0x914fcff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91509000 - 0x91509ff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91515000 - 0x91643fe7  com.apple.CoreData 102.1 (251) <0C2636F3-CCB4-5ED9-1D3E-5AE36BE57071> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91644000 - 0x916fdfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <03186216-0A12-4AA9-D7BA-3E3551A1195C> /usr/lib/libsqlite3.dylib
    0x916fe000 - 0x91702ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91744000 - 0x91787ff7  com.apple.NavigationServices 3.5.4 (182) <FE19D51B-233A-69EC-9E36-B89D0EA438C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91790000 - 0x9179efe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib
    0x9250a000 - 0x9253bff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92bb8000 - 0x92bf2ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x92d91000 - 0x92d9fff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92da0000 - 0x93005feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93006000 - 0x930b4ff3  com.apple.ink.framework 1.3.3 (107) <E215794C-F3E9-C067-8882-9054796DDA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930b5000 - 0x93195fe7  com.apple.vImage 4.1 (4.1) <AEF800AE-65DA-5E79-5B01-165AF51BAAF6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93cd3000 - 0x93e7aff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x93f70000 - 0x93fcdff7  com.apple.framework.IOKit 2.0 (???) <482CF2CC-DF02-2B5B-2133-18F5EA0052A8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x940da000 - 0x9411cff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <1AE34B00-8A62-1E51-935F-BB3F0E4BE50F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94128000 - 0x94166ff7  com.apple.QuickLookFramework 2.3 (327.6) <FCA83173-6DBF-615C-699A-529A7FD821ED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9456b000 - 0x945b1ff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib
    0x94607000 - 0x9462fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x94630000 - 0x94634ff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94635000 - 0x94651fe3  com.apple.openscripting 1.3.1 (???) <0E6B81D1-C1BD-1B5F-836F-256E6701B5DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94656000 - 0x94703fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x94704000 - 0x9479ffe7  com.apple.ApplicationServices.ATS 275.19 (???) <9FA31967-CF14-B033-EB8D-570561D12A13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94818000 - 0x9481cff7  IOSurface ??? (???) <7D8204CE-3FF9-27EC-A760-9321C44467A2> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9481d000 - 0x94832fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9488c000 - 0x9488ffe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94890000 - 0x94896fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94897000 - 0x948f8fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x949ff000 - 0x94b01fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x94b02000 - 0x94e26fef  com.apple.HIToolbox 1.6.5 (???) <F21289A3-A00E-0BC3-66F1-7557862CE7EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94e51000 - 0x95286ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9529a000 - 0x9529aff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x9529b000 - 0x953d8fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x953d9000 - 0x953dbff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x953dc000 - 0x957f2ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95845000 - 0x95865fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <584B2B30-DC65-6930-F59F-C49FD5604B67> /usr/lib/libresolv.9.dylib
    0x95866000 - 0x95866ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95867000 - 0x958cbfff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9694b000 - 0x96ac6fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96afd000 - 0x96b50ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96bd6000 - 0x96bf1ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96c61000 - 0x96c6bfe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96d9a000 - 0x96e46fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96e47000 - 0x96e68fe7  com.apple.opencl 12.3.6 (12.3.6) <B774CF2D-C067-DFFE-3EE6-90A036E36E06> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96e69000 - 0x96f75ff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9705f000 - 0x970a2ff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97154000 - 0x97248ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <475AEF89-91A5-5100-8662-DA508D3830E9> /usr/lib/libiconv.2.dylib
    0x97249000 - 0x9724cff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x97627000 - 0x97633ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x976b2000 - 0x976c6ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x976c7000 - 0x976d8ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <B59157A1-8796-CE8F-2508-EB96F093F6A7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97a4d000 - 0x97a4dff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97a4e000 - 0x97ae0fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <EE9ED7BE-7D97-B759-C063-1E4B7DBD3775> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x97b18000 - 0x97bd4fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x97bd5000 - 0x97ca0fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97cda000 - 0x97d82ffb  com.apple.QD 3.36 (???) <5A93B258-3853-636F-DB26-223642DA2779> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97fa1000 - 0x97fa1ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97fca000 - 0x97fecfef  com.apple.DirectoryService.Framework 3.6 (621.11) <401E67B3-96DF-287B-2892-210C3A2EE9A6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97fed000 - 0x97ff8ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97ff9000 - 0x981bbfeb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x981bc000 - 0x981c6ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <90C38107-AEE7-AE55-5C51-28D129B19BCD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x981e0000 - 0x9825afff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9825b000 - 0x98a4a557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98a82000 - 0x98b83fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <E1A44C67-FA6C-0188-F46F-EA14CEE557BB> /usr/lib/libxml2.2.dylib
    0x98b84000 - 0x98ba8ff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98ba9000 - 0x98c46fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98d8b000 - 0x98d9ffe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x99457000 - 0x99457ff7  com.apple.CoreServices 44 (44) <B9461120-F72A-D28F-D0CF-5647958BD3F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x994f9000 - 0x9952cff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9952d000 - 0x9979efef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x997b0000 - 0x997c8ff7  com.apple.CFOpenDirectory 10.6 (10.6) <6D726EA4-67D2-E534-13A3-E3767BA59786> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x997c9000 - 0x9980dff3  com.apple.coreui 2 (114) <1A3C3B7F-3837-6477-3114-47F6BFD56CB2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9980e000 - 0x99890ffb  SecurityFoundation ??? (???) <20512B7E-DC54-8242-B656-64DCA1BFB739> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9994e000 - 0x99a1ffe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x99a20000 - 0x99d8bff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99de1000 - 0x99e99feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x99f57000 - 0x99f57ff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99f58000 - 0x99f65ff7  com.apple.NetFS 3.2.2 (3.2.2) <0A53CD10-DBC7-2BE8-34F7-354BE201F6FB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99f66000 - 0x99fe6feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99fe7000 - 0x99fecff7  com.apple.OpenDirectory 10.6 (10.6) <7E8AFE74-1FA9-7B35-A0E3-545959A9CA73> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x99fed000 - 0x9a05cff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <B3DEACA1-9375-CF8F-0898-AA2C5F8159DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9a05d000 - 0x9a0c7fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9a0c8000 - 0x9a1a2fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9a1ab000 - 0x9a1fbff7  com.apple.framework.familycontrols 2.0.2 (2020) <592738FA-B093-279A-8D4E-3F76A21E2912> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9a1fc000 - 0x9a51cff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a51d000 - 0x9a55aff7  com.apple.SystemConfiguration 1.10.9 (1.10.2) <5C0F72C2-177E-675A-8677-9BC4205B4A98> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9a5bf000 - 0x9a5e5ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <5A8D5D84-06EB-F9B5-BA0A-A87A0A2C0035> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9a6a8000 - 0x9a6aaff7  com.apple.securityhi 4.0 (36638) <A5F4B929-AEDE-2DFB-E02F-89CEC0940023> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a6ab000 - 0x9a6f8feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <9E35835E-BC33-F8EC-8F3B-84D51DEBDB16> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9a6f9000 - 0x9a700ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <46BD2265-78DC-2FAB-73C6-E224755C070D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9a71a000 - 0x9a71bff7  com.apple.TrustEvaluationAgent 1.1 (1) <06484720-AB50-6FD9-B5BF-05F5A640C9E5> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9a71c000 - 0x9a760fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9a864000 - 0x9a9e6fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0xb0000000 - 0xb000fff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <24B39C2F-79B0-BDE3-C6D0-1F0E943070C7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro8,2, BootROM MBP81.0047.B24, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: USB 2.0 Hub, 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0101, 0xfa130000 / 6
    USB Device: HUAWEI Mobile, 0x12d1  (Huawei Technologies Co., Ltd.), 0x14ac, 0xfa132000 / 8
    USB Device: Optical Mouse, 0x0458  (KYE Systems Corp.), 0x003a, 0xfa134000 / 7
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

  • I need help I can connect my printer to my router to use my printers with my mini I pad

    I need help I have been trying for hours to connect my new e printer to my router ,to use with my ipad mini

    Hi,
    The simplest way to print wirelessly from your ipad is to download the HP eprint app and ensure that both your printer and device are connected to the same wifi network - once this is complete, you'll be bale to print wirelessly from within the eprint app.
    Alternatively, you can use the wireless direct funtion of your printer by turining on the wireless button on the front of the printer. This allows the printer generate it's own wifi singal that you can connect to through any wireless device. To find the wireless password, simply hold down the wireless direct button for more than 3 secs and it will print the password on plain paper (make sure paper is loaded).
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Need HELP solving a report writing solution

    I have a pre-existing report, that contains a sub-report.  In the sub report, How do I get the report to print "something" when the field it is pulling from is empty?
    In other words....I am trying to pull information in the sub report based on a work order.  If the work order has not been entered, and therefore does not exist, how do I get crystal to have the phrase, "NO WORK ORDER ENTERED" put into the place where the work order number should be, had it been entered?

    you can just enter a text field in the subreport and suppress it if a regular subreport is is not null.
    example:
    create  a text field "No Workorder Entered"
    Format that field to suppress if NOT ISNULL()
    Now you will see 'No Workorder Entered' in your parent report IF the subreport is empty.

Maybe you are looking for