Stack and queue problem

hi i am trying to change infix expression to postfix and also the opposite, like
((a+b)*(a-c*d)/(b+d*e)) to ab+acb*-bde+/
using stack and queue
I am so confuse

Hello,
See this URL :
http://www24.brinkster.com/premshree/perl
You will find the algorithms here.
Here is a Perl version :
#     Script:          infix-postfix.pl
#     Author:          Premshree Pillai
#     Description:     Using this script you can :
#               - Convert an Infix expression to Postfix
#               - Convert a Postfix expression to Infix
#               - Evaluate a Postfix expression
#               - Evaluate an Infix expression
#     Web:          http://www.qiksearch.com
#     Created:     23/09/02 (dd/mm/yy)
#     � 2002 Premshree Pillai. All rights reserved.
sub isOperand
     ($who)=@_;
     if((!isOperator($who)) && ($who ne "(") && ($who ne ")"))
          return 1;
     else
          return;
sub isOperator
     ($who)=@_;
     if(($who eq "+") || ($who eq "-") || ($who eq "*") || ($who eq "/") || ($who eq "^"))
          return 1;
     else
          return;
sub topStack
     (@arr)=@_;
     my $arr_len=@arr;
     return($arr[$arr_len-1]);
sub isEmpty
     (@arr)=@_;
     my $arr_len=@arr;
     if(($arr_len)==0)
          return 1;
     else
          return;
sub prcd
     ($who)=@_;
     my $retVal;
     if($who eq "^")
          $retVal="5";
     elsif(($who eq "*") || ($who eq "/"))
          $retVal="4";
     elsif(($who eq "+") || ($who eq "-"))
          $retVal="3";
     elsif($who eq "(")
          $retVal="2";
     else
          $retVal="1";
     return($retVal);
sub genArr
     ($who)=@_;
     my @whoArr;
     for($i=0; $i<length($who); $i++)
          $whoArr[$i]=substr($who,$i,1);
     return(@whoArr);
sub InfixToPostfix
     ($infixStr)=@_;
     my @infixArr=genArr($infixStr);
     my @postfixArr;
     my @stackArr;
     my $postfixPtr=0;
     for($i=0; $i<length($infixStr); $i++)
          if(isOperand($infixArr[$i]))
               $postfixArr[$postfixPtr]=$infixArr[$i];
               $postfixPtr++;
          if(isOperator($infixArr[$i]))
               if($infixArr[$i] ne "^")
                    while((!isEmpty(@stackArr)) && (prcd($infixArr[$i])<=prcd(topStack(@stackArr))))
                         $postfixArr[$postfixPtr]=topStack(@stackArr);
                         pop(@stackArr);
                         $postfixPtr++;
               else
                    while((!isEmpty(@stackArr)) && (prcd($infixArr[$i])<prcd(topStack(@stackArr))))
                         $postfixArr[$postfixPtr]=topStack(@stackArr);
                         pop(@stackArr);
                         $postfixPtr++;
               push(@stackArr,$infixArr[$i]);
          if($infixArr[$i] eq "(")
               push(@stackArr,$infixArr[$i])
          if($infixArr[$i] eq ")")
               while(topStack(@stackArr) ne "(")
                    $postfixArr[$postfixPtr]=pop(@stackArr);
                    $postfixPtr++;
               pop(@stackArr);
     while(!isEmpty(@stackArr))
          if(topStack(@stackArr) eq "(")
               pop(@stackArr)
          else
               $temp=@postfixArr;
               $postfixArr[$temp]=pop(@stackArr);
     return(@postfixArr);
sub PostfixToInfix
     ($postfixStr)=@_;
     my @stackArr;
     my @postfixArr=genArr($postfixStr);
     for($i=0; $i<length($postfixStr); $i++)
          if(isOperand($postfixArr[$i]))
               push(@stackArr,$postfixArr[$i]);
          else
               $temp=topStack(@stackArr);
               pop(@stackArr);
               $pushVal=topStack(@stackArr).$postfixArr[$i].$temp;
               pop(@stackArr);
               push(@stackArr,$pushVal);
     return((@stackArr));
sub PostfixEval
     ($postfixStr)=@_;
     my @stackArr;
     my @postfixArr=genArr($postfixStr);
     for($i=0; $i<length($postfixStr); $i++)
          if(isOperand($postfixArr[$i]))
               push(@stackArr,$postfixArr[$i]);
          else
               $temp=topStack(@stackArr);
               pop(@stackArr);
               $pushVal=PostfixSubEval(topStack(@stackArr),$temp,$postfixArr[$i]);
               pop(@stackArr);
               push(@stackArr,$pushVal);
     return(topStack(@stackArr));
sub PostfixSubEval
     ($num1,$num2,$sym)=@_;
     my $returnVal;
     if($sym eq "+")
          $returnVal=$num1+$num2;
     if($sym eq "-")
          $returnVal=$num1-$num2;
     if($sym eq "*")
          $returnVal=$num1*$num2;
     if($sym eq "/")
          $returnVal=$num1/$num2;
     if($sym eq "^")
          $returnVal=$num1**$num2;
     return($returnVal);
sub joinArr
     (@who)=@_;
     my $who_len=@who;
     my $retVal;
     for($i=0; $i<$who_len; $i++)
          $retVal.=$who[$i];
     return $retVal;
sub evalInfix
     ($exp)=@_;
     return PostfixEval(joinArr(InfixToPostfix($exp)));
sub init
     my $def_exit="\n\tThank you for using this Program!\n\tFor more scripts visit http://www.qiksearch.com\n";
     printf "\n\tInfix - Postfix\n";
     printf "\n\tMenu";
     printf "\n\t(0) Convert an Infix Expression to Postfix Expression";
     printf "\n\t(1) Convert a Postfix Expression to Infix Expression";
     printf "\n\t(2) Evaluate a Postifx Expression";
     printf "\n\t(3) Evaluate an Infix Expression";
     printf "\n\t(4) Exit this Program";
     printf "\n\t(5) About this Program\n";
     printf "\n\tWhat do you want to do? (0/1/2/3/4/5) ";
     $get=<STDIN>;
     chomp $get;
     if(!(($get eq "0") || ($get eq "1") || ($get eq "2") || ($get eq "3") || ($get eq "4") || ($get eq "5")))
          printf "\n\t'$get' is an illegal character.\n\tYou must enter 0/1/2/3/4/5.";
     if(($get ne "4") && ($get ne "5") && (($get eq "0") || ($get eq "1") || ($get eq "2") || ($get eq "3")))
          printf "\n\tEnter String : ";
          $getStr=<STDIN>;
          chomp $getStr;
     if($get eq "0")
          printf "\tPostfix String : ";
          print InfixToPostfix($getStr);
     if($get eq "1")
          printf "\tInfix String : ";
          print PostfixToInfix($getStr);
     if($get eq "2")
          printf "\tPostfix Eval : ";
          print PostfixEval($getStr);
     if($get eq "3")
          printf "\tExpression Eval : ";
          print evalInfix($getStr);
     if($get eq "4")
          printf $def_exit;
          exit 0;
     if($get eq "5")
          printf "\n\t======================================================";
          printf "\n\t\tInfix-Postfix Script (written in Perl)";
          printf "\n\t\t(C) 2002 Premshree Pillai";
          printf "\n\t\tWeb : http://www.qiksearch.com";
          printf "\n\t======================================================\n";
          printf "\n\tUsing this program, you can : ";
          printf "\n\t- Convert an Infix Expression to Postfix Expression.";
          printf "\n\t Eg : 1+(2*3)^2 converts to 123*2^+";
          printf "\n\t- Convert a Postfix Expression to Infix Expression.";
          printf "\n\t Eg : 123*+ converts to 1+2*3";
          printf "\n\t- Evaluate a Postfix Expression";
          printf "\n\t Eg : 37+53-2^/ evaluates to 2.5";
          printf "\n\t- Evaluate an Infix Expression";
          printf "\n\t Eg : (5+(4*3-1))/4 evaluates to 4";
          printf "\n\n\tYou can find the algorithms used in this Program at : ";
          printf "\n\t-http://www.qiksearch.com/articles/cs/infix-postfix/index.htm";
          printf "\n\t-http://www.qiksearch.com/articles/cs/postfix-evaluation/index.htm";
          printf "\n\n\tYou can find a JavaScript implementation of 'Infix-Postfix' at : ";
          printf "\n\t-http://www.qiksearch.com/javascripts/infix-postfix.htm";
     printf "\n\n\tDo you want to continue? (y/n) ";
     my $cont=<STDIN>;
     chomp $cont;
     if($cont eq "y")
          init();
     else
          printf $def_exit;
          exit 0;
init;

