Perfect Number

So far I have
import java.util.Scanner; // program uses class Scanner
public class perfect
     // main method begins execution of Java application
     public static void main(String args[])
          // create Scanner to obtain input from command window
          Scanner input = new Scanner(System.in);
          int number;
          int sum;
          int calculation;
          int     i;
          calculation = 0;
          for ( i = 1; i < number; i = i + 1 ) {
                  if ( number % i == 0)
                     calculation = calculation + i;
          sum = calculation;
          if ( number == sum )
             System.out.printf( "d% is a perfect number", number );
          else
             System.out.printf( "d% is not a perfect number", number );
     } // end method main
} // end class perfectBut I get the compile error:
variable number might not have been initialized
          for ( i = 1; i < number; i = i + 1 ) {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

So far I have
import java.util.Scanner; // program uses class
Scanner
public class perfect
     // main method begins execution of Java application
     public static void main(String args[])
// create Scanner to obtain input from command
nd window
          Scanner input = new Scanner(System.in);
          int number;
          int sum;
          int calculation;
          int     i;
          calculation = 0;
          for ( i = 1; i < number; i = i + 1 ) {
                  if ( number % i == 0)
                     calculation = calculation + i;
          sum = calculation;
          if ( number == sum )
System.out.printf( "d% is a perfect number",
ber", number );
          else
System.out.printf( "d% is not a perfect number",
ber", number );
     } // end method main
} // end class perfectBut I get the compile error:
variable number might not have been initialized
          for ( i = 1; i < number; i = i + 1 ) {So you need to initialise the variable "number".
int number;You have only declared a variable called number but not given it an initial value. So when you do something like i < number in the loop there is no way to know if i is less than number...

Similar Messages

  • Perfect number assistance

    Hello,
    I'm currently enrolled in a JAVA course and doing very horrible. This course is required for my degree. I have been reviewing the forums and got this far on a program that will ask the user to enter a number and this program will find all the perfect numbers less then the number entered by the user. Here is the code I have so far. Any assistance would be greatly appreciated.
    import java.util.Scanner;
    public class Stalcup_Robert_6_01_perfect
    {//Begin Class
    public static void main (String[ ] args)
    {//Begin main method
              int testNum;     
              //Create a scanner object for keyboard input
              Scanner keyboard = new Scanner(System.in);
              //Recieve keyboard entry
              System.out.println("Please enter in any number?");
              //Hold keyboard entry
              testNum = keyboard.nextInt();
         }//End Main methhod
         public static void factorSum()
              int num=1, testNum, elements=0, sum=0, p=0, sum1=0, sum2=0, factors, PrimeNumSequence;
              while (num < testNum)
                   for(int a = 1; a<num; a++)
                        if(num % a == 0) factors[p++] = a;
                   int[] factors = new int[elements];
                   for(int a = 1; a<num; a++)
                        if(num % a == 0) factors[p++] = a;
                   for(int a=0; a < factors.length; a++)
                        if(PrimeNumSequence.isPrime(factors[a]) && factors[a] > 2)
                             sum1 = factors[a] * factors[a-1];
                             sum2 = factors[a-1] * 2;
                             sum2 = sum2 - 1;
                        if(sum1 == num && sum2 == factors[a])
                        System.out.println(num + " is a perfect number of " + testNum);
    }//End Class

    I think what you want to do is to use a recursive method to find out the UNIQUE factors of a number smaller than the given. then check if it is a perfect number. I am thinking you can use either a set or array to collect the factors, then get the sum of the set or array and compare the sum with the number that was factored.
         private static Set<Integer> A = new HashSet<Integer>();
         public static void primeFactors(int num)
              int d;
             if (num > 1)
                  for (d = 2; (num % d) > 0; d++);          
                           A.add(d);
                    primeFactors(num / d);
         }

  • Specific number

    Hi, i have written a program, i can tell which numbers are perfect, abundant or deficient. i can tell the percentages, and i can tell how many of these numbers i have.
    However, i don't know how to get an specific number, for example, if i enter 500, there are 3 perfect numbers, 6, 28, and 496. i need to be able to printout the actual numbers.
    public class NumPAD
         // instance variables
         private int sum; // sum of the factors
         private int num; // the number entered
         private double perfectCount; // perfect numbers count
         private double abundantCount; // abundant numbers count
         private double deficientCount; // deficient numbers count
         private double total; // sum of all types of numbers
         private String name; // the user's name
         /**Creates the class object
          * @param num user's name
          * @param name the user's name
         public NumPAD(int num, String name)
              // variables are initialized
              this.num = num;
              this.name = name;
          * Returns the sum of the factors
          * @return the sum of the factors
         public int sumFactors(int num)
              sum = 0;
              // it creates a for loop, it cannot go past half the numbers entered
              for(int i =     1; i <= num/2; i++)
                   // filters the factors
                   if(num % i ==0)
                        // sum gets all the factors and adds them up
                        sum = sum + i;
              return sum;
          * Returns the number entered
          * @return the number entered
         public int getNum()
              return num;
          * Returns the user's name
          * @return the user's name
         public String getName()
              return name;
          * Creates a variable to count the perfect numbers
         public void setPerfectCount()
              perfectCount++;
          * Creates a variable to count the abundant numbers
         public void setAbundantCount()
              abundantCount++;
          * Creates a variable to count the deficient numbers
         public void setDeficientCount()
              deficientCount++;
          * Returns the total of all type numbers
          * @return the total of all type numbers
         public double getTotal()
              total = perfectCount+abundantCount+deficientCount;
              return total;
          * Returns the perfect count
          * @return the perfect count
         public double getPerfectCount()
              return perfectCount;
          * Returns the abundant count
          * @return the abundant count
         public double getAbundantCount()
              return abundantCount;
          * Returns the deficient count
          * @return the deficient count
         public double getDeficientCount()
              return deficientCount;
    // the test class
    import java.util.Scanner;
    import java.text.DecimalFormat;
    public class NumPADTester
         // a class that gets the numbers and percentages of perfect, abundant and
         // deficient numbers
         public static void main(String[] args)
              Scanner input = new Scanner(System.in);
              String exit = "1";
              // a do-while loop to run until the user's gets bored
              do
              // asks for the user's name
              System.out.println("What is your name? ");
              String name = input.next();
              System.out.println();
              // asks the user to enter a number               
              System.out.println("Enter a number: ");
              int num = input.nextInt();
              System.out.println();
              // constructor using the user's input
              NumPAD howdy = new NumPAD(num,name);
              // it creates a for-loop
              for(int i = 1; i <= num; i++)
                      System.out.print(i);
                   //System.out.println(howdy.getNum());
                   //System.out.println(howdy.sumFactors(i));
                      // it gets the perfect numbers
                      if (i == howdy.sumFactors(i))
                       System.out.println(" PERFECT");
                       howdy.setPerfectCount();
                      // it gets the abundant numbers
                      else if(i < howdy.sumFactors(i))
                       System.out.println(" ABUNDANT");
                       howdy.setAbundantCount();
                      // it gets the deficient numbers
                      else
                           System.out.println(" DEFICIENT");
                           howdy.setDeficientCount();
                System.out.println();
                DecimalFormat round = new DecimalFormat("0.##");
                System.out.println();
                // it gets the percentages of perfect numbers
                System.out.println("The percentage of perfect numbers is: "
                + round.format(howdy.getPerfectCount()/howdy.getTotal()*100));
                System.out.println();
                // it gets the percentages of abundant numbers
                System.out.println("The percentage of abundant numbers is: "
                + round.format(howdy.getAbundantCount()/howdy.getTotal()*100));
                System.out.println();
                // it gets the percentages of deficient numbers
                System.out.println("The percentage of deficient numbers is: "
                + round.format(howdy.getDeficientCount()/howdy.getTotal()*100));     
                System.out.println();
                // it gets the amount of perfect numbers
                System.out.println("The number of perfect numbers is: "
                +(int)howdy.getPerfectCount());
                System.out.println();
                // it gets the amount of abundant numbers
                System.out.println("The number of abundant numbers is: "
                +(int)howdy.getAbundantCount());
                System.out.println();
                // it gets the amount of deficient numbers
                System.out.println("The number of deficient numbers is: "
                +(int)howdy.getDeficientCount());
                System.out.println();
                //a do-while loop that asks the user of he/she wants to enter another
                // number
                do
              System.out.print("Do you want to enter another number? (1)Yes, (2)No ");
              exit = input.next();          
              while(!exit.equals("1") && !exit.equals("2"));
              System.out.println();
              if(exit.equals("2"))
                   System.out.println("Goodbye " + howdy.getName());
                   break;
              while(exit.equals("1"));
    }Any ideas on how to get an specific number??
    thanks in advance.

    Well, i want to the print the numbers, in the regular old way, System.out.print, i dont need an GUI,
    i just need for example,
    1 deficient
    2 deficient
    3 deficient
    4deficient
    5 deficient
    6 perfect,
    i equals the numbers, so i need to print i alone. this is what i need:
    enter a number: <USER ENTERS 6>
    then i want to dysplay perfect numbers,
    so the program prints out:
    "the perfect number(s) is/are: 6
    i know i gives me the numbers, but how do i get i out of the loop and print just i?? i know what i need to do, it looks simple in theory, i just dont know how to extract it.
    thanks for the support.

  • Having problem with simple variable use in another class

    I have a variable made by input from my main class file called upperLimit. I have an external class file in which I would like to use the variable created by the input for upperLimit, but I have forgotten how to go about it. The objective of the program is to output all perfect numbers from 1-upperLimit.
    This is my main class:
    import java.util.Scanner;
    public class Lab13aab
    public static void main(String args[])
    System.out.print("In the range of [1-10000] what will the upper limit be for analysis? ===> ");
    Scanner input = new Scanner(System.in);
    int upperLimit = input.nextInt();
    System.out.println();
    checkToSee isItPerfect = new checkToSee();
    int numToCheck;
    for(numToCheck=1; numToCheck>=upperLimit; numToCheck++)
    isItPerfect.analyze();
    }and this is my external class which checks to see if an individual number is a perfect number or not:
    public class checkToSee
    public void analyze()
    int total=1;
    int factor;
    for(factor=2;factor<upperLimit;factor+…
    if(upperLimit%factor==0)
    total = total + factor;
    if(total==upperLimit)
    System.out.println(upperLimit + " is a perfect number!");
    System.out.println();
    }

    Hy Why ;-)!
    Let me guess... you're both new to Java AND Object Orientation? Because you're code (apart from the fact that it is not working) is purely procedural and has nothing to do with object orientation (at least most of it). Have you programmed in C/C++ before?
    See the [The Java Tutorial|http://java.sun.com/docs/books/tutorial/java/javaOO/index.html] for more infos...
    Greetz, Oliver
    Edited by: Trollhorn on Aug 29, 2009 11:02 AM

  • Problem concerning parsing int from .dat input

    The following program takes information form a ".dat" file, stores it and manipulates it. However, I am having a weird problem. Whenever I try to parse a n int from a certain point in the file (the end of a line) I keep getting thrown a java.lang.NumberFormatException. I understand why this would be thrown if I was sending it a wrong number, but, I am not. In fact the token before the last one sends it the same number and it parses fine. Here is the problem code;
    public void getPrice(Scanner scanner)
    while(scanner.hasNextLine())
    //puts into string the next scan token
    String s = scanner.next();
    //takes the scan toke above and puts it into an editable enviroment
    stringToken = new StringTokenizer(s, " ", false);
    while(stringToken.hasMoreTokens())
    //moves position within string in file by one
    position++;
    /*Starts data orignazation by reading from each perspective field
    * 1 = day
    * 2 = day of month
    * 3 = month
    * 4 = year
    if(position == 1)
    String dayFromFile = stringToken.nextToken();
    int dayNum = Integer.parseInt(dayFromFile);
    System.out.print(days[dayNum-1] +" ");
    else if(position == 2)
    System.out.print(stringToken.nextToken() + "/");
    else if(position == 3)
    System.out.print(stringToken.nextToken() + "/");
    else if(position == 4)
    System.out.print(stringToken.nextToken() +"\n");
    //if it is in [buy] area, it prints
    else if(position == 8)
    String buy = stringToken.nextToken();
    System.out.println("Buy: " +buy );
    currentBuyPrice = Integer.parseInt(buy);
    if(currentBuyPrice < 0)
    currentBuyPrice = 0;
    if(currentBuyPrice > buyPrice)
    buyPrice += currentBuyPrice;
    if(currentBuyPrice == buyPrice)
    buyPrice +=0;
    else
    buyPrice -= currentBuyPrice;
    //if it is in [sell] area, it prints, and resets the position to zero because line is over
    else if(position == 9)
    String sell = stringToken.nextToken();
    System.out.println("Sell: " +sell);
    **currentSellPrice = Integer.valueOf(sell).intValue();;
    if(currentSellPrice < 0)
    currentSellPrice = 0;
    else if(currentSellPrice > sellPrice)
    sellPrice += currentSellPrice;
    else if(currentSellPrice == sellPrice)
    sellPrice +=0;
    else
    sellPrice -= currentSellPrice;
    scanner.nextLine();
    position = 0;
    if(scanner.hasNextLine() == false)
    System.out.println("Net change of buy price: " buyPrice "\n Net change of sell price: " +sellPrice);
    //discards all other string areas
    else
    stringToken.nextToken();
    **The problem is here. The string prints as a perfect number, no spaces or anything. I thought it could be because the number was "-1" but I tried it without the "-" and it still threw the same thing. The really weird thing is that the buy code works fine, and it parses all ints I send it fine.
    EDIT:
    Here is how the .dat looks;
    1 5 15 2006 18 26 12 -1 -1
    1 5 15 2006 18 32 20 -1 -1
    1 5 15 2006 18 38 29 -1 -1
    It is the last "-1" that can not be parsed. I tried putting an excape character at the end so it looked;
    1 5 15 2006 18 26 12 -1 -1 &
    1 5 15 2006 18 32 20 -1 -1 &
    1 5 15 2006 18 38 29 -1 -1 &
    That did nothing.

    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    import java.awt.event.*;
    public class CSE extends JFrame implements ActionListener
    //GUI COMPONENTS
    JTextField input = new JTextField(20);
    JButton submit = new JButton("submit");
    //COMPONENTS FOR DATE; OBTAINING CORRECT FOLDER
    String days[] = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
    Calendar calSource = Calendar.getInstance();
    int day = calSource.get(Calendar.DAY_OF_MONTH);
    int month = calSource.get(Calendar.MONTH);
    int year = calSource.get(Calendar.YEAR);
    int monthCheck [] = {Calendar.JANUARY, Calendar.FEBRUARY, Calendar.MARCH, Calendar.APRIL, Calendar.MAY, Calendar.JUNE, Calendar.JULY, Calendar.AUGUST, Calendar.SEPTEMBER, Calendar.OCTOBER, Calendar.NOVEMBER, Calendar.DECEMBER};
    int dayS;
    int monthS;
    int yearS;
    //if there is file found
    boolean proceed = false;
    //int data for analysis
    int buyPrice;
    int currentBuyPrice;
    int sellPrice;
    int currentSellPrice;
    //toold for parsing and decoding input
    String inputS = null;
    String s = null;
    StringTokenizer stringToken = null;
    Scanner scanner;
    int position = 0;
                        public CSE()
                                    super("Test CSE");
                                    setDefaultCloseOperation(EXIT_ON_CLOSE);
                                    input.setBackground(new Color(0, 80, 250));
                                    submit.addActionListener(this);
                                    getContentPane().add(input, BorderLayout.SOUTH);
                                    getContentPane().add(submit, BorderLayout.NORTH);
                                    setSize(500, 500);
                                    setVisible(true);
                                        public void actionPerformed(ActionEvent e)
                                            getMonth();
                                            inputS = input.getText();
                                            FileReader newRead = null;
                                                    try {
                                                           newRead = new FileReader(monthS +"-" +day +"-" +year +"/" +inputS +".dat");
                                                           proceed = true;
                                                        catch(FileNotFoundException f)
                                                           System.out.println("File not found");
                                                           proceed = false;
                                          if(proceed)
                                          BufferedReader bufferedReader = new BufferedReader(newRead);
                                          scanner  = new Scanner(bufferedReader);
                                          scanner.useDelimiter("\n");
                                          getPrice(scanner);
                                    public void getPrice(Scanner scanner)
                                        while(scanner.hasNextLine())
                                            //puts into string the next scan token
                                            String s = scanner.next();
                                            //takes the scan toke above and puts it into an editable enviroment
                                            stringToken = new StringTokenizer(s, " ", false);
                                            while(stringToken.hasMoreTokens())
                                                             //moves position within string in file by one
                                                               position++;
                                                           /*Starts data orignazation by reading from each perspective field
                                                            * 1 = day
                                                            * 2 = day of month
                                                            * 3 = month
                                                            * 4 = year
                                                           if(position == 1)
                                                               String dayFromFile = stringToken.nextToken();
                                                                int dayNum = Integer.parseInt(dayFromFile);
                                                              System.out.print(days[dayNum-1] +" ");
                                                           else if(position == 2)
                                                               System.out.print(stringToken.nextToken() + "/");
                                                           else if(position == 3)
                                                               System.out.print(stringToken.nextToken() + "/");
                                                            else if(position == 4)
                                                                System.out.print(stringToken.nextToken() +"\n");
                                                           //if it is in [buy] area, it prints
                                                            else if(position == 8)
                                                                String buy = stringToken.nextToken();
                                                            System.out.println("Buy: " +buy );
                                                            currentBuyPrice = Integer.parseInt(buy);
                                                            if(currentBuyPrice < 0)
                                                                currentBuyPrice = 0;
                                                            if(currentBuyPrice > buyPrice)
                                                                     buyPrice += currentBuyPrice;
                                                            if(currentBuyPrice == buyPrice)
                                                                buyPrice +=0;
                                                               else
                                                                   buyPrice -= currentBuyPrice;
                                                            //if it is in [sell] area, it prints, and resets the position to zero because line is over
                                                            else if(position == 9)
                                                                String sell = stringToken.nextToken();
                                                              System.out.println("Sell: " + sell);
                                                              currentSellPrice = Integer.valueOf(sell).intValue();;
                                                               if(currentSellPrice < 0)
                                                                   currentSellPrice = 0;
                                                               else if(currentSellPrice > sellPrice)
                                                               sellPrice += currentSellPrice;
                                                                else if(currentSellPrice == sellPrice)
                                                                sellPrice +=0;
                                                               else
                                                               sellPrice -= currentSellPrice;
                                                                scanner.nextLine();
                                                                position = 0;
                                                               if(scanner.hasNextLine() == false)
                                                                System.out.println("Net change of buy price: " +buyPrice +"\n Net change of sell price: " +sellPrice);
                                                            //discards all other string areas
                                                            else
                                                            stringToken.nextToken();
                                public void getMonth()
                                    for(int x=0; x < monthCheck.length; x++)
                                        if(month == monthCheck[x])
                                              monthS = (x+1);
                                              x = monthCheck.length;
    public static void main(String [] args)
    CSE cs = new CSE();
    }Make a folder named whatever the current date is, and put a .dat file in there with this;
    1 5 15 2006 0 3  52 -1 -1
    1 5 15 2006 0 29 52 -1 -1
    1 5 15 2006 0 36  1 -1 -1
    1 5 15 2006 0 42  9 -1 -1
    1 5 15 2006 0 48 18 -1 -1
    1 5 15 2006 0 54 29 -1 -1
    1 5 15 2006 1 0  37 -1 -1
    1 5 15 2006 1 6 44 -1 -1
    1 5 15 2006 1 12 53 -1 -1
    1 5 15 2006 1 19 1 -1 -1
    1 5 15 2006 1 25 9 -1 -1
    1 5 15 2006 1 31 18 -1 -1
    1 5 15 2006 1 37 27 -1 -1
    1 5 15 2006 1 43 37 -1 -1
    1 5 15 2006 1 49 46 -1 -1
    1 5 15 2006 1 55 53 -1 -1
    1 5 15 2006 2 2 1 -1 -1
    1 5 15 2006 2 8 10 -1 -1
    1 5 15 2006 2 14 27 -1 -1
    1 5 15 2006 2 20 37 -1 -1
    1 5 15 2006 14 12 45 -1 -1
    1 5 15 2006 14 20 36 -1 -1
    1 5 15 2006 14 26 44 -1 -1
    1 5 15 2006 14 32 52 -1 -1
    1 5 15 2006 14 39 0 -1 -1
    1 5 15 2006 14 45 8 -1 -1
    1 5 15 2006 14 51 17 -1 -1
    1 5 15 2006 14 57 26 -1 -1
    1 5 15 2006 15 3 35 -1 -1
    1 5 15 2006 15 9 43 -1 -1
    1 5 15 2006 15 15 51 -1 -1
    1 5 15 2006 15 21 59 -1 -1
    1 5 15 2006 15 28 6 -1 -1
    1 5 15 2006 15 34 15 -1 -1
    1 5 15 2006 15 40 24 -1 -1
    1 5 15 2006 15 46 33 -1 -1
    1 5 15 2006 15 52 40 -1 -1
    1 5 15 2006 15 58 48 -1 -1
    1 5 15 2006 16 4 56 -1 -1
    1 5 15 2006 16 11 5 -1 -1
    1 5 15 2006 16 17 14 -1 -1
    1 5 15 2006 16 23 24 -1 -1
    1 5 15 2006 16 29 32 -1 -1
    1 5 15 2006 16 35 39 -1 -1
    1 5 15 2006 16 41 47 -1 -1
    1 5 15 2006 16 47 55 -1 -1
    1 5 15 2006 16 54 4 -1 -1
    1 5 15 2006 17 0 13 -1 -1
    1 5 15 2006 17 6 23 -1 -1
    1 5 15 2006 17 12 31 -1 -1
    1 5 15 2006 17 18 39 -1 -1
    1 5 15 2006 17 24 46 -1 -1
    1 5 15 2006 17 30 55 -1 -1
    1 5 15 2006 17 37 3 -1 -1
    1 5 15 2006 17 43 12 -1 -1
    1 5 15 2006 17 49 20 -1 -1
    1 5 15 2006 17 55 29 -1 -1
    1 5 15 2006 18 1 36 -1 -1
    1 5 15 2006 18 7 44 -1 -1
    1 5 15 2006 18 13 53 -1 -1
    1 5 15 2006 18 20 2 -1 -1
    1 5 15 2006 18 26 12 -1 -1
    1 5 15 2006 18 32 20 -1 -1
    1 5 15 2006 18 38 29 -1 -1
    1 5 15 2006 18 44 36 -1 -1
    1 5 15 2006 18 50 45 -1 -1
    1 5 15 2006 18 56 54 -1 -1
    1 5 15 2006 19 3 3 -1 -1
    1 5 15 2006 19 9 10 -1 -1
    1 5 15 2006 19 15 18 -1 -1
    1 5 15 2006 19 21 26 -1 -1
    1 5 15 2006 19 27 34 -1 -1
    1 5 15 2006 19 33 44 -1 -1
    1 5 15 2006 19 39 53 -1 -1
    1 5 15 2006 19 46 3 -1 -1
    1 5 15 2006 19 52 12 -1 -1
    1 5 15 2006 19 58 20 -1 -1
    1 5 15 2006 20 4 30 -1 -1
    1 5 15 2006 20 10 38 -1 -1
    1 5 15 2006 20 16 50 -1 -1
    1 5 15 2006 20 23 0 -1 -1
    1 5 15 2006 20 29 9 -1 -1
    1 5 15 2006 20 35 17 -1 -1
    1 5 15 2006 20 41 24 -1 -1
    1 5 15 2006 20 47 32 -1 -1
    1 5 15 2006 20 53 40 -1 -1
    1 5 15 2006 20 59 49 -1 -1
    1 5 15 2006 21 5 59 -1 -1
    1 5 15 2006 21 12 8 -1 -1
    1 5 15 2006 21 18 16 -1 -1
    1 5 15 2006 21 24 23 -1 -1
    1 5 15 2006 21 30 31 -1 -1
    1 5 15 2006 21 36 40 -1 -1
    1 5 15 2006 21 42 49 -1 -1
    1 5 15 2006 21 48 57 -1 -1
    1 5 15 2006 21 55 5 -1 -1
    1 5 15 2006 22 1 12 -1 -1
    1 5 15 2006 22 7 20 -1 -1
    1 5 15 2006 22 13 28 -1 -1
    1 5 15 2006 22 19 38 -1 -1
    1 5 15 2006 22 25 48 -1 -1

  • Need help badly to pass class

    If anyone could help me write this thing using simple loops I swear i would dance at there wedding. This is my last class to graduate college with a bachelors and I am so computer stupid. If anyone could write out this code for me or just help me get started with my main method i would appreciate it so much. The java problem that I have to write a program to is below and I am sorry it is alot of question to a novice programmer like myself I am so lost please help!!!!!!!!!!!!!
    Write a java class called factorNumber that gets a whole number from the user and determines its divisors. It should return the results in a dialog box with a message like: The factors of 25 are 1,5,25.
    Place this code in a large loop so the user can check as many numbers as they like. Also put in error checking. If the user enters a nonpositive iteger, give them an error message and prompt for another number. If at any point the user clicks on the cancel button for any dialog box exit the program.
    When that is working, add more fuctionality to your program. Check the given number for the following conditions.
    1.prime number(only divisible by 1 and itself. 1 is not considered to be prime.)
    2.perfect number(it is the sum of its factors up to but not including itself; ex" 6 is a perfect number because its factors are 1,2,3 and 1+2+3=6.
    3.perfect square(it is the square of some other whole number)
    if any of these conditions are satisfied, include that information in the message to the user. Respond with message:
    The factors of 25 are 1,2,25
    25 is a perfect square.
    or
    the factors of 6 are 1,2,3,6.
    6 is a perfect number.
    I Ammmmmm so lost how do i white this thing????????????/

    i hope i can get something out of this:
    import java.io.*;
    class FactorNumber
         public static void main(String[] args)
              int base = 0;
              int y=0;     
              double z;
              float w;
              try{
              System.out.println("Enter the base : \t " );                         
              BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in));
              base = Integer.parseInt(br1.readLine());          
              System.out.println("the factors are:");
              for(int x=1;x<=base; x++ ){
              if(base%x==0){
                   System.out.print(x+" ");
                   y=y+x;
                   if(y==base){System.out.println("\nThis is a perfect number");}
              z = Math.sqrt(base);
              w=Math.round(z);          
              if(z%w==0){
              System.out.println("\n"+base+ " is a perfect square");
              }catch (IOException e){System.out.println("The error" + e);}
    }

  • Baffled by code....

    Can anyone help me out here? I've been over this code for the last hour and still can't figure out what's going wrong with it. It's supposed to take integers from 1 to 1000 and find integers that are perfect numbers (A numbers factors added together equal the original number). For some reason it's only outputing the first number and then stops. Any help would be greatly appreciated.
    //Java core packages
    import java.awt.*;
    //Java extension package
    import javax.swing.*;
    public class Assign3_3097 extends JApplet {
         int FinalSum;     
         public void init()
         //JTextArea to display results
         JTextArea outputArea = new JTextArea();
         //get applet's content pane
         Container container = getContentPane();
         //attach outputArea to container
         container.add( outputArea );
         int result; //store value of call to method
         String output = ""; //String containing results
         for ( int number = 1; number <= 1000; number++)
              result = perfect (number);
              if (result > 0 )
                   //append result to String output
                   output += result + " is a perfect number\n";          
              }//end for loop
              outputArea.setText( output );//puts results in JTextArea
         } //end method init
         //perfect method declaration
         public int perfect( int x )
              int value;
              for ( int divisor = 1; divisor <= 500; divisor++ ){
              value = x % divisor;
                   if ( value == 0 )
                        FinalSum = FinalSum + divisor;
              }//end for loop
              if ( FinalSum == x)
                   return x;
              else
                   return 0;
         }//end perfect method
    } //end class Assign3_3097

    hi,
    umm, well i can see quite a few mistakes in the code due to which ur program is not working, now as u must be knowing a perfect number is those numbers which are the sum of their positive proper divisors.. for eg
    6 = 1 + 2 + 3
    now if that is the case, there is a major flaw
    for ( int divisor = 1; divisor <= 500; divisor++ ){why would u want to divide the number till 500 ???
    should read
    for ( int divisor = 1; divisor <  x; divisor++ ){also, the variable
    >int FinalSum; which is declared globally must be declared locally for otherwize it will retain itz previous values.
    ie
    public int perfect( int x )
    int value;
    int FinalSum = 0;now if you change that ur code will start working fine,
    ps: Your program will work faster if you replace the "output" from String type to StringBuffer.
    cheerz
    ynkrish

  • UPGRADING WITH A PERFECT BATTERY BUT WITH HIGHER NUMBER OF CELLS

    i m using HP PAVILION DV5 1104-TU ENTERTAINMENT NOTEBOOK PC since 4years, recently its motherboard got crashed so after a wrong reply ,finally i got the motherboard from ebay which was perfectly apposite for my model,now its battery is not giving backup so i wanna buy a new battery but with 12cells or even more for extra backup, my battery's part no is 484170-001,my laptop screen is 15.4", 2gb ram,intel core 2duo, i wanna buy it from ebay but please provide the right battery which will fit with ease, as in my earlier post for motherboard the first reply was for a wrong motherboard as they s, do provide some ebay links for the higher number of cells if possible plus if i get to know about hours of backup

    Yes, it will sit a little higher in the back due to the thicker battery.  This will not harm the notebook.  Generally speaking, an extended cell battery will cost significantly more than a standard battery.  Think of the extended cell battery as a V8 and the standard battery as V4.  The V8 is bigger and costs more than the V4.  The one I linked to on eBay was about half of what the battery is from HP directly.  Anthony82 provided a battery as well, but it's a non-OEM battery which typically means it's not an actual HP battery (think third party).  LIke the one Anthony82 provided, I don't see any indication that the battery in the expert's link is a genuine HP battery.  This might account for why is is significantly less as I don't see how a genuine HP battery can cost $20-$35 USD as I would imagine it costs more than that to make it.
    To answer your question, the one the expert gave you does mention your specific notebook model.  If it doesn't work, then that falls on the eBay seller.
    You have many options to choose from, so choose the one that you are most comfortable with.  If you want to look for a genuine HP part, you can look for HP part number  KS526AA.
    Let me know if this answered your question.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • My iMessage will not register that I have a phone number attached to the account on my mac. It only shows the email addresses. My iPhone and iPad work perfectly.

    My iMessage will not register that I have a phone number attached to the account on my mac. It only shows the email addresses. My iPhone and iPad work perfectly.

    Hi Aurion23,
    If you intend to keep using iCloud on your iPad, your best course of action would be to update your Apple ID/iCloud information so that you have a known password and it is associated with an active email address. You may find the following articles helpful:
    iCloud: Change your iCloud password
    http://support.apple.com/kb/ph2617
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/ht5621
    Regards,
    - Brenden

  • Why am I getting an invalid serial number response when trying to install Photoshop Elements 10 on my new Windows 8.1 PC. It worked perfectly well on old now defunct Windows Vista PC

    i'm not able to install Photoshop Elements 10 on my new PC. I'm told the serial number is invalid. Why? It has 24 digits separated into 4 digits at a time by hyphens. Am I typing it wrongly?

    i just had same issue.  never installed on old pc which is a window 7 convert from xp.  Now installing on laptop dell win 8, would not accept number. so i decided to install on the win 7 old pc (which has no firewall security because I'm dumping machine)  and it worked.  So I turned off firewall on win 8 machine and it worked.  I had read that  you should turn off the fire wall.  Try that.  Di

  • I have a number od cds referring to X-rays and MRI scans which played perfectly on my old PC, but now that I've migrated to an imac none of them will open. Any suggestions? I am anything but an expert.

    Hi anybody,
    I have a number of cds referring to X-rays and MRI scans taken over the last few years, and I used to be able to open them on my old PC, but having recently migrated to an imac none of these will open. Any suggestions to a complete non-expert in the mac world would be greatly appreciated.
    Ray in Galway

    Another thought, if they're just typical image files like jpegs, or PDFs or some other universal file format.  Have a friend with a windows computer copy the contents of the CDs to an external media source (flash drive, external HDD etc) and copy them to your mac.
    If they were burned by the medical staff to be ran as a program then they may not be comptable with Mac OS.  If this is the case see about having a friend copy the images for you.

  • HT1492 I bought a new wireless Apple keyboard 3 days ago. It connects perfectly via Bluetooth. As with my old wireless keyboard, the "number one" key is not responding at all whi

    I bought a new wireless keyboard 3 days ago and the number "1" key is not responding. My old wireless keyboard did the same. What am I doing wrong with the setup or installation.

    I bought a new wireless keyboard 3 days ago and the number "1" key is not responding. My old wireless keyboard did the same. What am I doing wrong with the setup or installation.

  • TS3048 Number pad on extended keyboard stopped working after updating to OSX 10.9.1. Testing keyboard on old system still works perfectly.

    Expanded keyboard stopped working correctly after updating my system from OSX 10.8.6 to OSX 10.9.1 and now 10.9.2. The keypad numbers do not work although the numbers along the top of the keyboard work fine. Moving the keyboard back to computer still using 10.8.6 and it works fine.

    See if zapping the PRAM works.  Check out KB Article:  http://support.apple.com/kb/HT1379 Resetting your Mac's PRAM and NVRAM 

  • Can't sent International Txt msg.  My new iphone 4s does everything perfectly except sms to any international number.

    Can't send text messages to international numbers, even numbers I can easily make a voice call.

    Is it all international texts? Or only to a specific person or country? My experience has been that international texting, even on a properly provisioned account, can be hit or miss. It seems to be somewhat dependent on the particular carrier at the other end. Some work. Some don't.

  • My Epson Scan software can't open and keeps crashing. I reinstalled the software and the drivers but it crashes anyway. Epson Perfection v500

    When scanning a negative, it crashed. Then the software won't open and keeps throwing 'Error'.
    Process:         EPSON Scan [796]
    Path:            /Applications/Epson Software/EPSON Scan.app/Contents/MacOS/EPSON Scan
    Identifier:      com.epson.scan.standalone
    Version:         5.1.0f0 (5.1.0f0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [173]
    Responsible:     EPSON Scan [796]
    User ID:         501
    Date/Time:       2014-08-01 12:53:18.116 +0100
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  2C569671-A037-9057-678F-1ED8DDF011D8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000016669c90
    VM Regions Near 0x16669c90:
        mapped file            00000000145d2000-00000000145db000 [   36K] r--/rwx SM=COW  /System/Library/Fonts/Keyboard.ttf
    -->
        __TEXT                 0000000064b00000-0000000064b06000 [   24K] r-x/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.epson.scan.ui             0x0e982916 CAdvancedDialog::InitDialogInfo() + 280
    1   com.epson.scan.ui             0x0e990f03 CAdvancedDialog::Open() + 1559
    2   com.epson.scan.ui             0x0e960bc8 CUIControl::UIStartProc(TW_USERINTERFACE*, TW_IDENTITY*, TW_IDENTITY*, unsigned short (*)(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*), tag_UIAppOperation*, tag_UIStartScanPara*) + 4714
    3   com.epson.scan.ui             0x0e95bf54 CUI::IUIStartProc(TW_USERINTERFACE*, RegInfo const*, TW_IDENTITY*, TW_IDENTITY*, unsigned short (*)(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*), tag_UIAppOperation*, tag_UIStartScanPara*) + 200
    4   com.epson.scan.standalone     0x00002e18 CStandAlone::EpUiStart() + 160
    5   com.epson.scan.standalone     0x0000503b CStandAlone::Run() + 721
    6   com.epson.scan.standalone     0x0000541d main + 295
    7   com.epson.scan.standalone     0x00001d4e _start + 228
    8   com.epson.scan.standalone     0x00001c69 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x024c8992 kevent64 + 10
    1   libdispatch.dylib             0x02323899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x02323532 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x024c8046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x025b9dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x025bdcce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib         0x024c8046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x025b9dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x025bdcce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib         0x024c8046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x025b9dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x025bdcce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x16669c90  ebx: 0x0e98280f  ecx: 0x089b9e70  edx: 0x00310aa4
      edi: 0x00000000  esi: 0x09343a5c  ebp: 0xbffff4b8  esp: 0xbffff130
       ss: 0x00000023  efl: 0x00010202  eip: 0x0e982916   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x16669c90
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
        0x1000 -    0x51ff7 +com.epson.scan.standalone (5.1.0f0 - 5.1.0f0) /Applications/Epson Software/EPSON Scan.app/Contents/MacOS/EPSON Scan
       0x77000 -    0x77fff  com.apple.Carbon (154 - 157) <6C29C608-97B4-306E-AEC5-6F48EDF7EFB5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
       0x7a000 -    0x80fff  org.twain.dsm (1.9.5 - 1.9.5) <3CE5B8E4-1F2D-3694-890D-B3965F244443> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
       0x88000 -    0xd9ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
      0x139000 -   0x13afff  libSystem.B.dylib (1197.1.1) <789CF4BE-5A0B-310E-9515-E515EA033D03> /usr/lib/libSystem.B.dylib
      0x141000 -   0x14afff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
      0x153000 -   0x157fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
      0x15f000 -   0x162ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
      0x168000 -   0x4ddff9  com.apple.HIToolbox (2.1.1 - 698) <FE3938F3-6338-3C5E-AAB3-47B2F5FAC762> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
      0x643000 -   0x696fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
      0x6bd000 -   0x6d0fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
      0x6e9000 -   0x780ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
      0x7aa000 -   0x7e8ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
      0x80f000 -   0x82aff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
      0x83c000 -   0x83efff  com.apple.securityhi (9.0 - 55005) <FD6FC95D-CBE2-329F-9ACB-AB3027CAAB6D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
      0x843000 -   0x84cfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
      0x855000 -   0x855fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
      0x85d000 -   0x85dfff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
      0x866000 -   0x8bbff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <CB06B746-9EB1-3972-A798-A139E15F5ACC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
      0x8de000 -   0x933fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
      0x98a000 -   0xb8cfff  com.apple.CoreFoundation (6.9 - 855.17) <E382BBB6-4F41-3959-ADC7-238BE49A2155> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
      0xcc7000 -   0xe29ffb  com.apple.CFNetwork (673.4 - 673.4) <3B6BDE2F-BFA3-3B7E-BC53-7B6B75EB12D3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
      0xefb000 -  0x11fcffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x1273000 -  0x130bff7  com.apple.Metadata (10.7.0 - 800.28) <D8C2153B-6D0F-3B75-97C7-742BDCA430FC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x135c000 -  0x13dcff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <382BE89A-9F37-3316-9AB8-DDEA691A80D1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x1471000 -  0x14e4fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x151f000 -  0x157dffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x15a9000 -  0x1684ff7  com.apple.LaunchServices (572.28 - 572.28) <2DEA5B87-80AC-3ACD-9F60-4BC61353B66E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x16ef000 -  0x171bff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x173b000 -  0x1778ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x178e000 -  0x17a0fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x17a8000 -  0x1811fff  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <3AD9C90B-40A9-312B-B479-3AB178A96EA1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x1842000 -  0x1ab1ff2  com.apple.security (7.0 - 55471.14.8) <8AF3BEF0-0EF9-32CD-A316-F9C6325E3491> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1bd4000 -  0x1ce6ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x1cfd000 -  0x1d0bff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x1d11000 -  0x1eb94af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x1ed6000 -  0x1fc2ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x1ff1000 -  0x21b7ffb  libicucore.A.dylib (511.34) <9588FA53-7801-3A44-8E5A-1365586A4918> /usr/lib/libicucore.A.dylib
    0x224b000 -  0x224cfff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x2251000 -  0x2275ff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x2281000 -  0x2285ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x228a000 -  0x2295ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x22a2000 -  0x22a7ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x22b2000 -  0x22bafff  libcopyfile.dylib (103.92.1) <9B62DDFE-FEFD-31CA-989F-9BE0AB606C49> /usr/lib/system/libcopyfile.dylib
    0x22c1000 -  0x2311ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x2320000 -  0x2338ffd  libdispatch.dylib (339.92.1) <7E7A88BF-74B3-363B-B534-6F757DF2DDE3> /usr/lib/system/libdispatch.dylib
    0x234b000 -  0x234eff7  libdyld.dylib (239.4) <B2BD2222-2A51-39B7-BCC5-B8A4F36F900A> /usr/lib/system/libdyld.dylib
    0x2355000 -  0x2355fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x235a000 -  0x2362fff  liblaunch.dylib (842.92.1) <C180016C-F2DB-3D8B-A72D-5185CE67DFA2> /usr/lib/system/liblaunch.dylib
    0x236a000 -  0x236eff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x2373000 -  0x2375fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x237b000 -  0x237cfff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x2382000 -  0x2394fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x239e000 -  0x239ffff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x23a4000 -  0x2436ff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x245e000 -  0x2460fff  libsystem_configuration.dylib (596.15) <E49AAD29-35C2-3EE2-AF4D-59514C4B478F> /usr/lib/system/libsystem_configuration.dylib
    0x2466000 -  0x246efff  libsystem_dnssd.dylib (522.92.1) <7E36B79E-6BF4-3462-9A84-C0744D029636> /usr/lib/system/libsystem_dnssd.dylib
    0x2474000 -  0x249cfff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x24b0000 -  0x24cdff4  libsystem_kernel.dylib (2422.110.17) <BCE753BB-9F18-30CB-87BC-D960721254C1> /usr/lib/system/libsystem_kernel.dylib
    0x24ee000 -  0x251fffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x252a000 -  0x2542ff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x254b000 -  0x2576ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x2590000 -  0x2599fff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x25a1000 -  0x25a6ff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x25b7000 -  0x25beffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x25c8000 -  0x25c9ffa  libsystem_sandbox.dylib (278.11.1) <DA875837-A5C2-3004-8117-65F378E4BD03> /usr/lib/system/libsystem_sandbox.dylib
    0x25ce000 -  0x25cfffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x25d5000 -  0x25dbffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x25e2000 -  0x2606ff7  libxpc.dylib (300.90.2) <5ACBBE2C-74EB-3E88-BCBF-C573095318A5> /usr/lib/system/libxpc.dylib
    0x261c000 -  0x262afff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x2632000 -  0x2636ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x263b000 -  0x263bffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x263f000 -  0x264bffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x2651000 -  0x26c8ffb  com.apple.framework.IOKit (2.0.1 - 907.100.13) <D1308EE0-96AA-3442-A27B-264F58AE12B4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x26f8000 -  0x2701fff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x270b000 -  0x2712ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x2719000 -  0x2725ffc  libkxld.dylib (2422.110.17) <FBC1725B-74D4-3DFC-954E-0628948C0781> /usr/lib/system/libkxld.dylib
    0x272a000 -  0x2735ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x2741000 -  0x2a6cffe  com.apple.Foundation (6.9 - 1056.13) <C33A8984-7E97-36BE-B842-EE4FE35F53EA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x2c04000 -  0x2c05fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x2c09000 -  0x2c25fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x2c2f000 -  0x2c98ffa  com.apple.datadetectorscore (5.0 - 354.5) <CB793FA7-B873-39A9-855F-D86AB0C35298> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x2cc8000 -  0x2ccbff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x2cd1000 -  0x2ce9ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <184471C6-C810-3346-B7C7-D86E695D0FA1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x2d01000 -  0x2d0bfff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x2d14000 -  0x2d3efff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x2d4a000 -  0x2e0dff1  com.apple.CoreText (367.20 - 367.20) <42445623-3BDD-3678-8B46-845C441B6251> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x2e70000 -  0x3268ffb  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <9BCF8082-2CE7-3DE6-A5F2-4C84CAE21BB1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x3303000 -  0x3410ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <3AA4C524-1B31-39AC-A641-189D0D6EA427> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x346b000 -  0x34e0ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x3508000 -  0x3599fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x35d8000 -  0x3627ff9  com.apple.HIServices (1.23 - 468) <B0534B49-A137-363A-9FC2-44FAA6F0894F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x3658000 -  0x3668ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x3675000 -  0x3711fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x373e000 -  0x3748ff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <C4CC55E5-6CC4-307E-9499-AF89A6463AF4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x3759000 -  0x375dffc  com.apple.IOSurface (91.1 - 91.1) <70637267-4D54-3EFF-A929-54FC0A8A907A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x3765000 -  0x3765fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x3768000 -  0x3a52fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x3a8f000 -  0x3a8ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x3a92000 -  0x3b62fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x3b6e000 -  0x3c1affb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x3c25000 -  0x3feaff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x4041000 -  0x4197ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x41bc000 -  0x42b0fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x4309000 -  0x434fff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x4370000 -  0x4394fff  libJPEG.dylib (1043) <257BE460-DFB1-3398-8AC5-A2E50FBED794> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x439c000 -  0x43f5ffa  libTIFF.dylib (1043) <C03B34F4-8037-3AF5-AE51-B8B5FC8DB639> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x4403000 -  0x441eff6  libPng.dylib (1043) <AFF54258-8124-31AE-BBAA-575FD7C43EF3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x4426000 -  0x442affa  libGIF.dylib (1043) <276F48A6-766B-3D40-85C4-C9E8E6051DF7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x442f000 -  0x452dfff  libJP2.dylib (1043) <7B186EC7-B37E-3126-BCCE-7787F65C878D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x4553000 -  0x4555ffb  libRadiance.dylib (1043) <ECD94F60-9AAD-3207-B3BD-9DB559FC5032> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x4559000 -  0x45a5ff7  libcups.2.dylib (372.4) <A11AA954-07E7-3929-84AB-309B0C0DDB5D> /usr/lib/libcups.2.dylib
    0x45b7000 -  0x45d0fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x45e8000 -  0x4619ffb  com.apple.GSS (4.0 - 2.0) <145B389F-AC1E-3817-835D-8EA263E96EA5> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x4634000 -  0x4651ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x465c000 -  0x474cffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x475a000 -  0x47c5fff  com.apple.Heimdal (4.0 - 2.0) <D6465D74-9351-3FF3-9561-AC149AEDB86F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x47ea000 -  0x47ebffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x47f0000 -  0x47f4fff  libheimdal-asn1.dylib (323.92.1) <DD8BAEED-28AC-389E-9DC4-E32DA60CB05A> /usr/lib/libheimdal-asn1.dylib
    0x47fa000 -  0x4806ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E264995C-298E-3DA4-8AFD-11C941BA5E40> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x4816000 -  0x481fffc  com.apple.CommonAuth (4.0 - 2.0) <99219CEB-D340-3E1F-9C04-FD0FA700BD67> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x4826000 -  0x489cff3  com.apple.securityfoundation (6.0 - 55122.3) <6E1412EF-2E22-3C9D-851C-9534903D926A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x48cd000 -  0x4a40ffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <4248C0FE-F872-34AB-9402-0045D5CD0CC1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x4aca000 -  0x4bb0ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x4c3a000 -  0x4de6fff  com.apple.QuartzCore (1.8 - 332.3) <DA347693-5E26-3E47-A2B3-3824C52EB08B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x4e9c000 -  0x4fd3fff  com.apple.desktopservices (1.8.3 - 1.8.3) <3574872B-435C-3AB8-A453-02A33A771CDB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x5049000 -  0x505dff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <06C2834A-91E9-3DCC-B7D0-9EAC592CE1C5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x506b000 -  0x5085ff7  com.apple.GenerationalStorage (2.0 - 160.3) <D39634C9-93BF-3C74-828B-4809EF895DA0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x5093000 -  0x50d3ff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x50e5000 -  0x50f3ff3  com.apple.opengl (9.6.1 - 9.6.1) <B8205F16-6435-3062-89C9-2D8FF1799B3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x50fb000 -  0x5122fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x513b000 -  0x5430ffc  com.apple.CoreImage (9.4.0) <33696A53-9E18-32D6-844F-28098DB7E426> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x54d7000 -  0x552dff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x5546000 -  0x5588fff  libGLU.dylib (9.6.1) <0655104D-2F22-36CE-955B-52A533CA70D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x5596000 -  0x559effe  libGFXShared.dylib (9.6.1) <632989B3-36C2-302E-8A85-A02125A9C5D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x55a5000 -  0x55b4fff  libGL.dylib (9.6.1) <885E9C1F-11C7-347D-BE10-522A40A46596> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x55c7000 -  0x5604ffb  libGLImage.dylib (9.6.1) <E2DADD8A-8A60-3F39-840B-4B7FE7001384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x560c000 -  0x560effe  libCVMSPluginSupport.dylib (9.6.1) <C2071F9E-72A1-360C-BF7E-286F9681922F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x5613000 -  0x5617ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x561d000 -  0x5a51ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x5c66000 -  0x5c71fff  com.apple.CrashReporterSupport (10.9 - 539) <10FE9B2D-404F-32B8-B3CA-CBA3524B4CFF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x5c7e000 -  0x5ccefff  com.apple.opencl (2.3.59 - 2.3.59) <9A8EF83B-78F9-3278-8812-5A0ECB09F8B7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x5ce0000 -  0x5cedfff  com.apple.AppleFSCompression (56.92.1 - 1.0) <D2E7A2DF-9E5B-35E6-9CCD-0D40ADA7E021> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x5cf5000 -  0x5d11ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x5d23000 -  0x5d31ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x5d41000 -  0x5d77fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x5d9f000 -  0x5dcaff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x5dd6000 -  0x5dd6fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x5dd9000 -  0x69f7ff3  com.apple.AppKit (6.9 - 1265.21) <1D31697B-6F33-3239-BACE-5D1361B1F79A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x6f83000 -  0x71e7ff7  com.apple.CoreData (107 - 481.3) <8EB45FB9-CF78-36E1-919C-E976AE4C8146> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x72aa000 -  0x72e6ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x730f000 -  0x730fffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <9515158F-3A33-39CF-AD5A-201C2B121F33> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7315000 -  0x735dfff  com.apple.PerformanceAnalysis (1.47 - 47) <5C6FA727-EAC9-3924-8662-AF01090A9EF4> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7b98000 -  0x7c66ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <C09AF796-385F-34DB-B551-68967989E9CB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7cd7000 -  0x7d61ff7  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <A33D0598-8699-39AC-A1DD-37079F423269> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7dac000 -  0x7e0dff7  com.apple.Symbolication (1.4 - 129.0.2) <774BC6EC-450B-3AE8-BBED-F1F140B93E7E> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7e3c000 -  0x7e6aff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x88c2000 -  0x88caff7  libCGCMS.A.dylib (599.25.10.1) <0F42B4AF-CAC2-3433-B33F-3AF2C4FFFEDA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x88e0000 -  0x88e3ffa  libCGXType.A.dylib (599.25.10.1) <FAA0A87E-0E30-3787-88F0-D0CD8F5661A2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x88f9000 -  0x88f9fff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0xa078000 -  0xa0a8ff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
    0xa0ce000 -  0xa0f6ff7  libRIP.A.dylib (599.25.10.1) <D33121E4-3FA6-3CC3-A36F-1C173A335E7F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0xa1db000 -  0xa1e6ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0xa62c000 -  0xa651ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0xa666000 -  0xa695ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <1BD6205B-7C66-3B7B-AC8C-11BE34F7CF6B> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0xa6b5000 -  0xa6bfff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <12D77553-81D4-342B-871A-C65795D85CCF> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0xa6c8000 -  0xa6cbffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0xa6d3000 -  0xa772ff7  libCoreStorage.dylib (380) <78F0E11F-D040-31DD-BD5E-6AC0EC8FD0D4> /usr/lib/libCoreStorage.dylib
    0xa797000 -  0xa7a2fff  libcsfde.dylib (380) <821ACD5D-E4BD-3626-B7AC-8EE2637268C3> /usr/lib/libcsfde.dylib
    0xa7ac000 -  0xa7e4ff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0xa7f4000 -  0xa7f6ff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0xe48f000 -  0xe57aff4  com.apple.DiskImagesFramework (10.9 - 371.1) <32A138AB-6A20-3C28-BFF8-7188C9790F31> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0xe5cb000 -  0xe692ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0xe6ea000 -  0xe730ff7  libcurl.4.dylib (78.94.1) <0EBB0049-F944-3A3F-ACBF-80D742C4945B> /usr/lib/libcurl.4.dylib
    0xe73f000 -  0xe742ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0xe748000 -  0xe74eff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0xe758000 -  0xe790fff  com.apple.LDAPFramework (2.4.28 - 194.5) <4399D209-B119-3ACC-97AF-F2E14DD207CB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0xe79d000 -  0xe7adff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0xe7b4000 -  0xe897ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0xe8ea000 -  0xe91fffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0xe932000 -  0xe94aff3 +com.epson.scan.perfectionv500 (3.7.4.1 - 3.7.4.1) /Library/Image Capture/TWAIN Data Sources/*/EPSON Perfection V500
    0xe95a000 -  0xeaf3fe3 +com.epson.scan.ui (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/UI.bundle/Contents/MacOS/UI
    0xebd9000 -  0xec25fc7 +com.epson.scan.epjpg (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/JPEG.bundle/Contents/MacOS/JPEG
    0xec55000 -  0xec81ff3 +com.epson.scan.epmtif (3.7.2 - 3.7.2) /Library/Image Capture/TWAIN Data Sources/*/Multiple TIFF.bundle/Contents/MacOS/Multiple TIFF
    0xeca0000 -  0xecdffd3 +com.epson.scan.eppdf (3.7.2 - 3.7.2) /Library/Image Capture/TWAIN Data Sources/*/PDF.bundle/Contents/MacOS/PDF
    0xed09000 -  0xed41ff3 +com.epson.scan.eptif (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/TIFF.bundle/Contents/MacOS/TIFF
    0xed68000 -  0xed88fd7 +com.epson.scan.eppict (3.7.2 - 3.7.2) /Library/Image Capture/TWAIN Data Sources/*/PICT.bundle/Contents/MacOS/PICT
    0xeda3000 -  0xedd9fd3 +com.epson.scan.eppij (3.7.2 - 3.7.2) /Library/Image Capture/TWAIN Data Sources/*/PIM JPEG.bundle/Contents/MacOS/PIM JPEG
    0xedff000 -  0xee35fcf +com.epson.scan.eppit (3.7.2 - 3.7.2) /Library/Image Capture/TWAIN Data Sources/*/PIM TIFF.bundle/Contents/MacOS/PIM TIFF
    0xee5b000 -  0xee96ff7 +com.epson.scan.utwb (3.7.1 - 3.7.1) /Library/Image Capture/TWAIN Data Sources/*/UI Twain Bridge.bundle/Contents/MacOS/UI Twain Bridge
    0xeeb2000 -  0xeecbff7 +com.epson.scan.dscl (3.7.1 - 3.7.1) /Library/Image Capture/TWAIN Data Sources/*/DS Control.bundle/Contents/MacOS/DS Control
    0xeedb000 -  0xef1afe7 +com.epson.scan.twpmg (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/TWAIN Protocol Manager.bundle/Contents/MacOS/TWAIN Protocol Manager
    0xef3d000 -  0xf00afe3 +com.epson.scan.scncl (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/Scan Control.bundle/Contents/MacOS/Scan Control
    0xf09d000 -  0xf125fe3 +com.epson.scan.dtr (4.3.2 - 4.3.2) /Library/Image Capture/TWAIN Data Sources/*/DTR.bundle/Contents/MacOS/DTR
    0xf149000 -  0xf187ff3 +com.epson.scan.fit (3.9.1 - 3.9.1) /Library/Image Capture/TWAIN Data Sources/*/FIT.bundle/Contents/MacOS/FIT
    0xf190000 -  0xf1e7fca +com.epson.scan.devcl (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/Device Control.bundle/Contents/MacOS/Device Control
    0xf214000 -  0xf220fe7 +com.epson.scan.DDC (1.1.0 - 1.1.0) /Library/Image Capture/TWAIN Data Sources/*/EsDDC.bundle/Contents/MacOS/EsDDC
    0xf228000 -  0xf237fe0 +com.epson.scan.EsDDE (2.0.5 - 2.0.5) /Library/Image Capture/TWAIN Data Sources/*/EsDDE.bundle/Contents/MacOS/EsDDE
    0xf23f000 -  0xf261ff7 +com.epson.scan.devif (3.7.6 - 3.7.6) /Library/Image Capture/TWAIN Data Sources/*/Device Interface.bundle/Contents/MacOS/Device Interface
    0xf278000 -  0xf2b2fdc +com.epson.scan.Interpreter 7C (1.0.8 - 1.0.8) /Library/Image Capture/TWAIN Data Sources/*/Interpreter 7C.bundle/Contents/MacOS/Interpreter 7C
    0xf2cd000 -  0xf2cdff3 +com.epon.scan.icelut (1.00 - 1.00) /Library/Image Capture/TWAIN Data Sources/*/ICE LUT.bundle/Contents/MacOS/ICE LUT
    0xf2d3000 -  0xf2d4ffd +com.epson.scan.icemaskfile (2.01 - 2.01) /Library/Image Capture/TWAIN Data Sources/*/ICE Mask File.bundle/Contents/MacOS/ICE Mask File
    0xf2db000 -  0xf2ddfff +com.epson.scan.usb (1.1.6) <69BC3AE6-A7D2-E1AA-6C16-016DDC387B04> /Library/Image Capture/TWAIN Data Sources/*/EPSON USB Scanner.bundle/Contents/MacOS/EPSON USB Scanner
    0xf2e6000 -  0xf2f0ff7  com.apple.iokit.IOUSBLib (656.4.0 - 656.4.0) <D7656A98-7491-3F8C-A4C1-0FB3E8F1F61A> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0xf33d000 -  0xf349fff +com.epson.scan.fc (1.1.0 - 1.1.0) /Library/Image Capture/TWAIN Data Sources/*/EsFC.bundle/Contents/MacOS/EsFC
    0xf352000 -  0xf375fe7 +com.epson.scan.dice (1.1.0 - 1.1.0) /Library/Image Capture/TWAIN Data Sources/*/Digital ICE.bundle/Contents/MacOS/Digital ICE
    0xf380000 -  0xf417fe7 +com.epson.scan.esdtr2 (2.0.5 - 2.0.5) /Library/Image Capture/TWAIN Data Sources/*/DTR2.bundle/Contents/MacOS/DTR2
    0xf446000 -  0xf47efef +com.epson.scan.exif (2.0.4 - 2.0.4) /Library/Image Capture/TWAIN Data Sources/*/PIM JPEG Support.bundle/Contents/MacOS/PIM JPEG Support
    0xf496000 -  0xf4a5ff4 +com.epson.scan.pimtiff (2.0.4 - 2.0.4) /Library/Image Capture/TWAIN Data Sources/*/PIM TIFF Support.bundle/Contents/MacOS/PIM TIFF Support
    0xf57f000 -  0xf6aefdb +com.epson.scan.esmps (3.7.0 - 3.7.0) /Library/Image Capture/TWAIN Data Sources/*/Multi Page Saving.bundle/Contents/MacOS/Multi Page Saving
    0xf7da000 -  0xfa56fe7  com.apple.QuickTime (7.7.3 - 2826.19) <AEF12245-C9D5-3B50-8AB6-45DC794E693E> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x11dae000 - 0x11de0ff7  libTrueTypeScaler.dylib (111.1) <A568EE4C-1588-3F8B-8640-F02CEFC5AF09> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    0x11ded000 - 0x11e5bffb  libType1Scaler.dylib (112.1) <8DF02425-1C46-3B86-9E02-71F8D13FF3B1> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libType1Scaler.dylib
    0x11f42000 - 0x11f49ffe  com.apple.agl (3.2.3 - AGL-3.2.3) <808BEF15-F413-34AD-8932-E0655519E2E0> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x11f50000 - 0x11f52ffe  com.apple.QuickTimeH264.component (7.7.3 - 2826.19) <4639A3B1-B699-3F56-90EB-44C0073AD86D> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x11f57000 - 0x11f5eff8  com.apple.AppleGVAHW.component (1.2 - 1) <BDE247F5-DA1A-3C7C-92AF-84512383125B> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x11f65000 - 0x11f69fff  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <017135BD-3E54-30EC-9489-6ACADA56D51F> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x11f9d000 - 0x128f7fe3  com.apple.QuickTimeComponents.component (7.7.3 - 2826.19) <AF816E1F-2B32-31E8-9C4E-E39322D490E9> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x129a5000 - 0x12cb8fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <84677812-2943-328C-B4E0-5E37A6181195> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x12cc4000 - 0x12d15ffb  com.apple.CoreMedia (1.0 - 1273.54) <086865CC-7B9A-3B96-A3CB-4B90DAD5DC91> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x12d3f000 - 0x12e1bfd7  com.apple.AppleProResDecoder (3.0.4 - 6305.11) <50F80B48-00A2-37F0-BE25-CD0258A474BE> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x12e26000 - 0x12e6aff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <95221003-CA76-308F-9D6F-F2904075737D> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x12f2d000 - 0x12fe2fff  com.apple.AppleGVAFramework (7.1.18 - 7.1.18) <69A6C352-F85D-38E9-AC1D-2CB75DEF6AE8> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x12ff2000 - 0x1302aff7  com.apple.QuickTimeFireWireDV.component (7.7.3 - 2826.19) <CFBE1CAD-02A0-30E0-B6CE-1D5E9CB59220> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x13036000 - 0x13068ff7  com.apple.AppleIntermediateCodec (2.0.2 - 6305.11) <397782CB-2454-37D5-A10C-B992A4E1D439> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x13070000 - 0x130c4fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <68D53493-CC1E-3036-BF67-B2A0F6E1A905> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x130ce000 - 0x131d6ff7  com.apple.QuickTimeImporters.component (7.7.3 - 2826.19) <5E03E68C-F8BB-3637-8BF7-5D0DA371DB26> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x13210000 - 0x132c4ff7  com.apple.QuickTimeMPEG4.component (7.7.3 - 2826.19) <4164D9D2-AAEA-3B01-8BD0-96C359E7E7E5> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x132e8000 - 0x132ffff4  com.apple.CoreMediaAuthoring (2.2 - 947) <958EE809-D21F-3C88-8D87-B3A5E4C3FCA6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x13315000 - 0x13684fff  com.apple.MediaToolbox (1.0 - 1273.54) <46C11BBD-7F31-3227-9441-6087FAA3B477> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x1371a000 - 0x13b3ffe3  com.apple.VideoToolbox (1.0 - 1273.54) <63E19724-B43E-3552-8D1F-87D0688DF593> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x13b8d000 - 0x13c9dfed  com.apple.MediaControlSender (2.0 - 200.34.4) <48A88743-4EB7-364B-968F-43C17FFCEB97> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x13cd0000 - 0x13d02ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x13d0c000 - 0x13d11fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x13d1c000 - 0x13d3bff9  com.apple.framework.Apple80211 (9.4 - 940.60) <8CCF54EE-F3CA-38B3-BD61-DDBF99E37FCB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x13d46000 - 0x13d4ffff  com.apple.AppleSRP (5.0 - 1) <6B946F4B-7DC4-3E82-BF2C-BE0930E3CF47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x13d56000 - 0x13dbcffb  com.apple.CoreUtils (2.0 - 200.34.4) <F14AAB3C-1C8A-37D7-85BE-76646F9F6098> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x13de3000 - 0x13e4affc  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <223A367D-1ADE-3CEA-8FE6-ACF3C1FFAB94> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x13e79000 - 0x13ea4ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x13eb0000 - 0x13f1aff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x13f58000 - 0x13f71ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <3691A649-1F8F-3C0A-89F4-5C2DD4E38EEC> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x64b00000 - 0x64b05ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x8fe0e000 - 0x8fe40417  dyld (239.4) <FF5ED937-CC28-3FEF-BCAF-750B1CDBAE36> /usr/lib/dyld
    0xfa100000 - 0xfa15cffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 752
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=164.6M resident=94.8M(58%) swapped_out_or_unallocated=69.8M(42%)
    Writable regions: Total=116.7M written=6384K(5%) resident=29.0M(25%) swapped_out=0K(0%) unallocated=87.7M(75%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 32.9M
    ATS (font support) (reserved)         4K        reserved VM address space (unallocated)
    CG backing stores                  1108K
    CG shared images                    184K
    CoreGraphics                          4K
    Kernel Alloc Once                     4K
    MALLOC                             42.4M
    MALLOC (admin)                       48K
    Memory Tag 242                       12K
    Memory Tag 249                      156K
    Stack                              65.6M
    VM_ALLOCATE                        16.4M
    __DATA                             16.5M
    __IMAGE                             528K
    __IMPORT                            124K
    __LINKEDIT                         32.9M
    __OBJC                             1932K
    __PAGEZERO                            4K
    __TEXT                            131.8M
    __UNICODE                           544K
    mapped file                        50.6M
    shared memory                         4K
    ===========                      =======
    TOTAL                             393.7M
    TOTAL, minus reserved VM space    393.7M
    Model: iMac12,2, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 3.1 GHz, 12 GB, SMC 1.72f1
    Graphics: AMD Radeon HD 6970M, AMD Radeon HD 6970M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0000, 0x484D54333531533641465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
    Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x0000, 0x484D54333531533641465238432D48392020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.74.0-P2P
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD1001FALS-403AA0, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: Hub
    USB Device: Internal Memory Card Reader
    USB Device: IR Receiver
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: EPSON Scanner
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: iMac, Apple Inc., 22.1
    I have Maverick OS 10.9.2 . I tried to re-install the software but it continues to crash anyway. I tried it on Mac Pro (Maverick as well) and it works fine on it. Any ideas what's wrong with it?

    I have an Epson photo scanner and have found the Image Capture app to work far better...go to Finder > Applications > Image Capture.  Also see http://support.apple.com/kb/HT4505

Maybe you are looking for