Problem in date plz find out of the mistake on my code only 1 row Print

import java.io.FileInputStream;
import java.text.SimpleDateFormat;
import java.util.Date;
//import java.util.Iterator;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
public class ExcelFileReader {
     public ExcelFileReader(){
     public void readExcelFile(POIFSFileSystem fs)throws Exception{
          HSSFWorkbook wb = new HSSFWorkbook(fs);
          HSSFSheet sheet = wb.getSheetAt(0);
          HSSFCell cell= null;          
          for(int j=0;j<sheet.getPhysicalNumberOfRows();j++){
               HSSFRow row = sheet.getRow(j);
               for(int i=0;i<row.getPhysicalNumberOfCells();i++){
                    cell = row.getCell((short)i);                     
                    if(j==1 && i==2){
                    Date date = cell.getDateCellValue();
                    SimpleDateFormat objSimpleDateFormat = new SimpleDateFormat("MM/dd/yy");
                    System.out.println (objSimpleDateFormat.format(date));                    
                    } else {
                         if (cell.getCellType() == 0 ){
                         System.out.println(cell.getNumericCellValue());
                         } else if (cell.getCellType() == 1 ){
                         System.out.println(cell.getStringCellValue());
     public static void main(String args[])throws Exception {
          try{
               ExcelFileReader objExcelFileReader = new ExcelFileReader();
               POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("c:/test.xls"));          
               objExcelFileReader.readExcelFile (fs);
          }catch(Exception ex){
               ex.printStackTrace();
}

i have problem in output of date in the excel file have set of columns all columns will print but date is not print plz modify the code
import java.io.FileInputStream;
import java.text.SimpleDateFormat;
import java.util.Date;
//import java.util.Iterator;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
public class ExcelFileReader {
     public ExcelFileReader(){
     public void readExcelFile(POIFSFileSystem fs)throws Exception{
          HSSFWorkbook wb = new HSSFWorkbook(fs);
          HSSFSheet sheet = wb.getSheetAt(0);
          HSSFCell cell= null;          
          for(int j=0;j<sheet.getPhysicalNumberOfRows();j++){
               HSSFRow row = sheet.getRow(j);
               for(int i=0;i<row.getPhysicalNumberOfCells();i++){
                    cell = row.getCell((short)i);                     
                    if(j==1 && i==2){
                    Date date = cell.getDateCellValue();
                    SimpleDateFormat objSimpleDateFormat = new SimpleDateFormat("MM/dd/yy");
                    System.out.println (objSimpleDateFormat.format(date));                    
                    } else {
                         if (cell.getCellType() == 0 ){
                         System.out.println(cell.getNumericCellValue());
                         } else if (cell.getCellType() == 1 ){
                         System.out.println(cell.getStringCellValue());
     public static void main(String args[])throws Exception {
          try{
               ExcelFileReader objExcelFileReader = new ExcelFileReader();
               POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("c:/test.xls"));          
               objExcelFileReader.readExcelFile (fs);
          }catch(Exception ex){
               ex.printStackTrace();
output:-
Eno
Ename
DOJ
SALARY
DeptNo
Attendence
1.0
Naresh
01/01/07
1000.0
1.0
P
1.0
Naresh
39084.0
1000.0
1.0
P
1.0
Naresh
39085.0
1000.0
1.0
P
1.0
Naresh
39086.0
1000.0
1.0
P
1.0
Naresh
39087.0
1000.0
1.0
P
1.0
Naresh
39088.0
0.0
1.0
A
1.0
Naresh
39089.0
0.0
1.0
A
1.0
Naresh
39090.0
0.0
1.0
A
1.0
Naresh
39091.0
1000.0
1.0
P
1.0
Naresh
39092.0
1000.0
1.0
P
1.0
Naresh
39093.0
1000.0
1.0
P
1.0
Naresh
39094.0
1000.0
1.0
P
1.0
Naresh
39095.0
0.0
1.0
A
1.0
Naresh
39096.0
1000.0
1.0
P
1.0
Naresh
39097.0
1000.0
1.0
P
1.0
Naresh
39098.0
1000.0
1.0
P
1.0
Naresh
39099.0
1000.0
1.0
P
1.0
Naresh
39100.0
1000.0
1.0
P
1.0
Naresh
39101.0
0.0
1.0
A
1.0
Naresh
39102.0
1000.0
1.0
P
1.0
Naresh
39103.0
1000.0
1.0
P
1.0
Naresh
39104.0
1000.0
1.0
P
1.0
Naresh
39105.0
1000.0
1.0
P
1.0
Naresh
39106.0
1000.0
1.0
P
1.0
Naresh
39107.0
1000.0
1.0
P
1.0
Naresh
39108.0
1000.0
1.0
P
1.0
Naresh
39109.0
1000.0
1.0
P
1.0
Naresh
39110.0
1000.0
1.0
P
1.0
Naresh
39111.0
1000.0
1.0
P
1.0
Naresh
39112.0
0.0
1.0
A
1.0
Naresh
39114.0
1000.0
1.0
P
1.0
Naresh
39115.0
1000.0
1.0
P
1.0
Naresh
39116.0
1000.0
1.0
P
1.0
Naresh
39117.0
1000.0
1.0
P
1.0
Naresh
39118.0
1000.0
1.0
P
1.0
Naresh
39119.0
1000.0
1.0
P
1.0
Naresh
39120.0
1000.0
1.0
P
1.0
Naresh
39121.0
1000.0
1.0
P
1.0
Naresh
39122.0
1000.0
1.0
P
1.0
Naresh
39123.0
1000.0
1.0
P
1.0
Naresh
39124.0
1000.0
1.0
P
1.0
Naresh
39125.0
1000.0
1.0
P
1.0
Naresh
39126.0
1000.0
1.0
P
1.0
Naresh
39127.0
1000.0
1.0
P
1.0
Naresh
39128.0
1000.0
1.0
P
1.0
Naresh
39129.0
1000.0
1.0
P
1.0
Naresh
39130.0
1000.0
1.0
P
1.0
Naresh
39131.0
1000.0
1.0
P
1.0
Naresh
39132.0
1000.0
1.0
P
1.0
Naresh
39133.0
1000.0
1.0
P
1.0
Naresh
39134.0
1000.0
1.0
P
1.0
Naresh
39135.0
1000.0
1.0
P
1.0
Naresh
39136.0
1000.0java.lang.NullPointerException
     at ExcelFileReader.readExcelFile(ExcelFileReader.java:35)
     at ExcelFileReader.main(ExcelFileReader.java:49)
1.0
P
1.0
Naresh
39137.0
1000.0
1.0
P
1.0
Naresh
39138.0
1000.0
1.0
P
1.0
Naresh
39139.0
1000.0
1.0
P
1.0
Naresh
39140.0
1000.0
1.0
P
1.0
Naresh
39142.0
1000.0
1.0
P
1.0
Naresh
39143.0
1000.0
1.0
P
1.0
Naresh
39144.0
1000.0
1.0
P
1.0
Naresh
39145.0
1000.0
1.0
P
1.0
Naresh
39146.0
1000.0
1.0
P
1.0
Naresh
39147.0
1000.0
1.0
P
1.0
Naresh
39148.0
1000.0
1.0
P
1.0
Naresh
39149.0
1000.0
1.0
P
1.0
Naresh
39150.0
1000.0
1.0
P
1.0
Naresh
39151.0
1000.0
1.0
P
1.0
Naresh
39152.0
1000.0
1.0
P
1.0
Naresh
39153.0
1000.0
1.0
P
1.0
Naresh
39154.0
1000.0
1.0
P
1.0
Naresh
39155.0
1000.0
1.0
P
1.0
Naresh
39156.0
1000.0
1.0
P
1.0
Naresh
39157.0
0.0
1.0
A
1.0
Naresh
39158.0
0.0
1.0
A
1.0
Naresh
39159.0
0.0
1.0
A
1.0
Naresh
39160.0
0.0
1.0
A
1.0
Naresh
39161.0
0.0
1.0
A
1.0
Naresh
39162.0
0.0
1.0
A
1.0
Naresh
39163.0
0.0
1.0
A
1.0
Naresh
39164.0
0.0
1.0
A
1.0
Naresh
39165.0
0.0
1.0
A
1.0
Naresh
39166.0
1000.0
1.0
P
1.0
Naresh
39167.0
1000.0
1.0
P
1.0
Naresh
39168.0
1000.0
1.0
P
1.0
Naresh
39169.0
1000.0
1.0
P
1.0
Naresh
39170.0
1000.0
1.0
P
1.0
Naresh
39171.0
1000.0
1.0
P
2.0
Nani
39083.0
1000.0
2.0
P
2.0
Nani
39084.0
1000.0
2.0
P
2.0
Nani
39085.0
1000.0
2.0
P
2.0
Nani
39086.0
1000.0
2.0
P
2.0
Nani
39087.0
1000.0
2.0
P
2.0
Nani
39088.0
1000.0
2.0
P
2.0
Nani
39089.0
1000.0
2.0
P
2.0
Nani
39090.0
1000.0
2.0
P
2.0
Nani
39091.0
0.0
2.0
A
2.0
Nani
39092.0
1000.0
2.0
P
2.0
Nani
39093.0
1000.0
2.0
P
2.0
Nani
39094.0
1000.0
2.0
P
2.0
Nani
39095.0
0.0
2.0
A
2.0
Nani
39096.0
0.0
2.0
A
2.0
Nani
39097.0
0.0
2.0
A
2.0
Nani
39098.0
0.0
2.0
A
2.0
Nani
39099.0
0.0
2.0
A
2.0
Nani
39100.0
1000.0
2.0
P
2.0
Nani
39101.0
1000.0
2.0
P
2.0
Nani
39102.0
1000.0
2.0
P
2.0
Nani
39103.0
1000.0
2.0
P
2.0
Nani
39104.0
1000.0
2.0
P
2.0
Nani
39105.0
1000.0
2.0
P
2.0
Nani
39106.0
1000.0
2.0
P
2.0
Nani
39107.0
1000.0
2.0
P
2.0
Nani
39108.0
1000.0
2.0
P
2.0
Nani
39109.0
1000.0
2.0
P
2.0
Nani
39110.0
1000.0
2.0
P
2.0
Nani
39111.0
1000.0
2.0
P
2.0
Nani
39112.0
1000.0
2.0
P
2.0
Nani
39113.0
1000.0
2.0
P
2.0
Nani
39114.0
1000.0
2.0
P
2.0
Nani
39115.0
1000.0
2.0
P
2.0
Nani
39116.0
1000.0
2.0
P
2.0
Nani
39117.0
1000.0
2.0
P
2.0
Nani
39118.0
1000.0
2.0
P
2.0
Nani
39119.0
1000.0
2.0
P
2.0
Nani
39120.0
1000.0
2.0
P
2.0
Nani
39121.0
1000.0
2.0
P
2.0
Nani
39122.0
1000.0
2.0
P
2.0
Nani
39123.0
1000.0
2.0
P
2.0
Nani
39124.0
1000.0
2.0
P
2.0
Nani
39125.0
1000.0
2.0
P
2.0
Nani
39126.0
1000.0
2.0
P
2.0
Nani
39127.0
1000.0
2.0
P
2.0
Nani
39128.0
1000.0
2.0
P
2.0
Nani
39129.0
1000.0
2.0
P
2.0
Nani
39130.0
1000.0
2.0
P
2.0
Nani
39131.0
1000.0
2.0
P
2.0
Nani
39132.0
1000.0
2.0
P
2.0
Nani
39133.0
1000.0
2.0
P
2.0
Nani
39134.0
1000.0
2.0
P
2.0
Nani
39135.0
1000.0
2.0
P
2.0
Nani
39136.0
1000.0
2.0
P
2.0
Nani
39137.0
1000.0
2.0
P
2.0
Nani
39138.0
1000.0
2.0
P
2.0
Nani
39139.0
1000.0
2.0
P
2.0
Nani
39140.0
1000.0
2.0
P
2.0
Nani
39141.0
1000.0
2.0
P
2.0
Nani
39142.0
1000.0
2.0
P
2.0
Nani
39143.0
1000.0
2.0
P
2.0
Nani
39144.0
1000.0
2.0
P
2.0
Nani
39145.0
1000.0
2.0
P
2.0
Nani
39146.0
1000.0
2.0
P
2.0
Nani
39147.0
1000.0
2.0
P
2.0
Nani
39148.0
1000.0
2.0
P
2.0
Nani
39149.0
1000.0
2.0
P
2.0
Nani
39150.0
1000.0
2.0
P
2.0
Nani
39151.0
1000.0
2.0
P
2.0
Nani
39152.0
1000.0
2.0
P
2.0
Nani
39153.0
1000.0
2.0
P
2.0
Nani
39154.0
1000.0
2.0
P
2.0
Nani
39155.0
1000.0
2.0
P
2.0
Nani
39156.0
1000.0
2.0
P
2.0
Nani
39157.0
1000.0
2.0
P
2.0
Nani
39158.0
1000.0
2.0
P
2.0
Nani
39159.0
1000.0
2.0
P
2.0
Nani
39160.0
1000.0
2.0
P
2.0
Nani
39161.0
1000.0
2.0
P
2.0
Nani
39162.0
1000.0
2.0
P
2.0
Nani
39163.0
1000.0
2.0
P
2.0
Nani
39164.0
1000.0
2.0
P
2.0
Nani
39165.0
1000.0
2.0
P
2.0
Nani
39166.0
1000.0
2.0
P
2.0
Nani
39167.0
1000.0
2.0
P
2.0
Nani
39168.0
1000.0
2.0
P
2.0
Nani
39169.0
1000.0
2.0
P
2.0
Nani
39170.0
1000.0
2.0
P
2.0
Nani
39171.0
1000.0
2.0
P
3.0
Raju
39083.0
1000.0
3.0
P
3.0
Raju
39084.0
1000.0
3.0
P
3.0
Raju
39085.0
1000.0
3.0
P
3.0
Raju
39086.0
1000.0
3.0
P
3.0
Raju
39087.0
1000.0
3.0
P
3.0
Raju
39088.0
1000.0
3.0
P
3.0
Raju
39089.0
1000.0
3.0
P
3.0
Raju
39090.0
1000.0
3.0
P
3.0
Raju
39091.0
1000.0
3.0
P
3.0
Raju
39092.0
1000.0
3.0
P
3.0
Raju
39093.0
1000.0
3.0
P
3.0
Raju
39094.0
1000.0
3.0
P
3.0
Raju
39095.0
1000.0
3.0
P
3.0
Raju
39096.0
1000.0
3.0
P
3.0
Raju
39097.0
1000.0
3.0
P
3.0
Raju
39098.0
1000.0
3.0
P
3.0
Raju
39099.0
1000.0
3.0
P
3.0
Raju
39100.0
1000.0
3.0
P
3.0
Raju
39101.0
1000.0
3.0
P
3.0
Raju
39102.0
1000.0
3.0
P
3.0
Raju
39103.0
1000.0
3.0
P
3.0
Raju
39104.0
1000.0
3.0
P
3.0
Raju
39105.0
1000.0
3.0
P
3.0
Raju
39106.0
1000.0
3.0
P
3.0
Raju
39107.0
1000.0
3.0
P
3.0
Raju
39108.0
1000.0
3.0
P
3.0
Raju
39109.0
1000.0
3.0
P
3.0
Raju
39110.0
1000.0
3.0
P
3.0
Raju
39111.0
1000.0
3.0
P
3.0
Raju
39112.0
1000.0
3.0
P
3.0
Raju
39113.0
1000.0
3.0
P
3.0
Raju
39114.0
1000.0
3.0
P
3.0
Raju
39115.0
1000.0
3.0
P
3.0
Raju
39116.0
1000.0
3.0
P
3.0
Raju
39117.0
1000.0
3.0
P
3.0
Raju
39118.0
1000.0
3.0
P
3.0
Raju
39119.0
1000.0
3.0
P
3.0
Raju
39120.0
1000.0
3.0
P
3.0
Raju
39121.0
1000.0
3.0
P
3.0
Raju
39122.0
1000.0
3.0
P
3.0
Raju
39123.0
1000.0
3.0
P
3.0
Raju
39124.0
1000.0
3.0
P
3.0
Raju
39125.0
1000.0
3.0
P
3.0
Raju
39126.0
1000.0
3.0
P
3.0
Raju
39127.0
1000.0
3.0
P
3.0
Raju
39128.0
1000.0
3.0
P
3.0
Raju
39129.0
1000.0
3.0
P
3.0
Raju
39130.0
1000.0
3.0
P
3.0
Raju
39131.0
1000.0
3.0
P
3.0
Raju
39132.0
1000.0
3.0
P
3.0
Raju
39133.0
1000.0
3.0
P
3.0
Raju
39134.0
1000.0
3.0
P
3.0
Raju
39135.0
1000.0
3.0
P
3.0
Raju
39136.0
1000.0
3.0
P
3.0
Raju
39137.0
1000.0
3.0
P
3.0
Raju
39138.0
1000.0
3.0
P
3.0
Raju
39139.0
1000.0
3.0
P
3.0
Raju
39140.0
1000.0
3.0
P
3.0
Raju
39141.0
1000.0
3.0
P
3.0
Raju
39142.0
1000.0
3.0
P
3.0
Raju
39143.0
1000.0
3.0
P
3.0
Raju
39144.0
1000.0
3.0
P
3.0
Raju
39145.0
1000.0
3.0
P
3.0
Raju
39146.0
1000.0
3.0
P
3.0
Raju
39147.0
1000.0
3.0
P
3.0
Raju
39148.0
1000.0
3.0
P
3.0
Raju
39149.0
1000.0
3.0
P
3.0
Raju
39150.0
1000.0
3.0
P
3.0
Raju
39151.0
1000.0
3.0
P
3.0
Raju
39152.0
1000.0
3.0
P
3.0
Raju
39153.0
1000.0
3.0
P
3.0
Raju
39154.0
1000.0
3.0
P
3.0
Raju
39155.0
1000.0
3.0
P
3.0
Raju
39156.0
1000.0
3.0
P
3.0
Raju
39157.0
1000.0
3.0
P
3.0
Raju
39158.0
1000.0
3.0
P
3.0
Raju
39159.0
1000.0
3.0
P
3.0
Raju
39160.0
1000.0
3.0
P
3.0
Raju
39161.0
1000.0
3.0
P
3.0
Raju
39162.0
1000.0
3.0
P
3.0
Raju
39163.0
1000.0
3.0
P
3.0
Raju
39164.0
1000.0
3.0
P
3.0
Raju
39165.0
1000.0
3.0
P
3.0
Raju
39166.0
1000.0
3.0
P
3.0
Raju
39167.0
1000.0
3.0
P
3.0
Raju
39168.0
1000.0
3.0
P
3.0
Raju
39169.0
1000.0
3.0
P
3.0
Raju
39170.0
1000.0
3.0
P
3.0
Raju
39171.0
1000.0
3.0
P
3.0
Raju
39172.0
1000.0
3.0
P
excel file:
Eno     Ename     DOJ     SALARY     DeptNo     Attendence
1     Naresh     01/01/07     INR 1,000.00     1     P
1     Naresh     01/02/07     INR 1,000.00     1     P
1     Naresh     01/03/07     INR 1,000.00     1     P
1     Naresh     01/04/07     INR 1,000.00     1     P
1     Naresh     01/05/07     INR 1,000.00     1     P
1     Naresh     01/06/07     INR 0.00     1     A
1     Naresh     01/07/07     INR 0.00     1     A
1     Naresh     01/08/07     INR 0.00     1     A
1     Naresh     01/09/07     INR 1,000.00     1     P
1     Naresh     01/10/07     INR 1,000.00     1     P
1     Naresh     01/11/07     INR 1,000.00     1     P
1     Naresh     01/12/07     INR 1,000.00     1     P
1     Naresh     01/13/07     INR 0.00     1     A
1     Naresh     01/14/07     INR 1,000.00     1     P
1     Naresh     01/15/07     INR 1,000.00     1     P
1     Naresh     01/16/07     INR 1,000.00     1     P
1     Naresh     01/17/07     INR 1,000.00     1     P
1     Naresh     01/18/07     INR 1,000.00     1     P
1     Naresh     01/19/07     INR 0.00     1     A
1     Naresh     01/20/07     INR 1,000.00     1     P
1     Naresh     01/21/07     INR 1,000.00     1     P
1     Naresh     01/22/07     INR 1,000.00     1     P
1     Naresh     01/23/07     INR 1,000.00     1     P
1     Naresh     01/24/07     INR 1,000.00     1     P
1     Naresh     01/25/07     INR 1,000.00     1     P
1     Naresh     01/26/07     INR 1,000.00     1     P
1     Naresh     01/27/07     INR 1,000.00     1     P
1     Naresh     01/28/07     INR 1,000.00     1     P
1     Naresh     01/29/07     INR 1,000.00     1     P
1     Naresh     01/30/07     INR 0.00     1     A
1     Naresh     02/01/07     INR 1,000.00     1     P
1     Naresh     02/02/07     INR 1,000.00     1     P
1     Naresh     02/03/07     INR 1,000.00     1     P
1     Naresh     02/04/07     INR 1,000.00     1     P
1     Naresh     02/05/07     INR 1,000.00     1     P
1     Naresh     02/06/07     INR 1,000.00     1     P
1     Naresh     02/07/07     INR 1,000.00     1     P
1     Naresh     02/08/07     INR 1,000.00     1     P
1     Naresh     02/09/07     INR 1,000.00     1     P
1     Naresh     02/10/07     INR 1,000.00     1     P
1     Naresh     02/11/07     INR 1,000.00     1     P
1     Naresh     02/12/07     INR 1,000.00     1     P
1     Naresh     02/13/07     INR 1,000.00     1     P
1     Naresh     02/14/07     INR 1,000.00     1     P
1     Naresh     02/15/07     INR 1,000.00     1     P
1     Naresh     02/16/07     INR 1,000.00     1     P
1     Naresh     02/17/07     INR 1,000.00     1     P
1     Naresh     02/18/07     INR 1,000.00     1     P
1     Naresh     02/19/07     INR 1,000.00     1     P
1     Naresh     02/20/07     INR 1,000.00     1     P
1     Naresh     02/21/07     INR 1,000.00     1     P
1     Naresh     02/22/07     INR 1,000.00     1     P
1     Naresh     02/23/07     INR 1,000.00     1     P
1     Naresh     02/24/07     INR 1,000.00     1     P
1     Naresh     02/25/07     INR 1,000.00     1     P
1     Naresh     02/26/07     INR 1,000.00     1     P
1     Naresh     02/27/07     INR 1,000.00     1     P
1     Naresh     03/01/07     INR 1,000.00     1     P
1     Naresh     03/02/07     INR 1,000.00     1     P
1     Naresh     03/03/07     INR 1,000.00     1     P
1     Naresh     03/04/07     INR 1,000.00     1     P
1     Naresh     03/05/07     INR 1,000.00     1     P
1     Naresh     03/06/07     INR 1,000.00     1     P
1     Naresh     03/07/07     INR 1,000.00     1     P
1     Naresh     03/08/07     INR 1,000.00     1     P
1     Naresh     03/09/07     INR 1,000.00     1     P
1     Naresh     03/10/07     INR 1,000.00     1     P
1     Naresh     03/11/07     INR 1,000.00     1     P
1     Naresh     03/12/07     INR 1,000.00     1     P
1     Naresh     03/13/07     INR 1,000.00     1     P
1     Naresh     03/14/07     INR 1,000.00     1     P
1     Naresh     03/15/07     INR 1,000.00     1     P
1     Naresh     03/16/07     INR 0.00     1     A
1     Naresh     03/17/07     INR 0.00     1     A
1     Naresh     03/18/07     INR 0.00     1     A
1     Naresh     03/19/07     INR 0.00     1     A
1     Naresh     03/20/07     INR 0.00     1     A
1     Naresh     03/21/07     INR 0.00     1     A
1     Naresh     03/22/07     INR 0.00     1     A
1     Naresh     03/23/07     INR 0.00     1     A
1     Naresh     03/24/07     INR 0.00     1     A
1     Naresh     03/25/07     INR 1,000.00     1     P
1     Naresh     03/26/07     INR 1,000.00     1     P
1     Naresh     03/27/07     INR 1,000.00     1     P
1     Naresh     03/28/07     INR 1,000.00     1     P
1     Naresh     03/29/07     INR 1,000.00     1     P
1     Naresh     03/30/07     INR 1,000.00     1     P
2     Nani     01/01/07     INR 1,000.00     2     P
2     Nani     01/02/07     INR 1,000.00     2     P
2     Nani     01/03/07     INR 1,000.00     2     P
2     Nani     01/04/07     INR 1,000.00     2     P
2     Nani     01/05/07     INR 1,000.00     2     P
2     Nani     01/06/07     INR 1,000.00     2     P
2     Nani     01/07/07     INR 1,000.00     2     P
2     Nani     01/08/07     INR 1,000.00     2     P
2     Nani     01/09/07     INR 0.00     2     A
2     Nani     01/10/07     INR 1,000.00     2     P
2     Nani     01/11/07     INR 1,000.00     2     P
2     Nani     01/12/07     INR 1,000.00     2     P
2     Nani     01/13/07     INR 0.00     2     A
2     Nani     01/14/07     INR 0.00     2     A
2     Nani     01/15/07     INR 0.00     2     A
2     Nani     01/16/07     INR 0.00     2     A
2     Nani     01/17/07     INR 0.00     2     A
2     Nani     01/18/07     INR 1,000.00     2     P
2     Nani     01/19/07     INR 1,000.00     2     P
2     Nani     01/20/07     INR 1,000.00     2     P
2     Nani     01/21/07     INR 1,000.00     2     P
2     Nani     01/22/07     INR 1,000.00     2     P
2     Nani     01/23/07     INR 1,000.00     2     P
2     Nani     01/24/07     INR 1,000.00     2     P
2     Nani     01/25/07     INR 1,000.00     2     P
2     Nani     01/26/07     INR 1,000.00     2     P
2     Nani     01/27/07     INR 1,000.00     2     P
2     Nani     01/28/07     INR 1,000.00     2     P
2     Nani     01/29/07     INR 1,000.00     2     P
2     Nani     01/30/07     INR 1,000.00     2     P
2     Nani     01/31/07     INR 1,000.00     2     P
2     Nani     02/01/07     INR 1,000.00     2     P
2     Nani     02/02/07     INR 1,000.00     2     P
2     Nani     02/03/07     INR 1,000.00     2     P
2     Nani     02/04/07     INR 1,000.00     2     P
2     Nani     02/05/07     INR 1,000.00     2     P
2     Nani     02/06/07     INR 1,000.00     2     P
2     Nani     02/07/07     INR 1,000.00     2     P
2     Nani     02/08/07     INR 1,000.00     2     P
2     Nani     02/09/07     INR 1,000.00     2     P
2     Nani     02/10/07     INR 1,000.00     2     P
2     Nani     02/11/07     INR 1,000.00     2     P
2     Nani     02/12/07     INR 1,000.00     2     P
2     Nani     02/13/07     INR 1,000.00     2     P
2     Nani     02/14/07     INR 1,000.00     2     P
2     Nani     02/15/07     INR 1,000.00     2     P
2     Nani     02/16/07     INR 1,000.00     2     P
2     Nani     02/17/07     INR 1,000.00     2     P
2     Nani     02/18/07     INR 1,000.00     2     P
2     Nani     02/19/07     INR 1,000.00     2     P
2     Nani     02/20/07     INR 1,000.00     2     P
2     Nani     02/21/07     INR 1,000.00     2     P
2     Nani     02/22/07     INR 1,000.00     2     P
2     Nani     02/23/07     INR 1,000.00     2     P
2     Nani     02/24/07     INR 1,000.00     2     P
2     Nani     02/25/07     INR 1,000.00     2     P
2     Nani     02/26/07     INR 1,000.00     2     P
2     Nani     02/27/07     INR 1,000.00     2     P
2     Nani     02/28/07     INR 1,000.00     2     P
2     Nani     03/01/07     INR 1,000.00     2     P
2     Nani     03/02/07     INR 1,000.00     2     P
2     Nani     03/03/07     INR 1,000.00     2     P
2     Nani     03/04/07     INR 1,000.00     2     P
2     Nani     03/05/07     INR 1,000.00     2     P
2     Nani     03/06/07     INR 1,000.00     2     P
2     Nani     03/07/07     INR 1,000.00     2     P
2     Nani     03/08/07     INR 1,000.00     2     P
2     Nani     03/09/07     INR 1,000.00     2     P
2     Nani     03/10/07     INR 1,000.00     2     P
2     Nani     03/11/07     INR 1,000.00     2     P
2     Nani     03/12/07     INR 1,000.00     2     P
2     Nani     03/13/07     INR 1,000.00     2     P
2     Nani     03/14/07     INR 1,000.00     2     P
2     Nani     03/15/07     INR 1,000.00     2     P
2     Nani     03/16/07     INR 1,000.00     2     P
2     Nani     03/17/07     INR 1,000.00     2     P
2     Nani     03/18/07     INR 1,000.00     2     P
2     Nani     03/19/07     INR 1,000.00     2     P
2     Nani     03/20/07     INR 1,000.00     2     P
2     Nani     03/21/07     INR 1,000.00     2     P
2     Nani     03/22/07     INR 1,000.00     2     P
2     Nani     03/23/07     INR 1,000.00     2     P
2     Nani     03/24/07     INR 1,000.00     2     P
2     Nani     03/25/07     INR 1,000.00     2     P
2     Nani     03/26/07     INR 1,000.00     2     P
2     Nani     03/27/07     INR 1,000.00     2     P
2     Nani     03/28/07     INR 1,000.00     2     P
2     Nani     03/29/07     INR 1,000.00     2     P
2     Nani     03/30/07     INR 1,000.00     2     P
3     Raju     01/01/07     INR 1,000.00     3     P
3     Raju     01/02/07     INR 1,000.00     3     P
3     Raju     01/03/07     INR 1,000.00     3     P
3     Raju     01/04/07     INR 1,000.00     3     P
3     Raju     01/05/07     INR 1,000.00     3     P
3     Raju     01/06/07     INR 1,000.00     3     P
3     Raju     01/07/07     INR 1,000.00     3     P
3     Raju     01/08/07     INR 1,000.00     3     P
3     Raju     01/09/07     INR 1,000.00     3     P
3     Raju     01/10/07     INR 1,000.00     3     P
3     Raju     01/11/07     INR 1,000.00     3     P
3     Raju     01/12/07     INR 1,000.00     3     P
3     Raju     01/13/07     INR 1,000.00     3     P
3     Raju     01/14/07     INR 1,000.00     3     P
3     Raju     01/15/07     INR 1,000.00     3     P
3     Raju     01/16/07     INR 1,000.00     3     P
3     Raju     01/17/07     INR 1,000.00     3     P
3     Raju     01/18/07     INR 1,000.00     3     P
3     Raju     01/19/07     INR 1,000.00     3     P
3     Raju     01/20/07     INR 1,000.00     3     P
3     Raju     01/21/07     INR 1,000.00     3     P
3     Raju     01/22/07     INR 1,000.00     3     P
3     Raju     01/23/07     INR 1,000.00     3     P
3     Raju     01/24/07     INR 1,000.00     3     P
3     Raju     01/25/07     INR 1,000.00     3     P
3     Raju     01/26/07     INR 1,000.00     3     P
3     Raju     01/27/07     INR 1,000.00     3     P
3     Raju     01/28/07     INR 1,000.00     3     P
3     Raju     01/29/07     INR 1,000.00     3     P
3     Raju     01/30/07     INR 1,000.00     3     P
3     Raju     01/31/07     INR 1,000.00     3     P
3     Raju     02/01/07     INR 1,000.00     3     P
3     Raju     02/02/07     INR 1,000.00     3     P
3     Raju     02/03/07     INR 1,000.00     3     P
3     Raju     02/04/07     INR 1,000.00     3     P
3     Raju     02/05/07     INR 1,000.00     3     P
3     Raju     02/06/07     INR 1,000.00     3     P
3     Raju     02/07/07     INR 1,000.00     3     P
3     Raju     02/08/07     INR 1,000.00     3     P
3     Raju     02/09/07     INR 1,000.00     3     P
3     Raju     02/10/07     INR 1,000.00     3     P
3     Raju     02/11/07     INR 1,000.00     3     P
3     Raju     02/12/07     INR 1,000.00     3     P
3     Raju     02/13/07     INR 1,000.00     3     P
3     Raju     02/14/07     INR 1,000.00     3     P
3     Raju     02/15/07     INR 1,000.00     3     P
3     Raju     02/16/07     INR 1,000.00     3     P
3     Raju     02/17/07     INR 1,000.00     3     P
3     Raju     02/18/07     INR 1,000.00     3     P
3     Raju     02/19/07     INR 1,000.00     3     P
3     Raju     02/20/07     INR 1,000.00     3     P
3     Raju     02/21/07     INR 1,000.00     3     P
3     Raju     02/22/07     INR 1,000.00     3     P
3     Raju     02/23/07     INR 1,000.00     3     P
3     Raju     02/24/07     INR 1,000.00     3     P
3     Raju     02/25/07     INR 1,000.00     3     P
3     Raju     02/26/07     INR 1,000.00     3     P
3     Raju     02/27/07     INR 1,000.00     3     P
3     Raju     02/28/07     INR 1,000.00     3     P
3     Raju     03/01/07     INR 1,000.00     3     P
3     Raju     03/02/07     INR 1,000.00     3     P
3     Raju     03/03/07     INR 1,000.00     3     P
3     Raju     03/04/07     INR 1,000.00     3     P
3     Raju     03/05/07     INR 1,000.00     3     P
3     Raju     03/06/07     INR 1,000.00     3     P
3     Raju     03/07/07     INR 1,000.00     3     P
3     Raju     03/08/07     INR 1,000.00     3     P
3     Raju     03/09/07     INR 1,000.00     3     P
3     Raju     03/10/07     INR 1,000.00     3     P
3     Raju     03/11/07     INR 1,000.00     3     P
3     Raju     03/12/07     INR 1,000.00     3     P
3     Raju     03/13/07     INR 1,000.00     3     P
3     Raju     03/14/07     INR 1,000.00     3     P
3     Raju     03/15/07     INR 1,000.00     3     P
3     Raju     03/16/07     INR 1,000.00     3     P
3     Raju     03/17/07     INR 1,000.00     3     P
3     Raju     03/18/07     INR 1,000.00     3     P
3     Raju     03/19/07     INR 1,000.00     3     P
3     Raju     03/20/07     INR 1,000.00     3     P
3     Raju     03/21/07     INR 1,000.00     3     P
3     Raju     03/22/07     INR 1,000.00     3     P
3     Raju     03/23/07     INR 1,000.00     3     P
3     Raju     03/24/07     INR 1,000.00     3     P
3     Raju     03/25/07     INR 1,000.00     3     P
3     Raju     03/26/07     INR 1,000.00     3     P
3     Raju     03/27/07     INR 1,000.00     3     P
3     Raju     03/28/07     INR 1,000.00     3     P
3     Raju     03/29/07     INR 1,000.00     3     P
3     Raju     03/30/07     INR 1,000.00     3     P
3     Raju     03/31/07     INR 1,000.00     3     P

Similar Messages

  • I want to Subtract the current date to find out whats the date 10 days back

    Hi guys,
    I want to subtract the current date to find the date 10 days back. If I use Gregorian calendar and then substract the day
    calender.get(GregorianCalendar.DATE) - 10;
    I will get right if my current date is 20 or more. If it happens to be less than 10, then I get in negative.
    Please suggest an solution for this.
    Thanks in advance
    With regards,
    Amin

    Here's the code.
        GreogrianCalendar mycalendar = new GregorianCalendar() ;
        mycalendar.add(mycalendar.DATE, -10) ;That should get you the date you want and just ignore the background noise that is hambone.
    Hi guys,
    I want to subtract the current date to find the date
    10 days back. If I use Gregorian calendar and then
    substract the day
    calender.get(GregorianCalendar.DATE) - 10;
    I will get right if my current date is 20 or more. If
    it happens to be less than 10, then I get in negative.
    Please suggest an solution for this.
    Thanks in advance
    With regards,
    Amin

  • Moving data between tables (how to find out if the 2nd table is empty)

    Hi,
    I have 2 tables, and I'm copying records from one table to another.
    I've followed the Wiki: [https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/movingdatabetween+tables]
    So far, everything works ok.
    Here is my question: how do I get the number of records passed?
    I mean, how do I know the number of rows in the 2nd table? (Remember that this number is variable, because it depends on how many rows I've inserted and deleted on the 2nd table).
    I've tried to achieve that using a data store with a numeric field, but I couldn't find the way to increment/decrement the numeric field on data store, and insert/delete the row on table at the same time .
    All I want is to find out if the 2nd table is empty or not.
    Any ideas to solve this?
    Thanks in advance!
    Help will be point-rewarded.
    Marcelo

    Hi Ahmed
    thanks for your reply, it was very helpful!! (I've assigned points to you)
    However the user can add twice or more times the same row... so the counter doesn't reflect the real number of rows in the 2nd table.
    I've partially solved this also using a data store with a parameter called key_list, where I add (I mean, concatenate) the key field for the selected row.
    So, if I have a table with 4 rows with key fields "key1", "key2", "key3", the parameter key_list would get "key1;key2;key3".
    So far, it's ok. But when I remove a row previosly added.... I can't remove the key from the key_list parameter. (I mean, from 2nd table I choose to remove the "key2" row, but I don't know how also remove the key name from the key_list)
    I hope be clearly enough.
    Any help will be really appreciated and point-rewarded.
    Thanks again.
    Best Regards
    PS: is there any way of "mark" a row that has been added to the 2nd table? I mean, using (for example) a hidden boolean field named "added", that becomes true when the selected row is added to the 2nd table.

  • When I start my MacBook Air, I get a problem report on the Time Capsule 802.11n. When I click Continue, it asks for a password. I don't know what the password is because I didn't set this up. How can I find out what the password is?

    When I start my MacBook Air, I get a problem report on the Time Capsule 802.11n. When I click Continue, it asks for a password. I don't know what the password is because I didn't set this up. How can I find out what the password is?

    Who set it up?

  • How to find out what the latest update is for something from apple's site?

    i've never been able to do this, and has been a recurring problem for many years:
    how can you, using apple's web site -- presumably the support or downloads section -- find out what the latest update for/of a certain product is?
    without going into the details, the software update app is of no use to me.
    for example, i have a airport extreme base station 54 mbps. how do i go about finding out what it's latest software is? do such products not have a web page which has the latest update linked to from it?
    why is it so hard, impossible i find, to find out what the latest software is?
    any pointers much appreciated. (i'm not particularly looking for the answer to "what't the latest update for a airport extreme base station 54 mbps?" but a general method for finding out the latest update for anything using apple's web site)
    thanks very much.

    If you use the Advance Search function:
    http://search.info.apple.com/
    you can filter results to give downloads for the search words airport extreme base station. The return will be in date order from newest to oldest. Yo ucan also designate word pairs of groups to narrow the search.

  • How can I find out if the current CPU is 32-bit or 64-bit?

    I am developing a program that calls an external c++ executable with a certain parameter. With certain parameters, the executable often takes up large amounts of memory (<4GB). This is bad as I am often running this program on a 32-bit machine.
    I am compiling this program on a 32-bit machine and running it (sometimes) on a 64-bit machine.
    I need a way to find out if I have a 32 or 64 bit CPU. I can't solve the problem of it crashing with these parameters, however I can avoid calling the executable for these specific parameters when I am on a 32 bit machine.
    As far as I know, System.getProperty("sun.arch.data.model") will return the size of your java Virtual Machine, but I need to know the size of the CPU
    So basically, to sum it up:
    I need a way of finding out what the size of the runtime machine is. (32-bit or 64-bit)
    Thank you in advance!
    -Andysics

    Crossposted as a response to another thread.

  • My MBA is full, and cannot find out where the unidentified photos are.

    "About this Mac" says I have 89GB of photos saved. When I check my iPhoto, it only has 36GB of photos. My SSD is full, so I need to find out where the rest of 53GB of photos are. Can someone help?

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    To locate large files, you can use Spotlight as described here. That method may not find large folders that contain a lot of small files.
    You can also use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual.
    Triple-click the line of text below to select it, then copy the selected text to the Clipboard (command-C):sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means.
    When you're done with ODS, quit it and also quit Terminal.

  • How to find out whether the system user is a vendor or a purchaser

    Hi,
    I am working in SRM 5.0. I have a requirement that some fields of Bid invitation can be visible by purchaser but not to bidder.
    How to find out whether the system user (user id though which system logged in) is a vendor or a purchaser. Kindly help me to resolve this issue.
    Sushmita Singh

    check his role.
    is surrogate bidding available for that bidder.
    via surrogate bid , purchaser can submit bid on behalf of the bidder.
    masa is correct
    pposa_bbp - search via user . so he might be  a purchaser.
    maintain business partner -supply your bidder bp number -edit
    go to bidder data .Under bidder data you must flag "PERMIT PROXY BIDDING"
    regards
    Muthu
    br
    muthu

  • My macbook pro keeps freezing when I am on the internet. How can I find out what the issue is and fix it?

    my macbook pro keeps freezing when I am on the internet. How can I find out what the issue is and fix it?

    Here is mine, sorry if i included anything i wasnt supposed to!
    7/18/13 1:04:13.797 PM ReportCrash[340]: failed looking up LS service ( scCreateSystemService returned MACH_PORT_NULL, called from SetupCoreApplicationServicesCommunicationPort, so using client-side NULL calls.
    7/18/13 1:04:13.797 PM ReportCrash[340]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    7/18/13 1:04:14.491 PM ReportCrash[340]: Saved crash report for PluginProcess[316] version 8536 (8536.30.1) to /Library/Logs/DiagnosticReports/PluginProcess_2013-07-18-130414_(REMOVED MY NAME).crash
    7/18/13 1:05:08.000 PM bootlog[0]: BOOT_TIME 1374170708 0
    Process:         PluginProcess [316]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
    Identifier:      PluginProcess
    Version:         8536 (8536.30.1)
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [300]
    User ID:         501
    Date/Time:       2013-07-18 13:04:09.864 -0500
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 000000010e2de000-000000010e2df000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff890f0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff86251dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff862519ee _dispatch_mgr_thread + 54
    Thread 2:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 3:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 4:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 5:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 6:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 7:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 8:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 9:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 11:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 12:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 13:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 14:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 15:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff890ee686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff890edc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff86af5233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff86afa916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff86afa0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff90afe7ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.AppKit                        0x00007fff8be7c306 -[NSAnimation(NSInternal) _runBlocking] + 377
    7   com.apple.AppKit                        0x00007fff8be7c168 -[NSAnimation(NSInternal) _animationThread] + 65
    8   libdispatch.dylib                       0x00007fff86252f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff8624f0b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff862501fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff851b6d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff890ee602 _kernelrpc_mach_port_destroy_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff890ef464 mach_port_destroy + 22
    2   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53b24 GhalInterface::deallocateHeap(void**) + 164
    3   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53a68 GHAL3D::CPrivateResource::~CPrivateResource() + 56
    4   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53a08 GHAL3D::CIndirectStateHeap::~CIndirectStateHeap() + 24
    5   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6d2ad GHAL3D::CIndirectStateHeap::Delete(GHAL3D::CIndirectStateHeap*&) + 29
    6   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6cf8c GHAL3D::CIndirectStateMemoryManager::~CIndirectStateMemoryManager() + 652
    7   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113f6fbc8 GHAL3D::CGen6IndirectStateMemoryManager::~CGen6IndirectStateMemoryManager() + 24
    8   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6ccad GHAL3D::CIndirectStateMemoryManager::Delete(GHAL3D::CIndirectStateMemoryManager *&) + 29
    9   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6cc6c GHAL3D::CStateProcessorCache::~CStateProcessorCache() + 28
    10  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113fe0c6e GHAL3D::CGen6StateProcessorCache::~CGen6StateProcessorCache() + 14
    11  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113fe0e4d GHAL3D::CGen6StateProcessorCache::Delete(GHAL3D::CGen6StateProcessorCache*&) + 29
    12  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113f5799b GHAL3D::CGen6PrivateStateProcessor::Finalize() + 139
    13  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6c3ba GHAL3D::CPrivateStateProcessor::Delete(GHAL3D::CPrivateStateProcessor*&) + 26
    14  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6bb97 GHAL3D::CContext::~CContext() + 55
    15  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6bb4d GHAL3D::CContext::Delete(GHAL3D::CContext*&) + 29
    16  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6b8a4 glrDestroyGHAL(GLDContextRec*) + 516
    17  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x00000001140adf88 glrTerminateContext + 1627
    18  libGPUSupport.dylib                     0x000000010f9d3fbd gldDestroyContext + 114
    19  GLEngine                                0x0000000113a258fd gliDestroyContext + 162
    20  com.apple.opengl                        0x00007fff8ce5f0a3 CGLReleaseContext + 190
    21  com.apple.QuartzCore                    0x00007fff85d473a2 CA::(anonymous namespace)::AsyncDeletion::callback(void*) + 122
    22  libdispatch.dylib                       0x00007fff8624f0b6 _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff862501fa _dispatch_worker_thread2 + 304
    24  libsystem_c.dylib                       0x00007fff851b6d0b _pthread_wqthread + 404
    25  libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 18:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 19:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff890f0386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8523e800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8523e717 usleep + 54
    3   com.apple.AppKit                        0x00007fff8c13f838 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff90af9562 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x0000000000000000  rcx: 0x00007fff890f053e  rdx: 0x0000000000000000
      rdi: 0x00000001125b33ec  rsi: 0x0000000000000001  rbp: 0x0000000000000000  rsp: 0x124782f000000000
       r8: 0xffff8047bfbfadaf   r9: 0x000000000000003f  r10: 0x00007fff890f1342  r11: 0x0000000000000246
      r12: 0x0000000000000001  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x4d55545800000000
      rip: 0x0000000000000000  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
           0x10e2de000 -        0x10e2defff  com.apple.WebKit.PluginProcess (8536 - 8536.30.1) <A72AA77A-B8D0-359F-AD62-C201663A5340> /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
           0x10e2e3000 -        0x10e2e4fff  PluginProcessShim.dylib (7536.30.1) <3A07CA89-E38A-3445-AA26-05B2F437C153> /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcessShim.dylib
           0x10f9ae000 -        0x10f9b2ff7 +com.macromedia.Flash Player.plugin (11.8.800.94 - 11.8.800.94) <8AB5EF31-4EF9-29E1-9A89-1D693E50EF2E> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
           0x10f9b7000 -        0x10f9bcfff  com.apple.agl (3.2.1 - AGL-3.2.1) <F3FD497C-AEB8-35CB-92D4-1669B941435F> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10f9c3000 -        0x10f9c8fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <586F677E-D0F8-33B2-B6ED-41ED81C9EED9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10f9d1000 -        0x10f9defff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10f9e5000 -        0x10f9eefe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x110b72000 -        0x112474ff7 +com.macromedia.FlashPlayer-10.6.plugin (11.8.800.94 - 11.8.800.94) <C2E6FDA9-5084-7801-3C01-184940681DAF> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
           0x113a10000 -        0x113bcefff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x113c05000 -        0x113d75fff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x113dad000 -        0x11416aff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x11429a000 -        0x1142c5fff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff6dede000 -     0x7fff6df1293f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff849e5000 -     0x7fff84ae3fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff84ae4000 -     0x7fff84b78ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff84b79000 -     0x7fff84b82ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff84bc2000 -     0x7fff84bc5ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff84bc6000 -     0x7fff84bddfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff84bde000 -     0x7fff84beafff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84bed000 -     0x7fff84cbfff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff84cce000 -     0x7fff84cebff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff84cec000 -     0x7fff84d11ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff84dcb000 -     0x7fff84deaff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff84deb000 -     0x7fff84df0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff84dfa000 -     0x7fff84e51ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff84e52000 -     0x7fff84e53fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84e54000 -     0x7fff84e58fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff84e59000 -     0x7fff85170ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff85171000 -     0x7fff8519dff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff851a0000 -     0x7fff8526cff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8526d000 -     0x7fff85bfd4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff85bfe000 -     0x7fff85c9cff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff85c9d000 -     0x7fff85e4bfff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85e4c000 -     0x7fff85e78fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8624d000 -     0x7fff86262ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff86263000 -     0x7fff86263fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff862d5000 -     0x7fff862dbff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff862dc000 -     0x7fff862dcffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8633a000 -     0x7fff8633efff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8633f000 -     0x7fff86341fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff86342000 -     0x7fff863c1ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff863c2000 -     0x7fff863d7fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff863de000 -     0x7fff863defff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8643a000 -     0x7fff8644efff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86477000 -     0x7fff86485fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86486000 -     0x7fff86537fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff86538000 -     0x7fff865b9fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff865ba000 -     0x7fff8668dff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8668e000 -     0x7fff86783fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff867df000 -     0x7fff86800fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff86801000 -     0x7fff8683efef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8683f000 -     0x7fff86841ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff86842000 -     0x7fff86847fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff86848000 -     0x7fff86895fff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff868f6000 -     0x7fff868f7ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff869fb000 -     0x7fff86a1dff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff86a1e000 -     0x7fff86ac4ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff86ac5000 -     0x7fff86cafff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86cb0000 -     0x7fff86cb0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff86f27000 -     0x7fff86f41fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff86f42000 -     0x7fff86faaff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff86fab000 -     0x7fff86facfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff86fad000 -     0x7fff86fbfff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff87007000 -     0x7fff87008fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff87277000 -     0x7fff872c3ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff872c4000 -     0x7fff872c7fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8735f000 -     0x7fff873b0ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff873b1000 -     0x7fff8740dff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff874eb000 -     0x7fff874f2fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87515000 -     0x7fff87564ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87565000 -     0x7fff8767efff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8767f000 -     0x7fff876c2ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff876c3000 -     0x7fff876e2ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8779c000 -     0x7fff8779dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8779e000 -     0x7fff877a4fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff87801000 -     0x7fff879edff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff879ee000 -     0x7fff879eefff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff879ef000 -     0x7fff87af1fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff87af2000 -     0x7fff87b2dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87b68000 -     0x7fff87b8ffff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff87b90000 -     0x7fff87b94ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff87b95000 -     0x7fff87bc6ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff87bc7000 -     0x7fff87bf2fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff87bf3000 -     0x7fff87bf5fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87c46000 -     0x7fff87e46fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff87e47000 -     0x7fff87e49fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff87e4a000 -     0x7fff87e84ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff87e85000 -     0x7fff87e85fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88155000 -     0x7fff88160ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88169000 -     0x7fff8817ffff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88181000 -     0x7fff881c0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff881c1000 -     0x7fff885defff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff885df000 -     0x7fff88750ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8879b000 -     0x7fff887a9ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff887aa000 -     0x7fff887b8ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff887b9000 -     0x7fff887e7ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff88890000 -     0x7fff88992fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88993000 -     0x7fff889c9fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff889ca000 -     0x7fff889d6fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff88a5a000 -     0x7fff88a69ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff88fda000 -     0x7fff890b4fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff890b5000 -     0x7fff890ddfff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff890de000 -     0x7fff890f9ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff89c55000 -     0x7fff89ca0fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff89cad000 -     0x7fff89cb1fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89cb2000 -     0x7fff89d15ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89d16000 -     0x7fff89d40ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff89d41000 -     0x7fff89d58fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff89d59000 -     0x7fff89df4fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff89e87000 -     0x7fff89e8fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff89e90000 -     0x7fff89ee9ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff89eea000 -     0x7fff8a004fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8a005000 -     0x7fff8a2a0ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8a2a1000 -     0x7fff8a572ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8a573000 -     0x7fff8a581fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a582000 -     0x7fff8a60fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a610000 -     0x7fff8a665ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8a666000 -     0x7fff8a7c4fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8a800000 -     0x7fff8aab7ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8aaec000 -     0x7fff8aaecfff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8aaed000 -     0x7fff8aba0ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8accc000 -     0x7fff8acf3ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8acf4000 -     0x7fff8ad38fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff8ad39000 -     0x7fff8ad44fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ad45000 -     0x7fff8adc5ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8adce000 -     0x7fff8add0ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8add1000 -     0x7fff8add2ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff8add8000 -     0x7fff8adfaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8adfb000 -     0x7fff8ae02fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8afa1000 -     0x7fff8afb4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b029000 -     0x7fff8b126fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8b155000 -     0x7fff8b1b4fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8b21d000 -     0x7fff8b279fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b27a000 -     0x7fff8b39292f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8b393000 -     0x7fff8bb3afff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bb3b000 -     0x7fff8bb3cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8bb3d000 -     0x7fff8bc48fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8bcb8000 -     0x7fff8bd07fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8bd3a000 -     0x7fff8bd7dff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8bdb3000 -     0x7fff8bdc0fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8be05000 -     0x7fff8ca32fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ca33000 -     0x7fff8ca82ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8ca83000 -     0x7fff8cbd5fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ce5a000 -     0x7fff8ce69fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ce6a000 -     0x7fff8cf8afff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8cf8b000 -     0x7fff8cf90fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8cf91000 -     0x7fff8cfbffff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8cfec000 -     0x7fff8d428fef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8d436000 -     0x7fff8d48dff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8d48e000 -     0x7fff8d553ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d56f000 -     0x7fff8d966fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d967000 -     0x7fff8d9e9ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8d9ea000 -     0x7fff8d9f7ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d9f8000 -     0x7fff8d9f8fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8d9f9000 -     0x7fff8dd29fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8dd33000 -     0x7fff8dd5ffff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8dd63000 -     0x7fff8ddbdfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8de4c000 -     0x7fff8de53fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8de57000 -     0x7fff8e08cff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8e09b000 -     0x7fff8e33fff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e34c000 -     0x7fff8e409ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8e5d1000 -     0x7fff8e66bfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e66c000 -     0x7fff8e6b6ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e708000 -     0x7fff8e70bfff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e70c000 -     0x7fff8e71fff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8e723000 -     0x7fff8e779fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e77a000 -     0x7fff8e785ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8e786000 -     0x7fff8e797ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8e798000 -     0x7fff8e800fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8e801000 -     0x7fff8e99cfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e99d000 -     0x7fff8e9beff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8e9bf000 -     0x7fff8eabcff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8eb11000 -     0x7fff8eb7eff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8eb7f000 -     0x7fff8eb89fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8eb8a000 -     0x7fff8ee39fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8ee3a000 -     0x7fff8ee3efff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8ee78000 -     0x7fff8eeb8ff7  com.apple.MediaKit (14 - 687) <8A

  • How to find out all the text elements in the report using Java?

    How to trace the contents of an rpt file?
    I am able to open the rpt file in my report viewer but can not trace it using the JAVA code.
    Actually, I need to find out all the text elements of rpt (Report) file and replace them with the contents of resource bundle.
    My Java code to open a report is given below:
    import com.crystaldecisions.reports.sdk.ISubreportClientDocument;
    import com.crystaldecisions.reports.sdk.ParameterFieldController;
    import com.crystaldecisions.reports.sdk.ReportClientDocument;
    import com.crystaldecisions.sdk.occa.report.data.ConnectionInfo;
    import com.crystaldecisions.sdk.occa.report.data.ConnectionInfos;
    import com.crystaldecisions.sdk.occa.report.data.Fields;
    import com.crystaldecisions.sdk.occa.report.data.IConnectionInfo;
    import com.crystaldecisions.sdk.occa.report.data.ParameterField;
    import com.crystaldecisions.sdk.occa.report.data.ParameterFieldDiscreteValue;
    import com.crystaldecisions.sdk.occa.report.data.Values;
    import com.crystaldecisions.sdk.occa.report.lib.IStrings;
    import com.crystaldecisions.sdk.occa.report.lib.PropertyBag;
    import com.crystaldecisions.sdk.occa.report.lib.PropertyBagHelper;
    import com.crystaldecisions.sdk.occa.report.lib.ReportSDKException;
    import com.crystaldecisions.sdk.occa.report.reportsource.IReportSource;
    public String viewRpt()
                   //1.) Setting Database Infos
                            IConnectionInfo iConnectionInfoObj=setDatabaseConnectionInfos();
                   //2.) Setting Report Path
                   String reportPath=u201DE:
    was60
    rptFilesLocation
    u201D;
                   reportPath=(reportPath!=null)?                                             reportPath:AppConstants.CONSTANTS.BLANK;
                   String reportName="report1.rpt";
                   String reportFullPath = reportPath +   rptName;
                 //3.) Setting Report Source
                             ReportClientDocument reportClientDoc = new ReportClientDocument();
                                              reportClientDoc.open(reportPath, 0);
                  IReportSource reportSource = reportClientDoc.getReportSource();
                  setReportSource(reportSource);
                  reportClientDoc.close();
              //4.) Setting the Fields Starts
              setFieldsCrystal(null);
              Fields fields = new Fields();
              ParameterField pfield1 = new ParameterField();
              Values vals1 = new Values();
              ParameterFieldDiscreteValue pfieldDV1 = new ParameterFieldDiscreteValue();
              pfield1.setName("@parameter1");
              pfieldDV1.setValue(u201Cvalue1u201D);
              vals1.add(pfieldDV1);
              pfield1.setCurrentValues(vals1);
              fields.add(pfield1);
              pfield1 = new ParameterField();
              vals1 = new Values();
              pfieldDV1 = new ParameterFieldDiscreteValue();
              pfield1.setName("@parameter2");
              pfieldDV1.setValue(u201Cvalue2u201D);
              vals1.add(pfieldDV1);
              pfield1.setCurrentValues(vals1);
              fields.add(pfield1);
              setFieldsCrystal(fields);
              //Setting the Fields Ends
    The sample jsp code to view the report is as follows:
    <%@taglib uri="http://www.businessobjects.com/jsf/crystalreportsviewers"
         prefix="bocrv"%>
    <bocrv:reportPageViewer viewerName="CrystalViewer"
                                                 reportSource="#{CrystalReportBeanObject.reportSource}"
                                                 displayToolbarRefreshButton="false"
                                                 allowDatabaseLogonPrompting="false"
                                                 allowParameterPrompting="false"
                                                 databaseLogonInfos="#{CrystalReportBeanObject.connectionInfosCrystal}"
                                                 parameterFields="#{CrystalReportBeanObject.fieldsCrystal}"
                                                 displayGroupTree="false" displayToolbarLogo="false"
                                                 displayToolbarToggleTreeButton="false"
                                                 enablePageToGrow="false" height="540"
                                                 zoomPercentage="100" width="750"
                                                 allowDrillDown="false"
                                                 displayToolbarPrintButton="true"
                                                 printMode="PDF"
                                                 ></bocrv:reportPageViewer>
    Edited by: JayKumarSharma on Mar 23, 2011 12:42 PM

    This is how you retrieve all the text fields in the reort:
    ReportObjects reportObjects = (ITextObject) oReportClientDocument.getReportDefController().getReportObjectController().getReportObjectsByKind(ReportObjectKind.text);
    for(int i=0; i< reportObjects.size();i++)
    ITextObject textObject = (ITextObject)reportObjects.get(i);
    // use ReportObjectController to modify the text object.
    If you want to modify the contents of the text element, you can do it as follows:
    TextObject oTextObject = new TextObject();
    Paragraphs oParagraphs = new Paragraphs();
    Paragraph oParagraph = new Paragraph();
    ParagraphElements oParagraphElements = new ParagraphElements();
    ParagraphTextElement oParagraphTextElement = new ParagraphTextElement();
    oParagraphTextElement.setText("This is the new text field");
    oParagraphTextElement.setKind(ParagraphElementKind.text);
    oReportClientDocument.getReportDefController().getReportObjectController().modify(textObject, oTextObject);
    oReportClientDocument.save();

  • How do I query to find out if the MONITORING clause was enabled on a table?

    Our customers are currently running Oracle 8.1.7 in the field. I am writing a database schema updater tool that is supposed to examine the schemas and make necessary changes to them.
    Recently, the MONITORING clause was added to many of the tables in our schemas. I need to find out if the tables currently have MONITORING enabled.
    But, even though the Oracle documentation is very large, again, I cannot find any information about how to determine if MONITORING on a table is on or off.
    Any ideas? An SQL query? JDBC metadata?
    Tom Harris
    Cisco Systems, Inc.

    What is the output of the following statements on your system?
    Remember, table names are stored in caps in the dictionary if not enclosed within double-quotes.
    SQL> create table t (x number) ;
    Table created.
    SQL> select monitoring from user_tables where table_name = 'T' ;
    MON
    NO
    1 row selected.
    SQL> alter table t monitoring ;
    Table altered.
    SQL> select monitoring from user_tables where table_name = 'T' ;
    MON
    YES
    1 row selected.
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.5.0 - Production
    SQL>

  • Still can't find out where the wrong is.....

    Here is the code I use to convert a String of infix expression
    into a postfix array.
    But I still can't find out where the problem is,can someone help me out, thanks...
    public void i2p(String i,char p[])
           int position ,outpos = 0;
           char topsymb = '+', symb, del;
           Stack opstk = new Stack(20);
           System.out.println("the original infix expression is: " + i);
           for(position=0 ; position< i.length() ; position++)
                symb = i.charAt(position);
                if(isoperand(symb))
                   p[outpos++] = symb;
                else
                     if(!opstk.empty()){
                          topsymb = opstk.pop();
                     prcdNum(topsymb, symb);
                     while(opstk.empty() == false && prcd(topsymb, symb) == true )
                     del = opstk.pop();
                     p[outpos++] = topsymb;
                     if(opstk.empty() == false && prcd(topsymb, symb) == false){
                        opstk.push(topsymb);
                        p[outpos++] = symb;
                     if(opstk.empty() == true && symb != ')'){
                        opstk.push(symb);
               while(!opstk.empty())
                 p[outpos++] = opstk.pop();
      }

    For example when I input a+b*c , it output abc* ,,,,,,,

  • Is it somehow possible to find out how the device clock works? DDS or ...?

    I would like to find out (programmatically) if the clock from my device works with DDS or like the "normal" multifunctional DAQ Devices. I need to know because if I use a sensor which is connected to such a "special" device, it is not possible any more to use a quadrature encoder as external clock signal.
    Thank you for your time ...

    Hello Jared
    My devices are:
    NI 4472
    NI 6024E
    NI 6601
    They are all conneted via a RTSI cable.
    I know that the "NI 4472" device works with DDS, that's not the problem.
    What I want to know is if it's somehow possible to get the information that NI 4472 works with DDS programmatically. Is it somehow possible to get information about the device you are using programmatically?
    I want to use the DAQmx driver - in that case, all information I am able to get about the device is:
    - serial number
    - device name
    Is that more or less all I can find out about the device programmatically?
    I really would like to get more information about the devices I am using - in that case the programm I am writing would work for different combinations of devices b
    ecause I could make some different cases (with DDS, without DDS, ...)
    I hope I don't confuse you with this explanation even more.
    Thank you for the help
    Andy

  • HT5625 I cannot send a text thru iMessage.  I followed the directions over and over again but can't make it work.  Also how can I find out all the apple ids I may have.

    I cannot send a text thru iMessage.  I followed the directions over and over again but can't make it work.  Also how can I find out all the apple ids I may have.

    A wet phone is out of warranty. This is considered user damage. Even if you were able to get it to start now, the chances of it working for long are slim. I suggest going to Apple and see about an OOW replacement. One for the iPhone 4 is only $149USD and it would come with a short warranty. It is a refurbished device and you would not be worried about encountering additional problems.

  • How do i find out who the carrier is and can i get it unlocked to use in australia?

    Hi there,
    I got a iphone4 from my friend ewho brought it from someone from ebay in the states
    I am unable to use the phone and was told that the phone had been updated to a baseband that can not be unlocked
    and that I need to contact the carrier.
    How do I find out who the carrier is and is there anyway I can get it unlocked to be used in Australia?
    It has a grevey sim in it and well at this point in time its just being used as an ipod.
    Yes I know I should of got one from Australia but i thought it wouldnt be this hard to get it fixed to be able to use here.
    please help........
    thanx
    lana

    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    http://support.apple.com/kb/HT3743

Maybe you are looking for