Character spaced out incorrectly in medit and terminator

Hi arch`ers ... i have a problem with my arch system. at the minute its fresh install with openbox and conky.
problem is with fonts/characters. in xterminal its all fine , letter are spaced out correctly but when im switching to terminator ... or medit it gets all wrong, i tried to setfont to Lat2-Terminus16 but cant find font like this (couldnt get a file descriptor referring to the console ) nor in medit or in xterm or in terminator. web pages looks fine ... its just with medit and terminator at the minute. how can i fix this ? is it PDI problem or lack of fonts  or lack of something else ? ...
p.s my system is t61 with nVidia  Quadro NVS140  when i installed arch into t61 with intel graphics ... all was fine , no issues there..fonts looked good.
Cheers !

the algorithm we were told to use is here:
While not stack error and not the end of infix expression
a.) Extract the next input token from the infix expression (can be constant value, variable, arithmetic operator, left or right parenthesis)
b.) If token is
- left parenthesis : push it onto the stack
- right parenthesis : pop and display stack elements until the left parenthesis is popped (don't sisplay right parenthesis). It's an error if stack becomes empty with no matching right parenthesis found.
- Operator : if the stack is empty or token is higher priority than the top element, push it onto the stack. Otherwise, pop and display the top stack element and repeat comparison of token with new top element
Note : left parenthesis in the stack is assumed to have a lower priority than any operator.
- operand : display it
When the end of the infix expression is reached, pop and display remaining stack elements until it is empty.
it works fine on anything without a parenthesis, and it prints an answer (however it is incorrect) for the a - (b-(c-(d-(e-f)))) expression.
still looking for an idea if I can get one
Ok, I just noticed this. If i do a * ( b + c ) I get the error. But if I type " a * ( ( b + c ))" with spaces between the left parenthesis and adding an extra parenthesis as well, and NOT spacing the right parenthesis, I get a result that works just like that 2nd to last was doing. So it's something about the spaces...The answer is incorrect when I use the parenthesis as well. So it's not ignoring white space correctly for some reason and it's printing incorrect answers when I use parenthesis.

Similar Messages

  • Terminal - character spacing

    Hello,
    Leopard has changed my carefully arranged terminal windows and now they overlap.
    No problem, I thought, there is a character spacing option to correct this.
    If the multiplier is set to 0.99, the windows are far too wide.
    If the multiplier is set to 0.98, the windows are far too narrow.
    Well, anything in-between (e.g. 0.988) reverts to 0.99 :-[
    Does anyone know a workaround?
    Thank you,
    Mike-oz

    Eldanen wrote:Tried something different with urxvt, which I know does xft...  Came up with this, and still some odd character spacing:
    http://img264.imageshack.us/img264/5003 … iv1.th.png
    It happens with some font sizes/types...
    Try putting something like this in your .Xdefaults:
    xft.dpi:: 96
    xft.antialias:: true
    xft.hinting:: true
    xft.rgba:: rgb
    and then either
    urxvt*font:: xft:Monospace:pixelsize=11
    or
    urxvt*font:: xft:Terminus:pixelsize=14
    reload .Xdefaults with
    xrdb ~/.Xdefaults
    You'll have to experiment a bit and figure out what works best on your screen.
    Last edited by fwojciec (2007-09-10 15:54:40)

  • I was told to create a password for my itunes backup, which i did.  Now its telling me my passwords is incorrect.  I dont know what to do because i am locked out of my phone and don't remember its password.

    I forgot the password to unlock my phone.  I read online to go to itunes and create an encrypted password for my backup and then sync my phone and then restore it.  But now, when i try to enter my passcode into itunes to backup, it tells me it is incorrect.  I don't know what to do..  I am locked out of my phone and my itunes backup.  please help me

    The backup encryption passcode has nothing to do with locking a user out of their backup.
    If the encryption passcode has been forgotten, nothing can be done.  There is no reset for the encryption passcode.
    Delete the backup and create a new one.

  • [JS InDesign CS3] Style groups, begone! (or: How do I take paragraph and character styles out of style groups?)

    Sorry for this question (and my terrible English, by the way), I'm a javascript noob and I know when I've reached my limits.
    Well, I'm trying to take a set of paragraph and character styles out of the style groups they are placed in, in hundreds of InDesign documents (that cannot be treated as a book). As far as I've tried (thanks to the invaluable help of previous posts in this forum) I've been able to move a style into a group and change it's position inside the group, inside the root level or even between groups. But it doesn't matter how I try, I don't know which move reference should I try in case I want to take every style out of their style group and place them after their original group folder, at the [Root] style level .
    I have tried:
    var doc=app.activeDocument;
    var pGroups=doc.paragraphStyleGroups;
    for (i=pGroups.length-1; i>=0; i--){
         var pStylesInGroup=pGroups[i].paragraphStyles;
         for (j=pStylesInGroup.length-1; j>=0; j--){
    // Here I am, trying to move a style outside the folder that contains it, and failing miserably.
              pStylesInGroup[j].move (LocationOptions.after, pGroups[i]);
    It didn't work, the script sent an invalid parameter value in the reference field, so I cant use the group folder itself as reference.
    Tried other (obviously wrong) solutions, like use the first available style as reference. Therefore, my second script was
    var doc=app.activeDocument;
    var pStyles=doc.allParagraphStyles;
    var pGroups=doc.paragraphStyleGroups;
    for (i=pGroups.length-1; i>=0; i--){
         var pStylesInGroup=pGroups[i].paragraphStyles;
         for (j=pStylesInGroup.length-1; j>=0; j--){
    // Now I try placing the styles after the [Basic Paragraph], that is, the second paragraph style in the document style list
              pStylesInGroup[j].move (LocationOptions.after, pStyles[1]);
    It didn't work either, another invalid parameter in the reference field. Similar results with my other attempts (I even tried "[Root]" as literal with similar luck).
    So, my question is: Which command (or script, in case my whole approach is utterly wrong) should I use to achieve my goal?
    Thanks in advance to whoever decides to spend more than a minute thinking about my humble worries, and my apologies for shamelessly ripping some of your lines of code for my purposes.

    Okay, tried a few things and got really weird results!
    1. You can move a style around inside its group.
    2. You can move a style out of a group "to" another, but it will appear 'inside' that style. I got my test style as a sub-item of [Basic Paragraph], using index #1. With index #0 ([No Paragraph Style]) InDesign crashed.
    3. You can duplicate the style, but then you get a copy in the same group. Still no luck.
    4. Finally! What is the parent of a paragraph style?
    Document | Application | ParagraphStyleGroup
    "Application" is easy -- that's when you make a style global. So what's the difference between 'Document' and 'paragraphStyleGroup'? Simple -- well, when you finally get it...
    pStylesInGroup[j].move (LocationOptions.AT_END, doc);
    moves the style out of the group and to the end of the list in the document. I don't think it's possible to move it directly to a specific position into the main style list -- you first have to move it out of a group, then move it around in its own list.
    Fortunately, it returns its new position as a ParagraphStyle again, so if needed, you can use
    newStyle = pStylesInGroup[j].move (LocationOptions.AT_END, doc);
    newStyle.move (LocationOptions.AFTER, pStyles[1]);
    -- I didn't really try that out, but it should work.

  • I have my ipod attached to an old, out of date email and when i try to update from my ipod it says "your itunes store password is incorrect"  Any ideas why/how to fix?

    i have my ipod attached to an old, out of date email and when i try to update from my ipod it says "your itunes store password is incorrect"  Any ideas why/how to fix?

    Try from a computer.   You may have to reset your password.  If you can't get the comfirmation email then you can use the secret question.  Once you can log in then you change the the email address.
    See:
    Frequently Asked Questions About Apple ID
    Here is how to contact iTunes:
    Apple - Support - iTunes - Contact Us

  • I sign out of my imessage and i tried logging back in and it keeps saying my password incorrect but i know for a fact im using my right password i dont what to do its just not letting me log in

    I sign out of my imessage and i tried logging back in and it keeps saying my password incorrect but i know for a fact im using my right password i dont what to do its just not letting me log in

    Updating Snow Leopard won't help.  You need to Upgrade OS X to Lion or higher if your system will support it.  First check to see if your system meets the system requirements to upgrade.
    Lion system requirements are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    Mountain Lion and Mavericks requirements are the same, and are shown here: http://support.apple.com/kb/HT5842.
    If you can run Mavericks, you can download a free upgrade from the Mac App Store.  If your system can only run Lion, or you need Mountain Lion rather than Mavericks for software compatibility reasons, youcan contact the online store at the number shown at the bottom of this page and purchase a redemption code to download it from the Mac App Store.
    After upgrading, you will find iCloud in System Preferences>iCloud on your Mac, and can set it up as explained here: http://www.apple.com/icloud/setup/mac.html.
    Before upgrading, you should be aware that PPC programs such as AppleWorks will not run on Lion or above.  You may want to check the compatibility of your existing programs by checking here: http://roaringapps.com/apps:table.

  • Character spacing messes printing and PDF exporting

    I'm having problems printing and exporting to PDF from Pages.
    The problem is that when I'm using Character spacing (ie. -7%) they display different on screen, on paper and in PDF. They display right on the screen. But PDF and printing get messed up, the spacing is not right and it adds more space to the fonts.
    I'm using:
    Mac OS X 10.5.1
    Pages 3.0.1
    Thanks,
    Fannar

    I was having the very same problem. I was trying to make a business card with my name centered and character spacing at 40%. The character spacing seemed to only work for the first character. When it came to print or export, the text had shifted left as if it were centered with the spacing applied.
    Fear not! I found a solution. Instead of directly printing or exporting as a pdf, I chose to save as a PostScript file in the print dialog. I could then open this file in Preview and save as a pdf or print with the designed character spacing.
    File>Print>PDF>Save as PostScript..
    This work flow also fixed some nasty degradation of smaller fonts.
    Pages Developers take note!

  • When Printing a web page from Firefox. The fonts are timy and all spacing is incorrect.

    Prior to beta 4.12, the pages printed correctly. Now, the fonts are small and the text spacing is incorrect. All text has at least one extra space between the letters.
    This happens on ALL sites when printing a web page.
    I tried printing the same page in Internet Explorer and it prints correctly.

    See this thread:
    *[/questions/787654]

  • ICloud keeps asking my password and it always comes out incorrect even though i know i input the right one. When i tried to reset the password by email, nothing was sent to me. Tried it again thru security settings, they asked for my birthdate but st

    Please help!!! iCloud keeps asking my password and it always comes out incorrect even though i know i input the right one. When i tried to reset the password by email (many times already), nothing was sent to me. Tried it again thru security settings, they asked for my birthdate but still, it's incorrect! anyone have the same problem?

    Hi, 
    Thank you for visiting Apple Support Communities.  
    I would recommend reaching out to our Apple ID Account Security team to assist you with this issue.
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • My ipad logged out from my wifi, and won't log back. It says the password in incorrect.

    Yesterday my iPad logged out of my wifi, and now won't log back in. It finds it but then tells me the password is incorrect. My wife's iPad and my lap to work fine on the same password. I've turned wifi on and off, I've reset network functions but no use. Any ideas?

    Hi On your iPad in Wifi click on Forget this network ie your wifi service name Then Turn your Router off for 30 Seconds Then Try again. If this doesn't solve the problem. You may need to do a Factory Reset and Restore IPAD as new this will get rid of any bugs. Also later on website check for any Firmware update for your make of Router. Cheers Brian

  • Character spacing when converting word to pdf

    Hello
    I am using Adobe Acrobat Professional 9, and i often use the pdf portfolio feature.
    When i am ready to combine the files in the portfolio into a single pdf, the files originally from Microsoft Word, after conversion to pdf, look fine on screen.
    However when printed out the character spacing is off, with some characters spaced closer together and other spaced further apart.
    Is this a common issue?
    How can this be resolved??
    Thank you
    EAP123

    Empty the TEMP folder or print to the Adobe PDF printer. The latter might be worth trying to be sure things are working.
    You may have to uncheck a lot of the options in the PDF Maker preferences, particularly tags. Keep in mind that large graphics require a lot of disk space in the translation as the PS format is not very memory efficient for graphics (at least from what I have seen). You might also make a copy of the DOC file and then select a graphic and choose format. In the lower left corner of the general tab is a compress button. Try that to reduce the graphics resolution and see if that solves the problem.

  • Pages '09 Character Spacing No Longer Working

    So I tried the new Pages 5 today and it is lacking too many features to count, but most notably for me facing pages and character spacing. I went back to use Pages '09 (version 4.3) and character spacing no longer works for many fonts.
    For example, with Century Gothic, when I increase the font size, the characters overlap. When I decreate the font size, they space out like crazy. It's like the physical space the letters take up stays the same regardless of the font size. The character spacing slider in inspector does not work at all for these problem fonts.
    Here are some screen shots of the wonky character spacing:
    At 9 pts:
    At 12 pts:
    At 24 pts:
    At 48 pts:
    I am kind of freaking out - I use Pages to lay out books for my clients and I have no idea what to do. Can anyone help me figure out what to do? I suspect Pages '09 is no longer working for me as a result of the Mavericks upgrade, but I really don't know since I just upgraded to Mavericks a few days ago and hadn't been using Pages with anything other than the Calibri and Impact fonts (which are working fine) since then. Today I started a new book in Pages 5, discovered Century Gothic wouldn't work, so tried to go back to Pages 4.3 and discovered the problem.
    Thanks in advance for anyone's assistance!

    Okay, so I think I fixed my issue of some fonts not spacing properly in Pages '09 since I updated to Mavericks and installed Pages 5. It's weird though (at least to me)!
    1) I tried deleting and reinstalling the font... that didn't work.
    2) Per the suggestion in another post, I checked Pages '09 in another account on this computer. I logged out of my account and logged into the guest user account. I opened Pages '09.
    3) I typed something into a blank document. The default font was Helvetica, but it was showing up very weird - all these accented, unrecognizable characters. I tried Century Gothic (the font I've been using as an example in this thread). It worked fabulously! I could increase the font, decrease the font, etc. and it behaved normally - no wonky spacing or overlapping characters.
    4) Confused by why Helvetica was no longer working now, I opened up FontBook in the guest user account. To my surprise, there were at least a dozen duplicate fonts... this was not an issue in the main account I was having the issue in. Incidentally, Helvetica was NOT one of the fonts with a duplicate - it validated fine.
    5) I highlighted all of the fonts and selected to resolve duplicates automatically.
    6) I went back into Pages '09 (I may have quit and restarted the application) in the guest user account (same account I was already in). Suddenly, Helvetica was working. Century Gothic was working. Everything seemed to be working.
    7) I logged out of the guest user account and logged back into my main account.
    8) I re-opened Pages '09 and started a new document. It still works! I looked in FontBook. It looks exactly like how it looked before - no duplicate fonts.
    SO: Although no one has ever used the guest account on this computer, it seems to me that somehow its FontBook was totally messed up and somehow resolving the duplicate fonts in the guest user FontBook also fixed my issue in my own account (even though there were no duplicates in that FontBook in the first place).
    I am thrilled that this is working, but confused as to why. If any of you smartie pants' out there can shed some light, it would be mucho appreciated.
    I hope this helps somebody!!

  • Mail keeps crashing and app store and terminal and wont open in Mavericks

    Help!
    Ever since I installed Mavericks last week, Mail keeps crashing with the following error message below. The App Store and Terminal also refuse to open, please can someone help?
    Process:         Mail [832]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.0 (1816)
    Build Info:      Mail-1816000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [143]
    Responsible:     Mail [832]
    User ID:         501
    Date/Time:       2013-10-26 19:09:16.302 +0100
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  1C21170D-FD0C-73AA-D36C-0A7DDD3092F3
    Sleep/Wake UUID: B7214CB9-92CE-4F2B-8D01-D47FE2EF1F97
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[NSViewController loadView] could not load the "MessageView" nib.'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8bbc441c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8a253e75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8bbc42cc +[NSException raise:format:] + 204
    3   AppKit                              0x00007fff898b7507 -[NSViewController loadView] + 361
    4   AppKit                              0x00007fff897e5748 -[NSViewController view] + 41
    5   Mail                                0x000000010cb7264f Mail + 370255
    6   Mail                                0x000000010cb72512 Mail + 369938
    7   Mail                                0x000000010cb7214e Mail + 368974
    8   Mail                                0x000000010cb71e27 Mail + 368167
    9   Mail                                0x000000010cb7182d Mail + 366637
    10  AppKit                              0x00007fff898a526b -[NSView _updateSuggestedContentRect] + 774
    11  AppKit                              0x00007fff898b3df1 -[NSView _updateSuggestedContentRectForVisibleRectChange] + 219
    12  AppKit                              0x00007fff898b3c87 -[NSScrollView(NSRulerSupport) _handleBoundsChangeForSubview:] + 331
    13  AppKit                              0x00007fff898b3af4 -[NSView _postBoundsChangeNotification] + 136
    14  AppKit                              0x00007fff898b3938 -[NSView translateOriginToPoint:] + 294
    15  AppKit                              0x00007fff8975ac7f -[NSClipView _immediateScrollToPoint:] + 2659
    16  AppKit                              0x00007fff8975a1da -[NSClipView scrollToPoint:] + 237
    17  AppKit                              0x00007fff898b2d8e -[NSScrollView scrollClipView:toPoint:] + 203
    18  AppKit                              0x00007fff8975ee39 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1688
    19  AppKit                              0x00007fff8975e5bf -[NSClipView _reflectDocumentViewFrameChange] + 128
    20  AppKit                              0x00007fff89722f3c -[NSView _postFrameChangeNotification] + 203
    21  AppKit                              0x00007fff8972c712 -[NSView setFrameSize:] + 1586
    22  Mail                                0x000000010cb38ac4 Mail + 133828
    23  AppKit                              0x00007fff8972c099 -[NSView setFrame:] + 294
    24  Mail                                0x000000010cb6bc6a Mail + 343146
    25  Mail                                0x000000010cb71007 Mail + 364551
    26  Mail                                0x000000010cb70e36 Mail + 364086
    27  Mail                                0x000000010cb6fcfd Mail + 359677
    28  Mail                                0x000000010cb37db0 Mail + 130480
    29  Foundation                          0x00007fff8a676c18 NSKeyValueNotifyObserver + 387
    30  Foundation                          0x00007fff8a6b3e71 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1115
    31  AppKit                              0x00007fff8977dc48 -[NSController _notifyObserversForKeyPath:change:] + 209
    32  AppKit                              0x00007fff898af6a7 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53
    33  AppKit                              0x00007fff8977da88 -[NSArrayController setContent:] + 826
    34  Mail                                0x000000010cb359a3 Mail + 121251
    35  Foundation                          0x00007fff8a6b46ce -[NSObject(NSKeyValueCoding) setValue:forKey:] + 389
    36  AppKit                              0x00007fff89786f5d -[NSObjectParameterBinder _updateObject:observedController:observedKeyPath:context:] + 1298
    37  AppKit                              0x00007fff8977df68 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 652
    38  Mail                                0x000000010cb88d6e Mail + 462190
    39  CoreFoundation                      0x00007fff8bb92fcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    40  CoreFoundation                      0x00007fff8ba86c5d _CFXNotificationPost + 2893
    41  Foundation                          0x00007fff8a6704aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    42  Foundation                          0x00007fff8a696055 -[NSBlockOperation main] + 75
    43  Foundation                          0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    44  Foundation                          0x00007fff8a67523b __NSOQSchedule_f + 64
    45  libdispatch.dylib                   0x00007fff8ac8e2ad _dispatch_client_callout + 8
    46  libdispatch.dylib                   0x00007fff8ac95f03 _dispatch_main_queue_callback_4CF + 333
    47  CoreFoundation                      0x00007fff8bb2b839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    48  CoreFoundation                      0x00007fff8bae6b14 __CFRunLoopRun + 1636
    49  CoreFoundation                      0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    50  HIToolbox                           0x00007fff8f7fef0d RunCurrentEventLoopInMode + 226
    51  HIToolbox                           0x00007fff8f7fecb7 ReceiveNextEventCommon + 479
    52  HIToolbox                           0x00007fff8f7feabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    53  AppKit                              0x00007fff896f528e _DPSNextEvent + 1434
    54  AppKit                              0x00007fff896f48db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    55  AppKit                              0x00007fff896e89cc -[NSApplication run] + 553
    56  AppKit                              0x00007fff896d3803 NSApplicationMain + 940
    57  libdyld.dylib                       0x00007fff8b9265fd start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8efa9866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9282635c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff8af03bba abort + 125
    3   libc++abi.dylib                         0x00007fff8d3c9141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8d3eeabc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff8a25430d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff8d3ec3e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8d3ec456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff8a2540b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff8ac8e2c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff8ac95f03 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff8bb2b839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff8bae6b14 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff8f7fef0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff8f7fecb7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff8f7feabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff896f528e _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff896f48db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff896e89cc -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff896d3803 NSApplicationMain + 940
    21  libdyld.dylib                           0x00007fff8b9265fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8efaa662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8ac9043d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8ac90152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_pthread.dylib                 0x00007fff92829fac start_wqthread + 0
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 8:: +[MFLibrary synchronouslyUpdateMessageFiles]  Dispatch queue: NSOperationQueue 0x6000002223c0
    0   libsystem_kernel.dylib                  0x00007fff8efaa9f2 read + 10
    1   com.apple.Foundation                    0x00007fff8a68118a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8a6deba4 -[NSConcreteFileHandle readDataOfLength:] + 257
    3   com.apple.Mail.framework                0x00007fff8e206d71 +[MFLibrary _emlxPListInFile:plistOffset:] + 51
    4   com.apple.Mail.framework                0x00007fff8e200c17 +[MFLibrary updateFileForMessage:] + 180
    5   com.apple.CoreFoundation                0x00007fff8bb0cd06 __53-[__NSArrayI enumerateObjectsWithOptions:usingBlock:]_block_invoke + 70
    6   com.apple.CoreFoundation                0x00007fff8bb0cc50 -[__NSArrayI enumerateObjectsWithOptions:usingBlock:] + 320
    7   com.apple.Mail.framework                0x00007fff8e1e3914 +[MFLibrary synchronouslyUpdateMessageFiles] + 503
    8   com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    10  com.apple.MailCore                      0x00007fff8b175b74 -[MCMonitoredInvocation invoke] + 211
    11  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    12  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    13  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    14  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    15  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    17  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    19  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    20  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    21  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 10:: -[MFSnippetManager _calculateSnippetForMessages]  Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff8efaa9f2 read + 10
    1   com.apple.Foundation                    0x00007fff8a68118a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8a680f3b _NSReadBytesFromFileWithExtendedAttributes + 888
    3   com.apple.Foundation                    0x00007fff8a680b37 -[NSData(NSData) initWithContentsOfFile:] + 91
    4   com.apple.Foundation                    0x00007fff8a6e3c6c +[NSData(NSData) dataWithContentsOfFile:] + 43
    5   com.apple.Mail.framework                0x00007fff8e206f16 +[MFLibrary bodyDataAtPath:headerData:] + 49
    6   com.apple.Mail.framework                0x00007fff8e20737d +[MFLibrary bodyDataForMessage:andHeaderDataIfReadilyAvailable:] + 58
    7   com.apple.Mail.framework                0x00007fff8e2940c0 -[MFMessageStore bodyDataForMessage:fetchIfNotAvailable:allowPartial:] + 287
    8   com.apple.MailCore                      0x00007fff8b16e901 -[MCMimePart(MessageSupport) parseMimeBodyFetchIfNotAvailable:allowPartial:] + 141
    9   com.apple.Mail.framework                0x00007fff8e2966be -[MFMessageStore _fetchBodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 154
    10  com.apple.Mail.framework                0x00007fff8e294326 -[MFMessageStore bodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 156
    11  com.apple.Mail.framework                0x00007fff8e2de12d __48-[MFSnippetManager _calculateSnippetForMessages]_block_invoke + 363
    12  com.apple.CoreFoundation                0x00007fff8bb01a1f __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 111
    13  com.apple.CoreFoundation                0x00007fff8bb0192e -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 222
    14  com.apple.Mail.framework                0x00007fff8e2ddfa2 -[MFSnippetManager _calculateSnippetForMessages] + 287
    15  com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    18  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    19  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    20  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    21  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8ac9068f _dispatch_queue_drain + 451
    23  libdispatch.dylib                       0x00007fff8ac919dd _dispatch_queue_invoke + 110
    24  libdispatch.dylib                       0x00007fff8ac8ffa3 _dispatch_root_queue_drain + 75
    25  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    26  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    27  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 14:: Dispatch queue: [MFLibrary writeQueue]
    0   libsystem_kernel.dylib                  0x00007fff8efaa962 pread + 10
    1   libsqlite3.dylib                        0x00007fff921cf1d4 unixRead + 100
    2   libsqlite3.dylib                        0x00007fff921f55ee readDbPage + 478
    3   libsqlite3.dylib                        0x00007fff921f418d sqlite3PagerAcquire + 349
    4   libsqlite3.dylib                        0x00007fff922298f7 sqlite3BtreeMovetoUnpacked + 1143
    5   libsqlite3.dylib                        0x00007fff9220f8c4 sqlite3VdbeExec + 5236
    6   libsqlite3.dylib                        0x00007fff9220d40a sqlite3_step + 666
    7   com.apple.Mail.framework                0x00007fff8e1e4392 setFlagsForMessage + 448
    8   com.apple.Mail.framework                0x00007fff8e1e4125 __83+[MFLibrary commitSynchronouslyPostingMessages:postFlags:postingOldFlagsByMessage:]_block_i nvoke + 210
    9   com.apple.Mail.framework                0x00007fff8e2109e5 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1328
    10  com.apple.Mail.framework                0x00007fff8e1e3f16 +[MFLibrary commitSynchronouslyPostingMessages:postFlags:postingOldFlagsByMessage:] + 644
    11  com.apple.Mail.framework                0x00007fff8e229303 __59-[MFLibraryStore async_setFlagsFromDictionary:forMessages:]_block_invoke + 435
    12  com.apple.Foundation                    0x00007fff8a696055 -[NSBlockOperation main] + 75
    13  com.apple.MailCore                      0x00007fff8b198564 -[MCTaskOperation main] + 642
    14  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    15  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    16  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    18  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    20  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    21  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    22  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 18:: -[MFLibraryIMAPStore openSynchronously]  Dispatch queue: NSOperationQueue 0x60800023da00
    0   libsystem_kernel.dylib                  0x00007fff8efa9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92827c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff8a6d7ae0 -[__NSOperationInternal _waitUntilFinishedOrTimeout:outer:] + 218
    3   com.apple.IMAP                          0x00007fff909d0fc0 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 228
    4   com.apple.IMAP                          0x00007fff909eafa1 -[IMAPGateway waitUntilClientOperationIsFinished:] + 184
    5   com.apple.IMAP                          0x00007fff909eaed7 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 397
    6   com.apple.IMAP                          0x00007fff909d9b3f -[IMAPConnection _authenticateWithAuthenticator:] + 136
    7   com.apple.MailCore                      0x00007fff8b12cd10 -[MCConnection authenticate] + 594
    8   com.apple.IMAP                          0x00007fff909d99e0 -[IMAPConnection authenticate] + 66
    9   com.apple.Mail.framework                0x00007fff8e1caa08 -[MFIMAPAccount connectAndAuthenticate:] + 1163
    10  com.apple.Mail.framework                0x00007fff8e1cba8b -[MFIMAPAccount _recoverFromConnectionlessStateHighPriority:] + 118
    11  com.apple.Mail.framework                0x00007fff8e1cb7ee -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 168
    12  com.apple.Mail.framework                0x00007fff8e1cb486 -[MFIMAPAccount _gatewayForMailbox:name:options:] + 272
    13  com.apple.Mail.framework                0x00007fff8e220e88 -[MFLibraryIMAPStore _gatewayCreateIfNeeded:options:] + 158
    14  com.apple.Mail.framework                0x00007fff8e2179ca -[MFLibraryIMAPStore _openSynchronouslyUpdatingMetadata:withOptions:] + 279
    15  com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8b175b74 -[MCMonitoredInvocation invoke] + 211
    18  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    19  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    20  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    21  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    22  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    24  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    25  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    26  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    27  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    28  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 19:: -[MFLibraryIMAPStore openSynchronously]  Dispatch queue: NSOperationQueue 0x60800023da00
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8bae7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8bae6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a6d6a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.MailCore                      0x00007fff8b1952cf -[MCSocket _waitForSecurityLayerNegotiationStreamsAreScheduled:] + 645
    7   com.apple.MailCore                      0x00007fff8b194a28 -[MCSocket connectToHost:withPort:isBackground:] + 1524
    8   com.apple.MailCore                      0x00007fff8b12bdd4 -[MCConnection connectDiscoveringBestSettings:] + 1115
    9   com.apple.Mail.framework                0x00007fff8e1ca923 -[MFIMAPAccount connectAndAuthenticate:] + 934
    10  com.apple.Mail.framework                0x00007fff8e1cba8b -[MFIMAPAccount _recoverFromConnectionlessStateHighPriority:] + 118
    11  com.apple.Mail.framework                0x00007fff8e1cb7ee -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 168
    12  com.apple.Mail.framework                0x00007fff8e1cb486 -[MFIMAPAccount _gatewayForMailbox:name:options:] + 272
    13  com.apple.Mail.framework                0x00007fff8e220e88 -[MFLibraryIMAPStore _gatewayCreateIfNeeded:options:] + 158
    14  com.apple.Mail.framework                0x00007fff8e2179ca -[MFLibraryIMAPStore _openSynchronouslyUpdatingMetadata:withOptions:] + 279
    15  com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8b175b74 -[MCMonitoredInvocation invoke] + 211
    18  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    19  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    20  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    21  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    22  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    24  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    25  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    26  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    27  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    28  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 22:: Dispatch queue: NSOperationQueue 0x6000002c2840
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   libsystem_kernel.dylib                  0x00007fff8efa03f4 semaphore_create + 99
    3   libdispatch.dylib                       0x00007fff8ac92a8f _dispatch_semaphore_create_port + 62
    4   libdispatch.dylib                       0x00007fff8ac9299e _dispatch_semaphore_wait_slow + 87
    5   libxpc.dylib                            0x00007fff86cad733 xpc_connection_send_message_with_reply_sync + 195
    6   com.apple.CoreFoundation                0x00007fff8bab8193 -[CFPrefsPlistSource copyReplyForDaemonMessage:toConnection:error:] + 243
    7   com.apple.CoreFoundation                0x00007fff8bc12820 __47-[CFPrefsPlistSource alreadylocked_synchronize]_block_invoke_2 + 352
    8   com.apple.CoreFoundation                0x00007fff8bab7a9b withDaemonConnection + 299
    9   com.apple.CoreFoundation                0x00007fff8bab74fb -[CFPrefsPlistSource alreadylocked_synchronize] + 587
    10  com.apple.CoreFoundation                0x00007fff8bab71f3 _copyValueForKey + 131
    11  com.apple.CoreFoundation                0x00007fff8bab7147 -[CFPrefsPlistSource copyValueForKey:] + 71
    12  com.apple.CoreFoundation                0x00007fff8badf730 ___CFPreferencesCopyValueWithContainer_block_invoke + 32
    13  com.apple.CoreFoundation                0x00007fff8bab6097 +[CFPrefsSource withSourceForIdentifier:user:byHost:container:perform:] + 839
    14  com.apple.CoreFoundation                0x00007fff8badf6c7 _CFPreferencesCopyValueWithContainer + 231
    15  com.apple.framework.internetaccounts          0x00007fff86587602 __IADebugLog_block_invoke + 49
    16  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff8ac8e21c dispatch_once_f + 79
    18  com.apple.framework.internetaccounts          0x00007fff865875c7 IADebugLog + 407
    19  com.apple.framework.internetaccounts          0x00007fff86563719 -[IAGoogleAuthTokenManager init] + 182
    20  com.apple.framework.internetaccounts          0x00007fff8656361e __34+[IAGoogleAuthTokenManager shared]_block_invoke + 37
    21  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8ac8e21c dispatch_once_f + 79
    23  com.apple.framework.internetaccounts          0x00007fff865635f7 +[IAGoogleAuthTokenManager shared] + 103
    24  com.apple.Mail.framework                0x00007fff8e24c8ee -[MFMailAccount googleClientToken] + 165
    25  com.apple.MailCore                      0x00007fff8b18cf8f -[_MCPlainClientTokenSaslClient initialResponse] + 82
    26  com.apple.IMAP                          0x00007fff909c84a6 -[IMAPClientAuthenticateOperation newCommandDataForLiteralPlus:] + 174
    27  com.apple.IMAP                          0x00007fff909d81a1 -[IMAPConnection _sendCommand:response:] + 1359
    28  com.apple.IMAP                          0x00007fff909d9f2c -[IMAPConnection executeAuthenticate:] + 294
    29  com.apple.IMAP                          0x00007fff909c8581 -[IMAPClientAuthenticateOperation executeOnConnection:] + 26
    30  com.apple.IMAP                          0x00007fff909d7ada -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1216
    31  com.apple.IMAP                          0x00007fff909eaafe -[IMAPGateway _allowClientOperationThrough:] + 910
    32  com.apple.IMAP                          0x00007fff909ea715 -[IMAPGateway allowClientOperationThrough:] + 385
    33  com.apple.IMAP                          0x00007fff909ce20b -[IMAPClientOperation main] + 57
    34  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    35  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    36  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    37  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    38  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    39  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    40  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    41  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    42  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8bae7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8bae6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff898951ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff92825899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9282572a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff92829fc9 thread_start + 13
    Thread 25:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8bae7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8bae6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a6d4907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8a6d470b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff92825899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9282572a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff92829fc9 thread_start + 13
    Thread 26:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8efa99aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8bb32d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff92825899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9282572a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff92829fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff78923310  rcx: 0x00007fff530e5ea8  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff530e5ed0  rsp: 0x00007fff530e5ea8
       r8: 0x00007fff8d3efab4   r9: 0x00007fff8af2b900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff530e6030  r13: 0x0000600000123160  r14: 0x0000000000000006  r15: 0x00007fff530e5f10
      rip: 0x00007fff8efa9866  rfl: 0x0000000000000206  cr2: 0x0000000113113000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10cb18000 -        0x10ce07fff  com.apple.mail (7.0 - 1816) <E8B5953C-FD5C-3D3B-B481-34F23E45730A> /Applications/Mail.app/Contents/MacOS/Mail
           0x10d264000 -        0x10d266fff  apop.so (170) <79E840B4-6D30-3CBB-99D3-345D6C77D5DF> /usr/lib/sasl2/apop.so
           0x10d26a000 -        0x10d27afff  dhx.so (170) <A9EBA1D4-8ED8-37BB-BA1E-263091EAF96E> /usr/lib/sasl2/dhx.so
           0x10d286000 -        0x10d28efff  digestmd5WebDAV.so (170) <9DBE65CE-9B5C-37A3-8112-40F39BE3B5F8> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10d293000 -        0x10d295fff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x10d299000 -        0x10d29bfff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x10d2a0000 -        0x10d2a8ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x10d2ad000 -        0x10d2b1fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x10d2b6000 -        0x10d2b8fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x10d2bc000 -        0x10d2c1fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x10d2c6000 -        0x10d2cdfff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x10d2d6000 -        0x10d2d8fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x10d2dc000 -        0x10d2e0fff  libpps.so (170) <9BAB4F91-A2DF-3F11-A2E4-8E353562ECC8> /usr/lib/sasl2/libpps.so
           0x10d2e5000 -        0x10d2e8ff7  mschapv2.so (170) <7B006E8A-BEB7-3004-9C16-134D37C077A5> /usr/lib/sasl2/mschapv2.so
           0x10d2ed000 -        0x10d315ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10d32b000 -        0x10d32dfff  smb_nt.so (170) <903A6BA5-5B1F-305A-98EA-27BE757A7CFF> /usr/lib/sasl2/smb_nt.so
           0x10d332000 -        0x10d334fff  pwauxprop.so (400) <924056F9-D203-3DAD-B78D-61439A2E6BE8> /usr/lib/sasl2/pwauxprop.so
           0x10d339000 -        0x10d33bfff  shadow_auxprop.so (170) <2E0153C3-9D36-3496-8885-DE8B91838036> /usr/lib/sasl2/shadow_auxprop.so
           0x10d340000 -        0x10d342fff  smb_ntlmv2.so (170) <15A0B3C1-DA72-3B4C-8234-EF24132FEB0B> /usr/lib/sasl2/smb_ntlmv2.so
           0x10eb61000 -        0x10eb68ff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x11203f000 -        0x112042fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x112198000 -        0x112199fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1121ab000 -        0x1121afff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x112cae000 -        0x112caeff9 +cl_kernels (???) <8008097B-D4F3-450E-9BED-7029C8AFAEDB> cl_kernels
           0x112cc3000 -        0x112cc4ffa +cl_kernels (???) <B93AD5F8-3BA3-4DF4-97D6-9A5137048DAD> cl_kernels
           0x112cc8000 -        0x112cc8ffd +cl_kernels (???) <8059D9F9-4700-4237-B5F6-10270270F41D> cl_kernels
           0x112d3e000 -        0x112e24fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x112e76000 -        0x112f56ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x112fa8000 -        0x112fa8fff +cl_kernels (???) <B57BB37D-07A8-4B44-9A8F-4BEB3395F62F> cl_kernels
           0x113048000 -        0x113048ffb +cl_kernels (???) <546122C5-B9C2-4A19-AD43-A811CB3F32FF> cl_kernels
           0x11305e000 -        0x11305fff2 +cl_kernels (???) <BDD50C1D-953E-4FF5-ADB7-53E484E19F72> cl_kernels
           0x113068000 -        0x113068ffe +cl_kernels (???) <ABA6783A-F44B-4959-98EB-7501AA205545> cl_kernels
           0x113071000 -        0x113071ff7 +cl_kernels (???) <7797CCA3-3341-43FC-B014-E29C2CC2B593> cl_kernels
           0x11307c000 -        0x11307cff7 +cl_kernels (???) <B46B5894-5999-4694-AC35-DC983EB41408> cl_kernels
           0x113293000 -        0x113294ff4 +cl_kernels (???) <B72DD580-7F28-41F5-A197-93E535A62AD0> cl_kernels
        0x7fff628d1000 -     0x7fff62904817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff864c6000 -     0x7fff864deff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff864df000 -     0x7fff86537ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff86538000 -     0x7fff86540ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff86541000 -     0x7fff8654cfff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff8654d000 -     0x7fff8659cff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8659d000 -     0x7fff868b7ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff868b8000 -     0x7fff868c8ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff868c9000 -     0x7fff868d0ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff868d1000 -     0x7fff868d9ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff868da000 -     0x7fff86901ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff86902000 -     0x7fff8690affc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8690b000 -     0x7fff86969ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8696a000 -     0x7fff8696dfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8696e000 -     0x7fff8699cff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8699d000 -     0x7fff8699dffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8699e000 -     0x7fff869a3ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff869a4000 -     0x7fff86be7fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86be8000 -     0x7fff86c45fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff86c46000 -     0x7fff86c88ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff86c8f000 -     0x7fff86ca2ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff86ca3000 -     0x7fff86cc7fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff86d46000 -     0x7fff86d53ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff87632000 -     0x7fff87720fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8778c000 -     0x7fff877d3fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff877d4000 -     0x7fff877f1ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff877f2000 -     0x7fff87960ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87961000 -     0x7fff87986ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87987000 -     0x7fff887d3ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff887d4000 -     0x7fff887f6fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff887f7000 -     0x7fff887f8fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff887f9000 -     0x7fff88a51ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88fd2000 -     0x7fff8900efff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8903a000 -     0x7fff8903bff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8903c000 -     0x7fff8930aff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8930b000 -     0x7fff89378fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff89379000 -     0x7fff893beff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff893bf000 -     0x7fff893c7fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff89410000 -     0x7fff894adfff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff894ae000 -     0x7fff894bdff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff894be000 -     0x7fff89587fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff89588000 -     0x7fff8959aff7  com.apple.addressbook.ContactsAutocomplete (8.0 - 1365) <9EF30F4C-2C3F-321C-8C32-1445395FD9C7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff8959b000 -     0x7fff8966cff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8966d000 -     0x7fff8967aff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff896cc000 -     0x7fff896d0fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff896d1000 -     0x7fff8a245ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a246000 -     0x7fff8a3f3f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8a3f4000 -     0x7fff8a547ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8a548000 -     0x7fff8a575ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8a576000 -     0x7fff8a594ff7  com.apple.CalendarFoundation (7.0 - 111) <D5CEE7AE-3325-3E7E-924B-12834AE7D218> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff8a595000 -     0x7fff8a624ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8a625000 -     0x7fff8a66cff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib

    I am having the same problem. Any solution?? in my case so far is photo booth appstore terminal, facetime the built in camera is not working with skype

  • I signed out of my MobleMe and it wont let me sign back in.

    I signed out of my MobleMe and it wont let me sign back in. I have been trying to see what I can delete from my Icloud so I don't have to buy storage, so my phone will back up. I have hardly anything on my phone for apps my largest is camera which is 2.0GB. The rest are small MB or less. I tried to sign out of my moble me account and i know the password and account name which is saved under the keychain access on my comp. but now when I try to sign back in it says my account name is invalid and or my password is incorrect. What in the world do i do now???

    Updating Snow Leopard won't help.  You need to Upgrade OS X to Lion or higher if your system will support it.  First check to see if your system meets the system requirements to upgrade.
    Lion system requirements are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    Mountain Lion and Mavericks requirements are the same, and are shown here: http://support.apple.com/kb/HT5842.
    If you can run Mavericks, you can download a free upgrade from the Mac App Store.  If your system can only run Lion, or you need Mountain Lion rather than Mavericks for software compatibility reasons, youcan contact the online store at the number shown at the bottom of this page and purchase a redemption code to download it from the Mac App Store.
    After upgrading, you will find iCloud in System Preferences>iCloud on your Mac, and can set it up as explained here: http://www.apple.com/icloud/setup/mac.html.
    Before upgrading, you should be aware that PPC programs such as AppleWorks will not run on Lion or above.  You may want to check the compatibility of your existing programs by checking here: http://roaringapps.com/apps:table.

  • Hey, was clearing out files from Macintosh and when i open system preferences i get this message.. Process:         System Preferences [725] Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences Identifier:    com.apple

    Hey, was clearing out files from Macintosh and when i open system preferences i get this message..
    Process:         System Preferences [725]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         7.0 (7.0)
    Build Info:      SystemPrefsApp-1750100~19
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [92]
    Date/Time:       2012-01-07 16:35:08.594 +0000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          201694 sec
    Crashes Since Last Report:           56
    Per-App Interval Since Last Report:  1892 sec
    Per-App Crashes Since Last Report:   56
    Anonymous UUID:                      41AC60CC-2BEC-4643-A939-B4FC5890ACD5
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  3
    Application Specific Information:
    abort() called
    objc[725]: garbage collection is ON
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSCFArray insertObject:atIndex:]: attempt to insert nil'
    *** Call stack at first throw:
              0   CoreFoundation                      0x00007fff855b0784 __exceptionPreprocess + 180
              1   libobjc.A.dylib                     0x00007fff86dc7f03 objc_exception_throw + 45
              2   CoreFoundation                      0x00007fff855b05a7 +[NSException raise:format:arguments:] + 103
              3   CoreFoundation                      0x00007fff855b0534 +[NSException raise:format:] + 148
              4   Foundation                          0x00007fff81257e7e -[NSCFArray insertObject:atIndex:] + 119
              5   System Preferences                  0x0000000100004f71 0x0 + 4294987633
              6   System Preferences                  0x0000000100004671 0x0 + 4294985329
              7   System Preferences                  0x00000001000021bb 0x0 + 4294975931
              8   System Preferences                  0x0000000100001f87 0x0 + 4294975367
              9   System Preferences                  0x0000000100001ef1 0x0 + 4294975217
              10  libSystem.B.dylib                   0x00007fff80088d64 _dispatch_call_block_and_release + 15
              11  libSystem.B.dylib                   0x00007fff800678d2 _dispatch_queue_drain + 251
              12  libSystem.B.dylib                   0x00007fff80067734 _dispatch_queue_invoke + 57
              13  libSystem.B.dylib                   0x00007fff800672de _dispatch_worker_thread2 + 252
              14  libSystem.B.dylib                   0x00007fff80066c08 _pthread_wqthread + 353
              15  libSystem.B.dylib                   0x00007fff80066aa5 start_wqthread + 13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff8004cd92 semaphore_signal_trap + 10
    1   libobjc.A.dylib                         0x00007fff86dcadaa lookUpMethod + 314
    2   libobjc.A.dylib                         0x00007fff86dc2faa objc_msgSend + 198
    3   com.apple.AppKit                        0x00007fff81f6b8c7 _NSToolbarMetricsLoadCustom + 53
    4   com.apple.AppKit                        0x00007fff81f6b76f -[NSToolbar _setToolbarViewWindow:] + 103
    5   com.apple.AppKit                        0x00007fff81f6b5ab -[NSWindow setToolbar:] + 403
    6   com.apple.systempreferences             0x00000001000032dd 0x100000000 + 13021
    7   com.apple.systempreferences             0x0000000100003023 0x100000000 + 12323
    8   com.apple.Foundation                    0x00007fff81261ad5 _nsnote_callback + 167
    9   com.apple.CoreFoundation                0x00007fff85557fd0 __CFXNotificationPost + 1008
    10  com.apple.CoreFoundation                0x00007fff85544548 _CFXNotificationPostNotification + 200
    11  com.apple.Foundation                    0x00007fff81258a36 -[NSNotificationCenter postNotificationName:object:userInfo:] + 101
    12  com.apple.AppKit                        0x00007fff81f5244a -[NSApplication _postDidFinishNotification] + 100
    13  com.apple.AppKit                        0x00007fff81f5237f -[NSApplication _sendFinishLaunchingNotification] + 66
    14  com.apple.AppKit                        0x00007fff8201d35d -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 219
    15  com.apple.AppKit                        0x00007fff8201cfd9 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 77
    16  com.apple.Foundation                    0x00007fff812900d6 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 360
    17  com.apple.Foundation                    0x00007fff8128ff06 _NSAppleEventManagerGenericHandler + 114
    18  com.apple.AE                            0x00007fff858a132b aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
    19  com.apple.AE                            0x00007fff858a1224 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
    20  com.apple.AE                            0x00007fff858a112b aeProcessAppleEvent + 210
    21  com.apple.HIToolbox                     0x00007fff8520a619 AEProcessAppleEvent + 48
    22  com.apple.AppKit                        0x00007fff81f22095 _DPSNextEvent + 1191
    23  com.apple.AppKit                        0x00007fff81f21801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    24  com.apple.AppKit                        0x00007fff81ee768f -[NSApplication run] + 395
    25  com.apple.AppKit                        0x00007fff81ee03b0 NSApplicationMain + 364
    26  com.apple.systempreferences             0x0000000100001cf4 0x100000000 + 7412
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff80065c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff80067add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff800677b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff800672de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff80066c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff80066aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff80066a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff80066e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff80066aa5 start_wqthread + 13
    Thread 3 Crashed:
    0   libSystem.B.dylib                       0x00007fff800bf9ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff800bf8d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff8011c3ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff8013ba00 abort + 93
    4   libstdc++.6.dylib                       0x00007fff85d055d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff86dcbb39 _objc_terminate + 100
    6   libstdc++.6.dylib                       0x00007fff85d03ae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff85d03b16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff85d03bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libobjc.A.dylib                         0x00007fff86dc7fa2 object_getIvar + 0
    10  com.apple.CoreFoundation                0x00007fff855b05a7 +[NSException raise:format:arguments:] + 103
    11  com.apple.CoreFoundation                0x00007fff855b0534 +[NSException raise:format:] + 148
    12  com.apple.Foundation                    0x00007fff81257e7e -[NSCFArray insertObject:atIndex:] + 119
    13  com.apple.systempreferences             0x0000000100004f71 0x100000000 + 20337
    14  com.apple.systempreferences             0x0000000100004671 0x100000000 + 18033
    15  com.apple.systempreferences             0x00000001000021bb 0x100000000 + 8635
    16  com.apple.systempreferences             0x0000000100001f87 0x100000000 + 8071
    17  com.apple.systempreferences             0x0000000100001ef1 0x100000000 + 7921
    18  libSystem.B.dylib                       0x00007fff80088d64 _dispatch_call_block_and_release + 15
    19  libSystem.B.dylib                       0x00007fff800678d2 _dispatch_queue_drain + 251
    20  libSystem.B.dylib                       0x00007fff80067734 _dispatch_queue_invoke + 57
    21  libSystem.B.dylib                       0x00007fff800672de _dispatch_worker_thread2 + 252
    22  libSystem.B.dylib                       0x00007fff80066c08 _pthread_wqthread + 353
    23  libSystem.B.dylib                       0x00007fff80066aa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff80066a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff80066e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff80066aa5 start_wqthread + 13
    Thread 5:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff8004cd7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8004d3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8554b902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8554ad8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff812ea807 -[NSConcreteTask waitUntilExit] + 230
    5   ....frameworks.preferencepanes          0x0000000100030f51 -[NSPrefPanesCenter _checkHWForPreferences:] + 233
    6   libSystem.B.dylib                       0x00007fff80088d64 _dispatch_call_block_and_release + 15
    7   libSystem.B.dylib                       0x00007fff800672d1 _dispatch_worker_thread2 + 239
    8   libSystem.B.dylib                       0x00007fff80066c08 _pthread_wqthread + 353
    9   libSystem.B.dylib                       0x00007fff80066aa5 start_wqthread + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x0000000100703760  rcx: 0x0000000100703718  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x0000000100703750  rsp: 0x0000000100703718
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x00007fff826315d8  r15: 0x00000002000a61c0
      rip: 0x00007fff800bf9ce  rfl: 0x0000000000000247  cr2: 0x0000000103013600
    Binary Images:
           0x100000000 -        0x10001eff7  com.apple.systempreferences 7.0 (7.0) <AC669017-E97F-61B7-1303-A21DABA33797> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x10002d000 -        0x100054ff7  com.apple.frameworks.preferencepanes 13.5 (13.5) <C79DCAF8-302A-843F-BE9B-407DDA682A8E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <63B47435-46CF-3D2D-F7F4-7FE77DEEFE06> /usr/lib/dyld
        0x7fff8004b000 -     0x7fff8004bff7  com.apple.Carbon 150 (152) <B72D29DB-3787-26D1-E842-7AF12F179A83> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8004c000 -     0x7fff8020dfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff8020e000 -     0x7fff805abfe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff805ac000 -     0x7fff805e9ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff805ea000 -     0x7fff8062dff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8062e000 -     0x7fff80678ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff80679000 -     0x7fff80679ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8067a000 -     0x7fff8067bff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff806ca000 -     0x7fff806d1fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff80711000 -     0x7fff8071fff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff80730000 -     0x7fff80747fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8092a000 -     0x7fff80994fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff80995000 -     0x7fff80cc9fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff80cca000 -     0x7fff80e88fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff80e89000 -     0x7fff80e89ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff80e8a000 -     0x7fff80eb5ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff80eb6000 -     0x7fff80f77fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff80f78000 -     0x7fff8104cfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8104d000 -     0x7fff81053ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81054000 -     0x7fff81074ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff81075000 -     0x7fff81105fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff81106000 -     0x7fff8123bfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8123c000 -     0x7fff81250fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81251000 -     0x7fff814d3fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff814d4000 -     0x7fff8151cff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8152f000 -     0x7fff81d39fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff81df1000 -     0x7fff81e91fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff81e92000 -     0x7fff81ed3fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff81ed4000 -     0x7fff81ed7ff7  libCoreVMClient.dylib ??? (???) <E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff81ed8000 -     0x7fff81eddfff  libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff81ede000 -     0x7fff828d8ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff828d9000 -     0x7fff828ddff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff82947000 -     0x7fff82a5efef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff82a5f000 -     0x7fff82a78fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff82a79000 -     0x7fff82b2efe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff83dd8000 -     0x7fff83e95fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83e96000 -     0x7fff83e96ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff83e97000 -     0x7fff842dafef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff842db000 -     0x7fff842f1fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8456d000 -     0x7fff84588ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff847f3000 -     0x7fff84864ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff84865000 -     0x7fff849a3fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff851d6000 -     0x7fff854d4fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff854d5000 -     0x7fff854e7fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff854e8000 -     0x7fff854fefe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff854ff000 -     0x7fff85676fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff85677000 -     0x7fff85791fef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff85792000 -     0x7fff857e5ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff857e6000 -     0x7fff85827fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff85828000 -     0x7fff8582cff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8582d000 -     0x7fff85850fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff85851000 -     0x7fff8589dfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8589e000 -     0x7fff858d9fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff858dc000 -     0x7fff85995fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff85996000 -     0x7fff85a22fef  SecurityFoundation ??? (???) <84778E7D-B73C-781A-CD71-7EF5E7EA8EF5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff85a23000 -     0x7fff85a6cfef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85afd000 -     0x7fff85afdff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff85afe000 -     0x7fff85b09ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff85b0a000 -     0x7fff85b3bfff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff85b77000 -     0x7fff85bf6fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff85cb9000 -     0x7fff85d36fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff85d37000 -     0x7fff85d7cfff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff85d7d000 -     0x7fff85d9aff7  libPng.dylib ??? (???) <6D8E515B-E0A2-2BA1-9CAC-8CB8A8B35879> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff85dd5000 -     0x7fff85e0ffff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff85e10000 -     0x7fff85e1dfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff85e1e000 -     0x7fff85e1eff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff85e1f000 -     0x7fff85e66ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff85e67000 -     0x7fff85ea8fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff85fae000 -     0x7fff85fe1ff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff85fe2000 -     0x7fff86429fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8642a000 -     0x7fff86439fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8643a000 -     0x7fff8643ffff  libGIF.dylib ??? (???) <201B8077-B5CC-11AA-E1B0-1D057ABE416A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86440000 -     0x7fff864f0fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff864f1000 -     0x7fff86512fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff86513000 -     0x7fff86683fff  com.apple.QTKit 7.7 (1787) <AD4C0243-16DA-F7EE-7202-E9EE7198223F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff86684000 -     0x7fff8668aff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8668b000 -     0x7fff86849ff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <0A4F51A1-4502-767B-8A4E-F14C6214EF88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8687b000 -     0x7fff8699afe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8699b000 -     0x7fff86a80fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff86a81000 -     0x7fff86a81ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86ba2000 -     0x7fff86ba3ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff86cc1000 -     0x7fff86d21fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff86d22000 -     0x7fff86d4afff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff86d68000 -     0x7fff86dbdff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff86dbe000 -     0x7fff86e74ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff86e75000 -     0x7fff86e77fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff86fb6000 -     0x7fff874bcff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8783c000 -     0x7fff878baff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff878bb000 -     0x7fff878ccff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff878cd000 -     0x7fff8798efef  com.apple.ColorSync 4.6.6 (4.6.6) <BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87c96000 -     0x7fff87dbeff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff87dbf000 -     0x7fff87e0eff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff87e59000 -     0x7fff87e68fef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff87e69000 -     0x7fff87eb8fef  libTIFF.dylib ??? (???) <1E2593D1-A7F6-84C6-DF8F-0B46AE445926> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff87ecb000 -     0x7fff88153fef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88154000 -     0x7fff88159ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8815a000 -     0x7fff8816eff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8816f000 -     0x7fff88172ff7  com.apple.securityhi 4.0 (36638) <0CCEB8E0-8D7E-5046-F4E2-5F66D24B6600> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff88173000 -     0x7fff88198ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88272000 -     0x7fff88274fff  libRadiance.dylib ??? (???) <A9DB4D5D-4072-971B-DEF6-DDE645F415EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff88275000 -     0x7fff88352fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff88353000 -     0x7fff8839cff7  com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8839d000 -     0x7fff883c4ff7  libJPEG.dylib ??? (???) <46A413EA-4FD1-A050-2EF0-6279F3EAD581> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff88644000 -     0x7fff88d40ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff88d41000 -     0x7fff88d42fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff88d50000 -     0x7fff88deafff  com.apple.ApplicationServices.ATS 275.19 (???) <FBC907AF-C3EF-CAF1-3705-13DC91B29114> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff88deb000 -     0x7fff88e70ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff88e71000 -     0x7fff88e86ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff88e93000 -     0x7fff88e99ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff88f66000 -     0x7fff88f69fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,5, BootROM MBP55.00AC.B03, 2 processors, Intel Core 2 Duo, 2.26 GHz, 4 GB, SMC 1.47f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545032B9SA02, 298.09 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    Please help! xxx

    The Aperture 3.4 installer has a problem and may cause an incomplete install. You should remove your current installation and reinstall from your original installation media, then upgrade again, see this support article by Apple:
    Aperture 3.4: May quit unexpectedly on launch after updating
    Post back, if there are still problems after reinstalling.
    Regards
    Léonie

Maybe you are looking for

  • IPhone 6 Pixelated images on instagram, pinterest and the icons on the app store

    Hi!!! I have an iPhone 6, 64GB capacity. All the iOS updates are the latest ones. I'm getting pixelated images on instagram, pinterest and even the icons on the app store, I have tried to turn it of and off but it doesn't seems to work... any idea??.

  • Sp gl for employee advances

    friends, we want to create a spl gl indicator for employee advances, while creating we need to give one reconciliation and spl  gl account. my question is 1. how to treat employee, we dont have HR module, 2. what could be the reconciliation account.

  • Display session maxL command is hanging

    Hi All, I am using maxL editor in EAS console to execute the display session command.My requirement is to know the number of Active sessions in to a Essbase Application. I execute the following maxL command display session on database <APPLICATION_NA

  • How many Gb's for Vid's and Pic's?

    Hi guys, Does anyone knows how many GB's it takes per minute for a HD video on Iphone 4? Also,how many MB it takes for a perfectly clear taken picture? Thanks.

  • Error 402653144 - what is that?

    I upgraded to 6.4and updated software and then tried to upgrade iphone at Itunes request and now I have no iphone just this plastic thing with an Apple Icon and a line under it- I am so frustrated - got the error message - anyone else?