Address book won't re-import .abbu file

Searching in my address book didn't work anymore so I exported the whole address book as an .abbu file and deleted all entries. Now when I try to import that file, it looks for busy for a few minutes and then ends up having no entries. I tried disconnecting from the internet as I read somewhere to avoid interference with iCloud. I also tried creating a new account and import it there so I could change it into vCards, but it wouldn't import there either. It's a 1.3 GB file. I don't have a back-up file or something I can use instead (which wouldn't be up to date) and unfortunately it already synced with my iPhone which has now an empty address book. I also opened the .abbu file and tried to import the .abcdg files but that doesn't work either

Putnik,
Thanks!  This was the exact solution for me.  Problem: .abbu loaded then disappeared in a few seconds.  As soon as I read your post, it was obvious that iCloud was wiping out the reload, because it had taken a fresh—and empty—copy right after I created the .abbu file.  My configuration is basically a MacPro via Ethernet to an Airport.  A MacBook  via Ethernet and WiFi to the Airport, and an iPhone WiFi to the airport.  The situation at it’s worst had no data in the MacBook, MacPro, iPhone Or iCloud.  What I did have was the good .abbu file.
My solution:
   1. Move the good abbu file to the MacBook.
   2. Pull power from the Airport—kills all local Ethernet and WiFi. 
   3. Put the iPhone in airplane mode just in case—probably not needed. 
   4. Do a local import from the .abbu file on the MacBook to the address book on the MacBook .
I now have a clean copy of my thousands of irreplaceable contacts on the MacBook . 
I'm pretty sure that since the data in the MacBook address book has most recent date stamp, all will be well, i.e., the MacPro, iPhone and iCloud will  sync to the MacBook . But I figure good logic says to think that through a little more, pour a few fingers of Scotch, then synch everything else tomorrow.  The contacts  on the MacPro are what I need for work now. 
<Apple: BTW, You did iCloud well, solid, and fast‑Woulda been nice if you had documented how it REALLY works  also. Need any good tech writers who understand both software and hardware?   >

Similar Messages

  • Address book .... importing text file

    I am designing an address book which opens a text file called AddressBook.txt which reads in the information in the following format:
    lastname,firstname,street,city,state,zip,phonenumber,birthday,persontype
    lastname2,firstname2,street2,city2,state2,zip2,phonenumber2,birthday2,persontype2
    etc. (with a maximum entries of 500)
    I am having a problem reading in the information without the commas and wrapping to the next line. I can either use the BufferedReader or Scanner to input the file and as you can see below, my code is not complete yet. I can't figure out how to code the storeAddress() method in order to get the addressBookEntries[] to include the necessary information for outputting, sorting, etc. If I can get the information read into the addressBookEntries[], I think I will probably be able to proceed in the rest of the required tasks (i.e. sorting by last name, searching by last name, etc.)
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    import java.io.*;
    import java.lang.*;
    *  @created September 14, 2004
    *  This program uses a JFrame to manipulate data and form an
    *  address book.  The user will be able to load data from a file,
    *  sort it by last name, print the address, phone number, and date
    *  of birth, print the names of people whos birthday are between 2
    *  dates, print the names of people between 2 last names, and/or
    *  print the names of different person types.
    public class AddressBook extends JPanel implements ActionListener{
        JFrame frame;
        final int numButtons = 7;
        JRadioButton[] radioButtons = new JRadioButton[numButtons];
        JButton process = new JButton("Process Request");
        JLabel title;
        JTextArea output = new JTextArea(30,50);
        int MAX_ADDRESS_ENTRIES = 500;
        AddressBookEntry addressBookEntries[] =
            new AddressBookEntry[MAX_ADDRESS_ENTRIES];
        String FILE_NAME="AddressBook.txt";
        public AddressBook(JFrame frame){
            super(new BorderLayout());
            this.frame=frame;
            JPanel choicePanel = createSimpleDialogBox();
            choicePanel.setBorder(BorderFactory.createTitledBorder("Choices" +
            " to choose from:"));
            title = new JLabel("<html><h2> Thank you for opening the " +
            "Address Book.  " +
            "Please Press the \"Process Request\" " +
            "after making a choice.</h2></html>\n",JLabel.CENTER);
            title.setBorder(BorderFactory.createEmptyBorder(20,20,20,20));
            output.setEditable(false);
            add(title, BorderLayout.NORTH);
            add(choicePanel, BorderLayout.CENTER);
            add(output, BorderLayout.SOUTH);
            final ButtonGroup group = new ButtonGroup();
            final String saveCommand = "Save";
            final String sortByLN = "Sort by Last Name";
            final String searchLNCommand = "Search By Last Name";
            final String printAPD = "Print address, phone number, and DOB";
            final String printNamesDOB = "Print names of people whose birthday" +
            " falls between 2 dates";
            final String printNamesLN = "Print names of people who fall" +
            " between 2 last names";
            final String printPType = "Print all family members, friends, or" +
            " business associates";
        private JPanel createSimpleDialogBox(){
            radioButtons[0] = new JRadioButton(
              "<html>Save the address file</html>");
            radioButtons[0].setActionCommand(saveCommand);
            radioButtons[1] = new JRadioButton(
              "<html>Sort the address file by last name</html>");
            radioButtons[1].setActionCommand(sortByLN);
            radioButtons[2] = new JRadioButton(
              "<html>Search the address file by last name</html>");
            radioButtons[2].setActionCommand(searchLNCommand);
            radioButtons[3] = new JRadioButton(
              "<html>Print the address, phone number, and DOB of a specified" +
              " person</html>");
            radioButtons[3].setActionCommand(printAPD);
            radioButtons[4] = new JRadioButton(
              "<html>Print the names of people whose birthday falls between" +
              " two dates</html>");
            radioButtons[4].setActionCommand(printNamesDOB);
            radioButtons[5] = new JRadioButton(
              "<html>Print the names of people who fall between two" +
              " specified last names</html>");
            radioButtons[5].setActionCommand(printNamesLN);
            radioButtons[6] = new JRadioButton(
              "<html>Print all family members, friends, <u>OR</u>" +
              " business associates</html>");
            radioButtons[6].setActionCommand(printPType);
            for (int i=0; i<numButtons; i++){
                group.add(radioButtons);
    //set the first button (open file) to be selected
    radioButtons[0].setSelected(true);
    return createPane(radioButtons, process);
    private JPanel createPane(JRadioButton[] radioButtons,
    JButton showButton) {
    int numChoices = radioButtons.length;
    JPanel box = new JPanel();
    box.setLayout(new BoxLayout(box, BoxLayout.PAGE_AXIS));
    for (int i = 0; i < numChoices; i++) {
    box.add(radioButtons[i]);
    JPanel pane = new JPanel(new BorderLayout());
    pane.add(box, BorderLayout.NORTH);
    pane.add(showButton, BorderLayout.SOUTH);
    return pane;
    public void actionPerformed(ActionEvent e) {
    String command = group.getSelection().getActionCommand();
    //else if button pushed is save
    if (command == saveCommand){
    // save file
    //else if button pushed is search by last name
    else if (command == sortByLN){
    // search by last name
    //else if button pushed is sort by last name
    else if (command == searchLNCommand){
    // sort by last name
    // print to screen
    //else if button pushed is display address, ph#, dob
    else if (command == printAPD){
    // display "search by last name" dialog
    // search last names
    // if last name found
    // print data
    // else
    // print error notification "person not found"
    //else if button pushed is list names of people whose
    //bday between 2 days
    else if (command == printNamesDOB){
    // ask for which dates
    // search bday
    // print to screen
    //else if button pushed is print names of people between 2 last names
    else if (command == printNamesDOB){
    // ask for which two last names
    // search last names
    // if people found
    // print to screen
    //else
    //print error notification "no one found"
    //else if button pushed is print all family members, friends
    //or business associates
    else if (command == printPType){
    //ask for what person type
    //search person types
    //if people found
    //print to screen
    //else print "no one found"
    public void storeAddress(File addressFile){
         Scanner sc=null;
    String lname,fname,street,city,state,zip,phone,persontype,bday;
    try {
    // Delimiters specifiy where to parse tokens in a scanner
    sc = new Scanner(addressFile).useDelimiter("\\s*[\\p{,}*\\s+]\\s*");
    catch (FileNotFoundException fnfe) {
         JOptionPane.showMessageDialog(this,"Could not open the file");
    System.exit(-1);
    for(int i=0; i<MAX_ADDRESS_ENTRIES; i++){
         while (sc.hasNext()) {
    lname=(sc.next());
         if (!lname.equals("")){
         addressBookEntries[i].setLName()=lname;
    public class AddressBookEntry{
    private extPerson address;
    private String date;
    private extPerson ExtPerson;
    public class Person{
    protected String lastName, firstName;
    private String address;
    private String city;
    private String state;
    private String zipcode;
    private String homephone;
    private String extPersonType;
    private Date bday;
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-mm-DD");
    public String toString() {
    return lastName+" "+firstName;
    public void setLName(String last) {
    lastName=last;
    public void setFName(String first){
    firstName=first;
    public String getLastName() {
    return lastName;
    public String getFirstName() {
    return lastName;
    public Person() {
    lastName="";
    firstName="";
    public Person(String first, String last){
    setLName(last);
    setFName(first);
    //Set the address and return it
    public void setAddress( String addr ){
    address = addr;
    public String getAddress(){
    return address;
    //set the city and return it
    public void setCity( String town ){
    city = town;
    public String getCity(){
    return city;
    //set the state and return it
    public void setState( String st )
    state = st;
    public String getState()
    return state;
    //Set the zip code and return it
    public void setZipCode( String zip ){
    zipcode = zip;
    public String getZipCode(){
    return zipcode;
    //Set the home phone and return it
    public void setHomePhone( String homeph ){
    homephone = homeph;
    public String getHomePhone(){
    return homephone;
    //Set the bday and return it
    public Date getBday(){
    return bday;
    public void setBday(Date newBday) {
    bday = newBday;
    dateFormat.format(bday);
    //Set the extPerson type and return it
    public String getPType(){
    return extPersonType;
    public void setPBusiness(){
    extPersonType = "Business Associate";
    public void setPFamily(){
    extPersonType = "Family Member";
    public void setPFriend(){
    extPersonType = "Friend";
    public class extPerson extends Person{
    //new clss People
    public class People {
         int MAX_PEOPLE=500;
         BufferedReader bf;
    public String toString() {
              StringBuffer sb=new StringBuffer();
              for (int i=0; i<nPeople; i++)
              sb=sb.append(group[i]+"\n");
              return sb.toString();
    public void read(){
              String str;
              try {
              bf=new BufferedReader(new FileReader(new File(FILE_NAME)));
              str=bf.readLine();
              while (str!=null) {
              insert(str);
                   str=bf.readLine();
         catch (IOException e) {
              // Will jump to here on an eof condition.
         try {
              bf.close();
         catch (IOException e) {}
         public void save() {
              try {
              PrintWriter pw=new PrintWriter(FILE_NAME);
              for (int i=0; i<nPeople; i++)
              pw.println(group[i]+",");
              pw.close();
         catch (FileNotFoundException fne) {
                   System.out.println("Could not Save "+FILE_NAME);
    public People() {
              group=new extPerson[MAX_PEOPLE];
              nPeople=0;
         public boolean insert(String data) {
              if (nPeople<MAX_PEOPLE) {
              //extPerson guy=new extPerson(data);
              //group[nPeople]=guy;
              nPeople++;
              return true;
         else {
         JOptionPane.showMessageDialog(null,"Error in People" +
    "::insert: Max size reached.");
         return false;
         public void clear() {
              // This loop frees up the memory used by each extPerson
              for (int i=0; i<nPeople; i++)
              group[i]=null;
              nPeople=0;
    extPerson group[];
    int nPeople;
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    public static void createAndShowGUI(){
    JFrame.setDefaultLookAndFeelDecorated(true);
    JDialog.setDefaultLookAndFeelDecorated(true);
    JFrame frame = new JFrame("Address Book Program");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container c = frame.getContentPane();
    c.add(new AddressBook(frame));
    frame.pack();
    frame.setVisible(true);
    public static void main (String s[]){       
    //Schedule a job for the event-dispatching thread:
    //creating and showign this application's GUI
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();

    Ok, I have changed my code to reflect your suggested changes, but I'm still unsure how to use the findInLine you suggested.... This is all very new to me and I've been looking on the java website for suggestions, but I'm still stumped on how to pull this together. I'm unsure on how to set the lastname,firstname,etc. for retrieval...
    Here's my code:
    //ADDRESS BOOK
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    import java.io.*;
    import java.lang.*;
    *  @created September 14, 2004
    *  This program uses a JFrame to manipulate data and form an
    *  address book.  The user will be able to load data from a file,
    *  sort it by last name, print the address, phone number, and date
    *  of birth, print the names of people whos birthday are between 2
    *  dates, print the names of people between 2 last names, and/or
    *  print the names of different person types.
    public class AddressBook extends JPanel implements ActionListener{
        JFrame frame;
        final int numButtons = 7;
        JRadioButton[] radioButtons = new JRadioButton[numButtons];
        JButton process = new JButton("Process Request");
        JLabel title;
        JTextArea output = new JTextArea(30,50);
        int MAX_ADDRESS_ENTRIES = 500;
        AddressBookEntry addressBookEntries[] = new
        AddressBookEntry[MAX_ADDRESS_ENTRIES];
        public AddressBook(JFrame frame){
            super(new BorderLayout());
            this.frame=frame;
            JPanel choicePanel = createSimpleDialogBox();
            choicePanel.setBorder(BorderFactory.createTitledBorder("Choices" +
            " to choose from:"));
            title = new JLabel("<html><h2> Thank you for opening the " +
            "Address Book.  " +
            "Please Press the \"Process Request\" " +
            "after making a choice.</h2></html>\n",JLabel.CENTER);
            title.setBorder(BorderFactory.createEmptyBorder(20,20,20,20));
            output.setEditable(false);
            add(title, BorderLayout.NORTH);
            add(choicePanel, BorderLayout.CENTER);
            add(output, BorderLayout.SOUTH);
            final ButtonGroup group = new ButtonGroup();
            final String saveCommand = "Save";
            final String sortByLN = "Sort by Last Name";
            final String searchLNCommand = "Search By Last Name";
            final String printAPD = "Print address, phone number, and DOB";
            final String printNamesDOB = "Print names of people whose birthday" +
            " falls between 2 dates";
            final String printNamesLN = "Print names of people who fall" +
            " between 2 last names";
            final String printPType = "Print all family members, friends, or" +
            " business associates";
        private JPanel createSimpleDialogBox(){
            radioButtons[0] = new JRadioButton(
              "<html>Save the address file</html>");
            radioButtons[0].setActionCommand(saveCommand);
            radioButtons[1] = new JRadioButton(
              "<html>Sort the address file by last name</html>");
            radioButtons[1].setActionCommand(sortByLN);
            radioButtons[2] = new JRadioButton(
              "<html>Search the address file by last name</html>");
            radioButtons[2].setActionCommand(searchLNCommand);
            radioButtons[3] = new JRadioButton(
              "<html>Print the address, phone number, and DOB of a specified" +
              " person</html>");
            radioButtons[3].setActionCommand(printAPD);
            radioButtons[4] = new JRadioButton(
              "<html>Print the names of people whose birthday falls between" +
              " two dates</html>");
            radioButtons[4].setActionCommand(printNamesDOB);
            radioButtons[5] = new JRadioButton(
              "<html>Print the names of people who fall between two" +
              " specified last names</html>");
            radioButtons[5].setActionCommand(printNamesLN);
            radioButtons[6] = new JRadioButton(
              "<html>Print all family members, friends, <u>OR</u>" +
              " business associates</html>");
            radioButtons[6].setActionCommand(printPType);
            for (int i=0; i<numButtons; i++){
                group.add(radioButtons);
    //set the first button (open file) to be selected
    radioButtons[0].setSelected(true);
    return createPane(radioButtons, process);
    private JPanel createPane(JRadioButton[] radioButtons,
    JButton showButton) {
    int numChoices = radioButtons.length;
    JPanel box = new JPanel();
    box.setLayout(new BoxLayout(box, BoxLayout.PAGE_AXIS));
    for (int i = 0; i < numChoices; i++) {
    box.add(radioButtons[i]);
    JPanel pane = new JPanel(new BorderLayout());
    pane.add(box, BorderLayout.NORTH);
    pane.add(showButton, BorderLayout.SOUTH);
    return pane;
    public void actionPerformed(ActionEvent e) {
    String command = group.getSelection().getActionCommand();
    //else if button pushed is save
    if (command == saveCommand){
    // save file
    //else if button pushed is search by last name
    else if (command == sortByLN){
    // search by last name
    //else if button pushed is sort by last name
    else if (command == searchLNCommand){
    // sort by last name
    // print to screen
    //else if button pushed is display address, ph#, dob
    else if (command == printAPD){
    // display "search by last name" dialog
    // search last names
    // if last name found
    // print data
    // else
    // print error notification "person not found"
    //else if button pushed is list names of people whose
    //bday between 2 days
    else if (command == printNamesDOB){
    // ask for which dates
    // search bday
    // print to screen
    //else if button pushed is print names of people between 2 last names
    else if (command == printNamesDOB){
    // ask for which two last names
    // search last names
    // if people found
    // print to screen
    //else
    //print error notification "no one found"
    //else if button pushed is print all family members, friends
    //or business associates
    else if (command == printPType){
    //ask for what person type
    //search person types
    //if people found
    //print to screen
    //else print "no one found"
    public class AddressBookEntry{
    private extPerson address;
    private String date;
    private extPerson ExtPerson;
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    public static void createAndShowGUI(){
    JFrame.setDefaultLookAndFeelDecorated(true);
    JDialog.setDefaultLookAndFeelDecorated(true);
    JFrame frame = new JFrame("Address Book Program");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container c = frame.getContentPane();
    c.add(new AddressBook(frame));
    frame.pack();
    frame.setVisible(true);
    public static void main (String s[]){       
    //Schedule a job for the event-dispatching thread:
    //creating and showign this application's GUI
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    //PERSON
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    import java.io.*;
    import java.lang.*;
    public class Person{
    protected String lastName, firstName;
    private String address;
    private String city;
    private String state;
    private String zipcode;
    private String homephone;
    private String extPersonType;
    private String bday;
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-mm-DD");
    public void parseString(String s) {
              try {
              lastName = s.substring(0,s.indexOf(","));
              firstName = s.substring(s.indexOf(",")+1);
    address = s.substring(s.indexOf(",")+2);
    city = s.substring(s.indexOf(",")+3);
    state = s.substring(s.indexOf(",")+4);
    zipcode = s.substring(s.indexOf(",")+5);
    homephone = s.substring(s.indexOf(",")+6);
    extPersonType = s.substring(s.indexOf(",")+7);
    bday = s.substring(s.indexOf(",")+8);
    catch(StringIndexOutOfBoundsException sbe) {
              JOptionPane.showMessageDialog(null,"Error " +
    "in Person: Could not parse the line "+s);
    public String toString() {
    return lastName+","+firstName+","+address+","+city+","+
    state+","+zipcode+","+homephone+","+bday+","+extPersonType;
    public void setLName(String last) {
    lastName=last;
    public void setFName(String first){
    firstName=first;
    public String getLastName() {
    return lastName;
    public String getFirstName() {
    return lastName;
    public Person() {
    lastName="";
    firstName="";
    public Person(String first, String last){
    setLName(last);
    setFName(first);
    //Set the address and return it
    public void setAddress( String addr ){
    address = addr;
    public String getAddress(){
    return address;
    //set the city and return it
    public void setCity( String town ){
    city = town;
    public String getCity(){
    return city;
    //set the state and return it
    public void setState( String st )
    state = st;
    public String getState()
    return state;
    //Set the zip code and return it
    public void setZipCode( String zip ){
    zipcode = zip;
    public String getZipCode(){
    return zipcode;
    //Set the home phone and return it
    public void setHomePhone( String homeph ){
    homephone = homeph;
    public String getHomePhone(){
    return homephone;
    //Set the bday and return it
    public String getBday(){
    return bday;
    public void setBday(String newBday) {
    bday = newBday;
    dateFormat.format(bday);
    //Set the extPerson type and return it
    public String getPType(){
    return extPersonType;
    public void setPBusiness(){
    extPersonType = "Business Associate";
    public void setPFamily(){
    extPersonType = "Family Member";
    public void setPFriend(){
    extPersonType = "Friend";
    public Person(String data) {
    parseString(data);
    //EXTPERSON
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    import java.io.*;
    import java.lang.*;
    //new clss extPerson
    public class extPerson extends Person {       
         int MAX_PEOPLE=500;
         BufferedReader bf;
    String lname,fname,street,city,state,zip,phone,persontype,bday;
    String FILE_NAME="AddressBook.txt";
    public String toString() {
              StringBuffer sb=new StringBuffer();
              for (int i=0; i<nPeople; i++)
              sb=sb.append(group1[i]+"\n");
              return sb.toString();
         public void save() {
              try {
              PrintWriter pw=new PrintWriter(FILE_NAME);
              for (int i=0; i<nPeople; i++)
              pw.println(group1[i]+",");
              pw.close();
         catch (FileNotFoundException fne) {
                   System.out.println("Could not Save "+FILE_NAME);
    public extPerson() {
              group1=new extPerson[MAX_PEOPLE];
              nPeople=0;
         public boolean insert(String data) {
              if (nPeople<MAX_PEOPLE) {
              Person guy = new Person(data);
              group1[nPeople]=guy;
              nPeople++;
              return true;
         else {
         JOptionPane.showMessageDialog(null,"Error in People" +
    "::insert: Max size reached.");
         return false;
    Person group1[];
    int nPeople;

  • Address Book won't import photos from iPhoto

    Address Book won't import photos from iPhoto. It's greyed out. Any solution?

    iPhoto 9.5 immediately tries to "upgrade" my library using the upgrader.
    iPhoto 9.5 asks you to run the upgrader to prepare the library for 9.5. It then will update the library to its format.
    You need to do the following:
    1 - go to your Applications/Utilities folder and double click on the iPhoto Library Upgrader 1.1 application. 
    2 - select Choose Library, navigate to your iPhoto library, select it and let the upgrader do its thing.
    3 - launch iPhoto 9.5 to open and finish the conversion of the library.
    OT

  • Address book won't respod

    I inadvertently merged all my contacts in address book and now the program will not open. I have everything backed up on .mac. How do I get the program to open so I can sync my contacts?
    Sally

    Well, if Address Book won't respond, then you're going to have to try to restore from the backup, if you have one. So, let's try this:
    1. Go to Users/username/Library/Caches/com.apple.AddressBook and move it to the Trash, then try opening Address Book again. +*Do Not*+ empty the Trash.
    2. If that doesn't work, go to Users/username/Library/Application Support/AddressBook and move its contents to a temporary file on the Desktop. Then, open Address Book and reimport from your backup (File/Import/Address Book Archive, or reimport the vCards) to rebuild this folder.
    Once everything is OK, delete the temporary stuff from the Desktop, and empty the Trash.
    If you have no backup, you will have to reimport the vCard data using the MetaData files, which look and act like vCards, but their file names don't end in vCard. To do that:
    1. Open Address Book.
    2. Go to your Trash and drag the com.apple.AddressBook folder out onto your Desktop. Drill down into that folder until you find the MetaData folder; that's where all your contacts are stored in individual files.
    3. You can select all (Command A) and drag them on the open Address Book window to import that data back. When it's done, check to be sure all your contacts are there, though you will probably lose those that were imported as a result of your merge.
    4. When you've verified that everything works, make a backup of your Address Book; use the File > Backup Address Book… menu item and save the backup to a safe destination on your hard drive or an external drive. Do this every time you make any change to your Address Book and always save them to the same place, as the backups have their creation date on them. You can trash the older one.
    Mulder

  • HT2486 address book won't open

    Address Book won't open last 4 days. It is OPEN but I cannot use it. Rt click SHOW ALL WINDOWS and I see Address Book and my contacts are there. I click on Address Book and it Disappears ie- Minimizes back to an ICON in teh DOCK.
    Can't find a solution. HELP

    Might be corrupted preferences ...
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy / paste the following:
    ~/Library/Preferences/com.apple.AddressBook.plist
    Click Go then move the com.apple.AddressBook.plist file to the Trash.
    Restart your Mac.

  • Apple Address Book Won't Open

    On my iMac G5, my Apple Address Book won't open. It has been working perfectly and I've never had a problem since buying the computer about a year ago. Though the name appears on the top menu bar and the triangle shows beneath the Address Book icon on the Dock, nothing appears on the screen. I ran the Disk Utility Repair Permissions, but aht didn't correct it. I've rebooted and that didn't solve the issue either. Any suggestions? Thanks.

    Verify/repair your disk first (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    I don't know how to troubleshoot Address Book, other than replacing its data with a backup copy if you have one, or just getting rid of that data. Address Book stores the preferences in ~/Library/Preferences/com.apple.AddressBook.plist, and everything else in the ~/Library/Application Support/AddressBook folder.
    You may try moving those files out of there, to the Desktop. You may try removing just the com.apple.AddressBook.plist preferences file (so that Address Book re-creates it again), for example, or removing just AddressBook.data and renaming AddressBook.data.previous to AddressBook.data. Whatever you do, make a backup copy of those files first, just in case.
    Note: For those not familiarized with the ~/ notation, it refers to the user's home folder.

  • 10.4.7 update and now my Address Book won't open

    I recently ran a software update and the Mac OS X Update 10.4.7 errored out. After the required restart I now find my Address Book won't open.
    Any advise to fix this problem?
    Is it safe to run the 10.4.7 update again or will this problem repeat?

    hi there--
    i would check out this thread. http://discussions.apple.com/thread.jspa?messageID=1863756&#1863756 basically, try repairing permissions first. then if that does nothing, see if you have your addressbook.data file. it's possible you could rename a file like this user to regain your info. if the addressbook.data file is there, select it and get info on it by pressing the apple and i on the keyboard. ensure that you have read/write access to the folder. make yourself the owner and make the rest of the fields as open as possible. also, if the address book launches in a different user (you could create a test user) you could do a number of things. if you have a backup of the address book in another place you can try pulling the com.apple.addressbook.plist from the preferences folder in the home user library. do not do this if you have no backup. also you could check ~library/address book plug-ins. if there's stuff in there, try pulling folder to desktop and restarting the computer. keep me posted as to whether or not you make any progress. [ 8 ) ]

  • Address book won't save changes to note field

    Like the header says. Address book won't save changes to note field. There's another thread with the same header:  https://discussions.apple.com/thread/2591053?threadID=2591053  But it's archived so I had to post this new one.
    If I made a change in any non-note field however, it would stay.
    Note: the notes field can be edited with actually having to go into official "edit" mode. Does this make it more prone to corruption? Why would Apple make the notes field NOT need that extra step of protection. Do they think my notes aren't as important?  How would they know?
    I fixed this one card with a bandaid solution by exporting it and reimporting it.  But I guess I need to do that with all 2,000 of my contacts now. It was mentioned on theother thread that somebody made an address book backup and then deleted every contact in the address book and imported them fresh from the backup and that worked.
    The underlyilng issue is still not solved though. How could this happpen in the first place, and how do I know what other contacts haven't held lthe changes I thought I made?

    Hi,
    Using the Note field
    You can add notes to any contact in Address Book. This makes it easy to keep track of details about a person in your address book.
    Select the person in the Name column in Address Book, then click the Note field in the card.
    The Note field can be edited at any time, even if the card is not in edit mode.
    You could make a dedicated field that requires the edit button...
    Using custom labels
    You can change the label that appears next to a piece of information on a contact's card. For example, you might want to change "work" to "support" next to a phone number.
    Select the contact that you want to change.
    Click the Edit button at the bottom of the window.
    Click the label next to a field, then choose Custom from the pop-up menu.
    Enter a new label for the field.
    The new custom label appears on this contact's card only.
    If you want to change a specific label on all cards in your Address Book, edit the card template. Choose Address Book > Preferences and click Template. The Template pane also allows you to add other types of fields on contact cards, such as a nickname, job title, birthday, anniversary, and URL. Use the Add Field menu.

  • Address Book keeps crashing during import

    Address book keeps freezing during import regardless of source. Sometimes it goes through the process of letting you select the "keep old, keep new, keep both, merge" then when u click import it freezes. Other times it just freezes when u click select all and import. Anyone encounter this problem or find a solution?
    Here's the crash report:
    Process:         Address Book [1169]
    Path:            /Applications/Address Book.app/Contents/MacOS/Address Book
    Identifier:      com.apple.AddressBook
    Version:         6.1 (1062)
    Build Info:      AddressBook-1062000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [185]
    Date/Time:       2012-01-05 03:13:38.771 -0800
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000007f85123df86
    VM Regions Near 0x7f85123df86:
        CG shared images       00000001c2b47000-00000001c2b4f000 [   32K] r--/r-- SM=SHM 
    -->
        MALLOC_TINY            00007f8503400000-00007f8503500000 [ 1024K] rw-/rwx SM=COW 
    Application Specific Information:
    objc_msgSend() selector name: accountRepository
    objc[1169]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff833e9e90 objc_msgSend + 16
    1   com.apple.AddressBook.framework          0x00007fff8a9cee32 -[ABManagedObjectContext abMarkRecordsForDeletion:] + 321
    2   com.apple.AddressBook.framework          0x00007fff8a9cfb20 -[ABManagedObjectContext save:] + 207
    3   com.apple.AddressBook.framework          0x00007fff8a99b2fe -[ABNoteDatumView deferredSave:] + 95
    4   com.apple.Foundation                    0x00007fff8d9e125a __NSFireDelayedPerform + 392
    5   com.apple.CoreFoundation                0x00007fff8e546f84 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    6   com.apple.CoreFoundation                0x00007fff8e546ad6 __CFRunLoopDoTimer + 534
    7   com.apple.CoreFoundation                0x00007fff8e527471 __CFRunLoopRun + 1617
    8   com.apple.CoreFoundation                0x00007fff8e526ae6 CFRunLoopRunSpecific + 230
    9   com.apple.HIToolbox                     0x00007fff87cab3d3 RunCurrentEventLoopInMode + 277
    10  com.apple.HIToolbox                     0x00007fff87cb263d ReceiveNextEventCommon + 355
    11  com.apple.HIToolbox                     0x00007fff87cb24ca BlockUntilNextEventMatchingListInMode + 62
    12  com.apple.AppKit                        0x00007fff8819e3f1 _DPSNextEvent + 659
    13  com.apple.AppKit                        0x00007fff8819dcf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    14  com.apple.AppKit                        0x00007fff8819a62d -[NSApplication run] + 470
    15  com.apple.AppKit                        0x00007fff8841980c NSApplicationMain + 867
    16  com.apple.AddressBook                   0x0000000104097894 0x104096000 + 6292
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff84ecd7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff84e975be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff84e9614e _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff84ecb67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff84ecad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8e51eb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8e5272d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8e526ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8da3b0ab +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff8da2f7fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8da2f776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff872888bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8728bb75 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff84eccdf2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8e56ff9b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff872888bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8728bb75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff84ecd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8728a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8728bb85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff84ecd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8728a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8728bb85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff84ecd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8728a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8728bb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff84ecd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8728a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8728bb85 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff84ecd192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8728a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8728bb85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007f850e31e500  rbx: 0x000000010421c080  rcx: 0x00007f8504007090  rdx: 0x00000000a1a1a1a1
      rdi: 0x00007f850e31e5d0  rsi: 0x00007fff8aa746fe  rbp: 0x00007fff63c94670  rsp: 0x00007fff63c943a0
       r8: 0x000000000000000f   r9: 0x0000000000000670  r10: 0x00000001054361b0  r11: 0x000007f85123df76
      r12: 0xffffffffffffffff  r13: 0x00007fff74b64ae0  r14: 0x00007f8511cde850  r15: 0x0000000104206f60
      rip: 0x00007fff833e9e90  rfl: 0x0000000000010246  cr2: 0x000007f85123df86
    Logical CPU: 2
    Binary Images:
           0x104096000 -        0x1040d8ff7  com.apple.AddressBook (6.1 - 1062) <692386C3-121D-37FF-BFDC-2930B4F7A0E5> /Applications/Address Book.app/Contents/MacOS/Address Book
           0x1041f2000 -        0x1041f4fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1062) <F03F0085-D9E7-3838-9ED6-248E8397620E> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x104383000 -        0x1043b1ff7  GLRendererFloat (??? - ???) <16DF14A0-7264-31A4-83F6-E6F96CF4AB3D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10445c000 -        0x104461ff7  libgermantok.dylib (??? - ???) <307E75E1-76E9-3CF6-A13A-AFB92FD7BC5B> /usr/lib/libgermantok.dylib
           0x105d32000 -        0x105d35fff  com.apple.DirectoryServicesSource (1.2 - 1062) <0F479AAE-037E-3310-8206-DDEB075456C9> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x105e2b000 -        0x105e2bffd +cl_kernels (??? - ???) <85C10314-264C-4398-9812-EB4F553F58C4> cl_kernels
           0x106399000 -        0x1063fafff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 196) <5304FAE6-1CC6-3539-9046-CE1C362364B9> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10646e000 -        0x106474fef  libcldcpuengine.dylib (1.50.63 - compatibility 1.0.0) <282BF919-0346-385F-B399-9019E681DF38> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10647b000 -        0x10647eff7  libCoreFSCache.dylib (??? - ???) <D4B5EFEA-7878-3674-A973-BA1D675E5A3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x106484000 -        0x106484ff5 +cl_kernels (??? - ???) <5BDE8634-012A-465A-9496-09B11375DB8F> cl_kernels
           0x108400000 -        0x108407ff7  com.apple.mail.iaplugin (5.1 - 1251.1) <7EAD6F31-6F33-3689-A004-04E03085107F> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x108410000 -        0x108412fff  apop.so (??? - ???) <B40CE86C-1757-3261-848C-F166F3D513EA> /usr/lib/sasl2/apop.so
           0x108416000 -        0x10841ffff  digestmd5WebDAV.so (??? - ???) <8D39C8C0-ACCE-34D4-815A-87825A1A4492> /usr/lib/sasl2/digestmd5WebDAV.so
           0x108424000 -        0x108426fff  libanonymous.2.so (??? - ???) <99136B94-8BE0-3563-9E2A-9C826971B6E9> /usr/lib/sasl2/libanonymous.2.so
           0x1084f7000 -        0x1085f0fff  libGLProgrammability.dylib (??? - ???) <BCA0FD49-2103-33D8-8801-326C6A62465E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10c560000 -        0x10c565fff  com.apple.contacts.iaplugin (1.1 - 1062) <258CC376-5A41-38AB-A21C-D307138EEB52> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x10c56b000 -        0x10c56ffff  com.aol.iaplugin (1.1 - 2) <2D29926E-4B49-3623-AC5F-40CC36A06067> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x10c575000 -        0x10c57efff  com.apple.exchange.iaplugin (1.1 - 2) <2540E4F5-F8B6-3135-86BE-79B629F075FC> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x10c587000 -        0x10c58cfff  com.google.iaplugin (1.1 - 2) <434CD71C-53E1-3B80-A3C0-552512CDF105> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10c593000 -        0x10c59bfff  com.apple.calendar.iaplugin (5.0.1 - 1139.14) <C9277923-EEC8-318E-87C9-6FB41174C4F3> /System/Library/InternetAccounts/iCal.iaplugin/Contents/MacOS/iCal
           0x10c5a2000 -        0x10c5a7fff  com.apple.chat.iaplugin (1.0.1 - 935) <27BB8B6C-0BA4-36A3-AAFD-6EA9279112B0> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
           0x10c5ac000 -        0x10c5c5fff  com.apple.placeholder.iaplugin (1.0.1 - 1) <9EBEE3A8-A6A9-32B7-A6CE-27715102F03E> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x10c5d8000 -        0x10c62bfff  com.apple.AOSUI (1.0.1 - 59) <855C1979-AF41-3DE9-8225-615DF2FC44EE> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x10c659000 -        0x10c66cff7  com.apple.AOSAccounts (1.0.1 - 1.0.61) <A0011298-B106-3DEC-B459-60D96F017BE9> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
           0x10c680000 -        0x10c6bbff7  com.apple.Ubiquity (1.0 - 196) <B7CD3D18-84C8-3C5E-8AE5-ED3331E71F05> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10c6d8000 -        0x10c6d8ff7  com.apple.SafariDAVNotifier (1.1 - 1) <560452E6-BCB8-36B0-B36E-47AF9CC99958> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x10c6dc000 -        0x10c6fcff7  com.apple.ChunkingLibrary (1.0 - 125) <9EAE4385-5DF7-3956-8196-895DD6772BD7> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10c844000 -        0x10c85afff  dhx.so (??? - ???) <9AB7809C-2651-3FCF-9357-8E1CDEAB6466> /usr/lib/sasl2/dhx.so
           0x10c867000 -        0x10c86afff  libcrammd5.2.so (??? - ???) <5EEE3304-D132-3C9B-A54D-C21D7C34DA28> /usr/lib/sasl2/libcrammd5.2.so
           0x10c86f000 -        0x10c878fff  libdigestmd5.2.so (??? - ???) <6DD64225-CFFF-379B-A5BA-5409F777F307> /usr/lib/sasl2/libdigestmd5.2.so
           0x10c87d000 -        0x10c882fff  libgssapiv2.2.so (??? - ???) <DC1BA305-26FA-3CC7-8400-6A45521EF2A3> /usr/lib/sasl2/libgssapiv2.2.so
           0x10c887000 -        0x10c889fff  login.so (??? - ???) <48CD069F-68F5-32C4-BFAC-AC0EFB7B9489> /usr/lib/sasl2/login.so
           0x10c88d000 -        0x10c892fff  libntlm.so (??? - ???) <1B9D16BE-D0DB-31A3-8B84-7830509B5ECA> /usr/lib/sasl2/libntlm.so
           0x10c897000 -        0x10c89efff  libotp.2.so (??? - ???) <1DDBDDF7-3F84-3AF0-A878-9E64EEBE0ED5> /usr/lib/sasl2/libotp.2.so
           0x10c8a7000 -        0x10c8a9fff  libplain.2.so (??? - ???) <C98A873A-4373-3E3A-8257-D9BB5F857C85> /usr/lib/sasl2/libplain.2.so
           0x10c8ad000 -        0x10c8b1fff  libpps.so (??? - ???) <26172BC5-1758-3BE6-9B8D-F254A727478A> /usr/lib/sasl2/libpps.so
           0x10c8b6000 -        0x10c8b9ff7  mschapv2.so (??? - ???) <B00D3743-D049-31D0-8CF1-8407B2A4838D> /usr/lib/sasl2/mschapv2.so
           0x10c8be000 -        0x10c8ecfff  com.apple.DirectoryService.PasswordServerFramework (7.0 - 7.0) <58E9CACA-9438-3B86-84DC-272533F2B704> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10c901000 -        0x10c904fff  shadow_auxprop.so (??? - ???) <DF9DE842-FBFA-368A-AA8C-E29CF334FF69> /usr/lib/sasl2/shadow_auxprop.so
           0x10c909000 -        0x10c90bfff  smb_nt.so (??? - ???) <CA57451C-A407-365D-A953-185167177CE8> /usr/lib/sasl2/smb_nt.so
           0x10c90f000 -        0x10c912fff  smb_ntlmv2.so (??? - ???) <7FD517BD-EDCB-3FFD-88A8-8B5F6AEA9585> /usr/lib/sasl2/smb_ntlmv2.so
           0x10c937000 -        0x10c93bfff  com.apple.mobileme.iaplugin (1.1 - 2) <4F82B8B5-A45D-33F8-8C98-49FD54E2827E> /System/Library/InternetAccounts/MobileMe.iaplugin/Contents/MacOS/MobileMe
           0x10c942000 -        0x10c947fff  com.apple.osxserver.iaplugin (1.1 - 2) <7CCB9615-DD5C-34F8-85DA-A219EB563A1A> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x10c94e000 -        0x10c9d2ff7  com.apple.frameworks.server.foundation (10.7.2 - 185.2) <A0433A3D-96B5-3F8D-8A24-0EB08724028A> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x10ca31000 -        0x10ca43ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <0272C107-5F2D-33C2-958C-913C0E46C86E> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x10ca50000 -        0x10ca8aff7  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <DCB39254-F156-36AB-AAA1-A4AC2D6B7BDC> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x10ca9a000 -        0x10ca9efff  com.yahoo.iaplugin (1.1 - 2) <7EB84A08-2110-3BF0-A17C-6A5991220417> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x10caa4000 -        0x10caa7fff  com.apple.yahoo.syncframework (1.4 - 61) <ACEE1299-375E-3B48-8CCD-B4E0B942F175> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
           0x10cfeb000 -        0x10d101ff7  libmecab.1.0.0.dylib (??? - ???) <F71C1210-CA12-3B20-8D5A-505AE4519B26> /usr/lib/libmecab.1.0.0.dylib
           0x10d4b8000 -        0x10d650ff7  GLEngine (??? - ???) <D770A837-9F8D-3C86-AB33-CBDEF5599CA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10d684000 -        0x10da8efef  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.14.5 - 7.1.4) <471C13B5-5698-3A89-815B-B5EB252BA681> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x10fbcf000 -        0x10fc60ff7  unorm8_rgba.dylib (1.50.63 - compatibility 1.0.0) <DD200456-247B-3C6D-9C7E-81546BFE4BF2> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x110018000 -        0x1100abff7  unorm8_bgra.dylib (1.50.63 - compatibility 1.0.0) <35664BCC-4DCD-38B9-A17D-12A2DB77DCB8> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
        0x7fff63c96000 -     0x7fff63ccaac7  dyld (195.5 - ???) <B372EB7D-DCD8-30CE-9342-E06CADD7CACA> /usr/lib/dyld
        0x7fff833e0000 -     0x7fff834c4def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff834c5000 -     0x7fff834cffff  libcsfde.dylib (??? - ???) <49DD8C85-A3F9-36FB-BB63-ECAD4ABD8AF9> /usr/lib/libcsfde.dylib
        0x7fff834d0000 -     0x7fff83515fff  com.apple.DiskManagement (4.2 - 507) <15DB8D3E-E03A-35A0-BF64-85CCF0B2AFFA> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff83516000 -     0x7fff83561ff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff83562000 -     0x7fff835d0fff  com.apple.CoreSymbolication (2.1 - 66) <7CF9EF4A-262A-3009-8D42-A76F5614E372> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff835d1000 -     0x7fff835dcfff  com.apple.CommonAuth (2.1 - 2.0) <BFDD0A8D-4BEA-39EC-98B3-2E083D7B1ABD> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8361b000 -     0x7fff8367dfff  com.apple.coreui (1.2.1 - 164.1) <F7972630-F696-3FC5-9FCF-A6E1C8771078> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8367e000 -     0x7fff836b3fff  com.apple.securityinterface (5.0 - 55004) <CFB4A542-7297-3159-8229-A5815EFE0EF5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff836b4000 -     0x7fff836daff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff836db000 -     0x7fff836f3ff7  com.apple.iChat.InstantMessage (6.0 - 835) <69CD03BA-7F7A-33C5-9302-F28C029A1AEF> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
        0x7fff836f4000 -     0x7fff83a4cff7  com.apple.MessageFramework (5.1 - 1251.1) <9A036637-6172-3D23-9118-4633E2CF2029> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff83a63000 -     0x7fff83a63fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff83a64000 -     0x7fff83e02fef  com.apple.MediaToolbox (1.0 - 705.42) <BF05C02D-3202-3FF8-A334-C14AF7C89F9E> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff83e03000 -     0x7fff83e6dfff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff83e6e000 -     0x7fff83f10ff7  com.apple.securityfoundation (5.0 - 55005) <2814D17E-E6BB-30A2-A62E-2D481AF514F2> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff83f11000 -     0x7fff83f1efff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <2DCDCCA3-F1BF-3143-A243-83973F93C95C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83f1f000 -     0x7fff84632587  com.apple.CoreGraphics (1.600.0 - ???) <A9F2451E-6F60-350E-A6E5-539669B53074> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff84633000 -     0x7fff8464fff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff84650000 -     0x7fff84666fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff84667000 -     0x7fff8468bfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8468c000 -     0x7fff846bcfff  com.apple.framework.Admin (11.0 - 11.0) <C72B49AD-9114-328D-A0FE-AE97111D0A78> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff846bd000 -     0x7fff84770fff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff84771000 -     0x7fff8477cfff  com.apple.dotMacLegacy (3.3 - 267) <A7CC6E73-82CD-3057-9A83-894FA0CD7E6C> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
        0x7fff8477d000 -     0x7fff84782fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff84783000 -     0x7fff84792ff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84793000 -     0x7fff84797fff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
        0x7fff847dc000 -     0x7fff849defff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff849df000 -     0x7fff84a0afff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff84a0b000 -     0x7fff84a0ffff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff84a10000 -     0x7fff84a26ff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff84a27000 -     0x7fff84a6bff7  com.apple.MediaKit (11.0 - 585) <5672F5E1-B8DC-3B69-A8BE-E6A938E28B62> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff84a6c000 -     0x7fff84b66ff7  com.apple.DiskImagesFramework (10.7.2 - 331) <C88025FC-2460-3F33-B808-CB1E8C2E5CB9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff84b67000 -     0x7fff84b7cfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff84b7d000 -     0x7fff84df8fff  com.apple.imageKit (2.1.1 - 1.0) <9C159577-0FFF-34D8-890E-66627A9E44FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff84df9000 -     0x7fff84e39fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff84e3a000 -     0x7fff84e75fff  com.apple.LDAPFramework (3.1 - 120.2) <5633BDE9-BDCB-35CC-BC6B-B8E4CD011D51> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84e76000 -     0x7fff84e93ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
        0x7fff84e94000 -     0x7fff84ea2fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff84ea3000 -     0x7fff84eb5ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff84eb6000 -     0x7fff84ed6fff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
        0x7fff84ed7000 -     0x7fff84fefff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff84ff0000 -     0x7fff85039fff  com.apple.framework.CoreWLAN (2.1.1 - 211.3) <0FBC6087-6872-3403-A317-CE888969CF4C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8503a000 -     0x7fff8505eff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff85065000 -     0x7fff85070fff  com.apple.NSServerNotificationCenter (4.0 - 4.0) <D1ECC300-EFC2-3A5B-9E49-0BD490D1ACC3> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff85071000 -     0x7fff850b2fff  com.apple.QD (3.12 - ???) <983D6E1E-B8BD-3260-A960-13727351D867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff850b3000 -     0x7fff850dcfff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85174000 -     0x7fff85182ff7  com.apple.AppleFSCompression (37 - 1.0) <B6B7A560-DD9E-3601-8ACE-42C1FA738843> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff85183000 -     0x7fff8549fff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff854a4000 -     0x7fff854a6fff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff854a7000 -     0x7fff854bbfff  com.apple.syncservices.syncservicesui (6.1 - 673.3) <1388CDAC-98DB-3FC8-915A-40301804D172> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
        0x7fff854bc000 -     0x7fff854c0ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff854c1000 -     0x7fff854ecff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
        0x7fff8554a000 -     0x7fff859defff  com.apple.RawCamera.bundle (3.9.0 - 584) <CB295E3D-6E52-4E53-D553-A7C5FF960C01> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff859df000 -     0x7fff859dffff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff859e0000 -     0x7fff859e0fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff859e1000 -     0x7fff859e2ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <001E87FF-97DF-328D-B22F-16E3ACEF8864> /usr/lib/system/libremovefile.dylib
        0x7fff859e3000 -     0x7fff85a75ff7  com.apple.PDFKit (2.6.1 - 2.6.1) <33A0A777-8CF4-3F36-BB1A-78F8A3D7E8C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff85a76000 -     0x7fff85b10ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff85b11000 -     0x7fff85b1cff7  com.apple.DisplayServicesFW (2.5.2 - 317) <48964503-D7F0-3567-9594-E6AA9C9300EF> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff85b1d000 -     0x7fff85b63ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <EAF61ADC-DC00-34CE-B23E-7238ED54E31D> /usr/lib/libcurl.4.dylib
        0x7fff85b64000 -     0x7fff85b6fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9807F306-4081-34DA-9970-83A136E1E53F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff85b70000 -     0x7fff85b8afff  com.apple.CoreMediaAuthoring (2.0 - 889) <B99C23FB-EE6C-3B2A-8BF1-3995B94CE7D3> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff85bbb000 -     0x7fff85bc1fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85bc2000 -     0x7fff85cc0fff  com.apple.QuickLookUIFramework (3.1 - 500.1) <D3A71FF1-7ED1-39DB-AD4E-451612DA536C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff85cc1000 -     0x7fff85d65fff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff85d66000 -     0x7fff85e63fff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff85e64000 -     0x7fff8613cff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86141000 -     0x7fff86143ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff86144000 -     0x7fff86149fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8614a000 -     0x7fff8615cff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8615d000 -     0x7fff86185ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff86186000 -     0x7fff861a5fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff861a6000 -     0x7fff861a7fff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <37FEFE78-BCB5-37EC-8E99-747469BCA4C7> /usr/lib/system/libdnsinfo.dylib
        0x7fff861a8000 -     0x7fff861b6fff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff86289000 -     0x7fff8636afff  com.apple.CoreServices.OSServices (478.29 - 478.29) <B487110E-C942-33A8-A494-3BDEDB88B1CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8651f000 -     0x7fff8655efff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8655f000 -     0x7fff86662fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
        0x7fff866b0000 -     0x7fff86711fff  com.apple.ExchangeWebServices (2.0 - 123) <74F90633-C43E-31F2-A9CF-2E91E306E46F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff86712000 -     0x7fff86807fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff86808000 -     0x7fff8680cfff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8680d000 -     0x7fff86a80fff  com.apple.CoreImage (7.82 - 1.0.1) <282801B6-5D80-3E2C-88A4-00FE29906D5A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff86a81000 -     0x7fff86a88ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff86a8b000 -     0x7fff86aeffff  com.apple.Symbolication (1.2 - 83.1) <A7E088DE-BC16-3C24-A0D0-30EEBA221659> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff86b02000 -     0x7fff86b02fff  com.apple.AOSMigrate (1.0 - 1) <7D22554E-EDAE-3B37-AC47-96B0797F1781> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff86b03000 -     0x7fff86beafff  com.apple.backup.framework (1.3.1 - 1.3.1) <3F01784C-3C09-3F08-B949-779F0A5248C1> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff86beb000 -     0x7fff86c2bff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <B7173CA4-CE16-3BAB-8D83-185FCEFA15F5> /usr/lib/libcups.2.dylib
        0x7fff86c2c000 -     0x7fff86c7ffff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff86c80000 -     0x7fff86c85fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff86c86000 -     0x7fff86cd9fff  com.apple.iCalendar (5.0 - 104) <F7723132-0AA0-3FB3-AAD7-2112D294FDC3> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff86cda000 -     0x7fff86d01fff  com.apple.framework.internetaccounts (1.1 - 2) <B01A08DC-2735-3783-B0C8-63492BD845CF> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff86d02000 -     0x7fff86d05ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86d06000 -     0x7fff86d59fff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff86d5a000 -     0x7fff86dcfff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff86dd0000 -     0x7fff86dd9ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff86dda000 -     0x7fff86edfff7  libFontParser.dylib (??? - ???) <B9A53808-C97E-3293-9C33-1EA9D4E83EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86ee0000 -     0x7fff86ee2fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff86ee3000 -     0x7fff86ee9fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8723a000 -     0x7fff87317fef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff87318000 -     0x7fff873dfff7  com.apple.ColorSync (4.7.0 - 4.7.0) <F325A9D7-7203-36B7-8C1C-B6A4D5CC73A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff873e0000 -     0x7fff873f7fff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87408000 -     0x7fff87447ff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff87448000 -     0x7fff874cdff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff874ce000 -     0x7fff874d8ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
        0x7fff874d9000 -     0x7fff874e0fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff874e1000 -     0x7fff874e4fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff874e5000 -     0x7fff87527fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff87536000 -     0x7fff875ccff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff875cd000 -     0x7fff87621ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff87622000 -     0x7fff87624fff  com.apple.EFILogin (1.0 - 1) <E806D2EA-BD93-302E-8F2C-6D33AE26E1BC> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff87625000 -     0x7fff87632fff  com.apple.KerberosHelper (3.0 - 1.0) <AB3A746A-552C-3A35-A5F8-7A86B85A6F99> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff87633000 -     0x7fff87646ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff87647000 -     0x7fff87849fff  com.apple.AOSKit (1.01 - 87) <E00ACA45-14A4-3894-9001-DDD39667B107> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8784a000 -     0x7fff87957fff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff87b63000 -     0x7fff87b96ff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff87b9d000 -     0x7fff87bedfff  com.apple.CoreMediaIO (210.0 - 3180) <13374EA4-83BE-3407-B9DD-D199426D0E7A> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff87bee000 -     0x7fff87c2cfff  com.apple.bom (11.0 - 183) <F300B9EC-995E-33A7-9175-9F07D4B68F16> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff87c40000 -     0x7fff87ca8ff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87ca9000 -     0x7fff87fcdfff  com.apple.HIToolbox (1.8 - ???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8800d000 -     0x7fff8800ffff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff88010000 -     0x7fff88027fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88028000 -     0x7fff88106ff7  com.apple.DiscRecording (6.0 - 6000.4.1) <644A30D5-30EA-3681-A59C-6F0C3CC7A3C7> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff88107000 -     0x7fff88114ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff88115000 -     0x7fff8813efff  com.apple.datadetectors (3.0 - 172.3) <7C8B98DD-68C0-3AE0-BCD9-55CBD63925B7> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff8813f000 -     0x7fff8814bfff  com.apple.CrashReporterSupport (10.7.2 - 347) <0F6D3509-9062-3647-B7C4-F25AF3AE9B71> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8814c000 -     0x7fff88194fff  com.apple.imfoundation (6.0 - 800) <A72F1D4B-FFA3-3104-8444-152B649271F5> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/Frameworks/IMFoun dation.framework/Versions/A/IMFoundation
        0x7fff88195000 -     0x7fff88d96ff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff88d97000 -     0x7fff88e0bfff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <CBEE0967-09B3-3074-AD96-C1CE06FDEA87> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff88e0c000 -     0x7fff88e29ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89506000 -     0x7fff89518ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff89519000 -     0x7fff89525fff  com.apple.DirectoryService.Framework (10.7 - 146) <BB0240B0-69F7-38FA-A8D8-9C0079F8613F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff895aa000 -     0x7fff89703fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff89704000 -     0x7fff89709ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8970a000 -     0x7fff8980cff7  com.apple.PubSub (1.0.5 - 65.28) <8251731B-2EAA-3957-82B6-3FF0E096645A> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8980d000 -     0x7fff8980dfff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8980e000 -     0x7fff8986afff  com.apple.QuickLookFramework (3.1 - 500.1) <0C9E98D2-D8F9-3161-9809-0D77B98AD938> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8986b000 -     0x7fff898c0fff  libCoreStorage.dylib (??? - ???) <BDF64435-2C7F-3127-8F41-E9A86FF943DA> /usr/lib/libCoreStorage.dylib
        0x7fff898c1000 -     0x7fff898c1fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff898c2000 -     0x7fff898c8fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff898c9000 -     0x7fff8a05dfef  com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8a05e000 -     0x7fff8a08bfff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8a08c000 -     0x7fff8a216ff7  com.apple.WebKit (7534.52 - 7534.52.7) <D858B247-71C2-395A-9A44-A0B8B0713E3A> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8a217000 -     0x7fff8a27cff7  com.apple.coredav (1.0.1 - 115.19) <6E4E8A0B-F6EC-3BCE-B4FB-90154AF13279> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8a27d000 -     0x7fff8a3b6fef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8a3b7000 -     0x7fff8a7e4fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8a7e5000 -     0x7fff8a855fff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8a856000 -     0x7fff8ab77fff  com.apple.AddressBook.framework (6.1 - 1062) <94321204-A094-3BBE-8EA6-6048D39F4E54> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8aba0000 -     0x7fff8b184fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8b185000 -     0x7fff8b188fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8b226000 -     0x7fff8b22dfff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <24F11710-FFA4-3324-ACBE-961B518D2780> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8b22e000 -     0x7fff8b22efff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8b22f000 -     0x7fff8b230fff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
        0x7fff8b231000 -     0x7fff8b273ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8b274000 -     0x7fff8b274fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b286000 -     0x7fff8b28afff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <36F75773-7380-3AC7-AF62-E1E6C07B7004> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8b28b000 -     0x7fff8b299ff7  libkxld.dylib (??? - ???) <B1BD4862-9D3F-3EEF-895C-A8E2E53684B6> /usr/lib/system/libkxld.dylib
        0x7fff8b29a000 -     0x7fff8b6ccfff  com.apple.VideoToolbox (1.0 - 705.42) <FA0AD643-845C-3378-AFD1-8C5BD0215B72> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8bb69000 -     0x7fff8bbb7fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8bbb8000 -     0x7fff8bbbaff7  com.apple.IMServicePlugInSupport (1.0 - 1) <EE1509C4-C214-3C0D-BDD3-05362DB0287A> /System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMSe rvicePlugInSupport.framework/Versions/A/IMServicePlugInSupport
        0x7fff8bbbb000 -     0x7fff8bbfeff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <81435CC2-91BD-36E8-AF94-57D084293675> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8bbff000 -     0x7fff8bc0dfff  com.apple.HelpData (2.1.0 - 70) <917CF02F-276E-3571-9042-AAAAC0D3D4E1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8bc0e000 -     0x7fff8bc8aff7  com.apple.imcore (6.0 - 800) <98839D42-39FB-306B-8259-BF7FA3D443A7> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8bc8b000 -     0x7fff8bc8cfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8bc8d000 -     0x7fff8bcbdfff  com.apple.shortcut (2.0 - 2.0) <D8FD6158-7E9C-33E5-AED0-57B4C252A904> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8bcbe000 -     0x7fff8bf49fff  com.apple.JavaScriptCore (7534.52 - 7534.52.7) <4B188A38-3A5B-327D-ABE9-8EE2420B3791> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8bf4a000 -     0x7fff8bf85ff7  libsystem_info.dylib (??? - ???) <9C8C2DCB-96DB-3471-9DCE-ADCC26BE2DD4> /usr/lib/system/libsystem_info.dylib
        0x7fff8bfae000 -     0x7fff8c475fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8c476000 -     0x7fff8c4a3ff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8c4df000 -     0x7fff8c4f3ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8c55a000 -     0x7fff8c784ff7  com.apple.CalendarStore (5.0.1 - 1139.14) <570E813D-3E53-3F44-8EFB-9037809B305B> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff8c785000 -     0x7fff8c78cfff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8c78d000 -     0x7fff8c78dfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c78e000 -     0x7fff8c791fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8c792000 -     0x7fff8c894ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
        0x7fff8c895000 -     0x7fff8c8c2fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff8c8c3000 -     0x7fff8c939fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8c93a000 -     0x7fff8caa5fff  com.apple.syncservices (6.1 - 673.3) <1EDAC1B3-C010-3CE1-BC4D-33B879EEF191> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff8caa6000 -     0x7fff8d7b1ff7  com.apple.WebCore (7534.52 - 7534.52.12) <32AF92F7-44FC-3ADB-A6DD-D58A3EA88EFE> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d7b2000 -     0x7fff8d93cff7  com.apple.QTKit (7.7.1 - 2306) <A97042BD-4FD8-3556-9279-6B7742C98904> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8d9ce000 -     0x7fff8d9d4ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8d9d5000 -     0x7fff8dceeff7  com.apple.Foundation (6.7.1 - 833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8dcef000 -     0x7fff8dd72fef  com.apple.Metadata (10.7.0 - 627.20) <E00156B0-663A-35EF-A307-A2CEB00F1845> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8dd73000 -     0x7fff8dd9aff7  com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8ddd6000 -     0x7fff8de5aff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <FE629F2D-6BC0-3A58-9844-D8B9A6808A00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8de77000 -     0x7fff8dfddfff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8dfde000 -     0x7fff8e017fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8e1ef000 -     0x7fff8e21fff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8e220000 -     0x7fff8e22bff7  com.apple.aps.framework (2.1 - 2.1) <032C9540-6E89-37FE-9C31-9BF4CC2EBF80> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8e239000 -     0x7fff8e244ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8e249000 -     0x7fff8e251fff  libsystem_dnssd.dylib (??? - ???) <998E3778-7B43-301C-9053-12045AB8544D> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e252000 -     0x7fff8e253fff  libodfde.dylib (??? - ???) <9725455E-BA0B-3371-8570-CFE50D3BDA84> /usr/lib/libodfde.dylib
        0x7fff8e271000 -     0x7fff8e2d1fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8e2d2000 -     0x7fff8e364fff  com.apple.CorePDF (3.0 - 3.0) <FA08FDA8-38C5-353D-89FC-59F9F99ABADD> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8e365000 -     0x7fff8e366fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8e367000 -     0x7fff8e36bfff  com.apple.FindMyMac (1.1 - 1.1) <D9EB8F02-7C45-3948-9B50-4979993C6599> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8e36c000 -     0x7fff8e3dffff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8e3e0000 -     0x7fff8e43bff7  com.apple.HIServices (1.10 - ???) <BAB8B422-7047-3D2D-8E0A-13FCF153E4E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e4ee000 -     0x7fff8e6c2fff  com.apple.CoreFoundation (6.7.1 - 635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8e6c3000 -     0x7fff8e8ddfef  com.apple.CoreData (104 - 358.12) <33B1FA75-7970-3751-9DCC-FF809D3E1FA2> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8e8de000 -     0x7fff8e8defff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8e93a000 -     0x7fff8e93bfff  libsystem_sandbox.dylib (??? - ???) <DC97E52F-C577-3A8A-A2F6-431AE3D40C40> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8e93c000 -     0x7fff8e942fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8e943000 -     0x7fff8e97dfef  com.apple.DebugSymbols (2.1 - 85) <F45985E2-D1D0-3F47-861E-47904837B76F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8e980000 -     0x7fff8e985fff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8e986000 -     0x7fff8e9afff7  com.apple.framework.Apple80211 (7.1.1 - 711.1) <FD0675E6-6602-3C28-85AA-6A4AF6B36D78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8e9b0000 -     0x7fff8e9dbfff  com.apple.speech.LatentSemanticMappingFramework (2.8.10 - 2.8.10) <686A1AA0-AE00-3CFB-8DEE-C84B26C83157> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8e9dc000 -

    Does it matter whether I delete the Cashe.db file in the User ~/Library file or in the Volumn ~/Library file?
    Yes it matters.
    ~/Library/Caches/com.apple.AddressBook
    ~ (Tilde) character represents your Home folder.
    /Library is root.
    If deleting the Cache.db file doesn't help, reinstall Lion using Lion Recovery.

  • My address book won't open after installing Lion. Has this happened to anyone else?

    I recently upgraded to Lion and couldn't be more pleased, except that my address book won't open now. It just bounces and then gives up and sends an error report to Apple. Please help.

    I have the same problem. Has anyone solved this problem?

  • HT2486 My address book won't work

    I just installed Snow Leopard and now my address book won't open. It says I have address book 4.1.2, but I can't find an update or anything for it. Help please! I need my addresses!

    The latest version of address book for 10.6.8 is 5.0.3
    You could apply, if you haven't already (or) reapply the combo update  Mac OS X 10.6.8 Update Combo v1.1.
    That should solve your problem.  You should also check out software update for things like the new security update 2012 004.

  • HT2486 I just upgraded to 10.6.3 and now my address book won't work (4.1.2) how to I upgrade it?

    I just upgraded to 10.6.3 and now my address book won't work (4.1.2) how to I upgrade it?

    Software Update (under the Apple menu).
    Current Snow Leopard version is 10.6.8.

  • Address Book Won't Launch in Leopard

    Suddenly, Address Book won't launch in Leopard. It worked after initial installation but now won't open. I have tried re-syncing with .Mac, re-starting. Address Book info (e-mail addresses) is still accurate and available in Mail.
    I also installed Leopard on my Mac Book. No problems, Address book works fine.
    How can I fix?

    Here's what I got.
    11/1/07 9:14:09 PM [0x0-0x57057].com.apple.AddressBook[485] dyld: Library not loaded: /System/Library/PrivateFrameworks/SearchEngine.framework/Versions/A/SearchEngin e
    11/1/07 9:14:09 PM [0x0-0x57057].com.apple.AddressBook[485] Referenced from: /Applications/Microsoft Office 2004/Address Book.app/Contents/MacOS/Address Book
    11/1/07 9:14:09 PM [0x0-0x57057].com.apple.AddressBook[485] Reason: image not found
    11/1/07 9:14:10 PM com.apple.launchd[70] ([0x0-0x57057].com.apple.AddressBook[485]) Exited abnormally: Trace/BPT trap
    11/1/07 9:14:14 PM [0x0-0x58058].com.apple.AddressBook[488] dyld: Library not loaded: /System/Library/PrivateFrameworks/SearchEngine.framework/Versions/A/SearchEngin e
    11/1/07 9:14:14 PM [0x0-0x58058].com.apple.AddressBook[488] Referenced from: /Applications/Microsoft Office 2004/Address Book.app/Contents/MacOS/Address Book
    11/1/07 9:14:14 PM [0x0-0x58058].com.apple.AddressBook[488] Reason: image not found
    11/1/07 9:14:14 PM com.apple.launchd[70] ([0x0-0x58058].com.apple.AddressBook[488]) Exited abnormally: Trace/BPT trap
    11/1/07 9:14:17 PM [0x0-0x59059].Address Book[489] dyld: Library not loaded: /System/Library/PrivateFrameworks/SearchEngine.framework/Versions/A/SearchEngin e
    11/1/07 9:14:17 PM [0x0-0x59059].Address Book[489] Referenced from: /Applications/Microsoft Office 2004/Address Book.app/Contents/MacOS/Address Book
    11/1/07 9:14:17 PM [0x0-0x59059].Address Book[489] Reason: image not found
    11/1/07 9:14:17 PM com.apple.launchd[70] ([0x0-0x59059].Address Book[489]) Exited abnormally: Trace/BPT trap

  • My Address Book won't sync with iphone anymore...HELP!

    My Address Book won't sync with iphone anymore. After installing the latest update for iphone, my address book no longer syncs with iphone and vica versa. Anyone had this problem? Can you help?

    Yes, I've done that plus have tried syncing selected contacts and also ALL. Still won't work...

  • Can I restore my address book info from a backed user file app support?

    My hard drive crashed, no data recovered. I had my user file backed up to an ExHD. New HD installed, put Leopard on it. Is there a way I can restore my contacts to my Address Book through my backed up user file on my ExHD? I can not locate an actual archive file of the address book.

    If you were using the same version of Mac OS X on both drives (10.5 to 10.5, 10.4 to 10.4, etc), then you only need to move a copy of the Home/Library/Mail folder from the backup and replace the existing Home/Library/Mail folder on the new HD with it.
    Be sure that Mail is not running when you do this.
    Mulder

Maybe you are looking for

  • [Solved] mtp usage

    I have just started using mtp to transfer files to my mobile phone & it works fast & flawlessly (yeah!) My only concern is dismounting / disconnecting the phone when the transfer is complete. Q1 is this required ? will data be corrupted if I just unp

  • GroupWise 8.0.2 with FTF patch

    I heard that the new ZAV 9 has a prebuilt template for GroupWise 802 that has the send to built in. How would you go about updating this GW802 template to include the new GW803HP3FTF that fixes the security issues?

  • I am having a lot of popups, even my popup blocker in Firefox is activated. Why?.

    When ckicking from one page to another popups aimost allways apears, whem closed often a new window opens with a econimical offer. Often I am warned that my PC is at the brink of braking down, if I am not ...

  • What is server name and where do i find it?

    Having trouble findung server name

  • Maximum number of saved interactive reports?

    Is there an upper limit on the number of saved reports an application user can create? I.E., for a given interactive report, does Apex specify a maximum number of report configurations a user can save? I've checked the documentation and haven't found