Similar Messages

  • Help regarding Stacks and Queues.!!!!!!Please....

    I have a working program right now..But it lacks some things to be done..It already does the stacks and queues..But still it doesnt print the info on the desired output file outTwo.dat..Both the stacks and queues should be printed on it..Also it has to compute the total commission on categories 1 and 2...and put it again on the outTwo.dat..Any kind hearted people would want to help me here?Here's the assignment detail...Thank YOU!!!!
    Q2. Linked List
    a.     create a compile AStack class, and a AQueue class similar to the text
    b.     provide an application that will:
    �     instantiate an AStack object and an AQueue object
    �     create a property object for each data line read from the input file assign4.dat
    �     push it ti the stack if its is category 1 property; queue if its is category 2; ignore all others
    �     print a title called category 1 to an output file called outTwo.dat
    �     after printing a few blank lines to outTwo.dat, print a title called category 2 to outTwo.dat
    �     traverse the queue and print it to the same output file outTwo.dat
    �     print the total commission earned on this category of property to outTwo.dat
    Note that for this question you should also print out and submit outTwo.dat. Have Fun!
    //This is the program I have done so far....
    import java.io.*;
    import java.util.StringTokenizer;
    public class TestSQ {
         public static void readFileSQ(AStack s, AQueue q)
              try {
    FileReader inStream=new FileReader("assign4.dat");
    BufferedReader ins= new BufferedReader(inStream);
    FileWriter outStream=new FileWriter("outTwo.dat");
    PrintWriter outs= new PrintWriter(outStream);
    String line;
    int category;
    double price;
    String categoryString;
    String priceString;
    StringTokenizer st;
    while((line=ins.readLine())!=null) {
    st=new StringTokenizer(line," ");
    if(st.countTokens()==2){
    categoryString = st.nextToken();
    priceString = st.nextToken();
    try{
    category = Integer.parseInt(categoryString);
    price = Double.parseDouble(priceString);
    Property myProperty = new Property(category, price);
    myProperty.setCommissionRate();
    myProperty.getCommission();
         if(category==1)
    s.push(myProperty);
    outs.println(s.toString());
    if(category==2)
                             q.insert(myProperty);
                             outs.println(q.toString());
    }catch(NumberFormatException nfe){
    System.out.println("error while parsing Integer: "+categoryString+"/"+priceString);
    else
    System.out.println("invalid number of elements in line: " +st.countTokens());
    catch (IOException e) {
    System.out.println("i/o error:"+e.getMessage());
    e.printStackTrace();
         public static void showStack(AStack s){
              while(!s.isEmpty()){
                   Object line=s.pop();
                   System.out.println(line);
    public static void main(String args[])
         AStack stackOfProperty=new AStack();
         AQueue queueOfProperty=new AQueue();
         readFileSQ(stackOfProperty,queueOfProperty);
         showStack(stackOfProperty);
         System.out.println();
         System.out.println(queueOfProperty.toString());
    }

    import java.io.*;
    import java.util.StringTokenizer;
    public class TestSQ {
         public static void readFileSQ(AStack s, AQueue q)
              try {
                FileReader inStream=new FileReader("assign4.dat");
                BufferedReader ins= new BufferedReader(inStream);
                FileWriter outStream=new FileWriter("outTwo.dat");
                PrintWriter outs= new PrintWriter(outStream);
                String line;
                int category;
                double price;
                String categoryString;
                String priceString;
                StringTokenizer st;
                 while((line=ins.readLine())!=null) {
                    st=new StringTokenizer(line," ");
                    if(st.countTokens()==2){
                        categoryString = st.nextToken();
                        priceString = st.nextToken();
                        try{
                            category = Integer.parseInt(categoryString);
                            price = Double.parseDouble(priceString);
                            Property myProperty = new Property(category, price);
                            myProperty.setCommissionRate();
                            myProperty.getCommission();
                                if(category==1)
                            s.push(myProperty);
                          //  outs.println(s.toString());
                            else if(category==2)
                                 q.insert(myProperty);
                                 outs.println(q.toString());
                        }catch(NumberFormatException nfe){
                            System.out.println("error while parsing Integer: "+categoryString+"/"+priceString);
                    else
                        System.out.println("invalid number of elements in line: " +st.countTokens());
                outs.close();
                ins.close();
            catch (IOException e) {
                System.out.println("i/o error:"+e.getMessage());
                e.printStackTrace();
         public static void showStack(AStack s){
              while(!s.isEmpty()){
                   Object line=s.pop();
                   System.out.println(line);
        public static void main(String args[])
             AStack stackOfProperty=new AStack();
             AQueue queueOfProperty=new AQueue();
             readFileSQ(stackOfProperty,queueOfProperty);
             showStack(stackOfProperty);
             System.out.println();
             System.out.println(queueOfProperty.toString());
       }//This is the updated version of my program..Now the ouput file works now, but then it shows different ouput..Thats only for the queue.I dont know about the stack..Tnx for looking...

  • Stacks and Queues

    Hello, I am new to Java and am working out an assignment. I need to manipulate some stacks and queues in various ways.
    I need to reverse a stack in three different ways:
    1. using two additional stacks.
    2. using one additional queue.
    3. using one additional stack and some additional non-array variables.
    I think I have ways to do 1 and 2 but I'm a bit confused about 3.
    For 1, I would pop the the elements off of the full stack A, and push them onto B. Then pop them from B and push them to C. Then pop them from C and push them to A, thus reversing the order.
    For 2, simply pop the elements from the stack and enqueue them in the queue. Then dequeue them and push them back to the stack.
    For 3, not really sure where to start or how? I could think of how to do it with an array but I'm drawing a blank on this. I don't want anyone to write the code for me just maybe point me in the right direction?
    The assignment then carries on to sorting in ascending order using a stack and then just using non-array variables. I feel like if I can figure out number 3 above the rest will be along similar lines.
    Any help is greatly appreciated.

    The restrictions might be nudging towards a constant-storage algorithm. In which case, try the following.
    You can move any element to the top of the stack using a stack and non-array variables. Take the 4th element for example:
    Pop 3 elements from the stack and push onto the other.
    Pop the next element and store in a variable.
    Pop the 3 elements from the second stack and push back on the first.
    Push the value from the variable onto the first stack.
    This can be used for reversing and sorting the stack.

  • Stacks and Printer Problems in Leopard

    I just found two problems regarding the new stacks feature and my HP C4280 printer.
    For the stacks, I left the download stack open, which shows a fan of downloaded files, while downloading something else. but when the new downloading finished. My whole dock feature was frozen. I couldn't close the download stack and couldn't even click anything on the dock. I tried to restarted my computer, but I was still stuck. So I had to press the power button to restart it.
    For my HP C4280 printer, I could still print, but just couldn't launch the utility application of my printer, such as choosing only to print in black and white, checking the ink supply level and many other options.
    I'll appreciate very much if someone can help me fix these two bugs.

    If you are familiar and comfortable with the terminal, you can perform a bulk "chown" or whatever.
    Managing File Permissions
    Sample "ls -l /bin/ls" output: -rwxr-xr-x 1 root root 29980 Apr 23 1998 /bin/ls
    - First ten characters are the file's permissions. First is file type, '-' for normal, 'd' for directory, 'l' for symlink, etc.
    - Three sets of three characters of "rwx", or Read, Write, Execute permission - first for owner, then group owner, then everyone.
    - Then we have number of links to file, owner of the file, group owner of file, file size, date it was last modified, and the file's name.
    chmod - Change a file's mode or permissions - one way is to use octal numbering - example: "chmod 751 /bin/ls" for rwxr-x--x
    chgrp - Change a file's group - example: "chgrp users /bin/ls"
    chown - Change a file's owner - example: "chown uzi /bin/ls"
    umask - Set default file permissions (generally, do the opposite, or "777 minus what you want")
    Or you can change them one at a time as you need them.
    This happens once and a while and I am puzzled as to why.
    Did you do a disk check and file permissions before upgrading?

  • Website on data structures such as stacks and queues.

    Hi,
    I'm currently try to read up on data structures such as stacks, queues but don't quite understand how to implement that. Is there any useful links with example that I can read up from?
    Thanks

    Depends what you mean by "implement". If you want to use standard Java classes that are already written, and you want to know which to choose, then
    http://java.sun.com/docs/books/tutorial/collections/
    If you want to write your own, for some obscure reason, then read a book on data structures. Or try to write your own implementation of the Java collection classes.

  • Iterative maze generation with a stack and queue

    I searched the forums, and a couple of hits were interesting, particularly http://forum.java.sun.com/thread.jsp?forum=54&thread=174337 (the mazeworks site is very very cool), but they all centered on using a recursive method to create a maze. Well, my recursive maze generation is fine; it seems to me that recursion lends itself quite well to this particular form of abuse, so well in fact that I am having trouble wrapping my head around an iterative approach. :) I need to create a maze iteratively, using a stack if specified by the user, else a queue. I can vaguely see how a stack simulates recursion but conceptualization of the queue in particular is making my hair hurt. So I was just wondering if anyone had any thoughts or pointers that they wouldn't mind explaining to me to help me with this project. Thanks kindly.
    Maduin

    Stacks (i.e. a first in, last out data storage structure) are very, very closely tied to recursive calls - after all, the only reason that the recursion works at all is because the language is placing the current state of the method on a stack before it calls the method again.
    As for using queue's to implement the same type of thing, are you allowed to use a dequeue (double ended queue)? If so, dequeue's are a pretty common way of implementing a stack - they allow you to implement both FILO and FIFO (first in, first out) structures by whether you pull the stored item from the head or tail of the dequeue.
    If you are talking about a FIFO, then that's a different story - let us know!
    - K
    PS - recursion is an odd topic to get your head around - keep working at it! The biggest thing to realize is that all recursive routines must have SOME way to exit them without continuing the recursion. The design of a recursive call, then, is generally easiest to do when implemented by answering the following question: "Under what condition should the recursion stop?", and then building the routine backwards from there.

  • Contexts and queues problem

    Hello Sdn
    I am stuck with an issue.
    I have a queue udf ,it takes in value and while placing in target ,it is placing the values in target segment.
    eg :
    Current output:
    PO1
      MSG
       10
      MSG
      20
    MSG
      30
    MSG
      40
    Required output
    PO1
    MSG
       10
    MSG
      20
    PO1
    MSG
      30
    MSG
      40
    The mapping is : Source-> QUEUE UDF-> Target
    IS this a context issue or something needs to be changed in the udf.
    Thanks

    HI
    Change the context of PO1 and MSG to PO1 parent node. and try again.
    Right click on each node and use display queue this will show you after changing the context what's changing. Check like this
    Thanks
    Gaurav

  • Stack and Queue

    Where do we use them?So far i haven't come across any program which uses them.

    You could use a stack for a calculator application, or a queue for a resource management application.

  • Help with java coding involving stacks and queues.

    I was wondering if anyone can help with tips on what to fill in for the coding.
    My project is to creating a word processor by the process of 2 stacks. The methods are given, but I'm not really sure what goes in them. So I was wonder if anyone can answer this for me, or give tips that would be great thanks.
    Example Code, similar to what were suppose to do, but instead it's CHARACTER stacks rather than String.
    [http://www.cs.jhu.edu/~jason/226/hw3/source/EditableString.java]

    /** Stack of Characters to the left of the cursor; the ones
       * near the top of the stack are closest to the cursor.
      private Stack left;
      /** Stack of Characters to the right of the cursor; the ones
       * near the top of the stack are closest to the cursor.
      private Stack right;Do you know how a stack works?
    No - Google it
    Yes - Continue on with this post
    /** Another constructor.
       * @param left The text to the left of the cursor.
       * @param right The text to the right of the cursor.
      public EditableString(String left, String right) {
        // fill this in
      }Do you know how to read?
    No - How did you answer this question then?
    Yes - Then why can't you read the comments above each method. Is it really that hard to understand?
    Mel

  • An unexpected and unrecoverable problem has occurred. Photoshop will now exit.

    Attempted to launch Photoshop CS4 today and was welcomed by the following errors.
    The first error to pop up said:
    "An unexpected and unrecoverable problem has occurred because something prevented the text engine from being launched. Photoshop will now exit."
    Then, another error popped up over it:
    "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    Here is the Crash Log:
    Process:         Adobe Photoshop CS4 [26723]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] (11.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [235]
    Date/Time:       2012-04-25 09:45:00.306 -0500
    OS Version:      Mac OS X 10.7.3 (11D50d)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[26723]: garbage collection is OFF
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x983ba9c6 __pthread_kill + 10
    1   libsystem_c.dylib                       0x90ca7f78 pthread_kill + 106
    2   libsystem_c.dylib                       0x90c98bdd abort + 167
    3   com.adobe.Photoshop                     0x0021fcf7 0x1000 + 2223351
    4   libc++abi.dylib                         0x9c1a61fe safe_handler_caller(void (*)()) + 15
    5   libc++abi.dylib                         0x9c1a61ef __cxxabiv1::__terminate(void (*)()) + 14
    6   libc++abi.dylib                         0x9c1a711a __cxa_call_unexpected + 227
    7   com.adobe.Photoshop                     0x013239d5 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660361
    8   com.adobe.Photoshop                     0x01323a29 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660445
    9   com.adobe.Photoshop                     0x008eb7ea 0x1000 + 9349098
    10  com.adobe.Photoshop                     0x01323a9e AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660562
    11  com.adobe.Photoshop                     0x0007c9df 0x1000 + 506335
    12  com.adobe.Photoshop                     0x000671ad 0x1000 + 418221
    13  com.adobe.Photoshop                     0x00063a95 0x1000 + 404117
    14  com.adobe.Photoshop                     0x006706cd 0x1000 + 6747853
    15  com.adobe.Photoshop                     0x000a4717 0x1000 + 669463
    16  com.apple.HIToolbox                     0x980f2b8e ModalDialog + 946
    17  com.apple.HIToolbox                     0x980fad01 RunStandardAlert + 741
    18  com.adobe.Photoshop                     0x0007b4a8 0x1000 + 500904
    19  com.adobe.Photoshop                     0x0007b7ed 0x1000 + 501741
    20  com.adobe.Photoshop                     0x000dd405 0x1000 + 902149
    21  com.adobe.Photoshop                     0x000dd807 0x1000 + 903175
    22  com.adobe.Photoshop                     0x0007d8c7 0x1000 + 510151
    23  com.adobe.Photoshop                     0x011fb486 0x1000 + 18850950
    24  com.adobe.Photoshop                     0x0021fd47 0x1000 + 2223431
    25  libc++abi.dylib                         0x9c1a61fe safe_handler_caller(void (*)()) + 15
    26  libc++abi.dylib                         0x9c1a61ef __cxxabiv1::__terminate(void (*)()) + 14
    27  libc++abi.dylib                         0x9c1a711a __cxa_call_unexpected + 227
    28  com.adobe.Photoshop                     0x013239d5 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660361
    29  com.adobe.Photoshop                     0x01323a29 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660445
    30  com.adobe.Photoshop                     0x008eb125 0x1000 + 9347365
    31  com.adobe.Photoshop                     0x008eb642 0x1000 + 9348674
    32  com.adobe.Photoshop                     0x01323a9e AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660562
    33  com.adobe.Photoshop                     0x0007c9df 0x1000 + 506335
    34  com.adobe.Photoshop                     0x000671ad 0x1000 + 418221
    35  com.adobe.Photoshop                     0x0006348f 0x1000 + 402575
    36  com.adobe.Photoshop                     0x00063c44 0x1000 + 404548
    37  com.adobe.Photoshop                     0x00063dd3 0x1000 + 404947
    38  com.adobe.Photoshop                     0x0006212f 0x1000 + 397615
    39  com.adobe.Photoshop                     0x002205da 0x1000 + 2225626
    40  com.adobe.Photoshop                     0x00220666 0x1000 + 2225766
    41  com.adobe.Photoshop                     0x00003812 0x1000 + 10258
    42  com.adobe.Photoshop                     0x00003739 0x1000 + 10041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x983bb90a kevent + 10
    1   libdispatch.dylib                       0x9b608c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9b6076a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x983ba83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90ca9e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90c5182a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0701c552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x07017995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x0701c5b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x983b8c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x924c2a98 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21080eff 0x21051000 + 196351
    3   com.apple.CoreServices.CarbonCore          0x924c35e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x983ba83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90ca9e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x90c5a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x924eee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x924603c5 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x924c2681 MPWaitOnQueue + 200
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x924c35e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x983bb02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90ca7ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90ca96fe start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x983bb02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90ca7ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90ca96fe start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x983b8d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x90c53439 nanosleep + 388
    2   com.adobe.PSAutomate                    0x71c381b1 ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate                    0x71c38211 ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate                    0x71c28dc6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate                    0x71c384d3 ScObjects::Thread::go(void*) + 239
    6   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x983bb02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90ca7ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90ca96fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbfffd33c  ecx: 0xbfffd2cc  edx: 0x983ba9c6
      edi: 0xac0f82c0  esi: 0x00000006  ebp: 0xbfffd2e8  esp: 0xbfffd2cc
       ss: 0x00000023  efl: 0x00000246  eip: 0x983ba9c6   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0a07e000
    Logical CPU: 0
    Binary Images:
        0x1000 -  0x19aefdf +com.adobe.Photoshop (11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] - 11.0.2) <40DBAC70-2688-44B1-A8CE-142BF8A18887> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 -  0x2085fff  org.twain.dsm (1.9.4 - 1.9.4) <C0CCCE50-2929-3853-BE08-0DAE14CA29B8> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208c000 -  0x246601f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x251a000 -  0x2714fcf +AdobeOwl (??? - ???) <4CCA2C7B-4896-4DDA-A14B-725FB0C202B5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x278f000 -  0x289cfff +AdobeACE (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28ba000 -  0x2c84fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d13000 -  0x2d73fc7 +AdobeXMP (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d82000 -  0x307dfff +AdobeAGM (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313d000 -  0x33d0fe7 +AdobeCoolType (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3454000 -  0x346dfff +AdobeBIB (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3477000 -  0x3498ff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a5000 -  0x34c0ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x34da000 -  0x34feff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x3511000 -  0x359e2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x35cb000 -  0x35e680f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x35e9000 -  0x379fff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x37d6000 -  0x3866fc3 +WRServices (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x39e8000 -  0x39ecffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x39f2000 -  0x3a0efd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3a19000 -  0x3aeefdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3b1f000 -  0x3b76fff +aif_core (??? - ???) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x3b8e000 -  0x3babffd +data_flow (??? - ???) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x3bd7000 -  0x3c50fff +image_flow (??? - ???) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x3cb6000 -  0x3cc6fff +image_runtime (??? - ???) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x3cdb000 -  0x3e9affe +aif_ogl (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x3f4b000 -  0x4449fc3 +AdobeOwlCanvas (??? - ???) <FCB2D1A3-1F6E-4182-8E2C-D0B23572D285> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4592000 -  0x4664fe7 +AdobeAXEDOMCore (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x4718000 -  0x477afe7 +com.adobe.PlugPlug (1.0.0.73 - 1.0.0.73) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x47db000 -  0x4822fc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x4832000 -  0x486ffff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4e62000 -  0x4e6fff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x4e7d000 -  0x4e7dfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x4efa000 -  0x4efbff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4fed000 -  0x4ffbffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D3F1CC34-55EB-3D33-A7C2-025D5C8025D0> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x6ffc000 -  0x709dfc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x729b000 -  0x72adfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <ADEB72F9-0048-3C87-AD9B-71AA57D523E9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x72b1000 -  0x72b2ffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x72f8000 -  0x7303fff +Enable Async IO (??? - ???) <FD91E79F-C4AA-4EBC-AF6D-3E154F14878F> /Applications/Adobe Photoshop CS4/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x1ac9a000 - 0x1ac9effb  libFontRegistryUI.dylib (??? - ???) <E986346C-8132-33B6-8525-AA2A3233F99C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x1acdd000 - 0x1aceb02f +FastCore (??? - ???) <F12878B7-BEE9-40CA-9F05-65CD0F5688E2> /Applications/Adobe Photoshop CS4/*/FastCore.plugin/Contents/MacOS/FastCore
    0x1ffcd000 - 0x1ffd8ffb +PPCCore (??? - ???) <ED521EB7-681D-45AA-9AE3-6BF4663E4BD3> /Applications/Adobe Photoshop CS4/*/PPCCore.plugin/Contents/MacOS/PPCCore
    0x1ffde000 - 0x1ffe9ffe +AltiVecCore (??? - ???) <A967AE2A-F2AE-4E12-A7B6-68B981CBD906> /Applications/Adobe Photoshop CS4/*/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x20c1d000 - 0x20d8affc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x20dbe000 - 0x20eb5ffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x20ed9000 - 0x20f06ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x20f4e000 - 0x20fb3fe3 +MMXCore (??? - ???) <E206C8DC-AEA8-49DF-8FBC-8B447E3A59A1> /Applications/Adobe Photoshop CS4/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x21051000 - 0x21098ff7 +MultiProcessor Support (??? - ???) <001A163B-5314-4613-A23A-F35B63065FD0> /Applications/Adobe Photoshop CS4/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x210a3000 - 0x211f5fc7 +com.adobe.coretech.adm (3.10x16 - 3.1) /Applications/Adobe Photoshop CS4/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x71b00000 - 0x71d5cfdf +com.adobe.PSAutomate (11.0.1 - 11.0.1) /Applications/Adobe Photoshop CS4/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x71ff0000 - 0x720befff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x72135000 - 0x721d6fd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x8effe000 - 0x8f7a3ffb  com.apple.GeForceGLDriver (7.18.11 - 7.1.8) <71391D53-5F7C-3DA2-AB51-B9CFE665FF2A> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x8fe18000 - 0x8fe4aaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x900aa000 - 0x9016affb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9016b000 - 0x9016ffff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9038c000 - 0x9038cfff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x903dc000 - 0x90410ff3  libTrueTypeScaler.dylib (??? - ???) <43479E0A-C47D-3CE3-B328-9CB33D3FC3B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90444000 - 0x90455fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x90456000 - 0x9052caab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x9052d000 - 0x9054afff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x90582000 - 0x905a4ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x905a5000 - 0x905b9ff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x905ba000 - 0x905c4ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x905c5000 - 0x905e1ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x905e2000 - 0x905e5ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x905e6000 - 0x90637fff  libFontRegistry.dylib (??? - ???) <DF69E8EC-9114-3757-8355-8F3E82156F85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x90638000 - 0x90638fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x90639000 - 0x90696ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x90697000 - 0x906cdff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x906ce000 - 0x9071eff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x9071f000 - 0x909dbff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90a12000 - 0x90af5ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x90b2d000 - 0x90b2fff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x90b30000 - 0x90b33ffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x90b37000 - 0x90c48ff7  libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x90c49000 - 0x90d14fff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x90d37000 - 0x90e27ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x90eeb000 - 0x90efeffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x90eff000 - 0x91209ff3  com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9120a000 - 0x91238ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x91239000 - 0x91241fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91242000 - 0x91246ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x91247000 - 0x91304ff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
    0x91308000 - 0x91359ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9135a000 - 0x91478fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91736000 - 0x919bbfe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91c20000 - 0x91c20fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91f2f000 - 0x91f3affc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x922c6000 - 0x92321ff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x92322000 - 0x92337fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x92338000 - 0x92380ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <CA077C0D-8A54-38DB-9690-5D222899B93D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x92422000 - 0x92724fff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x92768000 - 0x92768fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92769000 - 0x92c4effb  com.apple.RawCamera.bundle (3.12.0 - 614) <A2B304C1-1E8D-AAB1-14F6-11462C666C82> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x92d3f000 - 0x92d62fff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92d63000 - 0x92d65ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x92d66000 - 0x92d71ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x9307d000 - 0x9308bfff  com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931bf000 - 0x932ebff9  com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x932ec000 - 0x93315ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93316000 - 0x9331bffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x939b7000 - 0x93a4eff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x93aff000 - 0x93b05ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x93b48000 - 0x93be3ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x93c0d000 - 0x93c32ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x93cce000 - 0x93d0eff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x93d0f000 - 0x93d9cfe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x93d9d000 - 0x93f74fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93f80000 - 0x94007fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x94278000 - 0x94283fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x95030000 - 0x95191ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x951d3000 - 0x955d5ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x95cd4000 - 0x95d30fff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95d31000 - 0x95d74ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x95d75000 - 0x96251ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x962a2000 - 0x962aaff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x964ad000 - 0x964bdfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x964be000 - 0x964bfff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x964c2000 - 0x965aafff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x965ab000 - 0x966a3ff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x966d0000 - 0x966defff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x966df000 - 0x966e4ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x966f7000 - 0x9678cff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x967e5000 - 0x967e8ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x96826000 - 0x9682dff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x9686d000 - 0x968e1fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x968ea000 - 0x96904fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96cd0000 - 0x97361fe3  libclh.dylib (4.0.3 - 4.0.3) <6A8847F2-1F44-3B30-A770-DAAF8D1D36C2> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x97362000 - 0x973c4ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x973c7000 - 0x973caffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9741d000 - 0x9741fff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x97420000 - 0x97421fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x97422000 - 0x97451ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x97452000 - 0x97452ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x97453000 - 0x974ceffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x974e0000 - 0x97f73ff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97f74000 - 0x982b8ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x982b9000 - 0x982c4ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x982c5000 - 0x982f0fff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x982f5000 - 0x982fcfff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x982fd000 - 0x983a1fff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x983a2000 - 0x983c0ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x983c1000 - 0x983e0fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x983e1000 - 0x98442ffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98443000 - 0x9844cff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9844d000 - 0x984d7ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x984d8000 - 0x984dbffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x98589000 - 0x985c9ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x985ca000 - 0x985cafff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x985cb000 - 0x9863afff  com.apple.Heimdal (2.1 - 2.0) <BCF7C3F1-23BE-315A-BBB6-5F01C79CF626> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9863b000 - 0x9863bfff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x98681000 - 0x98685fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x98770000 - 0x98771ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x98854000 - 0x98963fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x98964000 - 0x98967ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <E06426D8-CC01-3754-B5B3-D15CBA5C8D73> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x989aa000 - 0x989abff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x989ac000 - 0x989c9ff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x989ec000 - 0x98a79ff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x98a7a000 - 0x98a7bfff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x98a7c000 - 0x98a80ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98a81000 - 0x98abdffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x98ba6000 - 0x98bcfff1  com.apple.CoreServicesInternal (113.12 - 113.12) <CFF78E35-81F5-36C2-A59F-BF85561AC16D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9965f000 - 0x996c6fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x996d2000 - 0x9972bfff  com.apple.HIServices (1.11 - ???) <F8B77735-B168-3E21-9B8F-921115B4C19B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x99738000 - 0x9a0605eb  com.apple.CoreGraphics (1.600.0 - ???) <E285B0B6-F9FC-33BC-988F-ED619B32029C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x9a3cd000 - 0x9a404fef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9a405000 - 0x9a46aff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9a56b000 - 0x9a56fff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9a587000 - 0x9a58fff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9a59e000 - 0x9a5baffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x9a9d1000 - 0x9ac44ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x9ac59000 - 0x9ac64ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <DD0529E3-9D71-37B6-9EB8-D7747B2B12C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x9ac65000 - 0x9ac6bffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x9ac7c000 - 0x9ac7dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9ae78000 - 0x9ae8dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9aedf000 - 0x9af1cff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x9af25000 - 0x9af26ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x9af2a000 - 0x9b39fff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9b3a0000 - 0x9b595ff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b606000 - 0x9b614fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x9b615000 - 0x9b65eff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9b7d3000 - 0x9b8a2fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <D4D6EB78-8A6C-3474-921C-622C6951489B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x9b8a3000 - 0x9b8d1fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x9b8d2000 - 0x9b8daff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9b8db000 - 0x9b8e2ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x9ba79000 - 0x9ba89ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9ba8a000 - 0x9ba8aff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9bdd4000 - 0x9bde2ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x9c19e000 - 0x9c19fffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9c1a0000 - 0x9c1a0fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9c1a1000 - 0x9c1aafff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9c1ba000 - 0x9c1d0ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x9c1d1000 - 0x9c1d2fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9c1d3000 - 0x9c1d7ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9c1d8000 - 0x9c24efff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x9c24f000 - 0x9c35ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x9c605000 - 0x9c612fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9c613000 - 0x9c613ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9c614000 - 0x9c690ff7  libType1Scaler.dylib (??? - ???) <2560F511-3288-3367-A4E2-AD15219B6913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x9c691000 - 0x9c6cffff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0FAB8C29-2A1B-3E25-BA34-BDD832B828DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9c6d0000 - 0x9c6f8ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x9c6f9000 - 0x9c75bff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9c75c000 - 0x9c763ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9c764000 - 0x9c826fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9c827000 - 0x9c9dbff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9ca29000 - 0x9ca8dfff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9ca8e000 - 0x9cbe0fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9ccd9000 - 0x9ccfbffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xb0000000 - 0xb0006ff8  com.apple.carbonframeworktemplate (1.3 - 1.3.12) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba300000 - 0xba301ffb  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <F098D5D3-D551-3E69-8261-208A9091BBF0> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7  libGreekConverter.dylib (54.0.0 - compatibility 1.0.0) <39A9F462-05DD-383B-B01A-2B528E18D049> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba91bffd  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <5635DF40-8D8E-3B8C-B075-7B3FC0F184A4> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ff6  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <17226124-8E8A-34EB-A2C4-D4A0469CF45B> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500fff  libThaiConverter.dylib (54.0.0 - compatibility 1.0.0) <6CBA4C09-1460-3249-92C2-1D96F56ED7ED> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 50
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 46697178
        thread_create: 4
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=229.9M resident=98.4M(43%) swapped_out_or_unallocated=131.5M(57%)
    Writable regions: Total=1.6G written=538.1M(32%) resident=591.3M(35%) swapped_out=116K(0%) unallocated=1.1G(65%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 33.1M
    CG backing stores                  32.0M
    CG raster data                      128K
    CG shared images                   3512K
    CoreGraphics                          8K
    CoreServices                       3180K
    IOKit                                 8K
    IOKit (reserved)                  256.0M        reserved VM address space (unallocated)
    MALLOC                              1.3G
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    Stack                              68.1M
    VM_ALLOCATE                        16.8M
    __CI_BITMAP                          80K
    __DATA                             24.0M
    __DATA/__OBJC                       236K
    __IMAGE                             528K
    __IMPORT                            240K
    __LINKEDIT                         52.7M
    __OBJC                             1308K
    __OBJC/__DATA                       148K
    __PAGEZERO                            4K
    __RC_CAMERAS                        244K
    __TEXT                            177.2M
    __UNICODE                           544K
    mapped file                       226.3M
    shared memory                      34.9M
    shared pmap                        9744K
    ===========                      =======
    TOTAL                               2.2G
    TOTAL, minus reserved VM space      2.0G

    "An unexpected and unrecoverable problem has occurred because something prevented the text engine from being launched. Photoshop will now exit."
    You have the "bad font" disease. Check your system fonts and remove any suspicious ones you may have added recently. Then use a tool like OnyX to flush the system and Adobe font caches and try again.
    Mylenium

  • When do VI and queue references become invalid?

    Hi all,
    I have a fairly complicated problem, so please bear with me.
    1)  I have a reentrant SubVI (let's call it VI "Assign") that has an input cluster of (VI ref, queue ref) (let's call the cluster type "Refs").  If the VI ref is invalid (first execution), the VI ref and queue ref are assigned values and are passed on as an output cluster of same type.  (The VI does other things too, but for simplicity only this is important.)
    2)  The VI that calls VI "Assign" (let's call it VI "Store") is not reentrant and has a local variable of type "Refs" that is wired to the input and output of VI "Assign".  This VI effectively stores the references.  The references returned by VI "Assign" are always valid right after the call, but after the problem condition described below, they are invalid at the start of all calls before they are passed to VI "Assign".
    3)  VI "Store" is called by multiple non-reentrant VIs, so the local variables of VI "Assign" retain their values (Has been tested and verified to retain their values).  The VI causing the problem in this case is a template VI of which multiple copies are launched (let's call it VI "Template").
    The problem is that the moment an instance of VI "Template" is closed, the queue reference becomes invalid, although the actual variant value of the reference remains the same.  The VI ref can become invalid or not, depending on small changes, but is always reproducible.  I assume there must be some similarity between VI and queue refs.  After spending some time researching, the Labview help states for the Open VI Ref component "If you do not close this reference, it closes automatically after the top-level VI associated with this function executes."  In this case I assumed it means that the moment the reentrant VI "Assign" finishes, the references will get cleared ??  So I made a non-reentrant VI (let's call it VI "NR Assign") that only assigns values to the references and VI "Assign" now calls this VI (It effectively does what I described VI "Assign" does).  I keep this VI alive by using it in a VI which never terminates and since it never terminates, the references should never become invalid.  Anyone still following?  This didn't solve the problem though.  If I reproduce the same scenario using only one instance of the template VI, it works just fine.  Furthermore, the VI and queue references are never closed, to aid analysis of the problem.  Can anyone shine some light on what happens when a template VI terminates?  Could this be the problem?
    Unfortunately I cannot include the code.
    Thank you whoever is able to make sense of this.
    Christie

    Christie wrote:
    Hi all,
    I have a fairly complicated problem, so please bear with me.
    1)  I have a reentrant SubVI (let's call it VI "Assign") that has an input cluster of (VI ref, queue ref) (let's call the cluster type "Refs").  If the VI ref is invalid (first execution), the VI ref and queue ref are assigned values and are passed on as an output cluster of same type.  (The VI does other things too, but for simplicity only this is important.)
    2)  The VI that calls VI "Assign" (let's call it VI "Store") is not reentrant and has a local variable of type "Refs" that is wired to the input and output of VI "Assign".  This VI effectively stores the references.  The references returned by VI "Assign" are always valid right after the call, but after the problem condition described below, they are invalid at the start of all calls before they are passed to VI "Assign".
    3)  VI "Store" is called by multiple non-reentrant VIs, so the local variables of VI "Assign" retain their values (Has been tested and verified to retain their values).  The VI causing the problem in this case is a template VI of which multiple copies are launched (let's call it VI "Template").
    The problem is that the moment an instance of VI "Template" is closed, the queue reference becomes invalid, although the actual variant value of the reference remains the same.  The VI ref can become invalid or not, depending on small changes, but is always reproducible.  I assume there must be some similarity between VI and queue refs.  After spending some time researching, the Labview help states for the Open VI Ref component "If you do not close this reference, it closes automatically after the top-level VI associated with this function executes."  In this case I assumed it means that the moment the reentrant VI "Assign" finishes, the references will get cleared ??  So I made a non-reentrant VI (let's call it VI "NR Assign") that only assigns values to the references and VI "Assign" now calls this VI (It effectively does what I described VI "Assign" does).  I keep this VI alive by using it in a VI which never terminates and since it never terminates, the references should never become invalid.  Anyone still following?  This didn't solve the problem though.  If I reproduce the same scenario using only one instance of the template VI, it works just fine.  Furthermore, the VI and queue references are never closed, to aid analysis of the problem.  Can anyone shine some light on what happens when a template VI terminates?  Could this be the problem?
    Unfortunately I cannot include the code.
    Thank you whoever is able to make sense of this.
    Christie
    All LabVIEW refnums do get deallocated automatically when the top-level VI in whose hierarchy the refnum was created goes idle (stops executing). You will have to make sure that the creation of a refnum is done inside a VI hierarchy that stays running for the entire time you want to use that refnum.
    Rolf Kalbermatter
    Message Edited by rolfk on 06-27-2007 11:52 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • On trying to launch CS5 Photoshop: An unexpected and unrecoverable problem has occurred. Photoshop w

    I have an iMac 27" with 2.8 GHz Intel Core 17. 4 GB RAM. It's running OS X 10.6.8 Snow Leopard.
    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive.
    Since then my CS5 Photoshop comes up with this error message at each launch attempt:
    "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    I took the computer back to the repair shop. They said they got CS5 Photoshop working on my computer so I brought it home and -- this is totally inexplicable -- I STILL get the error message.
    Subsequently I've trashed CS5 Photoshop and reinstalled from the original Adobe Design Premium CS5 suite .dmg but I continue to get the same message. I've also trashed the preferences several times and the message still occurs. Creating a new user account for my computer and trying to open CS5 Photoshop there didn't help. I had no problems with fonts and Photoshop CS5 before the hard drive was changed.
    I have no idea what else to do. Any help will be greatly appreciated. Thanks!
    Here is the Photoshop Problem Report:
    Process:         Adobe Photoshop CS5 [426]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2013-01-20 10:08:41.018 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          28237 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  2014 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      399C19BD-C233-4F20-9385-CBEADC8E2EA4
    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                 0x00007fff878340b6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff878d49f6 abort + 83
    2   com.adobe.Photoshop               0x0000000100237b1b 0x100000000 + 2325275
    3   libstdc++.6.dylib                 0x00007fff810d6ae1 __cxxabiv1::__terminate(void (*)()) + 11
    4   libstdc++.6.dylib                 0x00007fff810d5e9c __cxa_call_terminate + 46
    5   libstdc++.6.dylib                 0x00007fff810d69fc __gxx_personality_v0 + 1011
    6   libSystem.B.dylib                 0x00007fff8784aeb1 unwind_phase2 + 145
    7   libSystem.B.dylib                 0x00007fff878547eb _Unwind_Resume + 91
    8   com.adobe.ape                     0x00000001222d2a61 APEStreamWrite + 10193
    9   com.adobe.ape                     0x00000001222d56bf APEStreamWrite + 21551
    10  com.adobe.ape                     0x00000001222d75dc APEStreamWrite + 29516
    11  com.adobe.PSAutomate              0x0000000121dab869 -[ScriptUIAPEStage initWithFrame:stageArgs:] + 121
    12  com.adobe.PSAutomate              0x0000000121daa8ed ScriptUI::APE_Player::apOSCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 189
    13  com.adobe.PSAutomate              0x0000000121da8a32 ScriptUI::APE_Player::apCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 66
    14  com.adobe.PSAutomate              0x0000000121da833c ScriptUI::APE_Player::apInitialize(NSView*, NSWindow*, long, bool, bool) + 172
    15  com.adobe.PSAutomate              0x0000000121d9e8f6 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 198
    16  com.adobe.PSAutomate              0x0000000121d9458e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    17  com.adobe.PSAutomate              0x0000000121c6ab2e JavaScriptUI::IJavaScriptUI() + 544
    18  com.adobe.PSAutomate              0x0000000121c6bbb0 InitJavaScriptUI() + 106
    19  com.adobe.PSAutomate              0x0000000121c6be7c CScriptPs::DoLateInitialize() + 622
    20  com.adobe.PSAutomate              0x0000000121c6cc20 CScriptPs::DoExecute(PIActionParameters*) + 630
    21  com.adobe.PSAutomate              0x0000000121c6d0fe PluginMain + 110
    22  com.adobe.Photoshop               0x00000001006fe2c3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4331399
    23  com.adobe.Photoshop               0x0000000100278000 0x100000000 + 2588672
    24  com.adobe.Photoshop               0x000000010027817d 0x100000000 + 2589053
    25  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    26  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    27  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    28  com.adobe.Photoshop               0x000000010024fb1b 0x100000000 + 2423579
    29  com.adobe.Photoshop               0x000000010027910b 0x100000000 + 2593035
    30  com.adobe.PSAutomate              0x0000000121c6c4e3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    31  com.adobe.Photoshop               0x000000010024b057 0x100000000 + 2404439
    32  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    33  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    34  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    35  com.adobe.Photoshop               0x00000001012f0007 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16856267
    36  com.apple.AppKit                  0x00007fff841f06de -[NSApplication run] + 474
    37  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
    38  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
    39  com.adobe.Photoshop               0x0000000100068e82 0x100000000 + 429698
    40  com.adobe.Photoshop               0x0000000100238308 0x100000000 + 2327304
    41  com.adobe.Photoshop               0x00000001002383a7 0x100000000 + 2327463
    42  com.adobe.Photoshop               0x0000000100002ea4 0x100000000 + 11940
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff877fec0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff87800add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff878007b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff878002de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff877ffc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108523c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010851ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108523cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   com.adobe.PSAutomate              0x0000000121dea0fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x0000000121dcc033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x0000000121dea1f6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 21:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff87820863 usleep + 57
    3   com.apple.AppKit                  0x00007fff843763a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff82401114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001233c9a20  rcx: 0x00007fff5fbfd808  rdx: 0x0000000000000000
      rdi: 0x00000000000001aa  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfd820  rsp: 0x00007fff5fbfd808
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff878300fa  r11: 0x0000000000000202
      r12: 0x00007fff5fbfd830  r13: 0x00007fff5fbfdde0  r14: 0x00007fff5fbfde28  r15: 0x000000012339e3f0
      rip: 0x00007fff878340b6  rfl: 0x0000000000000202  cr2: 0x000000011a1ce044
    Binary Images:
           0x100000000 -        0x1026b5fff +com.adobe.Photoshop 12.0 (12.0x20100407.r.1103) (12.0) <B69D89E5-01DD-C220-48B1-E129D0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103295000 -        0x10330dfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103323000 -        0x10332afff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103332000 -        0x103342ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10334d000 -        0x103353ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10335a000 -        0x103560fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035f3000 -        0x1037a1fef +com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) <C36CA603-EFFB-2EED-6CEE-0B532CE052D2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103843000 -        0x103c73fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dcd000 -        0x1040f8ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041c5000 -        0x1044edfe7 +AdobeCoolType ??? (???) <9E03F47A-06A3-F1F4-AC4C-76F12FACC294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104585000 -        0x1045a6ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045b3000 -        0x1045deff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045f0000 -        0x104734fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10477b000 -        0x1047e0fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047fc000 -        0x104812fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10482a000 -        0x1048c0fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104937000 -        0x104955fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104972000 -        0x104ba1fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c80000 -        0x104d13fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d33000 -        0x10507cfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10520c000 -        0x10538efe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105430000 -        0x1057a8fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058f2000 -        0x105a06fff +AdobeACE ??? (???) <E359887D-1E7F-5E62-CB8D-37CE4DBFB4D8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a2b000 -        0x105a47fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a51000 -        0x105abbff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105aee000 -        0x105bc1ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105be1000 -        0x105be5ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105be9000 -        0x105c60fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c81000 -        0x105cdfffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ced000 -        0x106188fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10670e000 -        0x106764feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1067a9000 -        0x1067ceffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106808000 -        0x10680dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106812000 -        0x1069adfff +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <CB23C5AA-0E4B-182B-CB88-57DD32893F92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a55000 -        0x106a6efeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a7f000 -        0x106a85feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a8c000 -        0x106a8cff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a8f000 -        0x106a97ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106a9e000 -        0x106b84fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x106f78000 -        0x106f7afef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106ff9000 -        0x106ffafff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108500000 -        0x108570ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1086cd000 -        0x1086e4fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1086e8000 -        0x108709fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x10870d000 -        0x10871cfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x108720000 -        0x108732fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x108737000 -        0x10873ffff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x1087d2000 -        0x1087f8fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11a6de000 -        0x11a6e5fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11aedb000 -        0x11aee4fff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11c840000 -        0x11c9d3fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11ca04000 -        0x11ce20fff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
           0x11d100000 -        0x11d163ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11d1e9000 -        0x11d254ff0 +MultiProcessor Support ??? (???) <1334B570-C713-3767-225F-3C1CBA1BF37C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x121c68000 -        0x121ec4fef +com.adobe.PSAutomate 12.0 (12.0) <35AEF3A8-2E64-71D1-39ED-A34760CAAC29> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x1220da000 -        0x12217effb +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <332E7D8D-BF42-3177-9BC5-033942DE35E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x1221e0000 -        0x122280fef +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <53DD7281-5B59-7FF5-DB57-C9FD60E524C7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1222c6000 -        0x1222e6ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x123500000 -        0x12351cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800e0fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff800e1000 -     0x7fff80104fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff80105000 -     0x7fff8014dff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8014e000 -     0x7fff801a1ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff801b5000 -     0x7fff801c9fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff801f4000 -     0x7fff809fefe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff80b28000 -     0x7fff80ba7fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80ba8000 -     0x7fff80bf4fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8108c000 -     0x7fff81109fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff81116000 -     0x7fff8112dfff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff814ad000 -     0x7fff8166bfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff8166c000 -     0x7fff81670ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff81671000 -     0x7fff81671ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff81a26000 -     0x7fff81a90fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff81ac1000 -     0x7fff81ad0fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81ad1000 -     0x7fff81ad1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff81ad2000 -     0x7fff81e6ffe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81e70000 -     0x7fff81eb9fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81eba000 -     0x7fff81ebffff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff81ec0000 -     0x7fff81efafff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff81efb000 -     0x7fff8222ffef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff82230000 -     0x7fff823effff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff823f0000 -     0x7fff82672fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff82673000 -     0x7fff8273efff  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <86982FBB-B224-CBDA-A9AD-8EE97BDB8681> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8273f000 -     0x7fff8275ffff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff82760000 -     0x7fff8276eff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8279f000 -     0x7fff827d0fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8283a000 -     0x7fff8283dfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff82842000 -     0x7fff8285bfff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff82912000 -     0x7fff82a2cfff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82a71000 -     0x7fff82a73fff  libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff82a74000 -     0x7fff82a7aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff82a7b000 -     0x7fff82d04ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82d59000 -     0x7fff831a0fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff831a1000 -     0x7fff831b7fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff831ef000 -     0x7fff83210fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8361c000 -     0x7fff836a8fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff83733000 -     0x7fff83744ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff83745000 -     0x7fff8382afef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8382b000 -     0x7fff83923ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <44AADE50-15BC-BC6B-BEF0-5029A30766AC> /usr/lib/libiconv.2.dylib
        0x7fff83924000 -     0x7fff839e1fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff83a17000 -     0x7fff83a32ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff83e3e000 -     0x7fff83ef3fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff83ef4000 -     0x7fff83ef9fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff83efa000 -     0x7fff83f37ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83faa000 -     0x7fff8404afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8404b000 -     0x7fff8404bff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8404c000 -     0x7fff84102ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff84186000 -     0x7fff841e6fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff841e7000 -     0x7fff84be1ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84c9b000 -     0x7fff84cdeff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84f1a000 -     0x7fff84fd3fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84fd4000 -     0x7fff85112fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8511f000 -     0x7fff85140fe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff8530f000 -     0x7fff8542efe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85498000 -     0x7fff854adff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff854be000 -     0x7fff8556efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff855d8000 -     0x7fff855fdff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff85622000 -     0x7fff85622ff7  com.apple.Carbon 150 (152) <FA427C37-CF97-6773-775D-4F752ED68581> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8564b000 -     0x7fff8568cfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8571b000 -     0x7fff857a0ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff857a1000 -     0x7fff857c9fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff85933000 -     0x7fff85a4afef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff85a7b000 -     0x7fff85a7eff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff85a7f000 -     0x7fff85b0ffff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff86bcf000 -     0x7fff872cbff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff872cc000 -     0x7fff872cefff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff872cf000 -     0x7fff872faff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff87309000 -     0x7fff87344fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff87345000 -     0x7fff8735bfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8735c000 -     0x7fff8741dfff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8741e000 -     0x7fff874dffef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff874ea000 -     0x7fff874f0ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff8750d000 -     0x7fff8758bff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff877df000 -     0x7fff877e4ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff877e5000 -     0x7fff879a6fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87a8b000 -     0x7fff87a98fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff87ad8000 -     0x7fff87c0dfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87c0e000 -     0x7fff87c55ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87c68000 -     0x7fff87cb7ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff87cc4000 -     0x7fff87e3bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87e3c000 -     0x7fff87e4efe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff87e58000 -     0x7fff87e63ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff87ef4000 -     0x7fff87f8efe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff87fa8000 -     0x7fff87facff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87fad000 -     0x7fff87fadff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff880bf000 -     0x7fff88193fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff88419000 -     0x7fff88419ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8842e000 -     0x7fff88431ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff88455000 -     0x7fff88456ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff88463000 -     0x7fff88464fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff88477000 -     0x7fff88477ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88478000 -     0x7fff884c2ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff884c3000 -     0x7fff884c4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff884c5000 -     0x7fff884ecff7  libJPEG.dylib ??? (???) <472D4A31-C1F3-57FD-6453-6621C48B95BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff8856a000 -     0x7fff88868fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff88869000 -     0x7fff8886fff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88870000 -     0x7fff888c6fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff8973b000 -     0x7fff8976eff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8976f000 -     0x7fff897c4ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff897e1000 -     0x7fff897e8fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff897e9000 -     0x7fff897fdff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff897fe000 -     0x7fff8980dfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff898aa000 -     0x7fff898ebfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff89902000 -     0x7fff89d45fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac11,1, BootROM IM111.0034.B02, 4 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.54f36
    Graphics: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa140000 / 6
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa130000 / 5
    USB Device: Intern

    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive
    It depends on how the program was transfered.  If direct file copy it probably will not work, as all the files are not in one directory.  It is usually safest to reinstall from a disk or download.  You might want to unistall the programs and run Adobe Script Cleaner and then reinstall.

  • Re@lted t0 bluetooth dongle, stack and configuration.. .......

    Hi to all,
    Those r new or require some more info realted to STACK and statring the prohect read the following page
    http://www.cs.hku.hk/~fyp05016/kyng/bt_j9.htm
    This is may be benifical to u.
    Anyhow, i am making the my final year project related to Bluetooth and i am trying to use AVETANA which can be dowloaded from the following link:
    http://www.avetana-gmbh.de/avetana-gmbh/downloads/relicense.idmexieubncmqxqphuvrohkpjcgwbv.eng.xml
    After u visit this link u will see that, avetana require three bluetooth address. I have inputed the address 22:22:22:22:22:22 ( or 22-22-22-22-22-22). I have extracted this address from start-run-ipconfig/all after i install the device dirver software "BlueSoleil_1.6.2.1" in Win XP OS. My bluetooth dongle is "ISSC Bluetooth Device" which i extracted from Device Manager (Start - Right Click My computer - Properties - Hardware - Device Manager). Moreover my VID and UID of the bluetooth dongle is "USB\VID_1131&PID_1001". I have even cheked the microsoft XP site
    http://support.microsoft.com/kb/841803/
    for the sake of conformation that whether my bluetooth dongle is supported my Win XP sp2 and the above VID and UID is not present there.
    Now the problem is that site doesnot accept my above written address, and so i am unable to download the avetana,,,
    In the end(after searching on the net) I have concluded that might the following reason may be there:
    1) my bluetooth dongle is either of some local company manufacturer which is not recognized by win XP
    2) i am using wrong device driver
    3) i am unable to configure properly the bluetooth device.
    Moreover, even after installing the device driver (BlueSoleil_1.6.2.1) i am unable to see any bluetooth icon in the Control panel so that i can see/change the bluetooth property.
    Plz help me up..
    and if i am thinking correct, which company dongle i should purchase or which other bluetooth stack (say like atinav, BlueCove) i should use...
    I even want to know that with respect to stack (say atinav) i need to purchase the dongle or not..
    moreover, i donot want to buy any stack as this is only my academic project so i donot have so much money to buy a stack (like atinav)
    thx in advance..

    Bluetooth forum
    http://vietcovo.com http://forum.vietcovo.com

  • PI 7.1(dual stack) and PI 7.31(Single stack) -

    Friends,
    I have a proxy to proxy scenario - Proxy --> PI --> Proxy
    We have two servers PI 7.1(dual stack) and PI 7.31(Single stack)
    i did the development in ESR and my ESR is pointing to PI 7.1, when i execute the scenario i receive one error message "receiver could not be determined", i ensured that all my input is correct, still i get the same error message.
    the expectation is my scenario should point to PI 7.31, Can some one help me where and what settings i need to make in-order to make it work.
    Please Note: All my data is correct and i read some scn forums wherein they asked to refresh the cache , i have refreshed the cache also still the problem persists.
    Thanks in advance!

    Iñaki Vila
    Communication component in ID is the same as sender side.
    could you share your sender configuration?
    Did you mean Tcode - SXMB_ADM and under that Sender/Receiver configuration
    Krupa Rao Atluri
    In ID steps are correctly defined.
    I spoke to my colleague he hinted that at RUN TIME we want to point to PI7.31, he mentioned config change needed in SXMB_ADM
    any further inputs from any one could be useful.

  • On save as: Unexpected and unrecoverable problem has occurred. Photoshop will now exit. (Mac 10.7.3)

    Hello,
    We are working on Macinthosh intel - Mac Pro Intel Xeon september 2007, with MacOs 10.7.3.
    After trying to install the beta version of Photoshop CS6, we got serious problems.
    - The CS5 Photoshop and Acrobat 9 is not working anymore.
    When we want to "save as…", both application will crash.
    When we do "save as weboptimized", un error says that the file already exists.
    We did not manage to install the CS6 Photoshop beta neither.
    I tried EVERYTHING supposed to do in other forums and in the adobe forums, like:
    - latest version of AdobeApplication Manager
    - Adobe cleaner tool
    - Adobe support advisor
    - cleaning manually everything on the disk which containes CS6
    - Reparing Autorisation
    - Trying to reinstall CS5 (but without issue
    - trash prefs
    - deactivate and reactivate PHotoshop
    and some others…
    When trying to "save as" or save as weboptimized…", the following errors appears:
    The operation could not be completed.
    An unexpected and unrecoverable problem has occurred. Photoshop will now exit.
    When trying to "save as weboptimized" the following error appears:
    A file or directory already exists with the same name.
    When exporting or "save as" in Acrobat:
    Acrobat is blocked, everything in the application menu is turned gray but there is not open window.
    I have to exit with "esc+Alt+Command"
    All this problems occured after installation of Photoshop Beta CS6, which could not be completed because of some more errors causing a licence conflict with CS5.
    We were also trying the Adobe support advisor, we got the following error massage:
    Exit Code: 16
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW039 ...
    -------------------------------------- Summary --------------------------------------
      - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW039: Failed to load deployment File
    AND
    Exit Code: 7
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW013 ... WARNING: DW017 ...
    -------------------------------------- Summary --------------------------------------
      - 0 fatal error(s), 1 error(s), 1 warning(s)
    WARNING: DW017: PayloadPolicyNode.SetAction: IN payload {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0 is required by {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core 12.0.0.0 but isn't free. Reason: Language not supported
    ERROR: DW013: Unable to locate volume for path. Please verify that path [UserDocuments] is a valid path. Please ensure that if any intermediate directories exist, they are valid directories and not files/symlinks
    Here is the content of the Crash Report:
    Process:    
    Adobe Photoshop CS5 [1403]
    Path:       
    /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [299]
    Date/Time:  
    2012-04-17 10:10:50.329 +0200
    OS Version: 
    Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[1403]: garbage collection is OFF
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff86d78ce2 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c7d2 pthread_kill + 95
    2   libsystem_c.dylib        
    0x00007fff909fda7a abort + 143
    3   com.adobe.Photoshop      
    0x00000001002369eb 0x100000000 + 2320875
    4   libc++abi.dylib          
    0x00007fff897d8001 safe_handler_caller(void (*)()) + 11
    5   libc++abi.dylib          
    0x00007fff897d7ff6 __cxxabiv1::__terminate(void (*)()) + 9
    6   libc++abi.dylib          
    0x00007fff897d8346 __cxa_call_terminate + 59
    7   libc++abi.dylib          
    0x00007fff897d87c3 __gxx_personality_v0 + 207
    8   libunwind.dylib          
    0x00007fff8a21f4c6 unwind_phase2 + 160
    9   libunwind.dylib          
    0x00007fff8a21e96e _Unwind_RaiseException + 218
    10  com.apple.FinderKit      
    0x00007fff8b3a2b64 -[FI_TColumnViewController closeTarget] + 243
    11  com.apple.FinderKit      
    0x00007fff8b3de1d0 -[FIFinderViewGutsController destroyBrowserView] + 238
    12  com.apple.FinderKit      
    0x00007fff8b3dbdcc -[FIFinderViewGutsController prepareToHide] + 369
    13  com.apple.FinderKit      
    0x00007fff8b3dbee4 -[FIFinderViewGutsController setExpanded:] + 44
    14  com.apple.FinderKit      
    0x00007fff8b3e40ab -[FIFinderView viewWillMoveToWindow:] + 265
    15  com.apple.AppKit         
    0x00007fff8c5b9e31 -[NSView _setWindow:] + 238
    16  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    17  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    18  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    19  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    20  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    21  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    22  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    23  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    24  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    25  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    26  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    27  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    28  com.apple.AppKit         
    0x00007fff8c6dfb57 -[NSWindow dealloc] + 1262
    29  com.apple.AppKit         
    0x00007fff8c9e34f4 -[NSSavePanel dealloc] + 612
    30  com.apple.AppKit         
    0x00007fff8c4e0145 -[NSWindow release] + 535
    31  libobjc.A.dylib          
    0x00007fff897ed03c (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 434
    32  com.apple.CoreFoundation 
    0x00007fff8fbecb05 _CFAutoreleasePoolPop + 37
    33  com.apple.Foundation     
    0x00007fff8423a51d -[NSAutoreleasePool release] + 154
    34  com.adobe.Photoshop      
    0x00000001012f2d2e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16869522
    35  com.adobe.Photoshop      
    0x00000001000824f8 0x100000000 + 533752
    36  com.adobe.Photoshop      
    0x0000000100c3243c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9789344
    37  com.adobe.Photoshop      
    0x0000000100080e25 0x100000000 + 527909
    38  com.adobe.Photoshop      
    0x0000000100c327e2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9790278
    39  com.adobe.Photoshop      
    0x00000001004ca733 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2024087
    40  com.adobe.Photoshop      
    0x0000000100074b6f 0x100000000 + 478063
    41  com.adobe.Photoshop      
    0x00000001000711ba 0x100000000 + 463290
    42  com.adobe.Photoshop      
    0x00000001000665d3 0x100000000 + 419283
    43  com.adobe.Photoshop      
    0x0000000100066696 0x100000000 + 419478
    44  com.adobe.Photoshop      
    0x00000001012e1ef4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800344
    45  com.apple.AppKit         
    0x00007fff8c4a31f2 -[NSApplication run] + 555
    46  com.adobe.Photoshop      
    0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    47  com.adobe.Photoshop      
    0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    48  com.adobe.Photoshop      
    0x00000001000682e6 0x100000000 + 426726
    49  com.adobe.Photoshop      
    0x00000001002371f1 0x100000000 + 2322929
    50  com.adobe.Photoshop      
    0x0000000100237281 0x100000000 + 2323073
    51  com.adobe.Photoshop      
    0x00000001000022f4 0x100000000 + 8948
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff86d797e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff84b045be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff84b0314e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.amt.services   
    0x0000000108723c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services   
    0x000000010871ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services   
    0x0000000108723cbe AMTThread::Worker(void*) + 28
    5   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib   
    0x00007fff86d78e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff909c0dea nanosleep + 164
    2   com.adobe.PSAutomate     
    0x00000001166dbe4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x00000001166bdd83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x00000001166dbf46 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib   
    0x00007fff86d7767a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff86d76d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8fbeb6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8fbf3e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8fbf3676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO    
    0x00007fff90148541 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO    
    0x00007fff9013e6b2 CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dbcf0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dd4ce6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib   
    0x00007fff86d78d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000119885982 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000119884adf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000119883b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000119883b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000119883c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x000000011987e30d Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x000000011987e4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x000000011987ef2f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x000000011987f01d Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x000000011988231f Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x00000001198825c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x0000000119882b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x0000000119882d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000119874daf Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000119876295 Login + 7123
    16  ServiceManager-Launcher.dylib
    0x00000001198832a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x00000001198856c1 Invoke + 53315
    18  libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    19  libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dbcf0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dd4ce6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib   
    0x00007fff86d776b6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw      
    0x00000001279ec791 EntryFM + 2523937
    2   com.adobe.CameraRaw      
    0x0000000127a1eaa3 EntryFM + 2729523
    3   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    4   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13

    Hi again,
    We found the solution. I trie to give some details, if some other folks have a similar problem, perhaps they can find their solution with everything discussed in this topic.
    All this was not working, after trying it several times:
         Disk Utility> Repair Disk & Repair Permissions
         Cocktail OSX (clear all caches)
         Reboot and test
         delete all printers
         then look for a CS6 cleaner like http://www.adobe.com/support/contact/cscleanertool.html
         rebuild diskstructure and filestructure with several utilities like Techtool, Onyx.
    We could not uninstall the complete Photoshop cs5 only, because in case of uninstalling the whole Mastercollection, this is much to much work to reinstall all of the extension from Dreamweaver which have to be activated and installed one by one.
    What has been working is:
          TRY a New User Account (to rule out User preference/settings) !!!
    So this gave us un idea:
    Compare the library of both USER-ACCOUNTS : "ALICE" and the new one we called "TEST".
    Then we RENAMED the following folders in the /USER/LIBRARY: "Caches", "Recent Servers", "Saved Application State" and crated a new folder with the same name (we deleted it after, in case there will be some problems to restore the old ones)
    We put all the INVISIBLE FILES and FOLDERS present in the USER folder which names are beginning with a .dot, like .filename (e.g.: ".adobe", ".bash_history", ".BridgeCache", etc.) into another folder which we are going to delete later on.
    Finally we deleted all files "suspected" not to be there in the ALICE user account, in comparision to the TEST USER ACCOUNT.
    And "miracle": Everything is working again, after 2 days of searching…
    Thanks to everyone of you.
    Best regards,
    Alice

Maybe you are looking for