V20 app crashes on launch, log provided

Our app crashes on launch and was fixed by re-downloaded app. Here is the log:
Sep 21 09:11:38 iPad-2 kernel[0] <Debug>: launchd[368] Builtin profile: container (sandbox)
Sep 21 09:11:38 iPad-2 kernel[0] <Debug>: launchd[368] Container: /private/var/mobile/Applications/75EA2ECC-6D11-447E-A35B-792DFB79374A (sandbox)
Sep 21 09:11:39 iPad-2 ReportCrash[369] <Notice>: Formulating crash report for process viewer[368]
Sep 21 09:11:39 iPad-2 com.apple.launchd[1] (UIKitApplication:com.democratandchronicle.rochestermagazine[0xfbd8][368]) <Warning>: (UIKitApplication:com.democratandchronicle.rochestermagazine[0xfbd8]) Job appears to have crashed: Trace/BPT trap: 5
Sep 21 09:11:39 iPad-2 backboardd[51] <Warning>: Application 'UIKitApplication:com.democratandchronicle.rochestermagazine[0xfbd8]' exited abnormally with signal 5: Trace/BPT trap: 5
Sep 21 09:11:40 iPad-2 ReportCrash[369] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
Sep 21 09:11:40 iPad-2 ReportCrash[369] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/viewer_2012-09-21-091139_iPad-2.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
Sep 21 09:11:43 iPad-2 kernel[0] <Debug>: launchd[371] Builtin profile: mobileassetd (sandbox)
Did the app corrupt itself?

Install the OS X Mountain Lion Update v10.8.4 (Combo)
That will replace any missing  system files.
Restart your Mac after the combo is installed then try the Mail app.

