Images in an interacitve report

Hello

a question:

Is it possible to display an image in a report interactive?

I did it already in a classic report using:
CASE
When (> 1 «Number») then "< img src ="#WORKSPACE_IMAGES #red. " ALT "JPG" = "RED" > "
"when ('Number' < = 1) then" < img src = "#WORKSPACE_IMAGES #green.jpg" alt = "GREEN" > ' end as 'fire '.


It worked perfectly in the classic report. But when I use this for the interactive report, it just displays the text ('img src... ") but no display no picture."


Perhaps the interactive report cannot show images?


Thanks for your help,
LISA :-)

Hi Lisa,

Yes, it is possible to display images in the interactive report. If you just see the text «img src...» "check the attributes of report to see if the"Display As text"is set at. It should be the Standard report column.

Concerning

Paul

Tags: Database

Similar Questions

  • Extract images from database in reports

    Hi all

    I want to see pictures of the employee in my report.
    How to recover the images stored in the database in oracle report.


    I have try the image field in the reports, but it does not work it shows an error: cannot read the image data of the file


    Oracle reports 6i
    image format: .bmp

    Hello

    See here an example (video):
    FTP://FTP.Oracle.com/support/outgoing/dsegard/reports_images.swf

    the testimg table was created with the following statement:

    CREATE TABLE TESTIMG
    (
    The "ID" NUMBER
    'IMAGE' BLOB
    );

    Concerning

  • Column of image in an interactive report (APEX 4.0)

    Hello
    I added a new column of type blob containing images in an interactive report, but get the following error: -.

    ORA-06502: PL/SQL: digital or value error: character of number conversion error

    If the "IMAGE" column is removed from the State by using the control "actions: select a column ', the report is ok.

    The column contains the following parameters in the "BLOB download Format Mask": -.

    IMAGE: WINEDETAILS:IMAGE:WINE_ID:MIMETYPE:FILENAME:inline:Download

    Did I miss something?

    Concerning
    Tim

    Select wine_id, wine, dbms_lob.getlength (image) my_image
    of wine_details

    -Sharon

  • How to enable image on fax send report-HP Officejet 4500 Wireless

    About 5 times a day, always injury time and only on week, I get a Fax journal report.  Type-copy, fax No.-result.  There is a 'NOTE' on the bottom that says "Image Fax Send report is set to Off" & "an image of page 1 will appear here for faxes sent as Scan and Fax.  I just need to know how to stop the Fax journal reports, devours paper and ink.  Thank you

    Hello

    Of the printer, click on the Setup button ().

    Click the right arrow button until print report appear, and then click OK.

    Click the right arrow until Fax error displayed, then click OK.

    Change the value to Off using the right arrow, and then click OK.

    Until the main printer appears, click the Cancel button.

    Now the error report cannot be printed more.

    Kind regards

    Shlomi

  • Display an image BLOB in a report of the APEX

    Hello

    I have a BLOB column in a table that contains an image I want to display in a report.

    The table definition for the table (MAG_IMAGES) that I store the BLOB in is:

    CREATE TABLE 'MAG_IMAGES '.

    (NUMBER OF 'MAG_IMAGE_ID',

    VARCHAR2 (200) "NUMERO_IMAGENOM_IMAGE."

    BLOB "CONTENT."

    'MIME_TYPE' VARCHAR2 (1000).

    NUMBER OF "DOC_SIZE."

    'CONTENT_TYPE' VARCHAR2 (1000).

    VARCHAR2 (20) "DISPLAY_AREA."

    TIMESTAMP 'LAST_UPDATE_DATE' (6).

    ENABLE 'MAG_IMAGES_PK' CONSTRAINT PRIMARY KEY ('MAG_IMAGE_ID')

    )

    /

    It's the Vendor_Group Table where I store the Image_Id.

    CREATE TABLE 'VENDOR_GROUP '.

    (NUMBER OF 'VENDOR_GROUP_ID',

    VARCHAR2 (100) "VENDOR_GROUP_NAME."

    "IMAGE_ID" NUMBER

    ENABLE 'VENDOR_GROUP_PK' CONSTRAINT PRIMARY KEY ('VENDOR_GROUP_ID')

    )

    /

    I created the following procedure IMAGE_DISPLAY, which I have from a previous discussion forum.

    create or replace PROCEDURE image_display (p_image_id number)

    AS

    l_mime VARCHAR2 (255);

    l_length NUMBER;

    l_file_name VARCHAR2 (2000);

    l_content BLOB;

    BEGIN

    SELECT content, Mime_type DBMS_LOB.getlength (content)

    IN l_mime, l_content, l_length

    OF mag_images

    WHERE mag_image_id = p_image_id;

        

    OWA_UTIL.mime_header (NVL (l_mime, "application/octet"), FALSE);

    HTP.p ("Content-length: ' |") l_length);

    OWA_UTIL.http_header_close;

    WPG_DOCLOAD.download_file (l_content);

    EXCEPTION

    WHEN OTHERS RAISE.

    END image_display;

    I then create a region of APEX report with the following source:

    Select a.group_product_list,

    ' < img src = "image_display? p_image_id =' | NVL(a.image_id,0) | "" height ="" | 100. "" / > "photo

    vendor_group a, mag_images b

    where image_id = b.mag_image_id (+)

    and mag_vendor_id = 2;

    The Image does not appear, but it looks like this below. I put the column attribute 'Standard report Column '.

    BLOB_Report.png

    Can someone please tell me what I'm doing wrong?


    Thanking you in advance


    Dominic

    Dominic Dovale wrote:

    Hello

    I tried to recreate the region from scratch, even in another page altogether but still no luck.

    If I run the report without defining the column in a BLOB with its attributes (MIMETYPE column, Table etc.), he does not fail, but returned the following, which is of course the length of the BLOB. The problem only occurs if I set the attributes. Any other suggestions?

    Include MAG_IMAGE_ID as a hidden column in the report.

  • Dynamic image appears in the report of BI

    Hello

    I developed a BI letter when I display the logo dynamically. I have the image file stored in a BLOB of table field and then download the image using a procedure. I used the URL in my SQL report and changed the text of replacement on the image, but I still not able to view the image.

    I created a test in oracel.apex application

    PKTEST workspace

    user pktest

    pass 123test

    I checked the old post and is therefore but it does not work.

    Solve the problem.

    There are several cause to the problem.

    to start the process

    PROCEDURE SAMPACC. "" DISPLAY_COMP_LOGO "(number p_refno)

    is

    l_logo blob.

    number of l_length;

    Start

    -You can select one of your own table where you store the image

    Select

    colo_logo, DBMS_LOB. GetLength (colo_logo)

    in l_logo, l_length

    from company_locations where colo_refno = p_colo_refno;

    owa_util.mime_header('image/jpeg',false);

    HTP.p ("' Content-Disposition: attachment; filename =" ' |') Logo ' |' « ') ;

    HTP.p ("Content-length: ' |") l_length);

    owa_util.http_header_close;

    wpg_docload.download_file (l_logo);

    end;

    /

    create a public SYNONYM DISPLAY_COMP_LOGO for . DISPLAY_COMP_LOGO;

    Grant execute on DISPLAY_COMP_LOGO to anonymous, public, APEX_PUBLIC_USER

    then connect to aid the user in the system database, and then set it to the current schema

    for example, Alter session set current_schema APEX_040200

    for apex 4.2

    change the following function to include the name of the procedure you

    APEX_040200.wwv_flow_epg_include_mod_local

    After modification, the function should look like this. If you have a false return after start this comment.

    function wwv_flow_epg_include_mod_local)

    Procedure_name in varchar2)

    return a Boolean value

    is

    Start

    --

    -Administrator note: the procedure_name input parameter can be in the format:

    --

    -procedure

    -schema.procedure

    -package.procedure

    -schema.package.procedure

    --

    -If the input parameter expected is a procedure name, the code IN listing below

    -can be modified to list expected procedure names. Otherwise, you must analyze the

    -parameter procedure_name and replace the simple code below with the code that will evaluate

    -all the cases listed above.

    --

    If upper (procedure_name) in)

    "SCHEMA. DISPLAY_COMP_LOGO') then

    Return TRUE;

    on the other

    return FALSE;.

    end if;

    end wwv_flow_epg_include_mod_local;

    Then, create the sql code

    connect to apex select your application-> shared under query components select report and create a query

    and call the procedure with parameter example

    Select apex_application.get_g_base_href |' #OWNER #. DISPLAY_COMP_LOGO? P_COLO_REFNO =' | COLO_REFNO as company_location COMPLOGO

    create a template and insert an image where you want to display the logo.

    Select the image and right click and select Format on the property dialog box and the image passes to the last tab and enter the following text in the alt text field

    URL: {//COMP_LOGO}

    Save the template and upload in your application, then go to the report query and select the model.

    You can run this in your application. If you test in the report query report then you must change the #OWNER # of your schema name.

    I used my own company site table in the explanation. I created an application in apex.oracle, but it does not work because I can't change the function as

    as well as the public synonym creation. Hope this will help.

  • Dynamic display of the image in the BIP reports.

    Hello

    I am new user of BEEP

    I have a requirement to display the image of customer in connection BEEP?

    1. We save the image in a server and name of the image inserted in the database
    2. I select Details of the client with the name of the image in XML format. for the same name of the image, I want image customer report BEEP

    Kindly help me to display the image of customer in connection BEEP.

    If you have any example of send me a mail: [email protected]

    Thank you

    DIMO

    Insert an image in your report and provide the code below in the 'web' tab of image Double click on the image and select the 'web' tab and enter the code below.

    URL: {concat (... / IMG_SERVER, ' / ',... / IMG_DIR, ' /', IMGFILE)}

    https://blogs.Oracle.com/XmlPublisher/entry/dynamic_images

  • Set the size of the image in an interactive report


    Hello

    I'm under APEX 4.1 on Oracle 11 g.  I'm trying to resize images in the infrared or a classic report to 100px x 100px.  The images are different, but all dimensions bigger than the size I want to display.  The images are stored images as.jpg, and I need to access it via a URL.  I have this in my select statement: "< img src =https://aaa.bbbbb.edu:10056/inbpics/' |" ' " I00 | substr (spriden_id, 5, 5) | '. JPG > ' pic and it tries to display the image, but it displays the image at its original size.  I try to add the values for height and width in the query, as: "< img src =https://rand.wvnet.edu:10056/inbpics/' |" ' " I00 | substr (spriden_id, 5, 5) | '. Height JPG width 100 = 100 = > ' pic but the image is not displayed because it adds height = 100 at the end of the path to the image.

    I know I could create thumbnails of images, but there are thousands of images with more added constantly, and it would be too much work to try to catch up.

    Is there a way to set the height and width of an image in a report?

    Thank you

    Bob

    Hello

    Modify your query to include 'class' for images.

    'https://aaa.bbbbb.edu:10056 / inbpics /' | 'I00 ' | substr (spriden_id, 5, 5) | '. JPG > '

    Now put after the CSS in the HTML Page header or page footer.

    Kind regards

    Hari

  • Image coding in XML report definition

    A number of reports, I have the report in XML format definition. These files contain embedded images.

    How can I retrieve the xml image files. It looks like not the strings for images are not base16 or base64-coded?

    Work with something like that?

    
    
      
      ]]>
      
      
        
        
      
      
      
    FF8DFF0E 0001A464 94640010 10100006 00060000 FFBD0048 0001B0C0 E0C0A001 E0D0E021 11013181 82A18161 61811332 52D182A3 33D3C393 33837304 84C5E404 44755473 8305D615 75F52676 8676E3D4 17970746 87C55676 36101121 21815181 F2A1A1F2 36248324 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 3636FF4C 102A0000 [...] D29681A8 4EB94557 F3D8D588 912F1FCE A2478278 4E157FE8 D3B2F257 A1906D14 A809D102 9F646EFF 007CA66A B08C98EF 2E5344BB 4978EEAD 55093F75 6A4E8D29 345ECCA0 4F537A2C 9CB424CB 8DDE0D7D 53D4D002 D3E32E6D 1942F70F 5D29740C 7CF15A56 1A469E72 F449A09D 918DE7CF 5F9F877A 17106FEF 474C484E 6F41C067 0D1338AF 1D06311A 4E6608F0 F4C40540 859FBFE7 579924E1 495C31FF 9D
    <%@ page language="java" import="java.io.*" errorPage="/rwerror.jsp" session="false" %> <%@ page contentType="text/html;charset=ISO-8859-1" %> Your Title ]]>

    The image data are encoded hexadecimal (base16) but the hexadecimal digits are reversed compared to the sequence of bytes.
    For example, the first eight bytes in the source are:

    FFD8FFE0 00104A46
    

    but appears as

    FF8DFF0E 0001A464
    

    in the XML file.

    You will need a small program to read the file, extract the hexadecimal binary stream, treat it and write the data to a file.

    PL/SQL example (tested on version 11.2.0.2 db):

    DECLARE
    
     fid     utl_file.file_type;
     len     PLS_INTEGER := 1024;
     buf     RAW(512);
    
     module_name VARCHAR2(260) := 'MODULE1';
     dir_name    VARCHAR2(30) := 'TEST_DIR';
    
    BEGIN
    
      for r in (
        /* extract all image elements */
        select img_name
             , regexp_replace(img_data, '\s+') as img_data
        from xmltable('//body/image'
              passing xmltype(bfilename(dir_name, module_name||'.xml'), nls_charset_id('WE8MSWIN1252'))
              columns img_name varchar2(30) path '@name'
                    , img_data clob         path 'binaryData'
             )
      )
      loop
        /* output file */
        fid := utl_file.fopen(dir_name, module_name || '_' || r.img_name || '.jpg', 'wb', 32767); 
    
        for i in 0..trunc((dbms_lob.getlength(r.img_data) - 1 )/len)
        loop
    
          /* read 1k of hex data and convert to binary */
          buf := hextoraw(
                   regexp_replace(
                     dbms_lob.substr(r.img_data, len, i*len + 1)
                   , '(.)(.)'
                   , '\2\1'
                   )
                 );
    
          utl_file.put_raw(fid, buf);
    
        end loop;
    
        utl_file.fclose(fid);
    
      end loop;
    
    END;
    /
    
  • Display data BLOB (image) in BI Publisher report - E-Business Suite R12

    Hi all

    As part of the upgrade of the E-Business Suite R12.1.3, I need to develop a report printed in. using MS Word BI Publisher Desktop Plugin. The report must include pictures (signatures) of the resulting database of approvers of requisition.

    How can I create a custom view and a model to use with a RTF report and include dynamic images? Is this possible?

    Thank you
    Sinan

    Yes, it is possible

    Watch the BLOBs to insert in your report

    steps to follow:
    -create with the query with blob data definition (say image) in xmlp
    -create the empty template and load it into an RESP xmlp
    -create a simultaneous
    -concurrently
    -Save the xml
    -use of BI Publisher Desktop with to build xml data model presentation
    -disposition of load to xmlp RESP model

    Another way
    -If os image, you can try using OA_MEDIA + name of the image
    -mos: how to insert Images and BLOB objects dynamically in the Word template or Document? [443957.1 ID]

  • Displaying images uploaded in a report

    Hello

    I used to display images in a report successfully (in Oracle 10 g and the Apex Version before 4.1.1
    Now I haved installed Oracle 11 GR 2 (64-bit) and Apex 4.1.1.00.23 and imported from the application with the report mentioned,.
    but the images are no more.

    I use the following code in the Html-Expression in a report column:
    <img title="#NAME#" src="#OWNER#.show_my_file?p_file=#PICTURE_ID#" width="40" height="40" />
    The show_my_file procedure looks like this:
    PROCEDURE SHOW_MY_FILE (p_file in number) as
            v_mime  VARCHAR2(48);
            v_length  NUMBER;
            v_file_name VARCHAR2(2000);
            Lob_loc  BLOB;
    BEGIN
            SELECT MIME_TYPE, PICTURE, Name,DBMS_LOB.GETLENGTH(PICTURE)
            INTO    v_mime,lob_loc,v_file_name,v_length
            FROM    PICTURES
            WHERE PICTURE_ID = p_file;
          
           owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
           htp.p('Content-length: ' || v_length);
           htp.p('Content-Disposition: attachment; filename="'|| v_file_name || '"');
           owa_util.http_header_close;
           wpg_docload.download_file( Lob_loc );
    
    end show_my_file;
    I run granted on this procedure to the public.

    But the images are not displayed anymore. I'm a bit lost here.

    What I'm missing here? I hope someone can point me in the right direction.

    Thank you.

    Concerning
    Johnny

    P.S. has anything changed in since a previous version Oracle 11 g 2 or apex 4.1.1 this topic?

    Hello

    This is the solution also for OHS if you dads.conf online

    PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
    

    When you change the function, you also added qualifier schema?
    Function should look like

    CREATE OR REPLACE FUNCTION
    wwv_flow_epg_include_mod_local(
        PROCEDURE_NAME IN VARCHAR2)
    RETURN BOOLEAN
    IS
    BEGIN
        IF UPPER(procedure_name) IN (
              UPPER('your_schema.show_my_file')
        ) THEN
            RETURN TRUE;
        ELSE
            RETURN FALSE;
        END IF;
    END wwv_flow_epg_include_mod_local;
    

    Kind regards
    Jari
    -----
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Display an image blob in a report and form

    Hi all

    Can someone help me. I have a deadline after two days and I want to remedy as soon as possible.

    I use the Application Express 4.1.1.00.23.
    My problem is in the display of an image extracted from a table. In my table, I created these fields to download the image:
    'IMAGE' BLOB,
    "MIME TYPE" VARCHAR2 (255),
    VARCHAR2 (400) "FILENAME."
    DATE OF THE "IMAGE_LAST_UPDATE."

    They have been downloaded successfully. Then, I created a report to select all the attributes of the table. The BLOB attribute displayed as (type of data not supported).
    and when I connect this report to shape, the image appears as a link (< img src = "apex_util.get_blob_file? 50435; s = a = 293574445128601 & p = 29 & d = 65102984724474793498 >")

    I'll be very grateful if someone tell me how to display the image in the table and the form.

    Thanks in advance,
    Sara

    >

    Please update your forum profile with a real handle instead of '941348 '.

    Hi all

    Can someone help me. I have a deadline after two days and I want to remedy as soon as possible.

    I use the Application Express 4.1.1.00.23.
    My problem is in the display of an image extracted from a table. In my table, I created these fields to download the image:
    'IMAGE' BLOB,
    "MIME TYPE" VARCHAR2 (255),
    VARCHAR2 (400) "FILENAME."
    DATE OF THE "IMAGE_LAST_UPDATE."

    They have been downloaded successfully. Then, I created a report to select all the attributes of the table. The BLOB attribute displayed as (type of data not supported).
    and when this report forms a link to a image is displayed as a link (< img src = "apex_util.get_blob_file? 50435; s = a = 293574445128601 & p = 29 & d = 65102984724474793498 >")

    I'll be very grateful if someone tell me how to display the image in the table and the form.

    See doc.41/e21674/advnc_blob.htm">+About BLOB support in forms and reports.

    There is a tutorial OBE which followed the introduction of the declarative BLOB support in 3.1 as well. (An earlier version, but it is still relevant for APEX 4.x.)

    (Please make an effort to check out the documentation and search carefully on the forum for the previous coverage of a topic.) "This is a much discussed question.)

  • The BLOB (image) column in the report (interactive)

    Hello

    I have a field called "image" in my "details" table, which is of type BLOB. I also have a field 'MIME Type' and 'filename '.

    In addition, I have a "name" and "description" column I need to display with the image in the form of columns in a report (interactive preference).

    I also modified the display BLOB format as per

    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/DB/Apex/R31/apex31nf/apex31blob.htm

    what Miss me is the correct query. If possible, I want to control the size of the rendered image in the report as saying 40 * 50.

    I also mentioned the thread

    APEX 3.1 BLOB Image display

    But I do not know how to place the

    DBMS_LOB. GetLength ("BLOB_CONTENT") as "BLOB_CONTENT".

    in my query.

    The foregoing allows also the report type column 'number Should it?

    Any help would be appreciated.

    Kind regards
    Rigaut

    so I am very confused if the error is in the report or the table/data type definition itself.

    Or {noformat}) {noformat}

    The problem is in the settings of the P4_PICTURE element in the form on page 4. The Type of storage has been upgraded with WWV_FLOW_FILES of the Table, so the uploaded images were going to the repository of integrated files, not the BLOB on your CATEGORY table column. So the fundamental problem is that there are no images in your table to be included in the report.

    I changed the element P4_PICTURE Type of storage to a BLOB column specified in the attribute of the Source element, has added the additional column information and the IMAGESource and changed column PHOTO report 3 Format page mask download image, and the picture I have uploaded via the updated form the appears.

  • Photoshop CS5 crashes everytime I open several images, why? (crash report included)

    The process is, I open my tiff file I'll paint on. I'll to the window, new window to ___.tiff so I can see a mini

    version of what I paint. I then open an image (in photoshop) my experience, which will serve as a reference that I paint. Also because

    I don't want to go back from my mini window now and this reference image. I move the picture so I can see

    all 3 images and boom, it crashes. Every time. It worked perfectly until I put in my serial code for it. I have no idea

    what I did wrong.

    Here's my crash report. Thank you very much for your help!

    Process: Adobe Photoshop CS5 [2258]

    Path: / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5

    ID: com.adobe.Photoshop

    Version: 12.0 (12.0x20100407.r.1103) (12.0)

    Code type: X 86-64 (Native)

    Parent process: launchd [96]

    Interval since last report: s 4327069

    Crashes since last report: 48

    Per-App interval since last report: 345889 sec

    Per-App crashes since last report: 9

    Time/date: 2011-02-15 14:06:18.436-0500

    OS version: Mac OS X 10.5.8 (9L31a)

    Report Version: 6

    Anonymous UUID: A21F2F7D-BA07-481C-A9FE-04AFEAD1F2ED

    Exception type: EXC_BAD_ACCESS (SIGSEGV)

    Exception codes: KERN_INVALID_ADDRESS at 0 x 0000000000000000

    Crashed thread: 0

    Thread 0 crashed:

    0 com.adobe.owl 0x00000001036bc18f OWLDockGetAnchor + 8195

    1 com.adobe.owl 0x0000000103622c3e 0x1035f1000 + 203838

    2 com.adobe.owl 0x0000000103629d32 OWLHandleNSApplicationEvent + 40

    3 com.adobe.Photoshop 0x000000010024f86d 0 x 100000000 + 2422893

    4 com.adobe.Photoshop 0x00000001002793a9 0 x 100000000 + 2593705

    5 com.adobe.PSAutomate 0x0000000121f90f17 CPsWActionControl::Get (CPsWActionReference &, CPsWActionDescriptor const &) + 31

    6 com.adobe.PSAutomate 0x0000000121f89cb1 CPsActionUtils::GetGenericProperty (CPsTargetGenerator const &, unsigned int, CPsWActionDescriptor &) + 71

    7 com.adobe.PSAutomate 0x0000000121f89eb9 CPsActionUtils::GetObjectProperty (CPsTargetGenerator const &, unsigned int, CPsWActionDescriptor &) + 49

    8 com.adobe.PSAutomate 0x0000000121f54c62 CPsApplication::GetForegroundColor (MultiScript::InterfacePtr < CPsSolidColor > &) const + 66

    9 com.adobe.PSAutomate 0x0000000121f09b2f CPsApplication::HostGet (int, ScCore::Variant &) const + 3377

    10 com.adobe.PSAutomate 0x0000000121fa85e6 MultiScript::TProxyBase < ScCore::LiveObject >: get (int, ScCore::Variant &, ScCore::Error *) + 240 const

    11 com.adobe.AdobeExtendScript 0x00000001223c4a6d ScScript::LiveObjectProperty:get(ScScript::Object&,_int) + 941

    12 com.adobe.AdobeExtendScript 0x0000000122385bd4 jsOpVariable::get (jsRunner, ScScript::PropRef, ScScript::ESVariant &, bool) + 68

    13 com.adobe.AdobeExtendScript 0 x 0000000122380470 jsOpProperty::run (jsRunner &, ScScript::ESVariant &) const + 176

    14 com.adobe.AdobeExtendScript 0x00000001223805af jsOpProperty::getRef (jsRunner, ScScript::PropRef &, int) const + 271

    15 com.adobe.AdobeExtendScript 0 x 0000000122380408 jsOpProperty::run (jsRunner &, ScScript::ESVariant &) const + 72

    16 com.adobe.AdobeExtendScript 0x00000001223805af jsOpProperty::getRef (jsRunner, ScScript::PropRef &, int) const + 271

    17 com.adobe.AdobeExtendScript 0 x 0000000122380408 jsOpProperty::run (jsRunner &, ScScript::ESVariant &) const + 72

    18 com.adobe.AdobeExtendScript 0x00000001223805af jsOpProperty::getRef (jsRunner, ScScript::PropRef &, int) const + 271

    19 com.adobe.AdobeExtendScript 0x000000012237962f jsOpCall::run (jsRunner &, ScScript::ESVariant &) const + 95

    20 com.adobe.AdobeExtendScript 0x000000012237df6c jsOpList::run (jsRunner &, ScScript::ESVariant *) + 76 const

    21 com.adobe.AdobeExtendScript 0x00000001223798b5 jsOpCall::run (jsRunner &, ScScript::ESVariant &) const + 741

    22 com.adobe.AdobeExtendScript 0 x 0000000122378634 jsOpBinary::run (jsRunner &, ScScript::ESVariant &) const + 1508

    23 com.adobe.AdobeExtendScript 0x00000001223776f2 jsOpAssign::run (jsRunner &, ScScript::ESVariant &) const + 258

    24 com.adobe.AdobeExtendScript 0 x 0000000122382390 jsOpStatements::run (jsRunner &, ScScript::ESVariant &) const + 208

    25 com.adobe.AdobeExtendScript 0x000000012237be27 jsOpFunction::run (jsRunner &, ScScript::ESVariant &) const + 215

    26 com.adobe.AdobeExtendScript 0x00000001223a5741 jsRunner::run(ScScript::ESVariant&) + 113

    27 com.adobe.AdobeExtendScript 0x0000000122392d3f jsFunction::propCall (ScScript::Object, ScCore::BasicArray const &, ScScript::ESVariant &) + 287

    28 com.adobe.AdobeExtendScript 0 x 0000000122379930 jsOpCall::run (jsRunner &, ScScript::ESVariant &) const + 864

    29 com.adobe.AdobeExtendScript 0 x 0000000122382390 jsOpStatements::run (jsRunner &, ScScript::ESVariant &) const + 208

    30 com.adobe.AdobeExtendScript 0x000000012237be27 jsOpFunction::run (jsRunner &, ScScript::ESVariant &) const + 215

    31 com.adobe.AdobeExtendScript 0x00000001223a5741 jsRunner::run(ScScript::ESVariant&) + 113

    32 com.adobe.AdobeExtendScript 0x0000000122392cb8 jsFunction::propCall (ScScript::Object, ScCore::BasicArray const &, ScScript::ESVariant &) + 152

    33 com.adobe.AdobeExtendScript 0x00000001223c9504 ScScript::RealEngine:exec(int,_ScScript::Object&,_ScScript::Object&,_ScCore::BasicArray_const&,_ScScript::ESVariant&,_int) + 1652

    34 com.adobe.AdobeExtendScript 0x00000001223cd40d ScScript::RealEngine:eval(ScScript::Script&,_ScCore::Variant*,_int,_int,_ScCore::Variant_const*) + 685

    35 com.adobe.AdobeExtendScript 0x00000001223c8dc1 ScScript::RealEngine:eval(ScCore::String_const&,_ScCore::Variant*,_int,_int,_ScCore::Variant_const*,_ScCore::String_const*,_int) + 225

    36 com.adobe.PSAutomate 0x0000000121fa317a MultiScript::ExtendScript:RunScript(ScScript::Engine*,_ScCore::String_const&,_ScCore::Array_const&,_MultiScript::ExtendScript::ExecutionModeType,_ScCore::String_const*,_ScCore::String&) const + 538

    37 com.adobe.PSAutomate 0x0000000121fa3390 MultiScript::ExtendScriptEngine:ExecuteJSScript(ScCore::String_const&,_MultiScript::ExtendScript::ExecutionModeType) const + 96

    38 com.adobe.PSAutomate 0x0000000121fbac5f MultiScript::JSScriptingSuite:ExecuteScript(_t_JSEngine*,_unsigned_short_const*,_JavaScriptExecutionMode,_unsigned_short_const**) + 199

    39 com.adobe.Photoshop 0x0000000100f89fcd AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13292689

    40 com.adobe.Photoshop 0x0000000100f8eeba AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13312894

    41 com.adobe.Photoshop 0x0000000100f9b843 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13364487

    42 com.adobe.PlugPlug 0x00000001068493e0 PlugPlugErrorCode boost::_bi:bind_t < PlugPlugErrorCode, PlugPlugErrorCode (*) (const char *, const char *, const char *), boost::_bi:list3 < boost::arg < 1 > (*) (), boost::arg < 2 > () (*), boost::arg < 3 > (*) () > >: operator() < const char *, const char *, const char * > (const char * &, const char * &, const char * &) + 44

    43 com.adobe.PlugPlug 0 x 0000000106849407 boost::detail:function:function_obj_invoker3 < boost::_bi:bind_t < PlugPlugErrorCode, PlugPlugErrorCode (*) (const char *, const char *, const char *), boost::_bi:list3 < boost::arg < 1 > (*) (), boost::arg < 2 > () (*), boost::arg () (*) < 3 > > >, PlugPlugErrorCode, const char *, const char *, char const * >: Invoke (boost::detail:function:function_buffer &, char const * const char *) (, const char *) + 37

    44 com.adobe.PlugPlug 0x000000010684c73c boost::function3 < PlugPlugErrorCode, const char *, const char *, const char * >: operator () (const char *, const char *, const char *) const + 114

    45 com.adobe.PlugPlug 0x000000010684c767 csxs::services:host:ApplicationCallbacks:EvaluateScript(char_const*,_char_const*,_char_const**) + 21

    46 com.adobe.PlugPlug 0x000000010684beff csxs::services:host:ApplicationCallbacksLogger:EvaluateScript(char_const*,_char_const*,_char_const**) + 73

    47 com.adobe.PlugPlug 0x00000001068337e3::commands::CmdEvalScriptImpl::Execute() + 213 csxs

    48 com.adobe.PlugPlug 0x000000010682e7e7 CmdFactoryExtensionCall::DoEvalScript (bool, char const *, char const *, std::vector < std::basic_string < std::char_traits < char >, std::allocator < char > >, char, std::allocator < std::basic_string < char, std::char_traits < char >, std::allocator < char > > > >, std::basic_string < char, std::char_traits < char > std) (: allocator < char > > &) + 335

    49 com.adobe.PlugPlug 0x000000010682ef80 CmdFactoryExtensionCall::GetResult (bool, char const *, char const *, std::basic_string < std::char_traits < char >, tank, std::allocator < char > > &) + 332

    50 com.adobe.PlugPlug 0x000000010684dc78 csxs::services: + 152

    51 com.adobe.PlugPlug 0x000000010685292e csxs::internal:StageManagerController:HandleExternalInterfaceCall(vcfoundation::data::I) VCString *, const char *) + 578

    52 com.adobe.PlugPlug 0x000000010682168c PlugPlugExtensionCall + 340

    53 com.adobe.Photoshop 0x0000000100f9b627 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13363947

    54 com.adobe.Photoshop 0x0000000100f910eb AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13321647

    55 com.adobe.Photoshop 0x000000010110c9d0 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 14876308

    56 com.adobe.ape 0x00000001225884e6 APEStreamWrite + 33366

    57 com.adobe.ape 0x00000001225847e2 APEStreamWrite + 17746

    58 com.adobe.ape 0x000000012257bec7 APEInitialize + 6903

    59 com.adobe.ape 0x0000000122581c86 APEStreamWrite + 6646

    60 com.adobe.adobeswfl 0 0000000125880151 SWFLPlayer_Initialize + 4529 x

    61 com.adobe.adobeswfl 0x0000000125526c3d APXGetHostAPI + 1020445

    62?                           0x000000012926d8ab 0 + 4985378987

    63?                           0x00000001298cc621 0 + 4992058913

    64?                           0x00000001298cdaea 0 + 4992064234

    65?                           0x00000001298ce0ae 0 + 4992065710

    66?                           0x00000001298ca750 0 + 4992051024

    67?                           0x0000000129a5195b 0 + 4993653083

    68 com.adobe.adobeswfl 0x0000000125a8ca3e SWFLPlayer_Initialize + 2153118

    69 com.adobe.adobeswfl 0x0000000125a6f59d SWFLPlayer_Initialize + 2033149

    70?                           0x00000001292683f0 0 + 4985357296

    71?                           0 0000000129268879 0 + 4985358457 x

    72?                           0x0000000129263f5f 0 + 4985339743

    73 com.adobe.adobeswfl 0x0000000125526af7 APXGetHostAPI + 1020119

    74 com.adobe.adobeswfl 0 x 0000000125528223 APXGetHostAPI + 1026051

    75 com.adobe.adobeswfl 0x00000001258265dc APXGetHostAPI + 4164540

    76 com.adobe.adobeswfl 0x0000000125886cd4 SWFLPlayer_Initialize + 32052

    77 com.adobe.ape 0x000000012257a946 APEInitialize + 1398

    78 com.adobe.ape 0x000000012257fa38 APEPlayerCallExternalInterface + 88

    79 com.adobe.Photoshop 0x000000010110c8c4 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 14876040

    80 com.adobe.Photoshop 0x0000000100f8eaaa AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13311854

    81 com.adobe.Photoshop 0x0000000100f8f882 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 13315398

    82 com.adobe.Photoshop 0x00000001002502b9 0 x 100000000 + 2425529

    83 com.adobe.Photoshop 0x000000010054b4b6 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 2550138

    84 com.adobe.Photoshop 0x000000010054b6d1 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 2550677

    85 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    86 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    87 com.adobe.Photoshop 0x00000001000b36ae 0 x 100000000 + 734894

    88 com.adobe.Photoshop 0x0000000100516dee AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 2335410

    89 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    90 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    91 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    92 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    93 com.adobe.Photoshop 0x00000001000c53c6 0 x 100000000 + 807878

    94 com.adobe.Photoshop 0x00000001000c9057 0 x 100000000 + 823383

    95 com.adobe.Photoshop 0x0000000100cddf85 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 10490953

    96 com.adobe.Photoshop 0x0000000100cdd3de AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 10487970

    97 com.adobe.Photoshop 0x0000000100cdd794 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 10488920

    98 com.adobe.Photoshop 0x00000001012e30aa AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 16803182

    99 com.apple.AppKit 0x00007fff83493608-[NSView _recursiveLostHiddenAncestor] + 128

    100 com.apple.CoreFoundation 0x00007fff82c48a78 CFArrayApplyFunction + 216

    101 com.apple.AppKit 0x00007fff83413adc-[NSView (NSInternal) _setHidden:setNeedsDisplay:] + 1206

    102 com.adobe.owl 0x00000001036e6905 OWLApplicationContainerGetBounds + 54809

    103 com.adobe.owl 0x00000001036cd020 OWLDocumentSetCursorForTrackResize + 32414

    104 com.adobe.owl 0x000000010366fa63 OWLDictionaryGetValue + 20079

    105 com.adobe.owl 0x00000001036b4efa OWLDictionaryGetValue + 303878

    106 com.adobe.owl 0x00000001036e37c3 OWLApplicationContainerGetBounds + 42199

    107 com.adobe.owl 0x00000001036e39e1 OWLApplicationContainerGetBounds + 42741

    108 com.adobe.owl 0x0000000103680d59 OWLDictionaryGetValue + 90469

    109 com.adobe.owl 0x000000010368c733 OWLDictionaryGetValue + 138047

    110 com.adobe.owl 0x00000001036913b7 OWLDictionaryGetValue + 157635

    111 com.adobe.owl 0x00000001036945ad OWLDictionaryGetValue + 170425

    112 com.adobe.owl 0x000000010366b55b OWLDictionaryGetValue + 2407

    113 com.adobe.owl 0x0000000103643e32 OWLControlBarGetPreferredSize + 78100

    114 com.adobe.owl 0x0000000103644a38 OWLControlBarGetPreferredSize + 81178

    115 com.adobe.owl 0x00000001036c1095 OWLToolbarChangeMenu + 489

    116 com.adobe.owl 0x000000010362ab28 OWLRemoveObjCExceptionCallback + 3520

    117 com.apple.Foundation 0x00007fff81bbd4c0 _nsnote_callback + 112

    118 com.apple.CoreFoundation 0x00007fff82c940f6 _CFXNotificationPostNotification + 566

    119 com.apple.Foundation 0x00007fff81bba756-[NSNotificationCenter postNotificationName:object:userInfo:] + 102

    120 com.apple.AppKit 0x00007fff834daca0-[NSWindow _setFrameCommon:display:stashSize:] + 1417

    121 com.adobe.owl 0x000000010362a991 OWLRemoveObjCExceptionCallback + 3113

    122 com.adobe.owl 0x0000000103640cbc OWLControlBarGetPreferredSize + 65438

    123 com.adobe.owl 0x0000000103640d96 OWLControlBarGetPreferredSize + 65656

    124 com.adobe.owl 0x00000001036910f3 OWLDictionaryGetValue + 156927

    125 com.adobe.owl 0 0000000103692592 OWLDictionaryGetValue + 162206 x

    126 com.adobe.owl 0x0000000103652e74 OWLWidgetMove + 46146

    127 com.adobe.owl 0x000000010368c8e5 OWLDictionaryGetValue + 138481

    128 com.adobe.owl 0x000000010364dba2 OWLWidgetMove + 24944

    129 com.adobe.owl 0x000000010364ddf3 OWLWidgetMove + 25537

    130 com.adobe.owl 0x000000010364e28a OWLWidgetMove + 26712

    131 com.adobe.owl 0x000000010361b2b4 0x1035f1000 + 172724

    132 com.adobe.owl 0x000000010363fb12 OWLControlBarGetPreferredSize + 60916

    133 com.adobe.owl 0x00000001036c57c0 OWLDocumentSetCursorForTrackResize + 1598

    134 com.adobe.owl 0x00000001036ca571 OWLDocumentSetCursorForTrackResize + 21487

    135 com.adobe.owl 0x00000001036c7b8f OWLDocumentSetCursorForTrackResize + 10765

    136 com.adobe.owl 0x00000001036bbfcf OWLDockGetAnchor + 7747

    137 com.adobe.owl 0x00000001036bc0e5 OWLDockGetAnchor + 8025

    138 com.adobe.owl 0x000000010360e5f7 0x1035f1000 + 120311

    139 com.apple.AppKit 0x00007fff834f4815-[NSWindow sendEvent:] + 5214

    140 com.adobe.owl 0x0000000103629fd1 OWLRemoveObjCExceptionCallback + 617

    141 com.adobe.owl 0x000000010362bffe OWLRemoveObjCExceptionCallback + 8854

    142 com.apple.AppKit 0x00007fff834c1d46-[NSApplication sendEvent:] + 5089

    143 com.adobe.Photoshop 0x00000001012ef760 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 16854052

    144 com.adobe.Photoshop 0x00000001012efcf4 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 16855480

    145 com.apple.AppKit 0x00007fff8341c562-[NSApplication run] + 497

    146 com.adobe.Photoshop 0x00000001012ee19c AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 16848480

    147 com.adobe.Photoshop 0x00000001012ef3c7 AWS_CUI_GetVersionComments (OpaqueWindowPtr *, adobe::q:QDocument, adobe::q:QString, adobe::q:QAttributeList & &, adobe::q:QDocument *, adobe::q:QProject *, long) + 16853131

    148 com.adobe.Photoshop 0x0000000100068e82 0 x 100000000 + 429698

    149 com.adobe.Photoshop 0 0000000100238308 x 0 x 100000000 + 2327304

    150 com.adobe.Photoshop 0x00000001002383a7 0 x 100000000 + 2327463

    151 com.adobe.Photoshop 0x0000000100002ea4 0 x 100000000 + 11940

    Thread 1:

    0 libSystem.B.dylib 0x00007fff806c7706 kevent + 10

    1 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    2 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 2:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 com.adobe.amt.services 0x0000000106e1cc53 AMTConditionLock::LockWhenCondition (int.) + 37

    2 com.adobe.amt.services 0x0000000106e15cce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92

    3 com.adobe.amt.services 0x0000000106e1ccbe AMTThread::Worker(void*) + 28

    4 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    5 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    3 wire:

    0 libSystem.B.dylib + 10 semaphore_timedwait_trap 0x00007fff80699e2a

    1... ple. CoreServices.CarbonCore 0x00007fff825d6371 MPWaitOnSemaphore + 96

    2 multiprocessor support 0x000000011b639bd3 ThreadFunction(void*) + 69

    3... ple. CoreServices.CarbonCore + 42 PrivateMPEntryPoint 0x00007fff825c5a5c

    4 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    5 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 4:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1... ple. CoreServices.CarbonCore 0x00007fff825c74b4 TSWaitOnCondition + 118

    2... ple. CoreServices.CarbonCore 0x00007fff825acc06 TSWaitOnConditionTimedRelative + 177

    3... ple. CoreServices.CarbonCore 0x00007fff825c7165 MPWaitOnQueue + 191

    4 AdobeACE 0x000000010592a23d 0x1058f0000 + 238141

    5 AdobeACE 0x0000000105929bea 0x1058f0000 + 236522

    6... ple. CoreServices.CarbonCore + 42 PrivateMPEntryPoint 0x00007fff825c5a5c

    7 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    8 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Wire 5:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 com.adobe.PSAutomate 0x00000001220820fb ScObjects::Thread:sleep(unsigned_int) + 59

    2 com.adobe.PSAutomate 0 0000000122064033 ScObjects::BridgeTalkThread::run() + 163 x

    3 com.adobe.PSAutomate 0x00000001220821f6 ScObjects::Thread:go(void*) + 166

    4 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    5 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 6:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 libGLProgrammability.dylib 0x00007fff811e557b glvmDoWork + 155

    2 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    3 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 7:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 com.adobe.adobeswfl 0x000000012567f04d APXGetHostAPI + 2430509

    2 com.adobe.adobeswfl 0x0000000125440a39 APXGetHostAPI + 77849

    3 com.adobe.adobeswfl 0x000000012567f161 APXGetHostAPI + 2430785

    4 com.adobe.adobeswfl 0x000000012567f2ba APXGetHostAPI + 2431130

    5 com.adobe.adobeswfl 0x000000012567f3b0 APXGetHostAPI + 2431376

    6 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    7 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 8:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 com.adobe.adobeswfl 0x000000012567f04d APXGetHostAPI + 2430509

    2 com.adobe.adobeswfl 0x0000000125440a39 APXGetHostAPI + 77849

    3 com.adobe.adobeswfl 0x000000012567f161 APXGetHostAPI + 2430785

    4 com.adobe.adobeswfl 0x000000012567f2ba APXGetHostAPI + 2431130

    5 com.adobe.adobeswfl 0x000000012567f3b0 APXGetHostAPI + 2431376

    6 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    7 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Wire 9:

    0 libSystem.B.dylib 0x00007fff80699dd6 mach_msg_trap + 10

    1 libSystem.B.dylib 0x00007fff806a1413 mach_msg + 59

    2 com.apple.CoreFoundation 0x00007fff82cb09cf CFRunLoopRunSpecific + 1631

    3 com.apple.audio.CoreAudio 0x00007fff84c9a65a HALRunLoop::OwnThread(void*) + 142

    4 com.apple.audio.CoreAudio 0x00007fff84c9a597 CAPThread::Entry(CAPThread*) + 67

    5 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    6 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 10:

    0 libSystem.B.dylib 0x00007fff80699dd6 mach_msg_trap + 10

    1 libSystem.B.dylib 0x00007fff806a1413 mach_msg + 59

    2 com.apple.CoreFoundation 0x00007fff82cb09cf CFRunLoopRunSpecific + 1631

    3 com.apple.CoreMediaIOServices 0x00007fff8109e63a MIO::DAL:RunLoop:OwnThread(void*) + 142

    4 com.apple.CoreMediaIOServices 0x00007fff810a04cb CAPThread::Entry(CAPThread*) + 67

    5 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    6 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Wire 11:

    0 libSystem.B.dylib + 10 semaphore_timedwait_signal_trap 0x00007fff80699e36

    1 libSystem.B.dylib + 1207 _pthread_cond_wait 0x00007fff806c8c4a

    2 com.adobe.adobeswfl 0x000000012567f019 APXGetHostAPI + 2430457

    3 com.adobe.adobeswfl 0 x 0000000125814943 APXGetHostAPI + 4091683

    4 com.adobe.adobeswfl 0x000000012567f161 APXGetHostAPI + 2430785

    5 com.adobe.adobeswfl 0x000000012567f2ba APXGetHostAPI + 2431130

    6 com.adobe.adobeswfl 0x000000012567f3b0 APXGetHostAPI + 2431376

    7 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    8 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    12 wire:

    0 libSystem.B.dylib + 10 semaphore_timedwait_signal_trap 0x00007fff80699e36

    1 libSystem.B.dylib + 1207 _pthread_cond_wait 0x00007fff806c8c4a

    2 com.adobe.adobeswfl 0x000000012567f019 APXGetHostAPI + 2430457

    3 com.adobe.adobeswfl 0x000000012569b95c APXGetHostAPI + 2547516

    4 com.adobe.adobeswfl 0x000000012567f161 APXGetHostAPI + 2430785

    5 com.adobe.adobeswfl 0x000000012567f2ba APXGetHostAPI + 2431130

    6 com.adobe.adobeswfl 0x000000012567f3b0 APXGetHostAPI + 2431376

    7 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    8 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 13:

    0 libSystem.B.dylib + 10 recvfrom 0x00007fff8070de82

    1 ServiceManager - Launcher.dylib 0x0000000128921adf call + 50273

    2 ServiceManager - Launcher.dylib 0x0000000128920b26 call + 46248

    3 ServiceManager - Launcher.dylib 0x0000000128920b81 call + 46339

    4 ServiceManager - Launcher.dylib 0x0000000128920c02 call + 46468

    5 ServiceManager - Launcher.dylib 0x000000012891b30d call + 23695

    6 ServiceManager - Launcher.dylib 0x000000012891b4a6 call + 24104

    7 ServiceManager - Launcher.dylib 0x000000012891bf2f call + 26801

    ServiceManager - Launcher.dylib 8 0x000000012891c01d call + 27039

    ServiceManager - Launcher.dylib 9 0x000000012891f31f call + 40097

    10 ServiceManager - Launcher.dylib 0x000000012891f5c5 call + 40775

    ServiceManager 11 - Launcher.dylib 0x000000012891fb84 call + 42246

    12 ServiceManager - Launcher.dylib 0x000000012891fd71 call + 42739

    13 ServiceManager - Launcher.dylib 0x0000000128911daf Login + 1773

    14 ServiceManager - Launcher.dylib 0 x 0000000128913295 Login + 7123

    15 ServiceManager - Launcher.dylib 0x00000001289202a8 call + 44074

    ServiceManager 16 - Launcher.dylib 0x00000001289226c1 call + 53315

    17 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    18 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 14:

    0 libSystem.B.dylib + 10 semaphore_timedwait_signal_trap 0x00007fff80699e36

    1 libSystem.B.dylib + 1207 _pthread_cond_wait 0x00007fff806c8c4a

    2 com.adobe.adobeswfl 0x000000012567f019 APXGetHostAPI + 2430457

    3 com.adobe.adobeswfl 0 x 0000000125814943 APXGetHostAPI + 4091683

    4 com.adobe.adobeswfl 0x000000012567f161 APXGetHostAPI + 2430785

    5 com.adobe.adobeswfl 0x000000012567f2ba APXGetHostAPI + 2431130

    6 com.adobe.adobeswfl 0x000000012567f3b0 APXGetHostAPI + 2431376

    7 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    8 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 15:

    0 libSystem.B.dylib + 10 semaphore_timedwait_signal_trap 0x00007fff80699e36

    1 libSystem.B.dylib + 1207 _pthread_cond_wait 0x00007fff806c8c4a

    2 com.adobe.adobeswfl 0x000000012567f019 APXGetHostAPI + 2430457

    3 com.adobe.adobeswfl 0x000000012569b95c APXGetHostAPI + 2547516

    4 com.adobe.adobeswfl 0x000000012567f161 APXGetHostAPI + 2430785

    5 com.adobe.adobeswfl 0x000000012567f2ba APXGetHostAPI + 2431130

    6 com.adobe.adobeswfl 0x000000012567f3b0 APXGetHostAPI + 2431376

    7 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    8 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    16 wire:

    0 libSystem.B.dylib 0x00007fff80699dd6 mach_msg_trap + 10

    1 libSystem.B.dylib 0x00007fff806a1413 mach_msg + 59

    2 com.apple.CoreFoundation 0x00007fff82cb09cf CFRunLoopRunSpecific + 1631

    3 com.apple.CFNetwork 0x00007fff84a5563f CFURLCacheWorkerThread(void*) + 319

    4 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    5 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 17:

    0 libSystem.B.dylib 0x00007fff80699dd6 mach_msg_trap + 10

    1 libSystem.B.dylib 0x00007fff806a1413 mach_msg + 59

    2 com.apple.CoreFoundation 0x00007fff82cb09cf CFRunLoopRunSpecific + 1631

    3 com.apple.Foundation 0x00007fff81c1d4e0 + [NSURLConnection (NSURLConnectionReallyInternal) _resourceLoadLoop:] + 288

    4 com.apple.Foundation 0x00007fff81bbdd35 __NSThread__main__ + 1157

    5 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    6 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    18 wire:

    0 libSystem.B.dylib 0x00007fff806e5582 select$ DARWIN_EXTSN + 10

    1 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    2 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 19:

    0 libSystem.B.dylib + 10 semaphore_timedwait_signal_trap 0x00007fff80699e36

    1 libSystem.B.dylib + 1207 _pthread_cond_wait 0x00007fff806c8c4a

    2... ple. CoreServices.CarbonCore 0x00007fff825acc26 TSWaitOnConditionTimedRelative + 209

    3... ple. CoreServices.CarbonCore 0x00007fff825aca37 TSWaitOnSemaphoreCommon + 362

    4... ple. CoreServices.CarbonCore + 47 AsyncFileThread(void*) 0x00007fff825ac77d

    5 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    6 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 20:

    0 libSystem.B.dylib + 10 semaphore_wait_trap 0x00007fff80699e12

    1 com.adobe.CameraRaw 0x000000012bf2c6fc EntryFM + 1855036

    2 com.adobe.CameraRaw 0x000000012bf30200 EntryFM + 1870144

    3 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    4 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 21:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1... ple. CoreServices.CarbonCore 0x00007fff825c74b4 TSWaitOnCondition + 118

    2... ple. CoreServices.CarbonCore 0x00007fff825acc06 TSWaitOnConditionTimedRelative + 177

    3... ple. CoreServices.CarbonCore 0x00007fff825c7165 MPWaitOnQueue + 191

    4 com.adobe.CameraRaw 0x000000012bd03f9d 0x12bb5f000 + 1724317

    5 com.adobe.CameraRaw 0x000000012bd0393b 0x12bb5f000 + 1722683

    6... ple. CoreServices.CarbonCore + 42 PrivateMPEntryPoint 0x00007fff825c5a5c

    7 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    8 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 22:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 com.adobe.CameraRaw 0x000000012bb9a8c5 0x12bb5f000 + 243909

    2 com.adobe.CameraRaw 0x000000012be1d2e7 EntryFM + 743975

    3 com.adobe.CameraRaw 0x000000012bc34e8b 0x12bb5f000 + 876171

    4 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    5 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Line 23:

    0 libSystem.B.dylib + 10 semaphore_wait_trap 0x00007fff80699e12

    1 com.adobe.CameraRaw 0x000000012bf2c6fc EntryFM + 1855036

    2 com.adobe.CameraRaw 0x000000012bf32990 EntryFM + 1880272

    Line 24:

    0 libSystem.B.dylib + 10 semaphore_wait_trap 0x00007fff80699e12

    1 com.adobe.CameraRaw 0x000000012bf2c6fc EntryFM + 1855036

    2 com.adobe.CameraRaw 0x000000012bf32945 EntryFM + 1880197

    Line 25:

    0 libSystem.B.dylib + 10 __semwait_signal 0x00007fff806a0da2

    1 com.adobe.CameraRaw 0x000000012bb9a8c5 0x12bb5f000 + 243909

    2 com.adobe.CameraRaw 0x000000012be972c8 EntryFM + 1243656

    3 com.adobe.CameraRaw 0x000000012bc34e8b 0x12bb5f000 + 876171

    4 libSystem.B.dylib 0x00007fff806c7e8f _pthread_start + 316

    5 libSystem.B.dylib 0x00007fff806c7d51 thread_start + 13

    Thread 0 crashed with X 86 State of Thread (64-bit):

    Rax: 0 x 0000000000000001 rbx: 0x0000000121e93cb0 rcx: 0x000000000000000a rdx: 0 x 0000000000000000

    RDI: 0 x 0000000000000000 rsi: 0x00007fff5fbfa6b0 PBR: RER 0x00007fff5fbfa640: 0x00007fff5fbfa630

    R8: 0x00000001253ffdce r9: 0 x 0000000082110044 r10: 0000000000000001 r11 0 x: 0x00007fff834c1e79

    R12: 0x0000000121e93cb0 r13: 0x00000001253ee4e0 r14: 0x000000011a6210f0 r15: 0x000000000000000a

    RIP: 0x00000001036bc18f rfl: 0 x 0000000000010246 cr2: 0 x 0000000000000000

    Binary images:

    0 x 100000000 - 0x1026b5fff + com.adobe.Photoshop (12.0x20100407.r.1103) 12.0 (12.0) < b69d89e501ddc22048b1e129d0574536 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5

    0 x 103295000 - 0x10330dfef + com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) < 4a3556861451b19a0c55dfe49fd2539e > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps

    0 x 103323000 - 0x103329fff org.twain.dsm 1.9.3 (1.9.3) /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN

    0 x 103331000 - 0x103341ff8 + com.adobe.ahclientframework (1.5.0.30) 1.5.0.30 < 5d6ffc4e7b813e8cf0d466a3fa94a837 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient

    0x10334c000 - 0x103352fef com.apple.agl 3.0.9 (AGL - 3.0.9) < b0385e6bbcc04cc56717e19a518b5d8e > /System/Library/Frameworks/AGL.framework/Versions/A/AGL

    0 x 103358000 - 0x10355efef + com.adobe.linguistic.LinguisticManager 5.0.0 (11696) < 499b4e7a08bb80fcc220d57d45ca424f > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic

    0x1035f1000 - 0x10379ffef + com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) < c36ca603effb2eed6cee0b532ce052d2 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl

    0 x 103841000 - 0x103c71fef + AdobeMPS? (???) < Fa3341425343880877604318eb62ad51 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS

    0x103dcb000 - 0x1040f6ff7 + AdobeAGM? (???) < 52e17d566e7aa63582ed5de1f3e5045d >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM

    0x1041c3000 - 0x1044ebfe7 + AdobeCoolType? (???) < 9e03f47a06a3f1f4ac4c76f12facc294 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType

    0 x 104583000 - 0x1045a4ff7 + AdobeBIBUtils? (???) < F71506882c150f0caf2493ed82fc321a >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils

    0x1045b1000 - 0x1045dcff6 + AdobeAXE8SharedExpat? (???) < 7e809606bf97db3ae465156446e56d00 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t

    0x1045ee000 - 0x104732fef + WRServices? (???) < 76354373f0bd0baf6fc0b96dbb371755 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices

    0 x 104779000 - 0x1047defff + aif_core? (???) < 12fa670e05a81fcba7a2aae68728ea30 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core

    0x1047fa000 - 0x104810fff + data_flow? (???) < 9c5d39a6d2a29b6a8b64d1b59396c112 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow

    0 x 104828000 - 0x1048befff + image_flow? (???) < B72aa9220d68d57e96b12e009b0ad4ae >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow

    0 x 104935000 - 0x104953fff + image_runtime? (???) < 32786637c9bf4cb62df95d99220e00be >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime

    0 x 104970000 - 0x104b9ffff + aif_ogl? (???) < 615e7df609b1857a74ace224a636bee1 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl

    0x104c7e000 - 0x104d11fff + AdobeOwlCanvas? (???) < Ec667f6d0bb603ea41e8624425b2bf4b >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas

    0x104d31000 - 0x10507afef + com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) < 023e07600223ab5d758c2c5a052f6af4 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui

    0x10520a000 - 0x10538cfe7 + com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) < 420772959026d519c05735e07029d97b > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore

    0x10542e000 - 0x1057a6fff + com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) < 0e95a0df038acff2ec7bbdb905cdf5c5 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve

    0x1058f0000 - 0x105a04fff + AdobeACE? (???) < E359887d1e7f5e62cb8d37ce4dbfb4d8 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE

    0x105a29000 - 0x105a45fff + AdobeBIB? (???) < 7a792f2742cc2dcad5df88a2ce6c2626 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB

    0x105a4f000 - 0x105ab9ff7 + com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) < 6b2f73c210ab08b34ab0a31c83d1e5e0 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib

    0x105aec000 - 0x105bbfffb + AdobeJP2K? (???) < 465d1693be79590ee1aabaa8061b4746 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K

    0x105bdf000 - 0x105be3ff8 + com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) < 0c380604c686c2e40535c1fab230187e > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape

    0x105be7000 - 0x105c5efff + FileInfo? (???) < 6d5235b90eb617ca6457a2507a87ea8f >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo

    0x105c7f000 - 0x105cddffd + AdobeXMP? (???) < 561026bbc6ea29ce4790cabcb81e8884 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP

    0x105ceb000 - 0x106186fff + com.nvidia.cg 2.2.0006 (?) / applications/Adobe Photoshop CS5 / Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg

    0x10670c000 - 0x106762feb + com.adobe.headlights.LogSessionFramework? (2.0.1.011) < 03b806982c3ba232f15f8f08f8963a19 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession

    0x1067a7000 - 0x1067ccffe + adobepdfsettings? (???) < 56e7f03360322ec2250e43f1ebd123b1 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings

    0 x 106806000 - 0x10680bffd + com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) < dffb9a088369d65f161f7c61d562e307 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter

    0 x 106810000 - 0x1069abfff + com.adobe.PlugPlug (2.0.0.746) 2.0.0.746 < cb23c5aa0e4b182bcb8857dd32893f92 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug

    0x106a53000 - 0x106b4bfef libiconv.2.dylib? (???) < 23f57ab0cce3fc583f44eded72c3b4fc > /usr/lib/libiconv.2.dylib

    0x106b52000 - 0x106b6bfeb + libtbb.dylib? (???) / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib

    0x106b7c000 - 0x106b82feb + libtbbmalloc.dylib? (???) / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib

    0x106b89000 - 0x106b89ffd libmx. A.dylib? (???) / usr/lib/libmx. A.dylib

    0x106b8d000 - 0x106b95ff3 + com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) < 6858df5af02022a7b94514ec277724d4 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads

    0x106ba3000 - 0x106ba7fff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) < f9cc74c2bc3fa2228542ff4fa1a21202 > /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C Contents/MacOS/AudioIPCPlugIn

    0x106be2000 - 0x106be4fe1 com.apple.textencoding.unicode 2.2 (2.2) < 9763da549175eb8eca339592062b852d > system/library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode encodings

    0x106df9000 - 0x106e69ff6 + com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0;) Brand: Tuesday, January 26, 2010 21:49) (3.0.0.64) < 52ff1f9b9991ece2c7e309da1b368cbe > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices

    0x119e8c000 - 0x119e8dfe7 libCyrillicConverter.dylib? (???) < 1feb792ba69c351faffcc10633022d87 > /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib

    0x11a1d1000 - 0x11a1e8fef libJapaneseConverter.dylib? (???) < 968851efde951743d650c269974d678d > /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    0x11a1ec000 - 0x11a20dff7 libKoreanConverter.dylib? (???) < 0924c10884df1f952ce4bc06d1e14d42 > /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    0x11a211000 - 0x11a220fe7 libSimplifiedChineseConverter.dylib? (???) < A91a1f5cf3f364b768e84f6d997e7109 > /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

    0x11a224000 - 0x11a236fef libTraditionalChineseConverter.dylib? (???) < 37d7b591c8537068fb3c7da4b8f2aa50 > /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

    0x11a700000 - 0x11a708fff + com.adobe.asneu.framework stand version 1.7.0.1 (1.7.0.1) < 3d59cb21f5c74232ab00dfeb04206024 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu

    0x11aadd000 - 0x11adcdff3 com.apple.RawCamera.bundle 2.3.0 (505) < e65cf9645aff805ae24c4a9e2e3d4759 > /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

    0x11b04a000 - 0x11b051fff + e/s asynchronous activate? (???) < 9c98dc9e5974fe5d75c316bc4738dcc8 > / Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable e/s asynchronous

    0x11b505000 - 0x11b50efff + FastCore? (???) < F1d1c94d4fe1f9696fc28d81837ca5e1 >/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore

    0x11b51b000 - 0x11b57eff3 + MMXCore? (???) < 2db6fa8e43739823c4f5a9f5f8f80717 >/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore

    0x11b604000 - 0x11b66fff0 + multiprocessor Support? (???) < 1334b570c7133767225f3c1cba1bf37c > / Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Multiprocessor Support.plugin/Contents/MacOS/MultiProcessor Support

    0x11ec5c000 - 0x11ec5cffe com.apple.quartzframework 1.5 (1.5) < 0f92ad0131676921113aa5f137a55e63 > /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz

    0x11f2da000 - 0x11f2dbfff com.apple.MonitorPanelFramework 1.2.0 (1.2.0) < 55cb06b48756e6f3766bfa9af36eb6d8 > /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel

    0x1211c4000 - 0x1211cbffb com.apple.DisplayServicesFW 2.0.2 (2.0.2) < 33069625811249c0672d574bc3cb1238 > /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices

    0x121cad000 - 0x121cc9ff7 + MeasurementCore? (???) < 0e3be9b3ff3d78a638ec5cb0828b80eb >/Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore

    0x121f00000 - 0x12215cfef + com.adobe.PSAutomate 12.0 (12.0) < 35aef3a82e6471d139eda34760caac29 >/Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport

    0 x 122372000 - 0x122416ffb + com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) < 332e7d8dbf4231779bc5033942de35e0 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript

    0 x 122478000 - 0x122518fef + com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) < 53dd72815b597ff5db57c9fd60e524c7 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore

    0 x 122576000 - 0x122596ffb + com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) < 284c86beacd831dde58d544f581bc93b >/Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore

    0x12271d000 - 0x12273cff7 GLRendererFloat? (???) < B6bac044bc2d6f61770047d2d91ca010 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat

    0 123800000 - 0x12399ffe3 GLEngine x? (???) < Fbb263309a56201f6833c1c32da4e7b3 > /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine

    0x1239ce000 - 0x123e30fff com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.48 (5.4.8) < 42590dfb07ec4aed399b0b0c6cc3b963 > /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/AppleIntelGMA X3100GLDriver

    0x12529d000 - 0x1252aefff com.apple.DSObjCWrappers.Framework 1.3 (1.3) < e7ef32095450e217430da789d3bfa143 > /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers

    0x1252c0000 - 0x1252e3fef com.apple.QuickLookFramework 1.3.1 (170,9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook

    0x1252f9000 - 0x1252fafff ATSHI.dylib? (???) /System/Library/frameworks/ApplicationServices.Framework/versions/A/frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib

    0 x 125400000 - 0x126247fcf + com.adobe.adobeswfl? (2.0.0.7489) < dbd3811148d6c031ef50d034c94ed38b >/Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL

    0 x 126448000 - 0x1264d5fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio A/ns/PDFKit

    0x12654d000 - 0x1265a3fe9 com.apple.securityinterface 3.0.4 (37213) < 0f5f9ec6d6549eed0036cfdbf8d0957e > /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface

    0x1265fb000 - 0x126641fe2 com.apple.securityfoundation 3.0.2 (36131) < 523ceeda36f017a1464d9c79e620293f > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0 x 126685000 - 0x126881feb com.apple.QuartzComposer 2.1 (106.13) < 96b3a8d52d816d2ae38bc46ba39c1af7 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer

    0x126a57000 - 0x126a9aff7 com.apple.quartzfilters 1.5.0 (1.5.0) < 38e943349b7388148518c823dd49972b > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters

    0x126ada000 - 0x126c5afff com.apple.imageKit 1.0.2 (1.0) < 8f494d257c5ded166dbac4ce0f81c571 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit

    0x126dbe000 - 0x126fa8fff com.apple.JavaScriptCore 5533.19 (5533.19.1) < aba873160118853294129aa5a2127133 > /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore

    0 x 127020000 - 0x12707ffff com.apple.QuickLookUIFramework 1.3.1 (170,9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI

    0x1270d7000 - 0x1270f5ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) < 5095906f78ad0179f0678ac0105054b7 > /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService

    0x1282aa000 - 0x1282d7fef com.apple.mio.DAL.VDC_4 130,0 (935) < 28c0e80414d3c2646a6d9340b5f7bd66 > /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC

    0x12888c000 - 0x1288c9feb + com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) < cd8bd7c70f6629b6c158a6ef8df69996 > / Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s

    0x12890f000 - 0x128937fef + ServiceManager - Launcher.dylib? (???) < 4608e5e77f22a4ff527ce97ea339fccc >/Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib

    0x12bb5f000 - 0x12c2f7feb + com.adobe.CameraRaw 6.0 (6.0.0d205) < 35a90e86fbfed694caa7c9471e98611a > / Library/Application Support/Adobe/Plug-Ins/CS5/File Formats/camera raw Raw.plugin/Contents/MacOS/Camera

    0x1307ef000 - 0x130878fe7 +? (???) < 90212778e699a9309b42a7220527da79 >

    0 x 130883000 - 0x13089dfff + com.adobe.pip? (5.0.0.2021) < 47380937508841f750faadac9b15c783 >/Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobePIP.framework/AdobePIP

    0x7fff5fc00000 - 0x7fff5fc2e643 dyld 97,1 (?) < 1d1ba42c89e77cfe2558a3c66129fff6 >/usr/lib/dyld

    0x7fff80003000 - com.apple.shortcut 1.0.1 (1.0) 0x7fff80033fff < 51da54522026310c8c828aa31c2f31a4 > /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut

    0x7fff80034000 - 0x7fff800d4fe3 com.apple.ApplicationServices.ATS 3.8 (?) < d0fa98ea4500d9d03c291bbe29f6cada > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS

    0x7fff800d5000 - 0x7fff800f6fff libresolv.9.dylib? (???) < 8ab980fcb57ab0bac63ca2302ca86ca9 > /usr/lib/libresolv.9.dylib

    0x7fff800f7000 - 0x7fff8047eff0 com.apple.VideoToolbox 0.484.2 (484,2) < b0668c17f1419a5084611664587dc53c > /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox

    0x7fff8047f000 - 0x7fff80573fff libobjc. A.dylib? (???) < efc7ebdfe5ea8b723ebdb322ce775ddf >/usr/lib/libobjc. A.dylib

    0x7fff80574000 - 0x7fff80638fe2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage

    0x7fff80639000 - 0x7fff8063dfff libmathCommon.A.dylib? (???) /usr/lib/system/libmathCommon.A.dylib

    0x7fff8063e000 - 0x7fff80683fef libRIP.A.dylib? (???) < A8a9a843032ca6d3c793794126a6bc66 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib

    0x7fff80684000 - 0x7fff8068efff com.apple.speech.recognition.framework 3.7.24 (3.7.24) < 2399374b096b284345daba82e2cb833d > work/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame

    0x7fff8068f000 - 0x7fff80698fff libCGATS.A.dylib? (???) < A78575108160acec0f07d1d00d04d229 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGATS.A.dylib

    0x7fff80699000 - 0x7fff80824ffb libSystem.B.dylib? (???) < b12f576b6d85401bcfe5e9994d93a9cf > /usr/lib/libSystem.B.dylib

    0x7fff80825000 - 0x7fff808c0fe7 com.apple.ink.framework 101.3 (86) < 60c6579faf114ea9677fd9ae25389ed2 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A / ink jet

    0x7fff808c1000 - 0x7fff808cfff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData

    0x7fff808d0000 - 0x7fff8108dfef libBLAS.dylib? (???) /System/Library/frameworks/accelerate.Framework/versions/A/frameworks/vecLib.framework/ve rsions/A/libBLAS.dylib

    0x7fff8108e000 - 0x7fff810dcfff com.apple.CoreMediaIOServices 130,0 (935) < ed32cca9471153096e17bfca40e1490e > /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices

    0x7fff810dd000 - 0x7fff811befff libcrypto.0.9.7.dylib? (???) < 752f9db6e46f8d48fe3a6663d97acc34 > /usr/lib/libcrypto.0.9.7.dylib

    0x7fff811bf000 - 0x7fff816dff6e libGLProgrammability.dylib? (???) /System/Library/frameworks/OpenGL.Framework/versions/A/libraries/libGLProgrammability.dyl < dfe7bb0409f4a83d28818fd40452d013 > ib

    0x7fff816e0000 - 0x7fff816f1ffd libz.1.dylib? (???) < f260db32dd97a14108a5e04184785ded > /usr/lib/libz.1.dylib

    0x7fff816f2000 - 0x7fff8171cfff libcups.2.dylib? (???) < 04f408feb95d60907e9c958ef9fb2c2d > /usr/lib/libcups.2.dylib

    0x7fff8171d000 - 0x7fff817dbfff edu.mit.Kerberos 6.0.14 (6.0.14) < 33ba732d7b5009437a874a78c9adaaee > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

    0x7fff817dc000 - 0x7fff8191fffb com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

    0x7fff81920000 - 0x7fff81a15fff libxml2.2.dylib? (???) < 78096eb3aaceae5121ca6fa885566517 > /usr/lib/libxml2.2.dylib

    0x7fff81a16000 - 0x7fff81a16ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib

    0x7fff81a17000 - 0x7fff81a8dfef libvMisc.dylib? (???) /System/Library/frameworks/accelerate.Framework/versions/A/frameworks/vecLib.framework/ve rsions/A/libvMisc.dylib

    0x7fff81a8e000 - 0x7fff81adefe7 com.apple.Metadata 10.5.8 (398.26) < c6f33c64966aceb08eeea18e29609c26 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/metadata

    0x7fff81adf000 - 0x7fff81b4eff9 com.apple.print.framework.PrintCore 5.5.4 (245,6) < 2b6cfbd8f24b002757d418e0f2a901ea > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore

    0x7fff81b4f000 - 0x7fff81b76fff libxslt.1.dylib? (???) < 9f51c7bfe1268f96a32644ef497b756b > /usr/lib/libxslt.1.dylib

    0x7fff81b77000 - 0x7fff81bb3ff7 libGLImage.dylib? (???) < Ce54e54e6f98a7c024e72a15434eba78 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0x7fff81bb4000 - 0x7fff81e4ffe3 com.apple.Foundation 6.5.9 (677.26) < d7c197fec4d7c3097be95ae742a47c22 > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff81e50000 - 0x7fff81ea5fe3 com.apple.HIServices 1.7.1 (?) < 8c601c198e138905743161674f558fcc > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices

    0x7fff81ea6000 - 0x7fff81eabfff com.apple.CommonPanels 1.2.4 (85) < 2cec1ecc95cf1ecea8bea030975a46b8 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels

    0x7fff81eac000 - 0x7fff81eeffef libTIFF.dylib? (???) < 3440ade9abb83ec926fe7e8bd50f5a6a > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib

    0x7fff81ef0000 - 0x7fff81efefff libCSync.A.dylib? (???) < 987685c50a66a4ee13615a21027ad45d > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib

    0x7fff81eff000 - 0x7fff81f03fff libGIF.dylib? (???) < 90273e9bee6ce32f87625bc1d5868517 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib

    0x7fff81f04000 - 0x7fff81f56fff com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x7fff81f57000 - 0x7fff81f74fff libPng.dylib? (???) < F0017da5aa1b56a318ddc4d9c18b3c63 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib

    0x7fff81f75000 - 0x7fff81f77fff com.apple.print.framework.Print 218.0.3 (220.2) < b61026a1ec74657ef632c870614c97ff > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print

    0x7fff81f78000 - 0x7fff81f87fe7 com.apple.opengl 1.5.10 (1.5.10) < 6e90aef2d19eb54c80487b063655fcbc > /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x7fff81f88000 - 0x7fff82553fef com.apple.CoreGraphics 1.409.7 (?) < 8a5d7d6b987279068456665ca2052b94 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics

    0x7fff82554000 - 0x7fff82555ff3 com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

    0x7fff82556000 - 0x7fff8256cff9 com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture

    0x7fff8256d000 - 0x7fff82573fff com.apple.DiskArbitration 2.2.1 2.2.1 < 177d27ab3079b3bfc41c0318dbc781da > /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

    0x7fff82574000 - 0x7fff8258cfff com.apple.DictionaryServices 1.0.0 (1.0.0) < 78ea11e9a92120f76d69efa24b8d1f95 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices

    0x7fff8258d000 - 0x7fff82889fe3 com.apple.CoreServices.CarbonCore 786.16 (786.16) < a9d4152e4cf55c6dd49d56183d2b56de > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore

    0x7fff8288a000 - 0x7fff828a4fff com.apple.openscripting 1.2.8 (?) < a05b9d0ca893061d44b492d7c7169e0a > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0x7fff828a5000 - 0x7fff82908fef libGLU.dylib? (???) < F67da5b01d66550356e36ab111d403ac > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff82909000 - 0x7fff8294afef com.apple.framework.IOKit 1.5.2 (?) < ebadf76b05d974c057871f79d1155160 > /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

    0x7fff8294b000 - 0x7fff8294bfff com.apple.Carbon 136 (136) < f0b1ad6c479d74ef0b819e25428a0681 > /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

    0x7fff8294c000 - 0x7fff8298ffef com.apple.QD 3.11.57 (?) < 8b866ad370ea1d63dac867d4d857a30b > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD

    0x7fff82990000 - 0x7fff82b03fff com.apple.MediaToolbox 0.484.2 (484,2) < 057b4fca132da820da835a69754dea4d > /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox

    0x7fff82b04000 - 0x7fff82b06ff7 libffi.dylib? (???) < 920bb19728451f35703bb95dc908c7ca > /usr/lib/libffi.dylib

    0x7fff82b07000 - 0x7fff82b42fff com.apple.AE 402.3 (402,3) < 02920492662a2afd9329814761de7625 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE

    0x7fff82b43000 - 0x7fff82bb7fe7 libstdc ++.6.dylib? (???) < 565ee6f798f7fef6f804c60682787280 > /usr/lib/libstdc++.6.dylib

    0x7fff82bb8000 - 0x7fff82c40fef libsqlite3.0.dylib? (???) < a12c5f54fbe808e8b0751931bf75e5f1 > /usr/lib/libsqlite3.0.dylib

    0x7fff82c41000 - 0x7fff82c41ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib

    0x7fff82c42000 - 0x7fff82c45ffb com.apple.help 1.1 (36) < 9000c05ccad96fdcc25bc35264abf587 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/aide

    0x7fff82c46000 - 0x7fff82d7efef com.apple.CoreFoundation 6.5.7 (476.19) < d7aea66b6a0d43c717a9d974d4b3e2de > /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    0x7fff82d7f000 - 0x7fff82e4aff7 com.apple.ColorSync 4.5.3 (4.5.3) System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync

    0x7fff82e4b000 - 0x7fff82e5cfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) < 106879bf44e44dbfad90830d86076d0b > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis

    0x7fff82e5d000 - 0x7fff82e5dff8 com.apple.ApplicationServices 34 (34) < 81cd02cc2ccf4e47e51d03db860da556 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

    0x7fff82e5e000 - 0x7fff82eeffff com.apple.SearchKit 1.2.2 (1.2.2) < 87379484090b910fd05c027b66d1228f > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit

    0x7fff82ef0000 - 0x7fff82f13fff com.apple.CoreVideo 1.6.1 (48.6) < 3c92baaf68647ad6783f96ff2d6fc5cb > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff82f14000 - 0x7fff82f51ff7 com.apple.SystemConfiguration 1.9.2 (1.9.2) < adbf2cf79d4ca56a6aaf282758342368 > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

    0x7fff82f52000 - 0x7fff8315bfeb com.apple.security 5.0.6 (37592) < d4d5bbf8247e12767d5775d69be3f90d > /System/Library/Frameworks/Security.framework/Versions/A/Security

    0x7fff8315c000 - 0x7fff8320ffef com.apple.DesktopServices 1.4.9 (1.4.9) < 5f0496e25a01c3f56c30c5038890697a > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv

    0x7fff83210000 - 0x7fff83242ff7 libauto.dylib? (???) < 1da77fa850921678e8e37611578b8f68 > /usr/lib/libauto.dylib

    0x7fff83243000 - 0x7fff83246fff com.apple.securityhi 3.0 (30817) < 00ddd6e60692b62b7649573eab8aef5a > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI

    0x7fff83247000 - 0x7fff83247ff8 com.apple.Cocoa 6.5 (?) < 8c59f679ffbd9178134df1d83dedde28 > /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

    0x7fff83248000 - 0x7fff8324afff com.apple.NavigationServices 3.5.2 (163) < a4de34598614036eafa22998ae0ac26f > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices

    0x7fff8324b000 - 0x7fff83257ff1 libgcc_s.1.dylib? (???) < 23fa31a628c1ea8a62ac529fa333b6e1 > /usr/lib/libgcc_s.1.dylib

    0x7fff83258000 - 0x7fff833c7fff libicucore. A.dylib? (???) < d69c6c54ddbf4ef58ea94d733de685b9 >/usr/lib/libicucore. A.dylib

    0x7fff833c8000 - 0x7fff833e2fff libvDSP.dylib? (???) /System/Library/frameworks/accelerate.Framework/versions/A/frameworks/vecLib.framework/ve rsions/A/libvDSP.dylib

    0x7fff833e3000 - 0x7fff83d0cfef com.apple.AppKit 6.5.9 (949.54) < 5076cda2b3c9560d7f019afd480039c7 > /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    0x7fff83d0d000 - 0x7fff83d0fff9 libRadiance.dylib? (???) < De876ebc2b3e680bd64f320696495b8e > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib

    0x7fff83d10000 - 0x7fff83d10ffa com.apple.CoreServices 32 (32) < c12e589173b697ce88050a6f736549eb > /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

    0x7fff83d11000 - 0x7fff83d4efe7 com.apple.coreui 1.2 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI (62)

    0x7fff83d4f000 - 0x7fff83d92fef com.apple.CoreMedia 0.484.2 (484,2) < 83319414e654185f1ec0350a889de2d7 > /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia

    0x7fff83d93000 - 0x7fff83e44fef com.apple.CoreServices.OSServices 228,1 (228,1) < c8c796d9ef6ed0a4a98cf48b8ad05e56 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices

    0x7fff83e45000 - 0x7fff841fdfff libLAPACK.dylib? (???) /System/Library/frameworks/accelerate.Framework/versions/A/frameworks/vecLib.framework/ve rsions/A/libLAPACK.dylib

    0x7fff841fe000 - 0x7fff844e5ffb com.apple.HIToolbox 1.5.6 (?) < 54f8e0b178ed377fb279ba48fa1aa88b > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox

    0x7fff844e6000 - 0x7fff848c6fef com.apple.QuartzCore 1.5.8 (1.5.8) < fa8e35e6d3005eea6cd3215757d8f1d1 > /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

    0x7fff848c7000 - 0x7fff848cfffa libbsm.dylib? (???) < 4d838c0d8a74fe61c781a53a8723303d > /usr/lib/libbsm.dylib

    0x7fff848d0000 - 0x7fff848d0ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer

    0x7fff848d1000 - com.apple.QTKit (1680.9) 7.6.9 0x7fff84a51fff < 0316de297793abcad0a41aa04c6bbf3b > /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit

    0x7fff84a52000 - 0x7fff84b25ffc com.apple.CFNetwork 438.16 (438.16) < 7155d736eec0494a831d09be9daaed08 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk, Versions, A, CFNetwork

    0x7fff84b26000 - 0x7fff84b48fff libJPEG.dylib? (???) < E7e1860c960f127d3297282025551445 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib

    0x7fff84b49000 - 0x7fff84c87fe9 com.apple.ImageIO.framework 2.0.7 (2.0.7) < 1e38d5b2e3b7865ac194fdce80a55325 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO

    0x7fff84c88000 - 0x7fff84d0ffef com.apple.audio.CoreAudio 3.1.2 (3.1.2) < 688f48384a6778f9133969ec9bb1569e > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff84d10000 - 0x7fff84e16feb com.apple.CoreData 100.2 (186,2) < 4f9b42b458d54644f0d97538741414bf > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff84e17000 - 0x7fff84eadffb com.apple.LaunchServices 292 (292) < d6750e4efb1986b3ffd2bc037223a3ad > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices

    0x7fff84eae000 - 0x7fff84eaeffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff84eaf000 - 0x7fff84ec3ff7 libGL.dylib? (???) /System/Library/frameworks/OpenGL.Framework/versions/A/libraries/libGL.dylib

    0x7fff84ec4000 - 0x7fff84f3fff3 com.apple.CoreText 2.0.5 (?) < 21c92ca8838402adc16d0ffdb2a2ada2 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f EPI/Versions/A/CoreText

    0x7fffffe00000 - 0x7fffffe01780 libSystem.B.dylib? (???) /usr/lib/libSystem.B.dylib

    0xfffffffffffec000 - 0xfffffffffffeffff libobjc. A.dylib? (???) / usr/lib/libobjc. A.dylib

    It is not clear to me if you tried to go to Preferences > plugins and deactivate all checkboxes for Extension panels. Have you tried that? Is that solves the problem for you? If so, we need to refine what Panel is at the origin of the problem.

    Looking at your system information you got sent - my guess is that maybe it's the 'Painters' wheel' Panel you have installed.

    Try to remove that Plug-ins > folder of the panels inside the Photoshop application folder. Restart Photoshop with signs Extension enabled in your preferences and let me know if that solves the problem.

  • Scaling of images without breaking the report l / h

    IM in a situation where I need to scale images in terms for the container into which he kept...

    Is there a formula to find the value of the scale that should be applied to the image (I put the maximum size of the container)? Any ideas would be very nice...

    Thank you.

    Welcome to the forum.

    I'm not sure that understand the issue here.

    Say you have an image of height and width b.  You want to scale to fit in a container of width x and height y.  Then the scale factor you use, to ensure that the image fills the container as much as possible, without upsetting the aspect ratio is simply

    min (x/a, y/b)

    For example, suppose that your image is 100 x 150 and you want to fit it into an area 30 x 40

    the formula gives:

    min (30/100, 40/150)

    This, at what scale will fill all the way up, but not the width.

    Hope it makes sense.

Maybe you are looking for