Similar Messages

  • Most Creative Suite CS6 Apps crash upon launch with Mountain Lion

    Is there a solution to the problem CS6 apps crashing at launch or shortly after when running Mountain Lion? I have tried many reinstalls of CS6 and Mountain Lion. I verified permissions and repaired. No matter what I do the same apps fail and crash. Dreamweaver immediately crashes as does Illustrator and Fireworks. Bridge crashes sometimes. Photoshop seems to run okay. Its  only Adobe software that has a problem.

    I am having exactly the same problem.  I installed Mountain Lion in place and after installation, CS6 applications crash.  I have uninstalled all CS6 applications and reinstalled and the problem still occurs.
    The crash log shows the following:
    Process:         Dreamweaver [4949]
    Path:            /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    Identifier:      com.adobe.dreamweaver-12.0
    Version:         12.0.1.5842 (12.0.1)
    Code Type:       X86 (Native)
    Parent Process:  launchd [157]
    User ID:         502
    Date/Time:       2012-07-30 14:42:05.421 +0100
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Sleep/Wake UUID: 6A909658-B393-41D8-93A1-14704061FEF8
    Interval Since Last Report:          11766 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  115 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      14A2EDE6-6B01-4801-B393-EBA85BAD6CAC
    Crashed Thread:  11  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called

  • IPhone Push app crashes on launch

    I have two apps to which I added Push. Both are crashing immediately upon launch on legal, activated phones on which other Push apps are working fine. Apple has also rejected these apps on these grounds. I reported the issue to Apple Bug Reporter, and they said this is a known issue and marked my bug as duplicate and they have not provided any updates for weeks on the original bug.
    However I am still in the same position. My apps crash on launch, whereas on the same phones, other push apps work fine.
    1. Have any of you faced this issue?
    2. Is there a known workaround?
    My App is built for 3.0 devices and uses the stadard documented api for registering with APNS and handling success/failure.
    I have heard of trying to install like the AIM push app before installing my app as a workaround but that's not a real workaround for customers. Again the most salient point is IT CRASHES ON LEGAL ACTIVATED 3.0 PHONES ON WHICH OTHER PUSH APPS WORK FINE.
    The crash is immediate upon launch, and is a segment violation in the coredynamic libraries (not apparently directly related to APNS).
    My code for APNS registration is as follows:
    - (void)applicationDidFinishLaunching:(UIApplication *)app {
    self.navigationController.navigationBar.tintColor = [UIColor blackColor];
    [window addSubview:[navigationController view]];
    [window makeKeyAndVisible];
    //Register for notification Types
    NSLog("applicationDidFinishLaunching: Before Registering for the notifications types!!!");
    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
    NSLog("applicationDidFinishLaunching: After Registering for the notifications types!!!");
    // Delegation methods
    - (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken {
    NSLog(@"Inside function didRegisterForRemoteNotificationsWithDeviceToken: %@", devStrToken);
    NSString *devStrToken = nil;
    devStrToken = [[NSString alloc] initWithData:devToken encoding:NSASCIIStringEncoding];
    NSLog(@"Device token: %@", devStrToken);
    self.registered = YES;
    [self sendProviderDeviceToken:(char *)[devStrToken UTF8String]]; // custom method
    - (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
    NSLog(@"Error in registration. Error: %@", err);
    - (void) sendProviderDeviceToken:(char *)devTokenBytes {
    NSLog(@"Inside function sendProviderDeviceToken: %@", devStrToken);
    NSString *uniqueIdentif = [[UIDevice currentDevice] uniqueIdentifier]; //Device unidentify
    NSString *urlString = [NSString stringWithFormat:@"<deletedonpurpose>@", devTokenBytes, uniqueIdentif];
    NSLog("sendProviderDeviceToken: sending the device token through http!!!");
    NSLog(@"url = %@", urlString);
    // setting up the request object now
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
    [request setURL:[NSURL URLWithString:urlString]];
    [request setHTTPMethod:@"GET"];
    NSURLResponse *response = nil;
    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];
    NSLog(@"returnData = %@", returnData);
    }

    K T, thanks for the code formatting tip.
    Yes the crash is a SIGSEGV, specifically:
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x478ad55b
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x300102ac 0x3000c000 + 17068
    1 Foundation 0x3054bf1c 0x30501000 + 306972
    2 CoreFoundation 0x302395fc 0x301fd000 + 247292
    3 CoreFoundation 0x30238b84 0x301fd000 + 244612
    4 CoreFoundation 0x3026f50a 0x301fd000 + 468234
    5 Foundation 0x305657b8 0x30501000 + 411576
    6 Foundation 0x3056575c 0x30501000 + 411484
    The formatted code:
    - (void)applicationDidFinishLaunching:(UIApplication *)app {
    self.navigationController.navigationBar.tintColor = [UIColor blackColor];
    [window addSubview:[navigationController view]];
    [window makeKeyAndVisible];
    //Register for notification Types
    NSLog("applicationDidFinishLaunching: Before Registering for the notifications types!!!");
    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
    NSLog("applicationDidFinishLaunching: After Registering for the notifications types!!!");
    // Delegation methods
    - (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken {
    NSLog(@"Inside function didRegisterForRemoteNotificationsWithDeviceToken: %@", devStrToken);
    NSString *devStrToken = nil;
    devStrToken = [[NSString alloc] initWithData:devToken encoding:NSASCIIStringEncoding];
    VoxNotesLog("didRegisterForRemoteNotificationsWithDeviceToken: Got the token!!!");
    NSLog(@"Device token: %@", devStrToken);
    self.registered = YES;
    [self sendProviderDeviceToken:(char *)[devStrToken UTF8String]]; // custom method
    - (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
    NSLog(@"Error in registration. Error: %@", err);
    - (void) sendProviderDeviceToken:(char *)devTokenBytes {
    NSLog(@"Inside function sendProviderDeviceToken: %@", devStrToken);
    NSString *uniqueIdentif = [[UIDevice currentDevice] uniqueIdentifier]; //Device unidentify
    NSString *urlString = [NSString stringWithFormat:@"<deleted>", devTokenBytes, uniqueIdentif];
    NSLog("sendProviderDeviceToken: sending the device token through http!!!");
    NSLog(@"url = %@", urlString);
    // setting up the request object now
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
    [request setURL:[NSURL URLWithString:urlString]];
    [request setHTTPMethod:@"GET"];
    NSURLResponse *response = nil;
    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];
    NSLog(@"returnData = %@", returnData);

  • Apps crash on launch iPhone 5S

    Hi
    I just bought a new iPhone 5S and I did a backup of my iPhone 3GS. Set up the new iPhone from a backup and now when I download a new app on to my iPhone 5S, the app crashes before launching completely. This doesn't happen on all apps, but from the 6 I have tried, 4 have crashed upon launch.
    Is there any way to fix this besides setting it up as a new iPhone? I don't want to loose my Text Messages or Photos by doing this.

    Hello jiiikoo12
    Check out the article below to troubleshoot it further, Try just restarting your iPhone, if it continues then delete the app and download it again. That way you do not have to worry about losing your text messages or photos.
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/ts1702
    Regards,
    -Norm G.

  • IPad Address Book (Contacts.app) crash on launch

    my iPad address book (Contacts.app) crashes on launch
    this problem also affects me when trying to send emails: the email app works fine for reading emails, but as soon as I write a new email and go to the "To" or "cc" or "bcc" boxes to input a recipient address, mail crashes, presumably because the Address book is being accessed at this stage.
    I can see that the above can be an Address book (Contacts.app) problem.
    Am running pre iOS 4.2 version of the iOS (likely the most up to date pre recent update), i.e. I don't have folders or multi-tasking yet.

    OK FIRST , DID U SET UP THE EMAIL CAL AND CONTACTS CORRECTLY? AS FOR IT CRASHING IT SHOULDNT EVEN IF IT IS BLANK! NOW FOR THE PART ABOUT EMAIL NOT WORKING......I RECOMMEND U JUST RESTORE IT AND "YES" begin as a new device!!!! I HAD SAME PROBLEM EXCEPT MINE WAS : backup successful, restore successful, update to 4.2 successful, sync of backup back to iPad successful, ha ha then when I turn iPad on BLANK!!!!! OH THE CAPACITY BAR AT THE BOTTOM OF THE COMPUTER SCREEN IN ITUNES WAS 10.7 gb of music 9.2 of movies, and 5.7 gb of games..... WELL IPAD WAS EMPTY!
    Sync 3 times same result..... RESTORED IT AND SYNCED BACKUP DATA AGAIN, still nothing! SO I RESTORED AND STARTED NEW! PERFECT?!
    So I had to select the apps and other media that I wanted to put back on it! AND YES I LOST ALL THE PHOTOS (maybe I haven't found it on pc, so for now I assume lost) but PRIOR TO UPDATE I EMAILED ALL MY NOTES TO MYSELF SO THEY WERE JUST A COPY AND PASTE BACK TO MY NOTES APP ON THE IPAD!
    Same with photos! Yeah tedious but I like to SEE INFO SAVED prior to any apple updates! So yeah there is something wrong with the sync portion of the update! So I suggest u just swallow loss and forget the data! AS FOR CONTACTS: just hop on computer and email a GROUP EMAIL OF CONTACTS TO IPAD THEN SET UP EMAIL ON IPAD AND THEN GO TO THAT EMAIL AND ADD THEM TO CONTACTS MANUALLY (or u can use your email server and sync via iTunes (see last tab on the iTunes menu for your device and there u can choose to sync calendars too)

  • Mail app crashes at launch

    Hi,
    I've read through some of the posts and haven't found anything that will help.
    I have 3 Macs (Mac Pro, MacBook Pro, and G5 PowerPC), all running Leopard 10.5.2, and when I tried to boot the Mail app today on the Mac Pro, it just crashed at launch. Mail is working fine on the other Macs. I haven't been using Mail and wanted to set it up so don't have any accounts set up.
    Some of the error log is below:
    Application Specific Information:
    -[MetadataManager getAllCalendarStoreData]
    -[MailboxesOutlineViewStateStorage clearAndResetShouldShowVariables]
    * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'trying to set a non-ToDo MailboxUid for a ToDo. The MailboxUid for a ToDo must be a ToDosMailboxUid'
    It looks like there is some sort of "ToDo" object causing the problem, but I don't really know. I do you iCal and Bento, if that matters.
    I dragged the Mail app from my PowerPC to the Mac Pro with the same results.
    Anyone know where to go from here?
    Thanks,
    Cobb

    I came across this exact same problem. I fixed it by copying something else (like a bit of text). This removes this pics you had copied and frees up the mail app.

  • CS3 Web Premium Setup.app crashing on launch

    Trying to install CS3 Web Premium on a Mac intel w 10.5.2 and I cannot get the installer to launch. It did not auto run as the instructions indicated and there was no Setup MacOS file that I could find on the dvd, but I did find Setup.app. Launching this fails almost instantly with an error:
    [0x0-0x16016].Setup[241]: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp[241] Launch failed with error code -2857 (cfragCFragRsrcErr) for application /Volumes/Adobe CS3 Web Premium/Adobe Creative Suite 3 Web Premium/Setup.app/Contents/MacOS/Setup
    The installer does not leave a log file in either Library or that is accessible via the Console. I've tried installing from a different admin account and also as root. Same result in both cases. I also attempted to run the actual Setup executable that is within the Setup.app bundle via Terminal and was told "cannot execute binary file".
    Thinking i might have had some previous adobe junk, i've also run the adobe clean up script at level 4. No effect on the crashing installer.
    Any ideas?

    I am installing a brand new MacPro with OS X 10.5.2. It is a machine upgrade for the user so all of her previous user files were also transferred during the setup. Two days ago we got our new CS3 site license upgrade discs and I was using it to install a fresh copy of CS3 Standard. We had a 5 user license disc that we were using to test before deploying CS3 to the users so we know that we can install from that disc, unfortunately it is a CS3 Premium disc and a different serial number.
    Also of note, once the setup.app crashes (actually it never really launches) other apps, like Safari also will no longer launch. I have repaired disk permissions and the next thing I will try is installing as another user, but it looks like you guys have already tried that.
    Any help would be wonderful, this user returns from vacation on Monday!
    Thanks,
    Laura

  • 10.6.5 update problems: my apps crashes on launch! :-(

    Hi,
    I just updated to 10.6.5 from 10.6.4 and after the update several applications fail to launch. When I start them, they immediately crash! For example these apps crash on each launch: iTunes, DVD Player, Front Row, Cyberduck, Spotify, Google Chrome.
    I have rebooted the machine a couple of additional times and have run a permissions repair to no help.
    The crash logs looks something like:
    Date/Time: 2010-11-12 22:50:25.992 +0100
    OS Version: Mac OS X 10.6.5 (10H574)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000ffe52c90
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x992712b0 strlen + 16
    1 libSystem.B.dylib 0x9927bc60 __vfprintf + 6630
    Thread 1: Dispatch que
    Sigh. What else can I do to work around this - except for reinstalling the machine?
    Regards,
    /Tommy

    Restore your bootable backup/clone or Time Machine backup of your previous 10.6.4 installation. Also, create a new admin user account, log into it, and see if the problem persists.

  • Multiiple Apps Crash On Launch - A Little Help?

    I'm having problems...Mail, iChat, iWeb and Safari are all crashing upon launch. Any ideas?
    Here comes a long list of crash reports...
    First for Mail
    ===== Sunday, July 16, 2006 11:52:21 AM US/Central =====
    Host Name: daniel-shikes-powerbook-g4-15
    Date/Time: 2006-07-16 11:52:29.143 -0500
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [56]
    Version: 2.1 (752)
    PID: 242
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Code[0]: 0x0000000a
    Code[1]: 0x0140d000
    Thread 0 Crashed:
    0 dyld 0x8fe12f08 ImageLoaderMachO::doRebase(ImageLoader::LinkContext const&) + 492
    1 dyld 0x8fe0b0b8 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 148
    2 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    3 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    4 dyld 0x8fe0dbf0 ImageLoader::link(ImageLoader::LinkContext const&, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning, unsigned) + 96
    5 dyld 0x8fe03fbc dyld::link(ImageLoader*, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning) + 380
    6 dyld 0x8fe060c4 dyld::main(machheader const*, int, char const**, char const**, char const**) + 1480
    7 dyld 0x8fe01048 dyldstart + 60
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000008fe12f08 srr1: 0x000000000000d030 vrsave: 0x0000000000000000
    cr: 0x44002228 xer: 0x0000000000000000 lr: 0x000000008fe12ec0 ctr: 0x000000008fe0f8bc
    r0: 0x000000000004b918 r1: 0x00000000bffff5f0 r2: 0x0000000001100df8 r3: 0x0000000011100000
    r4: 0x000000008fe5c568 r5: 0x0000000000000008 r6: 0x0000000080808080 r7: 0x0000000020000000
    r8: 0x0000000001458918 r9: 0x00000000003b2000 r10: 0x0000000011595728 r11: 0x000000000140d000
    r12: 0x000000008fe0f8bc r13: 0x0000000000000000 r14: 0x000000008fe55b04 r15: 0x000000008fe55b04
    r16: 0x000000008fe55b04 r17: 0x000000008fe55b04 r18: 0x000000008fe55b04 r19: 0x000000008fe55b04
    r20: 0x0000000000001000 r21: 0x0000000000000000 r22: 0x00000000bffff8d0 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x00000000ffffffff r26: 0x000000008fe5c568 r27: 0x000000008fe5c568
    r28: 0x00000000002101a0 r29: 0x000000006b916000 r30: 0x00000000002101a0 r31: 0x000000008fe12d28
    Binary Images Description:
    0x1000 - 0x199fff com.apple.mail 2.1 (752) /Applications/Mail.app/Contents/MacOS/Mail
    0x1100000 - 0x140cfff com.apple.WebCore 418.19 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1595000 - 0x15befff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x15c6000 - 0x15e2fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x15f6000 - 0x1604fff com.apple.DMNotification 1.0.3 (32) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x160c000 - 0x1628fff com.apple.DotMacSyncManager 1.0.3 (49) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x1638000 - 0x16b2fff com.apple.syncservices 2.4 (189.2) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x16ea000 - 0x16eafff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x16ec000 - 0x17bdfff com.apple.QuartzComposer 1.2.3 (32.21) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x1837000 - 0x1869fff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x8fe00000 - 0x8fe52fff dyld 45.1 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fcfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110d000 - 0x9111bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111e000 - 0x912d8fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d6000 - 0x913dffff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e6000 - 0x9140efff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91421000 - 0x9142cfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91431000 - 0x91439fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143d000 - 0x914b8fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f5000 - 0x914f5fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f7000 - 0x9152ffff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154a000 - 0x91617fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916fdfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91744000 - 0x917fbfff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91838000 - 0x91896fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c5000 - 0x918e9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fd000 - 0x91922fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91935000 - 0x91977fff com.apple.LaunchServices 180 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91993000 - 0x919a7fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b5000 - 0x919f5fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0b000 - 0x91ad3fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b21000 - 0x91b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3b000 - 0x91b58fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b5d000 - 0x91bccfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be3000 - 0x91be7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be9000 - 0x91c31fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c36000 - 0x91c73fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c7a000 - 0x91c93fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c98000 - 0x91c9bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c9d000 - 0x91c9dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9f000 - 0x91d84fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d8c000 - 0x91dabfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e17000 - 0x91e85fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e90000 - 0x91f25fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3f000 - 0x924c7fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924fa000 - 0x92825fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92855000 - 0x928ddfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291e000 - 0x92b49fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c67000 - 0x92d45fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d65000 - 0x92e53fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e65000 - 0x92e83fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8e000 - 0x92ee8fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f06000 - 0x92f06fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f08000 - 0x92f1cfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f34000 - 0x92f44fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f50000 - 0x92f65fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f77000 - 0x92ffefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93012000 - 0x9301dfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93027000 - 0x93054fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306e000 - 0x9307efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9308a000 - 0x930f0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93121000 - 0x93170fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9319e000 - 0x931bbfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931cd000 - 0x931dafff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931e3000 - 0x934f0fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363f000 - 0x9364bfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93650000 - 0x93670fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936c3000 - 0x936c3fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c5000 - 0x93cf8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94085000 - 0x940f5fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9412e000 - 0x941f1fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94243000 - 0x94243fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94245000 - 0x943f8fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9444b000 - 0x94488fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94490000 - 0x944e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94520000 - 0x94564fff com.apple.bom 8.4 (86.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9461b000 - 0x9465ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94c90000 - 0x94dc0fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e52000 - 0x94e61fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e69000 - 0x94e96fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e9d000 - 0x94eadfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94eb1000 - 0x94ee0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94ef0000 - 0x94f0dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9562d000 - 0x956bbfff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95717000 - 0x957adfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x96e9f000 - 0x96ebefff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9752f000 - 0x97554fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x984ad000 - 0x984c5fff com.apple.slideshow 1.0.4 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x9887c000 - 0x988bffff com.apple.ISSupport 1.0.3 (16) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98a26000 - 0x98a68fff com.apple.PAPICommon 2.4 (123) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x99f13000 - 0x99f1efff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99f29000 - 0x9a082fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Now Safari...
    ===== Sunday, July 16, 2006 11:57:25 AM US/Central =====
    Host Name: daniel-shikes-powerbook-g4-15
    Date/Time: 2006-07-16 11:57:28.540 -0500
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [56]
    Version: 2.0.4 (419.3)
    PID: 246
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Code[0]: 0x0000000a
    Code[1]: 0x0140d000
    Thread 0 Crashed:
    0 dyld 0x8fe12f08 ImageLoaderMachO::doRebase(ImageLoader::LinkContext const&) + 492
    1 dyld 0x8fe0b0b8 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 148
    2 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    3 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    4 dyld 0x8fe0dbf0 ImageLoader::link(ImageLoader::LinkContext const&, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning, unsigned) + 96
    5 dyld 0x8fe03fbc dyld::link(ImageLoader*, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning) + 380
    6 dyld 0x8fe060c4 dyld::main(machheader const*, int, char const**, char const**, char const**) + 1480
    7 dyld 0x8fe01048 dyldstart + 60
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000008fe12f08 srr1: 0x000000000000d030 vrsave: 0x0000000000000000
    cr: 0x44002228 xer: 0x0000000000000000 lr: 0x000000008fe12ec0 ctr: 0x000000008fe0f8bc
    r0: 0x000000000004b918 r1: 0x00000000bffff5f0 r2: 0x0000000001100df8 r3: 0x0000000011100000
    r4: 0x000000008fe5c568 r5: 0x000000000000000a r6: 0x0000000080808080 r7: 0x0000000020000000
    r8: 0x0000000001458918 r9: 0x00000000003b2000 r10: 0x0000000011595728 r11: 0x000000000140d000
    r12: 0x000000008fe0f8bc r13: 0x0000000000000000 r14: 0x000000008fe55b04 r15: 0x000000008fe55b04
    r16: 0x000000008fe55b04 r17: 0x000000008fe55b04 r18: 0x000000008fe55b04 r19: 0x000000008fe55b04
    r20: 0x0000000000001000 r21: 0x0000000000000000 r22: 0x00000000bffff8d0 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x00000000ffffffff r26: 0x000000008fe5c568 r27: 0x000000008fe5c568
    r28: 0x000000000020e3a0 r29: 0x000000006b916000 r30: 0x000000000020e3a0 r31: 0x000000008fe12d28
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x1100000 - 0x140cfff com.apple.WebCore 418.19 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1595000 - 0x15befff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x15c6000 - 0x15e6fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x15f3000 - 0x1620fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x1627000 - 0x1636fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x163e000 - 0x164efff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x1652000 - 0x1681fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x1691000 - 0x16aefff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x16b6000 - 0x16ecfff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x1709000 - 0x1741fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x8fe00000 - 0x8fe52fff dyld 45.1 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fcfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110d000 - 0x9111bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111e000 - 0x912d8fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d6000 - 0x913dffff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e6000 - 0x9140efff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91421000 - 0x9142cfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91431000 - 0x91439fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143d000 - 0x914b8fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f5000 - 0x914f5fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f7000 - 0x9152ffff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154a000 - 0x91617fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916fdfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91744000 - 0x917fbfff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91838000 - 0x91896fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c5000 - 0x918e9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fd000 - 0x91922fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91935000 - 0x91977fff com.apple.LaunchServices 180 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91993000 - 0x919a7fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b5000 - 0x919f5fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0b000 - 0x91ad3fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b21000 - 0x91b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3b000 - 0x91b58fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b5d000 - 0x91bccfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be3000 - 0x91be7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be9000 - 0x91c31fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c36000 - 0x91c73fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c7a000 - 0x91c93fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c98000 - 0x91c9bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c9d000 - 0x91c9dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9f000 - 0x91d84fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d8c000 - 0x91dabfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e17000 - 0x91e85fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e90000 - 0x91f25fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3f000 - 0x924c7fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924fa000 - 0x92825fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92855000 - 0x928ddfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291e000 - 0x92b49fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c67000 - 0x92d45fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d65000 - 0x92e53fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e65000 - 0x92e83fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8e000 - 0x92ee8fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f06000 - 0x92f06fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f08000 - 0x92f1cfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f34000 - 0x92f44fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f50000 - 0x92f65fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f77000 - 0x92ffefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93012000 - 0x9301dfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93027000 - 0x93054fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306e000 - 0x9307efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9308a000 - 0x930f0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93121000 - 0x93170fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9319e000 - 0x931bbfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931cd000 - 0x931dafff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931e3000 - 0x934f0fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363f000 - 0x9364bfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936c3000 - 0x936c3fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c5000 - 0x93cf8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94085000 - 0x940f5fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9412e000 - 0x941f1fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94243000 - 0x94243fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94245000 - 0x943f8fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9444b000 - 0x94488fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94490000 - 0x944e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945eb000 - 0x94607fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9461b000 - 0x9465ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94c90000 - 0x94dc0fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9562d000 - 0x956bbfff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95717000 - 0x957adfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9a4fc000 - 0x9a50efff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    iChat...
    ===== Sunday, July 16, 2006 11:58:55 AM US/Central =====
    Host Name: daniel-shikes-powerbook-g4-15
    Date/Time: 2006-07-16 11:58:58.325 -0500
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: iChat
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Parent: WindowServer [56]
    Version: 3.1.5 (436)
    PID: 250
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Code[0]: 0x0000000a
    Code[1]: 0x0140d000
    Thread 0 Crashed:
    0 dyld 0x8fe12f08 ImageLoaderMachO::doRebase(ImageLoader::LinkContext const&) + 492
    1 dyld 0x8fe0b0b8 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 148
    2 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    3 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    4 dyld 0x8fe0dbf0 ImageLoader::link(ImageLoader::LinkContext const&, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning, unsigned) + 96
    5 dyld 0x8fe03fbc dyld::link(ImageLoader*, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning) + 380
    6 dyld 0x8fe060c4 dyld::main(machheader const*, int, char const**, char const**, char const**) + 1480
    7 dyld 0x8fe01048 dyldstart + 60
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000008fe12f08 srr1: 0x000000000000d030 vrsave: 0x0000000000000000
    cr: 0x44002228 xer: 0x0000000020000000 lr: 0x000000008fe12ec0 ctr: 0x000000008fe0f8bc
    r0: 0x000000000004b918 r1: 0x00000000bffff5f0 r2: 0x0000000001100df8 r3: 0x0000000011100000
    r4: 0x000000008fe5c568 r5: 0x000000000000000a r6: 0x0000000080808080 r7: 0x0000000020000000
    r8: 0x0000000001458918 r9: 0x00000000003b2000 r10: 0x0000000011595728 r11: 0x000000000140d000
    r12: 0x000000008fe0f8bc r13: 0x0000000000000000 r14: 0x000000008fe55b04 r15: 0x000000008fe55b04
    r16: 0x000000008fe55b04 r17: 0x000000008fe55b04 r18: 0x000000008fe55b04 r19: 0x000000008fe55b04
    r20: 0x0000000000001000 r21: 0x0000000000000000 r22: 0x00000000bffff8d0 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x00000000ffffffff r26: 0x000000008fe5c568 r27: 0x000000008fe5c568
    r28: 0x0000000000210d80 r29: 0x000000006b916000 r30: 0x0000000000210d80 r31: 0x000000008fe12d28
    Binary Images Description:
    0x1000 - 0x170fff com.apple.iChat 3.1.5 (436) /Applications/iChat.app/Contents/MacOS/iChat
    0x1100000 - 0x140cfff com.apple.WebCore 418.19 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1595000 - 0x15befff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x15c6000 - 0x15e2fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x15f6000 - 0x15f7fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x8fe00000 - 0x8fe52fff dyld 45.1 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fcfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110d000 - 0x9111bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111e000 - 0x912d8fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d6000 - 0x913dffff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e6000 - 0x9140efff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91421000 - 0x9142cfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91431000 - 0x91439fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143d000 - 0x914b8fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f5000 - 0x914f5fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f7000 - 0x9152ffff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154a000 - 0x91617fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916fdfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91744000 - 0x917fbfff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91838000 - 0x91896fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c5000 - 0x918e9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fd000 - 0x91922fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91935000 - 0x91977fff com.apple.LaunchServices 180 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91993000 - 0x919a7fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b5000 - 0x919f5fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0b000 - 0x91ad3fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b21000 - 0x91b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3b000 - 0x91b58fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b5d000 - 0x91bccfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be3000 - 0x91be7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be9000 - 0x91c31fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c36000 - 0x91c73fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c7a000 - 0x91c93fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c98000 - 0x91c9bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c9d000 - 0x91c9dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9f000 - 0x91d84fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d8c000 - 0x91dabfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e17000 - 0x91e85fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e90000 - 0x91f25fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3f000 - 0x924c7fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924fa000 - 0x92825fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92855000 - 0x928ddfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291e000 - 0x92b49fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c67000 - 0x92d45fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d65000 - 0x92e53fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e65000 - 0x92e83fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8e000 - 0x92ee8fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f06000 - 0x92f06fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f08000 - 0x92f1cfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f34000 - 0x92f44fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f50000 - 0x92f65fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f77000 - 0x92ffefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93012000 - 0x9301dfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93027000 - 0x93054fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306e000 - 0x9307efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9308a000 - 0x930f0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93121000 - 0x93170fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9319e000 - 0x931bbfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931cd000 - 0x931dafff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931e3000 - 0x934f0fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363f000 - 0x9364bfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93650000 - 0x93670fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936c3000 - 0x936c3fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c5000 - 0x93cf8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94085000 - 0x940f5fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9412e000 - 0x941f1fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94243000 - 0x94243fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94245000 - 0x943f8fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9444b000 - 0x94488fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94490000 - 0x944e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94520000 - 0x94564fff com.apple.bom 8.4 (86.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94570000 - 0x945a8fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9461b000 - 0x9465ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9470b000 - 0x949bffff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a83000 - 0x94af4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b67000 - 0x94b88fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94c90000 - 0x94dc0fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e52000 - 0x94e61fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e69000 - 0x94e96fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e9d000 - 0x94eadfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94eb1000 - 0x94ee0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94ef0000 - 0x94f0dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9525c000 - 0x952cafff com.apple.Bluetooth 1.7.5 (1.7.5f10) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x9562d000 - 0x956bbfff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95717000 - 0x957adfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x96e9f000 - 0x96ebefff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9752f000 - 0x97554fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x98047000 - 0x9816efff com.apple.viceroy.framework 273.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x98911000 - 0x98914fff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x99f13000 - 0x99f1efff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99f29000 - 0x9a082fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Now iWeb...
    ===== Sunday, July 16, 2006 12:00:29 PM US/Central =====
    Host Name: daniel-shikes-powerbook-g4-15
    Date/Time: 2006-07-16 12:00:36.456 -0500
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: iWeb
    Path: /Applications/iWeb.app/Contents/MacOS/iWeb
    Parent: WindowServer [56]
    Version: 1.1.1 (189)
    PID: 253
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Code[0]: 0x0000000a
    Code[1]: 0x0160d000
    Thread 0 Crashed:
    0 dyld 0x8fe12f08 ImageLoaderMachO::doRebase(ImageLoader::LinkContext const&) + 492
    1 dyld 0x8fe0b0b8 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 148
    2 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    3 dyld 0x8fe0b088 ImageLoader::recursiveRebase(ImageLoader::LinkContext const&) + 100
    4 dyld 0x8fe0dbf0 ImageLoader::link(ImageLoader::LinkContext const&, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning, unsigned) + 96
    5 dyld 0x8fe03fbc dyld::link(ImageLoader*, ImageLoader::BindingLaziness, ImageLoader::InitializerRunning) + 380
    6 dyld 0x8fe060c4 dyld::main(machheader const*, int, char const**, char const**, char const**) + 1480
    7 dyld 0x8fe01048 dyldstart + 60
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000008fe12f08 srr1: 0x000000000000d030 vrsave: 0x0000000000000000
    cr: 0x44002228 xer: 0x0000000020000000 lr: 0x000000008fe12ec0 ctr: 0x000000008fe0f8bc
    r0: 0x000000000004b918 r1: 0x00000000bffff5f0 r2: 0x0000000001300df8 r3: 0x0000000011300000
    r4: 0x000000008fe5c568 r5: 0x000000000000000a r6: 0x0000000080808080 r7: 0x0000000020000000
    r8: 0x0000000001658918 r9: 0x00000000003b2000 r10: 0x0000000011795728 r11: 0x000000000160d000
    r12: 0x000000008fe0f8bc r13: 0x0000000000000000 r14: 0x000000008fe55b04 r15: 0x000000008fe55b04
    r16: 0x000000008fe55b04 r17: 0x000000008fe55b04 r18: 0x000000008fe55b04 r19: 0x000000008fe55b04
    r20: 0x0000000000001000 r21: 0x0000000000000000 r22: 0x00000000bffff8d0 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x00000000ffffffff r26: 0x000000008fe5c568 r27: 0x000000008fe5c568
    r28: 0x00000000003120b0 r29: 0x000000006bb16000 r30: 0x00000000003120b0 r31: 0x000000008fe12d28
    Binary Images Description:
    0x1000 - 0x1c9fff com.apple.iWeb 1.1.1 (189) /Applications/iWeb.app/Contents/MacOS/iWeb
    0x211000 - 0x28efff com.apple.DotMacKit 20 (3.0L) /Applications/iWeb.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMa cKit
    0x405000 - 0x454fff com.apple.sf.sfapplication 1.0 /Applications/iWeb.app/Contents/Frameworks/SFApplication.framework/Versions/A/S FApplication
    0x482000 - 0x5fefff com.apple.iWeb.sfcharts 2.0 /Applications/iWeb.app/Contents/Frameworks/SFCharts.framework/Versions/A/SFChar ts
    0x1008000 - 0x1072fff com.apple.iWeb.sfinspectors 1.0 /Applications/iWeb.app/Contents/Frameworks/SFInspectors.framework/Versions/A/SF Inspectors
    0x10a9000 - 0x11f2fff BLCompatibility /Applications/iWeb.app/Contents/Frameworks/BLCompatibility.framework/Versions/A /BLCompatibility
    0x1300000 - 0x160cfff com.apple.WebCore 418.19 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1795000 - 0x17befff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x17c6000 - 0x1806fff com.apple.glut 3.3.8 (GLUT-3.3.8) /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x182f000 - 0x183cfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x1854000 - 0x1856fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x1859000 - 0x1878fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x18e4000 - 0x18e4fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x18e6000 - 0x19b7fff com.apple.QuartzComposer 1.2.3 (32.21) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x1a31000 - 0x1a63fff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x1a7b000 - 0x1aa0fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x1b2c0000 - 0x1b44dfff SFWordProcessing /Applications/iWeb.app/Contents/Frameworks/SFWordProcessing.framework/Versions/ A/SFWordProcessing
    0x37f70000 - 0x37f95fff com.apple.iWeb.sfutility 1.0 (0.0.1d1) /Applications/iWeb.app/Contents/Frameworks/SFUtility.framework/Versions/A/SFUti lity
    0x38000000 - 0x380affff com.apple.iWeb.sftables 1.0 /Applications/iWeb.app/Contents/Frameworks/SFTables.framework/Versions/A/SFTabl es
    0x38250000 - 0x38261fff com.apple.iWeb.sfstyles 1.0 /Applications/iWeb.app/Contents/Frameworks/SFStyles.framework/Versions/A/SFStyl es
    0x385f0000 - 0x38654fff com.apple.iWeb.sfrendering 1.0 /Applications/iWeb.app/Contents/Frameworks/SFRendering.framework/Versions/A/SFR endering
    0x38710000 - 0x3877dfff com.apple.iWeb.proofreader 0 (1) /Applications/iWeb.app/Contents/Frameworks/SFProofReader.framework/Versions/A/S FProofReader
    0x38830000 - 0x38849fff com.apple.iWeb.sfpartitions 1.0 /Applications/iWeb.app/Contents/Frameworks/SFPartitions.framework/Versions/A/SF Partitions
    0x38890000 - 0x388bffff com.apple.iWeb.sfmovie 1.0 /Applications/iWeb.app/Contents/Frameworks/SFMovie.framework/Versions/A/SFMovie
    0x38930000 - 0x3893efff com.apple.iWeb.sflicense 1.0 (0.0.1d1) /Applications/iWeb.app/Contents/Frameworks/SFLicense.framework/Versions/A/SFLic ense
    0x38970000 - 0x38a07fff com.apple.iWeb.SFFormulas 1.0 /Applications/iWeb.app/Contents/Frameworks/SFFormulas.framework/Versions/A/SFFo rmulas
    0x38b70000 - 0x38c09fff com.apple.iWeb.sfdrawables 2.0 /Applications/iWeb.app/Contents/Frameworks/SFDrawables.framework/Versions/A/SFD rawables
    0x38d70000 - 0x38d93fff com.apple.iWeb.SFControls 1.0 (20030306_1) /Applications/iWeb.app/Contents/Frameworks/SFControls.framework/Versions/A/SFCo ntrols
    0x38df0000 - 0x38e25fff com.apple.iWeb.sfarchiving 1.0 (0.0.1d1) /Applications/iWeb.app/Contents/Frameworks/SFArchiving.framework/Versions/A/SFA rchiving
    0x38ea0000 - 0x38ec2fff com.apple.iWeb.SFAnimation 1.0 (0.0.1d1) /Applications/iWeb.app/Contents/Frameworks/SFAnimation.framework/Versions/A/SFA nimation
    0x38f30000 - 0x38f5efff com.apple.MediaBrowser 2.0.2 (98) /Applications/iWeb.app/Contents/Frameworks/MediaBrowser.framework/Versions/A/Me diaBrowser
    0x38fd0000 - 0x394b1fff libCoin.60.0.0.dylib /Applications/iWeb.app/Contents/Frameworks/Inventor.framework/Versions/C/Librar ies/libCoin.60.0.0.dylib
    0x8fe00000 - 0x8fe52fff dyld 45.1 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fcfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110d000 - 0x9111bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111e000 - 0x912d8fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d6000 - 0x913dffff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e6000 - 0x9140efff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91421000 - 0x9142cfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91431000 - 0x91439fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143d000 - 0x914b8fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f5000 - 0x914f5fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f7000 - 0x9152ffff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154a000 - 0x91617fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916fdfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91744000 - 0x917fbfff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91838000 - 0x91896fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c5000 - 0x918e9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fd000 - 0x91922fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91935000 - 0x91977fff com.apple.LaunchServices 180 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91993000 - 0x919a7fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b5000 - 0x919f5fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0b000 - 0x91ad3fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b21000 - 0x91b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3b000 - 0x91b58fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b5d000 - 0x91bccfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be3000 - 0x91be7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be9000 - 0x91c31fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c36000 - 0x91c73fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c7a000 - 0x91c93fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c98000 - 0x91c9bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c9d000 - 0x91c9dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9f000 - 0x91d84fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d8c000 - 0x91dabfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e17000 - 0x91e85fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e90000 - 0x91f25fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3f000 - 0x924c7fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924fa000 - 0x92825fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92855000 - 0x928ddfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291

    Two things to try. Create a new admin user account, log into it, and see if the problem persists. If so, it's system-wide. If not, corruption somewhere withing the original account. In that case, reinstall 10.4.7 COMBO update, repair permissions, restart, and see if that fixes things.

  • All adobe app crash after launch!

    Hi I just installed all the apps and photoshop, dreamweaver, fireworks crashes after launch. I tried this several times http://helpx.adobe.com/photoshop/kb/cc-applications-crash-immediately-launch.html and still got the same problem.
    I have been reading about this bug in this forum but I can't try to find any solution to my problem.
    How do I solve this?
    Regards

    Beeldbroeder and simO please check your installation log files to confirm there are no errors during the installation process.  You can find details on how to locate and interpret the installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  If you can please post any specific errors which you discover it would be appreciated.

  • Mail app crashing on launch

    No idea why, but Mail app keeps crashing on launch.  Any suggestions or help?
    Thanks,
    Derek
    Here's the log:
    Process:               Mail [4038]
    Path:                  /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:            com.apple.mail
    Version:               8.0 (1973.6)
    Build Info:            Mail-1973006000000000~5
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Mail [4038]
    User ID:               501
    Date/Time:             2014-08-24 20:05:14.781 -0500
    OS Version:            Mac OS X 10.10 (14A329r)
    Report Version:        11
    Anonymous UUID:        9BC99130-B1A0-37E5-FA0A-C35D7DD4DFC9
    Time Awake Since Boot: 180000 seconds
    Crashed Thread:        8  +[MFMessageRouter _synchronouslyWriteRulesToDisk]  Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x6180008565f0 (QOS: LEGACY)
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFLocalAccount mailboxForRelativePath:isFilesystemPath:create:]: /Users/derek/Mailboxes/Teeny Photo.mbox'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff86edfccc __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8869f6de objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff86edfaaa +[NSException raise:format:arguments:] + 106
    3   Foundation                          0x00007fff8674ed39 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
    4   Mail                                0x00007fff92bcfa78 -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
    5   Mail                                0x00007fff92c12cd1 -[MFMessageRule mailboxPathForMailboxURL:createIfNeeded:] + 243
    6   Mail                                0x00007fff92c141df -[MFMessageRule dictionaryRepresentation] + 826
    7   CoreFoundation                      0x00007fff86e09873 -[NSArray arrayByApplyingSelector:] + 371
    8   Mail                                0x00007fff92c0909c +[MFMessageRouter _sortRuleDictionaryRepresentations] + 213
    9   Mail                                0x00007fff92c0a077 +[MFMessageRouter _synchronouslyWriteRulesToDisk] + 185
    10  CoreFoundation                      0x00007fff86db894c __invoking___ + 140
    11  CoreFoundation                      0x00007fff86db87a2 -[NSInvocation invoke] + 290
    12  MailCore                            0x00007fff85f156d4 -[MCThrowingInvocationOperation main] + 48
    13  MailCore                            0x00007fff85e9db6d -[_MCInvocationOperation main] + 426
    14  Foundation                          0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    15  Foundation                          0x00007fff866639b3 __NSOQSchedule_f + 184
    16  libdispatch.dylib                   0x00007fff929b8d53 _dispatch_client_callout + 8
    17  libdispatch.dylib                   0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    18  libdispatch.dylib                   0x00007fff929bdf4c _dispatch_queue_invoke + 202
    19  libdispatch.dylib                   0x00007fff929bb78b _dispatch_root_queue_drain + 454
    20  libdispatch.dylib                   0x00007fff929ca002 _dispatch_worker_thread3 + 91
    21  libsystem_pthread.dylib             0x00007fff8a1816cb _pthread_wqthread + 729
    22  libsystem_pthread.dylib             0x00007fff8a17f4a1 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff908d552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908d469f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff86df0124 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff86def5eb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff86deee48 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff8fadc1bf RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff8fadbf3a ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff8fadbd7b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff871c4165 _DPSNextEvent + 1000
    9   com.apple.AppKit               0x00007fff871c3939 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 139
    10  com.apple.AppKit               0x00007fff871b7893 -[NSApplication run] + 594
    11  com.apple.AppKit               0x00007fff871a2d14 NSApplicationMain + 1832
    12  libdyld.dylib                 0x00007fff8fdb45c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff908db22e kevent64 + 10
    1   libdispatch.dylib             0x00007fff929bbb3c _dispatch_mgr_thread + 52
    Thread 2:: -[MailApp _performBackgroundDelayedInitialization]  Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x618000c52c60 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff908d9896 __close_nocancel + 10
    1   com.apple.CoreFoundation       0x00007fff86d9e214 _CFBundleGetBundleVersionForURL + 468
    2   com.apple.CoreFoundation       0x00007fff86d9d345 _CFBundleCreate + 213
    3   com.apple.Foundation           0x00007fff86668d34 -[NSBundle _cfBundle] + 77
    4   com.apple.Foundation           0x00007fff8666eb05 -[NSBundle URLForResource:withExtension:subdirectory:] + 109
    5   com.apple.Foundation           0x00007fff86671562 -[NSBundle pathForResource:ofType:] + 40
    6   com.apple.framework.internetaccounts 0x00007fff8950ccbc -[IAPluginManager pluginIDForDomain:] + 669
    7   com.apple.framework.internetaccounts 0x00007fff894f1321 +[IAAccount aListPluginIDForSettings:] + 1279
    8   com.apple.framework.internetaccounts 0x00007fff894f04b9 +[IAAccount _pluginForSettings:] + 76
    9   com.apple.framework.internetaccounts 0x00007fff894f0ca8 +[IAAccount brandIconForAccountSettings:] + 24
    10  com.apple.Mail.framework       0x00007fff92a94d76 -[MFAccount brandIcon] + 141
    11  com.apple.mail                 0x000000010d7a2cd5 0x10d741000 + 400597
    12  com.apple.CoreFoundation       0x00007fff86db894c __invoking___ + 140
    13  com.apple.CoreFoundation       0x00007fff86db87a2 -[NSInvocation invoke] + 290
    14  com.apple.MailCore             0x00007fff85f156d4 -[MCThrowingInvocationOperation main] + 48
    15  com.apple.MailCore             0x00007fff85e9db6d -[_MCInvocationOperation main] + 426
    16  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    17  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    18  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    19  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    20  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    21  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    22  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    23  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    24  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 3:: Dispatch queue: NSOperationQueue 0x608000827600 :: NSOperation 0x618000856380 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908da162 __psynch_mutexwait + 10
    1   com.apple.AddressBook.framework 0x00007fff8e4155e4 -[ABAddressBook(ABAddressBookHackery_Internal) clonedAddressBookWithOptions:] + 74
    2   com.apple.AddressBook.framework 0x00007fff8e414c6f -[ABMetadataOperationController validateAllMetaDataForceRebuild:] + 240
    3   com.apple.AddressBook.ContactsData 0x00007fff8af95b03 ab_set_current_queue_name_while_running_block + 138
    4   com.apple.AddressBook.framework 0x00007fff8e414b30 -[ABMetadataValidateOperation main] + 80
    5   com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    6   com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    7   libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    8   libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    9   libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    10  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    11  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    12  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    13  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 4:: -[MFLocalAccount _synchronizeMailboxListWithFileSystem]  Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x608000c4aec0 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff908daf46 getattrlistbulk + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff90fcedc2 PBGetCatalogInfoBulkSync + 904
    2   com.apple.CoreServices.CarbonCore 0x00007fff90fce9fb FSGetCatalogInfoBulk + 66
    3   com.apple.Foundation           0x00007fff866806ec _NSDirectoryContentsFromCarbonError + 364
    4   com.apple.Foundation           0x00007fff86680152 -[NSFileManager directoryContentsAtPath:matchingExtension:options:keepExtension:error:] + 334
    5   com.apple.Foundation           0x00007fff8667fff0 -[NSFileManager contentsOfDirectoryAtPath:error:] + 36
    6   com.apple.Mail.framework       0x00007fff92bd4dcf -[MFMailAccount _loadEntriesFromFileSystemPath:parent:] + 161
    7   com.apple.Mail.framework       0x00007fff92bd598e -[MFMailAccount _loadEntriesFromFileSystemPath:parent:] + 3168
    8   com.apple.Mail.framework       0x00007fff92bd598e -[MFMailAccount _loadEntriesFromFileSystemPath:parent:] + 3168
    9   com.apple.Mail.framework       0x00007fff92bd4c9e -[MFMailAccount _synchronizeMailboxListWithFileSystemBeforeImport:] + 585
    10  com.apple.CoreFoundation       0x00007fff86db894c __invoking___ + 140
    11  com.apple.CoreFoundation       0x00007fff86db87a2 -[NSInvocation invoke] + 290
    12  com.apple.MailCore             0x00007fff85eeb521 -[MCMonitoredInvocation invoke] + 242
    13  com.apple.MailCore             0x00007fff85f156d4 -[MCThrowingInvocationOperation main] + 48
    14  com.apple.MailCore             0x00007fff85e9db6d -[_MCInvocationOperation main] + 426
    15  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    16  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    17  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    18  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    19  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    20  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    21  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    22  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    23  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 8 Crashed:: +[MFMessageRouter _synchronouslyWriteRulesToDisk]  Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x6180008565f0 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff908da282 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff89a075d3 abort + 129
    2   libc++abi.dylib               0x00007fff912a7a21 abort_message + 257
    3   libc++abi.dylib               0x00007fff912cf9d1 default_terminate_handler() + 267
    4   libobjc.A.dylib               0x00007fff886a36c6 _objc_terminate() + 103
    5   libc++abi.dylib               0x00007fff912cd0a1 std::__terminate(void (*)()) + 8
    6   libc++abi.dylib               0x00007fff912cd113 std::terminate() + 51
    7   libobjc.A.dylib               0x00007fff886a34ef objc_terminate + 9
    8   libdispatch.dylib             0x00007fff929b8d67 _dispatch_client_callout + 28
    9   libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    10  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    11  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    12  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    13  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    14  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 19:: Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x600000a5cdd0 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff908db5d6 pread + 10
    1   libsqlite3.dylib               0x00007fff90b05565 readDbPage + 613
    2   libsqlite3.dylib               0x00007fff90b03971 sqlite3PagerAcquire + 369
    3   libsqlite3.dylib               0x00007fff90be143e btreeGetPage + 30
    4   libsqlite3.dylib               0x00007fff90be13e2 getAndInitPage + 66
    5   libsqlite3.dylib               0x00007fff90b43afc moveToChild + 76
    6   libsqlite3.dylib               0x00007fff90be1822 moveToLeftmost + 114
    7   libsqlite3.dylib               0x00007fff90b2cc7b sqlite3VdbeExec + 3963
    8   libsqlite3.dylib               0x00007fff90b2a4d0 sqlite3_step + 720
    9   com.apple.Mail.framework       0x00007fff92aba1d8 -[MFConversationCalculator updateAllRowsMissingConversationsWithHandle:conversationUserInfo:conversationsW ereReset:progressDelegate:] + 243
    10  com.apple.Mail.framework       0x00007fff92b5687e __230+[MFLibrary insertOrUpdateMessages:withMailbox:fetchBodies:isInitialImport:oldMessagesByNew Message:remoteIDs:newDocumentIDs:setFlags:clearFlags:messageFlagsForMessages:cop yFiles:progressDelegate:updateRowIDs:missedMessages:error:]_block_invoke1049 + 23231
    11  com.apple.Mail.framework       0x00007fff92b7a390 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1986
    12  com.apple.Mail.framework       0x00007fff92b5000c +[MFLibrary insertOrUpdateMessages:withMailbox:fetchBodies:isInitialImport:oldMessagesByNew Message:remoteIDs:newDocumentIDs:setFlags:clearFlags:messageFlagsForMessages:cop yFiles:progressDelegate:updateRowIDs:missedMessages:error:] + 5837
    13  com.apple.Mail.framework       0x00007fff92b9e083 -[MFLibraryStore appendMessages:unsuccessfulOnes:newMessageIDs:newMessages:newDocumentIDsByOld:f lagsToSet:forMove:error:] + 857
    14  com.apple.Mail.framework       0x00007fff92c2521b -[MFMessageStore appendMessages:unsuccessfulOnes:newMessageIDs:newMessages:flagsToSet:forMove:er ror:] + 142
    15  com.apple.Mail.framework       0x00007fff92c252d5 -[MFMessageStore appendMessages:unsuccessfulOnes:newMessageIDs:newMessages:flagsToSet:forMove:] + 133
    16  com.apple.Mail.framework       0x00007fff92c25386 -[MFMessageStore appendMessages:unsuccessfulOnes:newMessageIDs:newMessages:flagsToSet:] + 124
    17  com.apple.Mail.framework       0x00007fff92c254bf -[MFMessageStore appendMessages:unsuccessfulOnes:newMessageIDs:newMessages:] + 103
    18  com.apple.Mail.framework       0x00007fff92c25537 -[MFMessageStore appendMessages:unsuccessfulOnes:newMessageIDs:] + 74
    19  com.apple.Mail.framework       0x00007fff92c25594 -[MFMessageStore appendMessages:unsuccessfulOnes:] + 53
    20  com.apple.Mail.framework       0x00007fff92c23d2a -[MFMessageStore finishRoutingMessages:routed:] + 453
    21  com.apple.Mail.framework       0x00007fff92c0ef7e -[MFMessageRouter _routeQueuedMessages] + 1528
    22  com.apple.CoreFoundation       0x00007fff86db894c __invoking___ + 140
    23  com.apple.CoreFoundation       0x00007fff86db87a2 -[NSInvocation invoke] + 290
    24  com.apple.MailCore             0x00007fff85eeb521 -[MCMonitoredInvocation invoke] + 242
    25  com.apple.MailCore             0x00007fff85f156d4 -[MCThrowingInvocationOperation main] + 48
    26  com.apple.MailCore             0x00007fff85e9db6d -[_MCInvocationOperation main] + 426
    27  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    28  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    29  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    30  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    31  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    32  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    33  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    34  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    35  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 22:: Dispatch queue: NSOperationQueue 0x61000023fd60 :: NSOperation 0x61000044f180 (QOS: USER_INTERACTIVE)
    0   libsystem_platform.dylib       0x00007fff8ab284c0 OSAtomicDequeue + 28
    1   libsystem_malloc.dylib         0x00007fff8e63a9a4 nano_malloc + 35
    2   libsystem_malloc.dylib         0x00007fff8e63a94f malloc_zone_malloc + 71
    3   com.apple.CoreFoundation       0x00007fff86d7ff9e _CFRuntimeCreateInstance + 350
    4   com.apple.CoreFoundation       0x00007fff86d7fa77 CFBasicHashCreate + 135
    5   com.apple.CoreFoundation       0x00007fff86db4104 __CFSetCreateGeneric + 516
    6   com.apple.CoreFoundation       0x00007fff86db30dc CFSetCreateMutable + 44
    7   com.apple.CoreData             0x00007fff913d36f8 -[_NSFaultingMutableSet willReadWithContents:] + 216
    8   com.apple.CoreData             0x00007fff913416eb -[_NSFaultingMutableSet allObjects] + 27
    9   com.apple.AddressBook.framework 0x00007fff8e43950d -[ABCDRecord fetchPropertyValuesWithKey:uniqueId:] + 478
    10  com.apple.AddressBook.framework 0x00007fff8e4390a8 -[ABCDRecord propertyValuesWithKey:] + 144
    11  com.apple.AddressBook.framework 0x00007fff8e43d293 +[ABMultiValueCoreDataWrapper populateIdentifiers:values:labels:primaryIdentifier:withDataFromManagedObject:p roperty:] + 1323
    12  com.apple.AddressBook.framework 0x00007fff8e43ccf6 +[ABMultiValueCoreDataWrapper newWithMultiValueClass:managedObject:property:] + 163
    13  com.apple.AddressBook.framework 0x00007fff8e43cc27 -[ABMultiValueCoreDataWrapper initWithManagedObject:property:] + 72
    14  com.apple.AddressBook.framework 0x00007fff8e43bffa +[CNFromABInternalConversions valueForProperty:fromABCDContact:] + 123
    15  com.apple.AddressBook.framework 0x00007fff8e43be05 +[CNFromABInternalConversions updateAllPropertiesOnConact:fromABCDContact:] + 250
    16  com.apple.AddressBook.framework 0x00007fff8e43bbf9 __54+[CNFromABInternalConversions contactFromABCDContact:]_block_invoke + 118
    17  com.apple.AddressBook.framework 0x00007fff8e4029c3 ABResultWithAutoreleasePool + 61
    18  com.apple.AddressBook.framework 0x00007fff8e43bb7c +[CNFromABInternalConversions contactFromABCDContact:] + 92
    19  com.apple.AddressBook.framework 0x00007fff8e4042fe __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
    20  com.apple.CoreFoundation       0x00007fff86e00975 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
    21  com.apple.CoreFoundation       0x00007fff86e00079 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
    22  com.apple.AddressBook.framework 0x00007fff8e4042d4 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
    23  com.apple.AddressBook.framework 0x00007fff8e404216 -[NSArray(ABArrayAdditions) _abMap:] + 91
    24  com.apple.AddressBook.framework 0x00007fff8e41f112 +[CN(ContactSource) nts_fetchContactsWithCoreDataRequest:inContext:error:] + 123
    25  com.apple.AddressBook.framework 0x00007fff8e41f073 __74+[CN(ContactSource) fetchContactsWithCoreDataRequest:inAddressBook:error:]_block_invoke + 56
    26  com.apple.AddressBook.framework 0x00007fff8e417f51 -[ABAddressBook(ABAddressBook_CoreData_Private) abRunWithGlobalAPILockInFile:line:block:] + 45
    27  com.apple.AddressBook.framework 0x00007fff8e41eff7 +[CN(ContactSource) fetchContactsWithCoreDataRequest:inAddressBook:error:] + 238
    28  com.apple.AddressBook.framework 0x00007fff8e41c5fc -[CNContactFetchRequest executeFetchWithDataMapper:observer:] + 60
    29  com.apple.AddressBook.framework 0x00007fff8e41c5b1 __49-[CNContactStore makeObservableWithFetchRequest:]_block_invoke + 34
    30  com.apple.AddressBook.ContactsFoundation 0x00007fff922b6cd2 __36-[_CNScheduledObservable subscribe:]_block_invoke + 46
    31  com.apple.AddressBook.ContactsFoundation 0x00007fff922b72c7 -[_CNImmediateScheduler performCancelableBlock:] + 12
    32  com.apple.AddressBook.ContactsFoundation 0x00007fff922b6c9b -[_CNScheduledObservable subscribe:] + 113
    33  com.apple.AddressBook.ContactsFoundation 0x00007fff922b4431 -[CNObservable allObjects:] + 86
    34  com.apple.MailCore             0x00007fff85e892be -[MCContactsManager _fetchGroupedContactsWithPredicate:] + 114
    35  com.apple.MailCore             0x00007fff85e86e59 __39-[MCContactsManager _asyncLoadContacts]_block_invoke + 65
    36  com.apple.Foundation           0x00007fff867988b8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
    37  com.apple.Foundation           0x00007fff86685115 -[NSBlockOperation main] + 97
    38  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    39  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    40  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    41  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    42  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    43  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    44  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    45  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    46  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 23:: -[MFPOPAccount _synchronizeMailboxListWithFileSystem]  Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x608000c4b040 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff908db5d6 pread + 10
    1   libsqlite3.dylib               0x00007fff90b05565 readDbPage + 613
    2   libsqlite3.dylib               0x00007fff90b03971 sqlite3PagerAcquire + 369
    3   libsqlite3.dylib               0x00007fff90be143e btreeGetPage + 30
    4   libsqlite3.dylib               0x00007fff90be13e2 getAndInitPage + 66
    5   libsqlite3.dylib               0x00007fff90b43afc moveToChild + 76
    6   libsqlite3.dylib               0x00007fff90be1822 moveToLeftmost + 114
    7   libsqlite3.dylib               0x00007fff90b2cc7b sqlite3VdbeExec + 3963
    8   libsqlite3.dylib               0x00007fff90b2a4d0 sqlite3_step + 720
    9   com.apple.Mail.framework       0x00007fff92b5c738 __50+[MFLibrary sendMessagesMatchingQuery:to:options:]_block_invoke + 385
    10  com.apple.Mail.framework       0x00007fff92b7a390 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1986
    11  com.apple.Mail.framework       0x00007fff92b5c55f +[MFLibrary sendMessagesMatchingQuery:to:options:] + 416
    12  com.apple.Mail.framework       0x00007fff92b5e314 +[MFLibrary messagesForMailbox:olderThanNumberOfDays:] + 635
    13  com.apple.Mail.framework       0x00007fff92b9dc51 -[MFLibraryStore deleteMessagesOlderThanNumberOfDays:compact:] + 123
    14  com.apple.Mail.framework       0x00007fff92bc9e34 -[MFMailAccount deleteMessagesFromMailbox:olderThanNumberOfDays:] + 205
    15  com.apple.Mail.framework       0x00007fff92bd777d -[MFMailAccount _emptySpecialMailboxesIfNeededForQuit:] + 1266
    16  com.apple.Mail.framework       0x00007fff92bd4cc9 -[MFMailAccount _synchronizeMailboxListWithFileSystemBeforeImport:] + 628
    17  com.apple.CoreFoundation       0x00007fff86db894c __invoking___ + 140
    18  com.apple.CoreFoundation       0x00007fff86db87a2 -[NSInvocation invoke] + 290
    19  com.apple.MailCore             0x00007fff85eeb521 -[MCMonitoredInvocation invoke] + 242
    20  com.apple.MailCore             0x00007fff85f156d4 -[MCThrowingInvocationOperation main] + 48
    21  com.apple.MailCore             0x00007fff85e9db6d -[_MCInvocationOperation main] + 426
    22  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    23  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    24  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    25  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    26  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    27  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    28  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    29  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    30  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 24:: Dispatch queue: NSOperationQueue 0x610000c2f800 :: NSOperation 0x610001447020 (QOS: UTILITY)
    0   libsystem_kernel.dylib         0x00007fff908d9a96 __getdirentries64 + 10
    1   libsystem_c.dylib             0x00007fff899d6884 readdir$INODE64 + 35
    2   com.apple.CoreFoundation       0x00007fff86d9ea5e _CFIterateDirectory + 94
    3   com.apple.CoreFoundation       0x00007fff86dd159d _CFBundleReadDirectory + 381
    4   com.apple.CoreFoundation       0x00007fff86dd0db5 _CFBundleCreateQueryTableAtPath + 357
    5   com.apple.CoreFoundation       0x00007fff86dd0bfc _CFBundleCopyQueryTable + 284
    6   com.apple.CoreFoundation       0x00007fff86dd07dc _CFBundleCopyURLsOfKey + 1212
    7   com.apple.CoreFoundation       0x00007fff86dcfc01 _CFBundleCopyFindResources + 1153
    8   com.apple.CoreFoundation       0x00007fff86df5e5c CFBundleCopyResourceURLForLocalization + 60
    9   com.apple.LaunchServices       0x00007fff89ae517d _LSCopyBundleStringsForLocale + 29
    10  com.apple.LaunchServices       0x00007fff89b9542f _LSCopyBundleStringDictionariesForLocales + 141
    11  com.apple.LaunchServices       0x00007fff89b4f5f3 _LSBundleCopyStringDictionaryForKey + 457
    12  com.apple.LaunchServices       0x00007fff89b53e17 _LSCopyNodeAttribute_DisplayKindLocalizationDictionary(LSNodeAttributeStateCach e*) + 110
    13  com.apple.LaunchServices       0x00007fff89b5193f _LSCopyNodeAttributes + 377
    14  com.apple.LaunchServices       0x00007fff89b58893 _LSCopyItemAttributesForRefInfoWithOptionsCommon(LSExtendedFSRefInfo const*, unsigned int, __CFArray const*, unsigned int, __CFDictionary const**) + 367
    15  com.apple.LaunchServices       0x00007fff89ae0c13 _LSCopyItemAttributeForRefInfoWithOptions + 129
    16  com.apple.LaunchServices       0x00007fff89ae0b0e prepareAttributeValueForKey(__CFURL const*, __FileCache*, __CFString const*, void const**, __CFError**) + 178
    17  com.apple.LaunchServices       0x00007fff89b935a6 prepareLocalizedTypeDescriptionDictionaryValue(__CFURL const*, __FileCache*, __CFError**) + 79
    18  com.apple.LaunchServices       0x00007fff89ad9696 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53
    19  com.apple.CoreServicesInternal 0x00007fff89e9474f prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227
    20  com.apple.CoreServicesInternal 0x00007fff89e9261d _FSURLCopyResourcePropertiesForKeysInternal(__CFURL const*, __CFArray const*, void*, __CFError**, unsigned char) + 1042
    21  com.apple.CoreFoundation       0x00007fff86dff001 CFURLCopyResourcePropertiesForKeys + 113
    22  com.apple.Metadata             0x00007fff90dcc4d5 _MDSetMailMessageAttributesAtTime + 3209
    23  com.apple.Foundation           0x00007fff867988b8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
    24  com.apple.Foundation           0x00007fff86685115 -[NSBlockOperation main] + 97
    25  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    26  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    27  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    28  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    29  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    30  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    31  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    32  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    33  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 26:: -[MFPOPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: NSOperationQueue 0x60000024cc90 :: NSOperation 0x60000044e970 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff908d552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908d469f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff86df0124 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff86def5eb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff86deee48 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff866c6209 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.apple.MailCore             0x00007fff85f109ad -[MCSocket readBytes:maxLength:error:] + 947
    7   com.apple.MailCore             0x00007fff85e80d7f -[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 119
    8   com.apple.MailCore             0x00007fff85e80626 -[MCConnection _fillBuffer:] + 367
    9   com.apple.MailCore             0x00007fff85e8028b -[MCConnection _readLineIntoData:error:] + 194
    10  com.apple.Mail.framework       0x00007fff92c51d33 -[MFPOPConnection _readMultilineResponseWithMaxSize:intoMutableData:informDelegate:] + 163
    11  com.apple.Mail.framework       0x00007fff92c50938 -[MFPOPConnection _newDataForMessage:ofSize:informDelegate:] + 302
    12  com.apple.Mail.framework       0x00007fff92c5046a -[MFPOPConnection _retr:] + 151
    13  com.apple.Mail.framework       0x00007fff92c5030d __44-[MFPOPConnection fetchMessages:totalBytes:]_block_invoke + 100
    14  com.apple.Foundation           0x00007fff866b754c __NSIndexSetEnumerate + 1256
    15  com.apple.Mail.framework       0x00007fff92c50159 -[MFPOPConnection fetchMessages:totalBytes:] + 514
    16  com.apple.Mail.framework       0x00007fff92c5635a -[MFPOPStore fetchSynchronously] + 2889
    17  com.apple.Mail.framework       0x00007fff92c4b4b9 -[MFPOPAccount fetchSynchronously] + 202
    18  com.apple.CoreFoundation       0x00007fff86db894c __invoking___ + 140
    19  com.apple.CoreFoundation       0x00007fff86db87a2 -[NSInvocation invoke] + 290
    20  com.apple.MailCore             0x00007fff85eeb521 -[MCMonitoredInvocation invoke] + 242
    21  com.apple.MailCore             0x00007fff85f156d4 -[MCThrowingInvocationOperation main] + 48
    22  com.apple.MailCore             0x00007fff85e9db6d -[_MCInvocationOperation main] + 426
    23  com.apple.Foundation           0x00007fff86663dac -[__NSOperationInternal _start:] + 653
    24  com.apple.Foundation           0x00007fff866639b3 __NSOQSchedule_f + 184
    25  libdispatch.dylib             0x00007fff929b8d53 _dispatch_client_callout + 8
    26  libdispatch.dylib             0x00007fff929bc3f7 _dispatch_queue_drain + 1100
    27  libdispatch.dylib             0x00007fff929bdf4c _dispatch_queue_invoke + 202
    28  libdispatch.dylib             0x00007fff929bb78b _dispatch_root_queue_drain + 454
    29  libdispatch.dylib             0x00007fff929ca002 _dispatch_worker_thread3 + 91
    30  libsystem_pthread.dylib       0x00007fff8a1816cb _pthread_wqthread + 729
    31  libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 29:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff908da946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a17f4a1 start_wqthread + 13
    Thread 31:
    Thread 32:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff908d552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908d469f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff86df0124 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff86def5eb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff86deee48 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff84807210 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff866c42ca __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 33:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff908da3f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib         0x00007fff908d552e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908d469f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff86df0124 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff86def5eb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff86deee48 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff87326ab7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 35:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908da132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff91feac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8e833394 JSC::BlockAllocator::blockFreeingThreadMain() + 228
    3   com.apple.JavaScriptCore       0x00007fff8e828b5f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 36:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908da132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff91feac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8e83392b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8e833788 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8e828b5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 37:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908da132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff91feac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8e83392b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8e833788 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8e828b5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 38:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908da132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff91feac95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8e83392b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8e833788 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8e828b5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8a1812fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8a181279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8a17f4b1 thread_start + 13
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x000000011378f7c8  rdx: 0x0000000000000000
      rdi: 0x000000000000c503  rsi: 0x0000000000000006  rbp: 0x000000011378f7f0  rsp: 0x000000011378f7c8
       r8: 0x0000000000000000   r9: 0x00007fff89a31d90  r10: 0x000000000c000000  r11: 0x0000000000000206
      r12: 0x000000011378f950  r13: 0x000061800027de40  r14: 0x0000000113790000  r15: 0x000000011378f830
      rip: 0x00007fff908da282  rfl: 0x0000000000000206  cr2: 0x00007fff743adfd8
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10d741000 -        0x10dad3fff  com.apple.mail (8.0 - 1973.6) <66FAD0AC-12C9-3409-A429-3B6AC14560AF> /Applications/Mail.app/Contents/MacOS/Mail
           0x10dbe6000 -        0x10dbe6ff7  liblaunch.dylib (559.1.7) <6F366590-341F-3E78-9130-06DDBDD5E97C> /usr/lib/system/liblaunch.dylib
           0x10dbf0000 -        0x10dc18ff7  libxpc.dylib (559.1.7) <EC70F12A-1337-3A8C-849F-F6D87AD5B486> /usr/lib/system/libxpc.dylib
           0x10dc38000 -        0x10dc3bfff  com.apple.xpc.ServiceManagement (1.0 - 1) <E4A7FD86-0463-3508-BF01-015DF75ABF87> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x110832000 -        0x110839fff  libCGCMS.A.dylib (754.1) <45C9B06F-9195-3C2E-A384-3DCCB7A59106> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x111140000 -        0x111140ff5 +cl_kernels (???) <515AD939-EB10-42A4-ADA9-74A5ADB8597C> cl_kernels
           0x11114c000 -        0x111174ffb  libRIP.A.dylib (754.1) <E3395BBC-9E0C-3626-B4EB-6D2563605FA9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x1111ae000 -        0x1111b0ffb  libCGXType.A.dylib (754.1) <BF044983-B659-33B5-A783-792DA4F75BB9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x111b15000 -        0x111bfbfef  unorm8_bgra.dylib (2.4.5) <F86B452C-4BBF-380A-8391-01FE5E9F970E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x111c4d000 -        0x111c4dfef +cl_kernels (???) <0FBC5E2D-F93A-46EF-A2FD-2DA238BC15E2> cl_kernels
           0x1135ca000 -        0x1135d2fff  com.apple.SyncedDefaults (2.0 - 210) <22CEB083-7930-388C-B3A6-DEC73C8ACE50> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x1148da000 -        0x1148dbfff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1485) <FE4BD954-2A24-347C-BAFE-0208839BB9D8> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1148ee000 -        0x1148f2ff7  com.apple.DirectoryServicesSource (8.0 - 1485) <5B1517BC-EE3A-3689-8AAE-43B5DFEE410D> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x1148f8000 -        0x1148fafff  com.apple.addressbook.POIPlugin (1.0 - 1485) <7E63AB5C-2505-3DD6-A960-E1FF11688E5C> /System/Library/Address Book Plug-Ins/POIPlugin.sourcebundle/Contents/MacOS/POIPlugin
           0x114900000 -        0x11494dffb  com.apple.AddressBook.CardDAVPlugin (10.9 - 433) <872D2247-E218-3664-9FE2-D61557F91703> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x114ae2000 -        0x114ae4fff  apop.so (183) <45C50E60-97D1-3FE0-93F5-145F489AAF50> /usr/lib/sasl2/apop.so
           0x114ae8000 -        0x114ae9fff  atoken.so (183) <0F3DB480-6B1A-3AD6-B3E4-CEAB75436788> /usr/lib/sasl2/atoken.so
           0x114aed000 -        0x114afeffb  dhx.so (183) <4BE28005-1AE3-3D6D-875F-9AD9F69E79F1> /usr/lib/sasl2/dhx.so
           0x114b0a000 -        0x114b13fff  digestmd5WebDAV.so (183) <A0405C97-15BE-31CA-9CD2-D258F4B30C37> /usr/lib/sasl2/digestmd5WebDAV.so
           0x114b1a000 -        0x114b1cfff  libanonymous.2.so (191) <4679FA65-B74C-3E33-8651-E29C58A8CE4A> /usr/lib/sasl2/libanonymous.2.so
           0x114b20000 -        0x114b22ff7  libcrammd5.2.so (191) <08EB6460-5337-3963-9B31-9503D5394220> /usr/lib/sasl2/libcrammd5.2.so
           0x114b2b000 -        0x114b34fff  libdigestmd5.2.so (191) <C4350DED-31BE-37CC-9BEB-3984F7609EAD> /usr/lib/sasl2/libdigestmd5.2.so
           0x114b39000 -        0x114b3dff7  libgs2.so (191) <6D1B51D0-C007-319C-B903-09B496A28690> /usr/lib/sasl2/libgs2.so
           0x114b4c000 -        0x114b51fff  libgssapiv2.2.0.18.so (191) <13FA2117-7FE4-33E7-A769-D66CE54B6548> /usr/lib/sasl2/libgssapiv2.2.0.18.so
           0x114b64000 -        0x114b69fff  libntlm.so (191) <8D3BCDA5-0FB4-35B0-A94F-06A9F920F78E> /usr/lib/sasl2/libntlm.so
           0x114b91000 -        0x114b93fff  libplain.2.so (191) <662381F8-4F17-3242-94CA-2368C9E13375> /usr/lib/sasl2/libplain.2.so
           0x114b97000 -        0x114b99fff  login.so (191) <4BEDB76E-AF3C-3660-B2D0-E16820A35843> /usr/lib/sasl2/login.so
           0x114b9d000 -        0x114ba0ff7  mschapv2.so (183) <9F6869FB-ECCF-3009-B54D-066A38A6C14B> /usr/lib/sasl2/mschapv2.so
           0x114bc6000 -        0x114be7ffb  com.apple.DirectoryService.PasswordServerFramework (10.10 - 43) <27F4E676-0ABE-35A8-97DE-86572A1FD92B> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x114c2c000 -        0x114c2cffe +cl_kernels (???) <76453597-D908-438C-AE12-D0ED11196649> cl_kernels
           0x114c33000 -        0x114c3dfff  com.apple.DirectoryServer (10.10 - 58) <2244CC60-FC99-369C-B1D9-2FEDD47F6E38> /System/Library/PrivateFrameworks/DirectoryServer.framework/Versions/A/Director yServer
           0x114c4a000 -        0x114c55fff  com.apple.AccountPolicy (1.0 - 1) <575963B8-B2BE-3CAE-B63A-6D319288E7B4> /System/Library/PrivateFrameworks/AccountPolicy.framework/Versions/A/AccountPol icy
           0x114cb6000 -        0x114cc2fff  com.apple.directoryserver.CFDirectoryServer (10.10 - 58) <45E1E894-EAFA-3B3D-BF73-3E7E900D02CD> /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirect oryServer.framework/Versions/A/CFDirectoryServer
           0x114cce000 -        0x114cd4ff7  com.apple.HeimODAdmin (4.0 - 2.0) <97CD7586-641B-3675-9E93-0E44A66746CE> /System/Library/PrivateFrameworks/HeimODAdmin.framework/Versions/A/HeimODAdmin
           0x114cdd000 -        0x114cdefff  com.apple.CFAccountPolicy (1.0 - 1) <0A38176D-9F76-3D13-98E3-A7986D07A0CF> /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountP olicy.framework/Versions/A/CFAccountPolicy
           0x114d03000 -        0x114d04fff  plain-clienttoken.so (183) <12B2FD79-5F8D-31E5-9A53-B5E3D03F9D36> /usr/lib/sasl2/plain-clienttoken.so
           0x114d08000 -        0x114d0afff  pwauxprop.so (418) <E311202C-C97A-3B60-BDFE-058CC576DDB6> /usr/lib/sasl2/pwauxprop.so
           0x114d0e000 -        0x114d10fff  shadow_auxprop.so (183) <4E05B744-F0DB-314A-886C-172E7864B5F7> /usr/lib/sasl2/shadow_auxprop.so
           0x114d21000 -        0x114d21fe5 +cl_kernels (???) <6001E481-F3F6-42CF-A0F9-E29E791AFB45> cl_kernels
           0x114d25000 -        0x114d28fff  smb_ntlmv2.so (183) <9BF718CB-B134-3903-9A03-D3B0E1C196E2> /usr/lib/sasl2/smb_ntlmv2.so
           0x114d2d000 -        0x114d30fff  libCGXCoreImage.A.dylib (754.1) <8EC885F4-8044-3D69-BD02-870378E7AE9C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x114d46000 -        0x114e26ff7  unorm8_rgba.dylib (2.4.5) <53106680-9FB2-3938-B7FC-CAEAE7538DB3> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x114e78000 -        0x114e78fe7 +cl_kernels (???) <1C77DDC6-0712-4141-A5E0-29E5235CD908> cl_kernels
           0x115131000 -        0x115131ffe +cl_kernels (???) <76453597-D908-438C-AE12-D0ED11196649> cl_kernels
           0x115135000 -        0x115135fef +cl_kernels (???) <0FBC5E2D-F93A-46EF-A2FD-2DA238BC15E2> cl_kernels
        0x7fff6ed49000 -     0x7fff6ed7f837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff832bc000 -     0x7fff83525ff7  com.apple.imageKit (2.6 - 829) <E8BECF43-E5AB-3067-995E-CA45C5D47B08> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff83526000 -     0x7fff835cffd7  com.apple.PackageKit (3.0 - 431) <EAA47DF7-5AFE-3799-ADDE-6C200361BF3A> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff835d0000 -     0x7fff835fcff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <24769606-5B32-3EC1-BAAE-4B444BD0CC7C> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff835fd000 -     0x7fff83602fff  com.apple.DiskArbitration (2.6 - 2.6) <EFDCF7B1-2A47-3D67-86BB-8BF0D3207659> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff83603000 -     0x7fff83c66fff  com.apple.VectorKit (1.0 - 992.4.6) <8A4F9D03-E3B8-34A9-8FAC-8AC98DF60106> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
        0x7fff845a5000 -     0x7fff845b9fff  com.apple.ProtectedCloudStorage (1.0 - 1) <E82C9303-9BD2-37ED-BBA3-A0ECDB79E2AC> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff845cf000 -     0x7fff845d6ff7  com.apple.phonenumbers (1.1.1 - 105) <AC30BB92-CFEB-3702-849D-640861A4C39E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff845d7000 -     0x7fff845ddff7  com.apple.FamilyCircle (1.0 - ???) <253D2CC9-A5CC-31D5-BE84-E273B2B968C3> /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e
        0x7fff845e0000 -     0x7fff84635ff7  com.apple.MailUI (8.0 - 1973.6) <64386626-9A49-3679-AA60-D4AAA90009F6> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
        0x7fff84636000 -     0x7fff84766fff  com.apple.UIFoundation (1.0 - 1) <D74A44E8-2F1F-32BE-A396-7D040031ABC5> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff84767000 -     0x7fff84968ffb  com.apple.CFNetwork (714 - 714) <2602F0D6-C125-346F-B722-7327913E3403> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff84969000 -     0x7fff84969fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <EF0DAB95-301C-3045-93F4-8507159405B9> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff8496a000 -     0x7fff849aaff7  libGLImage.dylib (11.0.5) <B28BD3F5-9C55-3156-9011-8C69A00F8862> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff849ab000 -     0x7fff849b0ff7  com.apple.EmailAddressing (8.0 - 1973.6) <0F8E58E3-7EC1-3F61-9166-3984D9497A38> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff849b1000 -     0x7fff849befff  com.apple.ProtocolBuffer (1 - 225.1) <4FF624B6-4D0A-37EF-B9BA-CD7A3B115927> /System/Library/PrivateFrameworks/ProtocolBuffe

    You are running a beta OS - unfortunately, you will need to address your problems with Apple as we are not allowed to discuss any beta software problems here (and you are violating your NDA since the FAQ state that it is confidential). The hosts remove these posts regularly.

  • Signing out and back in does not fix CC apps crashing on launch problem.

    I have installed Illustrator CC, Indesign CC, and Photoshop CC. All three of these crash upon launch. Sometimes they go unresponsive during the loading screen, sometimes they get past that but crash within seconds before I can even try to use it. I'm running Mac OSX 10.7.5, and I still have the CS6 versions of these programs installed. I've tried signing out of Creative Cloud and signing back in, like Adobe suggests, but it doesn't help the issue. I've also restarted the computer, but that didn't help. Any other ideas? I would really appreciate any help!

    Do you receive any specific error messages when the applications crash? 
    Also you may want to review your installation log files to see if there are any errors during the install process.  You can find information on how to locate and interpret your installation log files at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • CS5 apps crash during launch in XP

    Hi,
    I just bought and installed CS5 Design Premium and can't get it to work, including Photoshop.  Most of the apps crash.  They crash during launch (splash screen) and therefore never get going.  Each app seems to display different error messages.  One common denominator seems to be something relating to scripting (not sure what that implies - plug-ins?).  The only CS5 apps that don't crash are Bridge and Media Encoder.
    Upgrading to 12.01 didn't help.  I tried rebooting, uninstalling and re-installing.  I ran a system scan with Windows Defender and no malicious software was detected.  I run a very clean system so no unusual programs running in the background and what little I do run in the background, I exited from.  I hadn't run a previous version of Photoshop (or any other program in CS5) so there were no Photoshop plug-ins to uninstall.
    I do have Lightroom 3 installed (huge image database), which I have not yet uninstalled (far from trivial IMHO).  Lightroom does have three plug-ins (all disabled) which are the Canon and Nikon Tether Plug-ins and a Flickr plug-in.  I don't know how to uninstall these or whether it would affect CS5.
    As an example, when I launch Photoshop, I get the following error:
    AppName: photoshop.exe     AppVer: 12.0.1.0     ModName: scriptingsupport.8li ModVer: 10.0.0.0     Offset: 000d183a
    InDesign fails as it says "updating Panels" and I get:
    AppName: indesign.exe     AppVer: 7.0.0.355     ModName: support for javascript.rpln
    ModVer: 7.0.0.355     Offset: 00036183
    System Specs:
    3.4GHz P4, 4GB PC6400, 1.5TB SATA, Nvidia GeForce 6600 PCIe, Asus P5WD2-e Motherboard, XP Pro SP2
    I run Flash 10.1.53.64 and Quicktime 7.6.6, Java 6.0.2
    When I launch Illustrator, it used to crash hard but now it stops while loading (Initializing Plug-ins, PDFFormat.aip) and displays a custom error dialog saying "Error loading plugins.  AISaveForWeb.aip DxfDwg.aip PGNFileFormat.aip.  Eventually it launches, apparently functional (haven't tested it).
    Any help appreciated, thanks!

    Corporate users are often very conservative, as many needs must be met before a new system can be rolled-out.  The reasons for being so conservative are rooted in good business, and in many cases are quite justifiable.
    I have a friend who works IT at a railroad company, and he regularly has to support Windows 2000 machines amongst the majority of their systems, which are XP.  He tells me what he and a whole team of people struggle with every day.  I've been there.  I administered systems for entire Engineering departments myself.  One of the things I ALWAYS made time for, however, was breaking in new systems and getting to know them.  As a result, our people always had near state-of-the-art systems to work with.  It was even a selling point when our managers interviewed someone sharp who they were trying to get to accept an offer:  Our work environment was second to none.
    In recent times we are starting to see why staying with an ancient operating system instead of "biting the bullet" and moving up to modern technology is proving to be more and more expensive.
    Brushing aside Vista - for a while - might have been justifiable, but...
    Hours and hours to make something work on XP?  New roll-outs of XP systems?  In 2010?  Are you kidding?
    All that time being wasted to get old things working could and should be spent on embracing the new, and figuring out how to make it sing on key.  People have now gone before you and can authoritatively state that Windows 7 can be made to work.  A darned sight better than its predecessors in many ways!
    Time is money.
    -Noel

  • Mail.app crashes on launch consistently

    Up until yesterday, my upgrade to Mountain Lion had been completely smooth.  Today when I launch mail, it crashes consistently on thread 0.  So I did the Windows rule of rebooting first off.  no joy
    I tried restoring the app via Time Machine and it crashes as well so the problem cause remains unknown.
    I have tried this with iCloud sync both on and off and also tried resetting sync services since this used to be a fix in the old days with Lion and Snow Leopard although I think it no longer applies with iCloud. 
    I've also tried removing the envelope index files and even all the plist files but the app does not launch long enough or far enough to get there.
    I've also done a Repair disk permissions and while it found tons of faults, mostly in the printers area, this did not resolve the issue.
    At this point, Mail is unusable which is a major pain in the ***.  if anyone has solutions, I'd appreciate hearing.
    Ross

    I'm having the same problem as JadedEye.   Mail.app worked just fine yesterday, but now I can't get it to launch.
    I've tried your suggestion, hpr3, to use Safe Mode.   No luck.
    Other things I've tried:
    1. Using recovery partition, repaired disk - no problems
    2. Using recovery partition, repaired permissions - nothing that looked as if it were related.
    3. Tried restoring Mail.app through Time Machine
    4. Tried restoring entire ~/Library/Mail folder from yesterday
    5. Tried deleting Mail Envelope files
    6. Tried removing entire ~/Library/Mail and ~/Library/Mail Downloads folders
    7. Tried deleting preferences files -- only one I found was com.apple.mail.plist.lockfile
    NONE of these things has made any difference.  I would re-install Mail.app, if I could find an installer package anywhere.
    I've copied the header and footer of the crash report below:
    Process:         Mail [632]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.0 (1485)
    Build Info:      Mail-1485000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [245]
    User ID:         501
    Date/Time:       2012-08-01 19:44:01.482 -0400
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          331251 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  276196 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      FCE49931-23F4-4817-A753-154DA076FBDB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 00000001094da000-0000000109877000 [ 3700K] r-x/rwx SM=COW  /Applications/Mail.app/Contents/MacOS/Mail
    TOTAL                             394.2M
    Model: iMac7,1, BootROM IM71.007A.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.21f4
    Graphics: ATI Radeon HD 2600 Pro, ATI,RadeonHD2600, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz, 0x2C00000000000000, 0x3136485446323536363448592D3636374731
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 667 MHz, 0x2C00000000000000, 0x3136485446323536363448592D3636374731
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.36.16)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: WDC WD30EZRX-00MMMB0, 3 TB
    Parallel ATA Device: MATSHITADVD-R   UJ-85J
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0606, 0xfa400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0606, 0xfa410000 / 4
    USB Device: MP560 series, 0x04a9  (Canon Inc.), 0x173e, 0xfa413000 / 8
    USB Device: C-Media USB Headphone Set, 0x0d8c  (C-MEDIA ELECTRONICS INC.), 0x000c, 0xfa412000 / 7
    USB Device: USB to ATA/ATAPI Bridge, 0x152d  (JMicron Technology Corp.), 0x2352, 0xfa411000 / 6
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa200000 / 2
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfa220000 / 5
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x1a100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x5d100000 / 2

  • All newly installed CC apps crash on launch, CS6 are fine

    I installed the new CC versions of Illustrator, Photoshop, and InDesign, and they all crash immediately after launching (no splash graphic). Unfortunately I uninstalled Illustrator CS6 before noticing that none of the newly installed versions will launch, but I still have the other two installed and working. Mac OS 10.8.4.
    InDesign crash feedback:
    Process:         Adobe InDesign CC [72156]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.0.0.244 (9000)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [272]
    User ID:         501
    Date/Time:       2013-06-19 13:01:13.198 -0400
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          13873 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      F574B4AE-0435-2610-3A0F-30C59803C605
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff95a45212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff9034cb54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff90390dce abort + 143
    3   libc++abi.dylib                         0x00007fff8e5619eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff8e55f39a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff95794887 _objc_terminate() + 111
    6   libc++abi.dylib                         0x00007fff8e55f3c9 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8e55f424 std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff8e56058b __cxa_throw + 111
    9   com.adobe.amtlib                        0x00000001046ec595 0x1046b4000 + 230805
    10  com.adobe.amtlib                        0x00000001046ec6b0 0x1046b4000 + 231088
    11  com.adobe.amtlib                        0x00000001046ebab4 0x1046b4000 + 228020
    12  com.adobe.amtlib                        0x00000001046ebb1d 0x1046b4000 + 228125
    13  com.adobe.amtlib                        0x00000001046ebddf 0x1046b4000 + 228831
    14  com.adobe.amtlib                        0x00000001046ec324 0x1046b4000 + 230180
    15  dyld                                    0x00007fff64abf378 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 236
    16  dyld                                    0x00007fff64abf762 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 46
    17  dyld                                    0x00007fff64abc06e ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 380
    18  dyld                                    0x00007fff64abbfc4 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 210
    19  dyld                                    0x00007fff64abbfc4 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 210
    20  dyld                                    0x00007fff64abbfc4 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 210
    21  dyld                                    0x00007fff64abbfc4 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 210
    22  dyld                                    0x00007fff64abbeba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 54
    23  dyld                                    0x00007fff64aadfc0 dyld::initializeMainExecutable() + 207
    24  dyld                                    0x00007fff64ab1b04 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 3060
    25  dyld                                    0x00007fff64aad397 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 761
    26  dyld                                    0x00007fff64aad05e _dyld_start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff95a45d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff945f6dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff945f69ee _dispatch_mgr_thread + 54
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfde58  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfde80  rsp: 0x00007fff5fbfde58
       r8: 0x00007fff7e151278   r9: 0x0000000000000013  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbfdfe0  r13: 0x000000000000001f  r14: 0x00007fff7e152180  r15: 0x00007fff5fbfdec0
      rip: 0x00007fff95a45212  rfl: 0x0000000000000206  cr2: 0x00007fff7e14aff0
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.0.0.244 - 9000) <2F683D4B-A144-3E91-A0CA-3F9B6B1DA676> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <7EAF82B5-D2A0-3E46-96B1-61E4A9D819C9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <37C5A821-5118-3BCF-AC5E-F9C4FAE123A8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012bff7 +DV_WidgetBinLib.dylib (1) <6A40E798-D47A-3959-A04E-9361B010FAE3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001bf000 -        0x100204ff7 +TextPanelLib.dylib (1) <F06B61DF-F7D5-37AA-B1F5-BB5FA3737E62> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100221000 -        0x100382fff +WidgetBinLib.dylib (1) <7D51BAC1-7061-36C1-8C0E-CBF411371A56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100433000 -        0x1005fcff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10063f000 -        0x100883ff7 +com.adobe.dvacore.framework (7.0.849323 - 7.0.849323.0) <63BF29D6-62ED-3026-B93D-96CC42F4CF9E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094a000 -        0x100dd7ff7 +com.adobe.dvaui.framework (7.0.849323 - 7.0.849323.0) <6C4C227F-A5D6-3B4D-AD39-4B3C97D32440> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10106d000 -        0x10106dfff +com.adobe.InDesign.InDesignModel (9.0 - 0) <5A3F239E-E40A-3876-8DD9-0E5AEDB58098> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101072000 -        0x101080fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101096000 -        0x10109cff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ab000 -        0x101513fff +PublicLib.dylib (1) <9C2969EC-46E7-3AC9-ADDE-45951D87A220> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x10165d000 -        0x101667fff +PMRuntime.dylib (1) <E2DF4211-4A31-32BB-87F5-F0ADFFBFACE8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101670000 -        0x101687ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101696000 -        0x1019a6ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019ee000 -        0x101a0bfff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a13000 -        0x101b57fff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6a000 -        0x10213bfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021d8000 -        0x102215fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10221d000 -        0x102243fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224b000 -        0x1027e4fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102861000 -        0x10287eff7 +com.adobe.dvaflashview.framework (7.0.849323 - 7.0.849323.0) <727F09EC-0D75-3C41-8553-54585B9408BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x102895000 -        0x102899ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a0000 -        0x102962fff +com.adobe.exo.framework (7.0.849323 - 7.0.849323.0) <60261EFB-3EF3-3201-9BE7-3CC7235B523B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1029ff000 -        0x102aadfff +com.adobe.dvaworkspace.framework (7.0.849323 - 7.0.849323.0) <412D9508-51FD-34D9-8B3E-FE9BD1EAC107> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b30000 -        0x1031adfcf +com.adobe.PlugPlug (4.0.0.172 - 4.0.0.172) <1B15941F-D885-3AC5-880F-D513DA868B00> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x103494000 -        0x1034c0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x1034db000 -        0x1034fafe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10351f000 -        0x104264fff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x104278000 -        0x1043a9ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x1043fd000 -        0x1044f3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x10452b000 -        0x104659fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046b4000 -        0x1047a3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047b6000 -        0x1047b8fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047be000 -        0x104875ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1048df000 -        0x10494eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104959000 -        0x104964fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x104973000 -        0x104977fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10497d000 -        0x104a1efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a3e000 -        0x104aa0ff7 +DataBaseLib.dylib (1) <F2D6864D-0813-3833-96A5-9D256A00375D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104ab4000 -        0x104b20fff +ObjectModelLib.dylib (1) <FDA08F73-D9C2-303E-AB18-564E50554517> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b3d000 -        0x104b61fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
        0x7fff64aac000 -     0x7fff64ae093f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8db92000 -     0x7fff8dbccff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8dbcd000 -     0x7fff8e55d4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8e55e000 -     0x7fff8e583ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8e59f000 -     0x7fff8e5c1ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8e5c2000 -     0x7fff8e5c8ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8e779000 -     0x7fff8eb96fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
        0x7fff8eb9a000 -     0x7fff8ed48fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ed49000 -     0x7fff8eda3fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff8eda9000 -     0x7fff8f0d9fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff8f0da000 -     0x7fff8f0f9ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8f150000 -     0x7fff8f167fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff8f168000 -     0x7fff8f16cfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8f25f000 -     0x7fff8f449ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f44a000 -     0x7fff8f5d0fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff8f5e1000 -     0x7fff8f649fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8f64a000 -     0x7fff8f724fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f725000 -     0x7fff8f7f7ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f7f8000 -     0x7fff8f7fcfff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8f839000 -     0x7fff8f83cfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff8f842000 -     0x7fff8f8a5ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8f8fd000 -     0x7fff8f91dfff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8f91e000 -     0x7fff8f9cffff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8fd17000 -     0x7fff8fd2efff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8fd2f000 -     0x7fff8fd30ff7  libSystem.B.dylib (169.3) <132FE02E-3865-3F1F-B78D-C93D65930A67> /usr/lib/libSystem.B.dylib
        0x7fff8fd31000 -     0x7fff8fd5bff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8fe14000 -     0x7fff8fe2afff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8fe2b000 -     0x7fff8fef0ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8ff06000 -     0x7fff8ff50ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8ff51000 -     0x7fff8ff66fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff8ff67000 -     0x7fff90102fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff90103000 -     0x7fff90103fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff9024d000 -     0x7fff9029eff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff9029f000 -     0x7fff902f9ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff902fa000 -     0x7fff90330fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff90331000 -     0x7fff90336fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff90337000 -     0x7fff90403ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff9051e000 -     0x7fff9051efff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff90756000 -     0x7fff90756fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff90757000 -     0x7fff90776ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff90777000 -     0x7fff907d6fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff90804000 -     0x7fff90804fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff90805000 -     0x7fff90812fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
        0x7fff90813000 -     0x7fff90822fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9089d000 -     0x7fff9089eff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff90a0a000 -     0x7fff90b2afff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff90b2b000 -     0x7fff90b7aff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff90ba4000 -     0x7fff90c3ffff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff90c40000 -     0x7fff90ce6ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff90ce7000 -     0x7fff90ceefff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90cef000 -     0x7fff90dfafff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff91e7a000 -     0x7fff91e7cfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff924b8000 -     0x7fff924bafff  com.apple.securityhi (4.0 - 55002) <8B2008A2-B6A2-3E69-9FA2-77B38C869DD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff924bb000 -     0x7fff92512ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff9252d000 -     0x7fff92534fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff92535000 -     0x7fff9255dfff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff9264d000 -     0x7fff92660ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff92661000 -     0x7fff92665fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff92666000 -     0x7fff92688ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff926b8000 -     0x7fff926b8fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff926b9000 -     0x7fff926e4fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff927a6000 -     0x7fff927b0fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff927f9000 -     0x7fff928b6ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff928ec000 -     0x7fff928fbff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff928fc000 -     0x7fff9292dff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff9292e000 -     0x7fff92936ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff92937000 -     0x7fff92939fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff92bff000 -     0x7fff92c4eff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff92cdf000 -     0x7fff92ce0fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff92ce1000 -     0x7fff92d08ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
        0x7fff92d09000 -     0x7fff92d8bff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff92d8c000 -     0x7fff92d8dff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff92f49000 -     0x7fff92f49ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff92f4a000 -     0x7fff932a9fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff932e9000 -     0x7fff93383fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff93384000 -     0x7fff9338dff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff935fc000 -     0x7fff9360eff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff9360f000 -     0x7fff93611fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
        0x7fff9368e000 -     0x7fff9372cff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff93909000 -     0x7fff93917ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff944a8000 -     0x7fff94511fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff94512000 -     0x7fff9459fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff945f2000 -     0x7fff94607ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff94733000 -     0x7fff94741ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff94742000 -     0x7fff94a59ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff94d12000 -     0x7fff94d15ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff954be000 -     0x7fff954dfff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff95614000 -     0x7fff9566afff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff9566b000 -     0x7fff9567ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff95680000 -     0x7fff95782fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff95783000 -     0x7fff9589b92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff9589d000 -     0x7fff9589fff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff958ec000 -     0x7fff95959ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff9595d000 -     0x7fff959a1fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff959a6000 -     0x7fff959aafff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff95a33000 -     0x7fff95a4eff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff95a4f000 -     0x7fff95a85fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff95bfb000 -     0x7fff95e9fff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff95f90000 -     0x7fff96010ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff96897000 -     0x7fff974c4fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff974c5000 -     0x7fff978bcfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff97907000 -     0x7fff9790dfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff97b90000 -     0x7fff97dc5ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff9856e000 -     0x7fff98663fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff98664000 -     0x7fff98677ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff987d7000 -     0x7fff9881aff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff989cd000 -     0x7fff98a22ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff98a23000 -     0x7fff98a30fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff98a7d000 -     0x7fff98b7aff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff98b7b000 -     0x7fff98b7bfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff98b7c000 -     0x7fff98b7cfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff98b7d000 -     0x7fff98be5ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff98be6000 -     0x7fff98d38fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff98d40000 -     0x7fff98d61fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff98d62000 -     0x7fff98d69fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff98df0000 -     0x7fff98df3fff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff98e0c000 -     0x7fff98f09fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff98f4b000 -     0x7fff98f4cfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff98f4d000 -     0x7fff98f74fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff98f75000 -     0x7fff9908efff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9908f000 -     0x7fff99204ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff99205000 -     0x7fff99233ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff99234000 -     0x7fff99234fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff99235000 -     0x7fff99236fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff99237000 -     0x7fff9924efff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff9924f000 -     0x7fff9926cff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff99582000 -     0x7fff99782fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff997d1000 -     0x7fff99aa2ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff99b02000 -     0x7fff99b10fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff99b1d000 -     0x7fff99b21ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff99b22000 -     0x7fff99ba0ff7  com.apple.securityfoundation (6.0 - 55115.4) <137E156C-B29C-3B84-95B3-669BC7C1BA7A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff99c4d000 -     0x7fff99c4fff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff99c50000 -     0x7fff99c8fff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff99c91000 -     0x7fff99c9dfff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
        0x7fff99c9e000 -     0x7fff99c9fff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff99ca0000 -     0x7fff99d0eff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff99d0f000 -     0x7fff99e11fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff99e12000 -     0x7fff99e55ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff9a1fc000 -     0x7fff9a202fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff9a2fa000 -     0x7fff9a305fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff9a306000 -     0x7fff9a306fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9a35f000 -     0x7fff9a3abff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff9a3ac000 -     0x7fff9a3b1fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9a3b2000 -     0x7fff9a3bfff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9a43e000 -     0x7fff9a49aff7  com.apple.Symbolication (1.3 - 93) <66BAF8B0-26D5-38B6-A742-01031F1B4EC0> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff9a49b000 -     0x7fff9a4a3fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff9a4c0000 -     0x7fff9a4cbff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff9a4cc000 -     0x7fff9a4d0ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff9a541000 -     0x7fff9a57efef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff9a57f000 -     0x7fff9a600fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff9a669000 -     0x7fff9a66efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff9aac1000 -     0x7fff9aaccfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 26859
        thread_create: 34
        thread_set_state: 60
    VM Region Summary:
    ReadOnly portion of Libraries: Total=215.1M resident=102.5M(48%) swapped_out_or_unallocated=112.5M(52%)
    Writable regions: Total=51.8M written=2260K(4%) resident=2628K(5%) swapped_out=0K(0%) unallocated=49.2M(95%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             40.5M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              8712K
    __DATA                             14.1M
    __IMAGE                             528K
    __LINKEDIT                         62.9M
    __TEXT                            152.2M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             335.3M
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.3 GHz, 8 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x802C, 0x31364A54463531323634485A2D3147344D31
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x802C, 0x31364A54463531323634485A2D3147344D31
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A364, 500.11 GB
    Serial ATA Device: SanDisk SDSSDH120GG25, 120.03 GB
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    Photoshop CC:
    Process:         Adobe Photoshop CC [72151]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Identifier:      com.adobe.Photoshop
    Version:         14.0.0 (14.0.0.221)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [272]
    User ID:         501
    Date/Time:       2013-06-19 13:00:54.963 -0400
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          13855 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      F574B4AE-0435-2610-3A0F-30C59803C605
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
    abort() called
    terminate called throwing an exception
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff95a44d46 __kill + 10
    1   libsystem_c.dylib                       0x00007fff90390df0 abort + 177
    2   libc++abi.dylib                         0x00007fff8e5619eb abort_message + 257
    3   libc++abi.dylib                         0x00007fff8e55f39a default_terminate() + 28
    4   libobjc.A.dylib                         0x00007fff95794887 _objc_terminate() + 111
    5   libc++abi.dylib                         0x00007fff8e55f3c9 safe_handler_caller(void (*)()) + 8
    6   libc++abi.dylib                         0x00007fff8e55f424 std::terminate() + 16
    7   libc++abi.dylib                         0x00007fff8e56058b __cxa_throw + 111
    8   com.adobe.amtlib                        0x000000010521e595 0x1051e6000 + 230805
    9   com.adobe.amtlib                        0x000000010521e6b0 0x1051e6000 + 231088
    10  com.adobe.amtlib                        0x000000010521dab4 0x1051e6000 + 228020
    11  com.adobe.amtlib                        0x000000010521db1d 0x1051e6000 + 228125
    12  com.adobe.amtlib                        0x000000010521dddf 0x1051e6000 + 228831
    13  com.adobe.amtlib                        0x000000010521e324 0x1051e6000 + 230180
    14  dyld                                    0x00007fff61689378 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 236
    15  dyld                                    0x00007fff61689762 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 46
    16  dyld                                    0x00007fff6168606e ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 380
    17  dyld                                    0x00007fff61685fc4 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 210
    18  dyld                                    0x00007fff61685eba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 54
    19  dyld                                    0x00007fff61677fc0 dyld::initializeMainExecutable() + 207
    20  dyld                                    0x00007fff6167bb04 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 3060
    21  dyld                                    0x00007fff61677397 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 761
    22  dyld                                    0x00007fff6167705e _dyld_start + 54
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff5fbfde30  rcx: 0x00007fff5fbfde18  rdx: 0x0000000000000000
      rdi: 0x00000000000119d7  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfde40  rsp: 0x00007fff5fbfde18
       r8: 0x0000000000000007   r9: 0x0000000000000014  r10: 0x00007fff95a46342  r11: 0x0000000000000206
      r12: 0x00007fff5fbfdf70  r13: 0x000000000000001f  r14: 0x00007fff8e5747c3  r15: 0x00007fff5fbfde50
      rip: 0x00007fff95a44d46  rfl: 0x0000000000000206  cr2: 0x00007fff7e14aff0
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x103769fe7 +com.adobe.Photoshop (14.0.0 - 14.0.0.221) <259D87CA-0B1D-3AE7-9D5B-B771811859F1> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
           0x103ea4000 -        0x103ed0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/libtbb.dylib
           0x103eea000 -        0x103f09fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103f2d000 -        0x103f34fff  org.twain.dsm (1.9.4 - 1.9.4) <80EC0952-6137-3CA6-813F-D753856A13CE> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103f3c000 -        0x103f4fff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103f59000 -        0x103f5efff  com.apple.agl (3.2.1 - AGL-3.2.1) <82AA78D1-159F-3B27-8CA5-1C227C956AC9> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103f65000 -        0x10412eff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x104171000 -        0x10470afff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104787000 -        0x104a9ffff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <4C394C04-92D7-3EE5-B0C2-4C08E14FF224> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104b08000 -        0x104e18ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30665 - 5.13.00.30665) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104e60000 -        0x104e86fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104e8e000 -        0x104ebafff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x104ede000 -        0x10500cfff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10506a000 -        0x1051aefff +com.adobe.ACE (AdobeACE 2.20.02.30665 - 2.20.02.30665) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x1051c1000 -        0x1051defff +com.adobe.BIB (AdobeBIB 1.2.03.30665 - 1.2.03.30665) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1051e6000 -        0x1052d5fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1052e8000 -        0x1053a1ff7 +com.adobe.JP2K (1.2.2 - 1.2.2.29712) <869F46FB-FF39-39CA-B1E3-A13035A48B49> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/adobejp2k.framework/Versions/A/AdobeJP2K
           0x1053eb000 -        0x1053efff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1053f6000 -        0x105467fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x10547a000 -        0x1054e7fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10551a000 -        0x105a72fef +com

    Please see this :
    http://helpx.adobe.com/photoshop/kb/cc-applications-crash-immediately-launch.html

Maybe you are looking for

  • Calling a web service in ABAP

    Hello Experts! After I am assuming the SOAP Experts at the SOAP Forum are being already on christmas vacation I saw no other possiblitiy to post my question right here. I have created a web service through: Open the affected  function Module  . Choos

  • Streaming/Transmitting Internet Wirelessly To Tv?

    Hello all, Is it possible to transmitt and stream the Internet from your iPod Touch wirelessly to a tv via a small external box of some sort linked to your tv? Many thanks. W.

  • Complex swf/xml structure with "donwload updated files" ?

    Hello to all, sorry for my bad english. i have a complex structure of swf + xml structure.  something like 200 files..  i was wondering if is it possible to create an air application for install all this package on a client and then check is some fil

  • Re: Image based hyper link

    Hi, I have a Display as Text item(does not save state) to show the image. I would like to call another page when someone click on image. I have use following code in the 'Source value or expression' to show the image on text item. <img src="#WORKSPAC

  • Sqldeveloper data modeler -  DDL generatation

    The generation use text with ^M for new lines. I am running on windows. The generation of DDL for a sequence :- CREATE SEQUENCE SIDDWSLTOTOEVENT_TEAM_DT There are ^M. The blank line between the end of the DDL and its closing ';' causes it to be ignor