Observeration on QT 7.4.5.

Now that I using ver 7.4.5 I can play avi files in QT. Same files would not do so with previous version of last month.

What is your question and what URL are you using?

Similar Messages

  • Why do I get a continued msg that a script is not completing. It seems to be slowing my Mac: "Script: chrome://forecastfox/content/observers.js:1

    A pop-up window keeps appearing with the message that a script is not completing correctly - " "Script: chrome://forecastfox/content/observers.js:1" I'm given the choice to a) let it continue in the hopes it will complete or b) cancel. No matter which choice I make, the little window persists up in the corner of my screen and then sometimes brings itself to the front again, so I get to make the choice all over again. Most annoying also because I can't close the little pop-up...it hides itself in the top left and appears as a small blank there. I have the distinct impression that it's making my Mac run slower... and I would love to get rid of it. It's not related to Firefox 5...it was there before with the previous version, too...and is one of the reasons I upgraded. I don't want Chrome, by the way...so it's also annoying to see its name in the offending script-name. I took a screen shot but can't figure out how to attach it to this description. It happens every time I open Firefox...not immediately but after a while.

    Disable or uninstall the ForecastFox extension.
    https://support.mozilla.com/en-US/kb/Uninstalling%20add-ons#w_how-to-uninstall-extensions-and-themes

  • Accessing Multiple Observers in an Observable class

    Hi! I have 2 Observers added via:
    this.addObserver() on my 1 Observable class.
    The 1st Observer works fine when i call:
    setChanged();
    notifyObservers("SomeArgument");However, when i pass a different argument to the 2nd Observer that i added, it still uses the first Observer...
    So, I am wondering what i am doing wrong - how can i access the 2nd Observer in this class?
    I hope that I am being clear enough on this!
    Regards

    wizzkidd wrote:
    I think what i am trying to get across is lost in translation!
    ok, here goes
    The Observable class has calls such as:
    setChanged();
    notifyObservers("AnEvent");     
    // Something else happens...
    setChanged();
    notifyObservers("AnotherEvent");     
    Normally this is done inside one of the methods of the Observable. I have to assume you are doing this since notifyObservers() is protected.
    Each of these notifications will go to ALL registered Observers. You cannot pick and choose since this would break the decoupling in the Observables between the Observables and the Observers.
    >
    Now, i want to assign Observers to this Observable class via:
    addObserver(objectObserver1);
    addObserver(objectObserver2);
    Yep, standard. So ALL notifications will go to both objectObserver1 and objectObserver2 .
    >
    So, how can I indicate that the observer i want to use is objectObserver2?This does not make sense. objectObserver2 is the observer.
    >
    Now after writing this - i see what you are saying when you state:
    The Observable knows nothing about the Observers but the Observers know about the Observable.but by supplying an argument e.g. notifyObservers("AnotherEvent"); i am breaking that rule. Correct?
    Is this the intended use of the argument in notifyObservers() or is there another way of determining which Observer to use that i am missing?There is not concept of "which Observer to use" . Any notification of 'events' will go to ALL registered observers by invoking thevoid update(Observable o,
                Object arg) method on the Observer.
    If some Observers don't wish to process a particular event then they don't have to. In the update() method of my Observers I have a short set of 'if' statements so as to select select which notification events they need to process.
    Edited by: sabre150 on Oct 22, 2008 10:44 AM

  • Spry static gallery combined with Spry Effect Observers

    I have set up a Spry static gallery using the
    demo
    here.
    I would like to add a cross fade for the main image using the
    Spry Effect Observers shown at the bottom of
    this
    demo page.
    I like the thumbnail grow effect used in the first demo and
    like to add a cross fade for the main image when the thumbnail is
    clicked. Have someone built such an example or can someone show me
    how it is done? Typically I have 4 thumbnails/images per product
    page.

    Mr. Andersson wrote:
    > I thnik I know what's going on now...
    >
    > I tried Fireworks and it has a built in Slideshow
    creator. The setting that
    > dont use Flash uses Spry and looks like the Spry gallery
    demo. The settings
    > using Flash have cross fading images.
    >
    > From this I got the idea that Adobe maybe dont want us
    to cross fade with
    > Spry. They want to push Flash instead. It could explain
    the total silence from
    > Adobe in various threads where this question is asked.
    This is a user to user forum, Adobe will never reply to you.
    Also, Spry is still a pre-release framework, its nowhere near
    finished.
    Its the kind of framework where you take whats available and
    make
    something out of it, its very flexible if you know
    javascript.
    I am learning javascript just to understand the little bits
    that I am
    experimenting with, I think its the only way forward if you
    intend to do
    something outside the box.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Multiple Datasets w/ Observers

    I have a spry-ajax paging system setup so users can goto the
    next 10 records, or back 10 records, etc.
    it uses the onDataChanged observer to do
    contentObserver.onDataChanged = function(dataSet, data){
    Do some stuff
    This works fine when there is one dataSet being used, but now
    we need to add paging for multiple datasets, and we could have 5 or
    6 on a page.
    Normally, I would just do this:
    contentObserver.onDataChanged = function(dataSet, data,
    dataSetNumber){
    But I'm new to observers, and my understanding is it doesn't
    work that way. But there must be a way to know inside my function
    what dataset is being returned.
    So has anyone every done spry paging with multiple datasets
    and could shed some light on this?

    Try to create a general function like this:
    myDataChanged = function(dataSet, data, datasetnumber){
    Do some stuff
    and then call this function from within different observers:
    ds1.addObserver({onDataChanged:function(ds, data){return
    myDataChanged(ds, data, 1)}});
    ds2.addObserver({onDataChanged:function(ds, data){return
    myDataChanged(ds, data, 2)}});
    ds3.addObserver({onDataChanged:function(ds, data){return
    myDataChanged(ds, data, 3)}});
    If this doesn't help you, please describe us the real use
    case when you need multiple pagination.
    Thanks,
    Diana

  • What is the difference observerables /actions/events ?

    I dont know if this is the right place to ask this but what is the difference between these three things. I understand the basics of actions and actionlisteners but what is the differences between these three objects? It seems like you could use any one of the three combinations to get the job done so what is the difference and what should be used when?
    Observer with Observables
    Action with ActionListener
    Event with EventListener
    Can some one explain this. I am sure its been asked before but I spent all day searching and still dont understand the difference.
    Thanks

    Observer & observerables are derived from the classical solutions for Action/event handlers in the software paradigm. There's nothing wrong that to manage a UseCase trigger, you use the Observer & observerables patterns inherently.

  • IMAPConnection was deallocated while key value observers were still reg....

    Every so often my IMAP connect hangs to the point I have to Force Quit the application to get it back. It appears to be hanging on
    *Saving Draft*
    STOPPING: Opening "ClickMarkets"...
    *Sending message*
    Archiving copy to mailbox "Sent Messages"
    I looked in the Console and found several messages of the form:
    12/24/09 11:35:43 PM Mail[138] An instance 0x128899ee0 of class IMAPConnection was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x117664760> (
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    Followed ultimately by the last entry which was an exception:
    12/25/09 11:06:59 PM Mail[138] An exception was thrown 'Cannot remove an observer <IMAPConnectionPool 0x1005b1080> for the key path "isDisconnected" from <IMAPConnection 0x103c476f0> because it is not registered as an observer.' during invocation of -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]. Stack trace:
    0 CoreFoundation 0x00007fff82685444 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff85d330f3 objcexceptionthrow + 45
    2 CoreFoundation 0x00007fff82685267 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff826851f4 +[NSException raise:format:] + 148
    4 Foundation 0x00007fff84d28ede -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 597
    5 Foundation 0x00007fff84d28c2b -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 135
    6 Message 0x00007fff82e41b90 -[IMAPConnectionPool _setConnection:forMailbox:clear:inDictionary:] + 1181
    7 Message 0x00007fff82f1dd24 -[IMAPConnectionPool _suspendGatewayOfConnection:mailbox:forMailbox:resumingGateway:] + 499
    8 Message 0x00007fff82e64b32 -[IMAPConnectionPool yieldGateway:] + 247
    9 Message 0x00007fff82e64106 -[IMAPGateway yield] + 54
    10 Message 0x00007fff82e48f76 -[IMAPMailboxSyncEngine _goWithMessages:] + 1433
    11 CoreFoundation 0x00007fff8265b0dc _invoking__ + 140
    12 CoreFoundation 0x00007fff8265afad -[NSInvocation invoke] + 141
    13 Message 0x00007fff82dff3f1 -[MonitoredInvocation invoke] + 214
    14 Message 0x00007fff82de6888 -[ThrowingInvocationOperation main] + 31
    15 Message 0x00007fff82de61c8 -[_MFInvocationOperation main] + 275
    16 Foundation 0x00007fff84d4206d -[__NSOperationInternal start] + 681
    17 Foundation 0x00007fff84d41d23 ___startOperations_block_invoke2 + 99
    18 libSystem.B.dylib 0x00007fff86df9ce8 dispatch_call_block_andrelease + 15
    19 libSystem.B.dylib 0x00007fff86dd8279 dispatch_workerthread2 + 231
    20 libSystem.B.dylib 0x00007fff86dd7bb8 pthreadwqthread + 353
    21 libSystem.B.dylib 0x00007fff86dd7a55 start_wqthread + 13
    Any clues on what might be triggering this issue to arise and how I can resolve it?
    Thanks!

    Every so often my IMAP connect hangs to the point I have to Force Quit the application to get it back. It appears to be hanging on
    *Saving Draft*
    STOPPING: Opening "ClickMarkets"...
    *Sending message*
    Archiving copy to mailbox "Sent Messages"
    I looked in the Console and found several messages of the form:
    12/24/09 11:35:43 PM Mail[138] An instance 0x128899ee0 of class IMAPConnection was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x117664760> (
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    Followed ultimately by the last entry which was an exception:
    12/25/09 11:06:59 PM Mail[138] An exception was thrown 'Cannot remove an observer <IMAPConnectionPool 0x1005b1080> for the key path "isDisconnected" from <IMAPConnection 0x103c476f0> because it is not registered as an observer.' during invocation of -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]. Stack trace:
    0 CoreFoundation 0x00007fff82685444 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff85d330f3 objcexceptionthrow + 45
    2 CoreFoundation 0x00007fff82685267 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff826851f4 +[NSException raise:format:] + 148
    4 Foundation 0x00007fff84d28ede -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 597
    5 Foundation 0x00007fff84d28c2b -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 135
    6 Message 0x00007fff82e41b90 -[IMAPConnectionPool _setConnection:forMailbox:clear:inDictionary:] + 1181
    7 Message 0x00007fff82f1dd24 -[IMAPConnectionPool _suspendGatewayOfConnection:mailbox:forMailbox:resumingGateway:] + 499
    8 Message 0x00007fff82e64b32 -[IMAPConnectionPool yieldGateway:] + 247
    9 Message 0x00007fff82e64106 -[IMAPGateway yield] + 54
    10 Message 0x00007fff82e48f76 -[IMAPMailboxSyncEngine _goWithMessages:] + 1433
    11 CoreFoundation 0x00007fff8265b0dc _invoking__ + 140
    12 CoreFoundation 0x00007fff8265afad -[NSInvocation invoke] + 141
    13 Message 0x00007fff82dff3f1 -[MonitoredInvocation invoke] + 214
    14 Message 0x00007fff82de6888 -[ThrowingInvocationOperation main] + 31
    15 Message 0x00007fff82de61c8 -[_MFInvocationOperation main] + 275
    16 Foundation 0x00007fff84d4206d -[__NSOperationInternal start] + 681
    17 Foundation 0x00007fff84d41d23 ___startOperations_block_invoke2 + 99
    18 libSystem.B.dylib 0x00007fff86df9ce8 dispatch_call_block_andrelease + 15
    19 libSystem.B.dylib 0x00007fff86dd8279 dispatch_workerthread2 + 231
    20 libSystem.B.dylib 0x00007fff86dd7bb8 pthreadwqthread + 353
    21 libSystem.B.dylib 0x00007fff86dd7a55 start_wqthread + 13
    Any clues on what might be triggering this issue to arise and how I can resolve it?
    Thanks!

  • XP 32 FF 17.0.1 bug, chrome+ FF js error, mutation events should be mutation observers

    Recently updated FF to 17.01, now can't send emails with Thunderbird, in the error log are two warnings:
    Chrome://messenger/content/msgMail3PanelWndows.js
    Instead of Mutation events use Mutation Observers
    Chrome://messenger/content/about-support/gfx.js
    I tried Chrome but uninstalled it, because I wasn't content with it. I also unistalled and reinstalled FF 17.0.1, but Chrome still affects the system and causes a js error so that the sending of the email is stopped and FF stops working. The operator's server stops loading the page because of timeout.
    The bug also affects the IE 8, the error description is: IE cannot load this page, because of js error

    Recently updated FF to 17.01, now can't send emails with Thunderbird, in the error log are two warnings:
    Chrome://messenger/content/msgMail3PanelWndows.js
    Instead of Mutation events use Mutation Observers
    Chrome://messenger/content/about-support/gfx.js
    I tried Chrome but uninstalled it, because I wasn't content with it. I also unistalled and reinstalled FF 17.0.1, but Chrome still affects the system and causes a js error so that the sending of the email is stopped and FF stops working. The operator's server stops loading the page because of timeout.
    The bug also affects the IE 8, the error description is: IE cannot load this page, because of js error

  • How to Get the list of attached observers on a document?

    I have attached a Observer on a document as below:
                InterfacePtr<IActiveContext> iActiveContext(GetExecutionContextSession()->GetActiveContext(), UseDefaultIID());
                if(iActiveContext == nil)
                    break;
                else
                    IDocument *idocument= iActiveContext->GetContextDocument();
                    if(idocument == nil)
                        break;
                    UIDRef docRef(::GetUIDRef(reinterpret_cast<IPMUnknown*>(idocument)));
                    InterfacePtr<IObserver> docObserver(docRef, IID_ICSDTSELECTIONOBSERVER);
              if (docObserver != nil)
                        docObserver->AutoAttach();
    }}           } //else}

    Hi mfreitag,
    Actually, before I was using kBeforeCloseDocSignalResponderService but now I have modified my code to attach and detach Observer on receiving CSXS event from an HTML extension.
    Please see below code:
    void CSDTPStartupShutdownServiceImpl::AttachEventListener(const ICSXSPlugPlugEventHandler::CSXSEvent* const csxsEvent, void* const context)
    do
                InterfacePtr<IActiveContext> iActiveContext(GetExecutionContextSession()->GetActiveContext(), UseDefaultIID());
                if(iActiveContext == nil)
                    break;
                else
                    IDocument *idocument= iActiveContext->GetContextDocument();
                    if(idocument == nil)
                        break;
                    UIDRef docRef(::GetUIDRef(reinterpret_cast<IPMUnknown*>(idocument)));
                    InterfacePtr<IObserver> docObserver(docRef, IID_ICSDTSELECTIONOBSERVER);
                if (docObserver != nil)
                    docObserver->AutoAttach();
      }while(kFalse);
    } //AttachEventListener()
    void CSDTPStartupShutdownServiceImpl::DetachEventListener(const ICSXSPlugPlugEventHandler::CSXSEvent* const csxsEvent, void* const context)
    do
                InterfacePtr<IActiveContext> iActiveContext(GetExecutionContextSession()->GetActiveContext(), UseDefaultIID());
                if(iActiveContext == nil)
                    break;
                else
                    IDocument *idocument= iActiveContext->GetContextDocument();
                    if(idocument == nil)
                        break;
                    UIDRef docRef(::GetUIDRef(reinterpret_cast<IPMUnknown*>(idocument)));
    //Now I have the UIDRef of my ActiveDocument but the referecnce of Observer(docObserver) is already Out of scope although the Observer is still attached.
    //So how can I get the reference of the same Observer In this function as I can not make it Global.
                    if (docObserver != nil)       //  <----this is always nil
                    docObserver->AutoAttach();  // <---This code is not reachable since docObserver is nil
      }while(kFalse);
    } //DetachEventListener()

  • Attaching and Detaching Observers to a document, what is the  correct way?

    Hi,
    I came across below code snippet in many of the sample PLugins where Observer is being:
    Attached on the kAfterOpenDocSignalResponderService
    Detached on the on kBeforeCloseDocSignalResponderService
    Same DocRef is being used in both the cases but the Observer being referenced is new each time, so is it a correct way to do it? and Will it work?
    GTTxtEdtResponder::attachDetachStoryObserver(UIDRef storyUIDRef, bool16 bAttach)
      ErrorCode status = kFailure;
      do{
      // while we observe all stories (whether they are accessible or not), we only let accessible
      // stories affect the cache. See the observer implementation for this logic.
      InterfacePtr<IObserver> iGTTxtEdtObserver(storyUIDRef,IID_IGTTXTEDTSTORYOBSERVER);           //<--new reference created
      if (iGTTxtEdtObserver == nil){
      ASSERT_FAIL("GTTxtEdtResponder::attachDetachStoryObserver - no observer on story?");
      break;
      bAttach ? iGTTxtEdtObserver->AutoAttach() :iGTTxtEdtObserver->AutoDetach();
      status = kSuccess;
      }while (kFalse);
      return status;
    If you look closely, you can see that every time a detach is being called after attach, a new Observer reference is created.
    Is correct way to do it?

    Hello kapoor_aman27,
    with InterfacePtr you create a new reference to the observer not a new instance of the observer. The reference will be destroyed at the end of the function or code block. The instance of the observer will be destroyed if the reference Counter will be 0. So the instance of the observer is the same at attach and detach. The InterfacePtr (i.e. the reference to the observer) is temporary in each function.
    Markus

  • Rating Widget and Notifiers/Observers

    Hello,
    I am trying to figure out how to get a rating widget to update as the user clicks on spry:setrow images. I believe I need an observer and notifier but not sure what comes first. I have multiple image galleries and need to have rating rate the current image. The images are contained within an HTML Panel widget, but the rating widget is outside of said container/widget.
    I want to use this to set the current row (which will give me the unique id I use to store the rating in the DB):
         var current = DATASETNAME.getCurrentRow();
    This would work graet if I could get the rating widget to properly show in the HTML Panel, but I have failed at doing so.
    A set of links on the left side of the page sets the dataset, and clicking the thumbnail sets the current row (of course). DO I need an observer for the link to set the ds for the above mentioned var? And then set another for the current row so I can match the image's {name} value with the rating value stored in the DB?
    I think I am on the right path, but need a little direction.
    Thanx!

    This script should theoretically work...
    var allDataSets = [dsNavigation, dsFavBlogs, dsFavCompany, dsGalleryList, dsDefaultGallery, dsCottonClubMain, dsIDSarrieriMain, dsPrimaDonnaMain, dsSawrenMain, dsSonataMain, dsValisereMain ];
    var srImageRate;
    for(var i = 0; i < allDataSets.length; i++){
         allDataSets[i].addObserver({
               onCurrentRowChanged: function( ds, data ){
                   if( srImageRate ){
                        srImageRate.setState('initial');
                        srImageRate.destroy();
                   srImageRate = new Spry.Widget.Rating("imageRating");
    The allDataSets array should contain all the datasets you created. It will loop through them, and adding a observer to all of them, this observer will be called on onCurrentRowChanged.
    Once the observer is called, it will reset the Spry widget.

  • Observers And Specific Keys

    I need to watch whenever focus falls upon a text box with a
    class of "date". when the text box receives focus I need to watch
    for a specific keystroke - the letter "t" to be exact (regardless
    of case). When the user hits "t" I am going to post the date in the
    text box (This REALLY speeds up data entry). I've done this type of
    thing before, but it's been for the escape key or the enter key and
    using Prototype. This time around I want to use Spry and the t key
    - but I don't know how to tell Spry look for "t" and then do my
    function...

    Thank you for the hint!
    I'll read it right now, and try to summarize what I understand for others needing it.

  • Threads and Observers and Observables

    Hi, I have 1 class which extends Observable and implemnts Runnable, th thread is decreminting a value, when the value has reached 0 i have called this.notify() and setChanged. I also have another class which is an observer and implements the Observer interface and has the update metjod. I have written a main for this class to create an instance of my Observable and an instance of my observer. i have of course added the observer. The problem occurs when the notify and setchanged gets called; a java.lang.IllegalMonitorStateException: current thread not owner is thrown.
    Any ideas

    Why are you calling notify()?
    You only need to call notify if there is a Thread waiting on the object's monitor - ie, having previously called wait(). In either case the current Thread needs to hold the object's monitor - ie, the call is wrapped in a synchronized block.
    Perhaps you mean to call notifyObservers() instead?
    Hope this helps.

  • How can I remove Parallels from my Macbook completely?

    My MBP has been booting up very slowly, and I checked Console to see what might be causing it. I saw that a lot of the registered entries were related to Parallels, so I decided to unninstall it, since I also read that many people felt that their laptop was booting up faster after removing it.
    The problem is that, even after unninstalling it, the boot time is still very long! I checked Console again, and the problem is no longer Parallels components loading, but the failing of them loading. I see stuff like:
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    and I believe Parallels is slowing down the boot time even after it's been removed. I've already removed all of its components, I don't know what else to do!
    I've also deleted other apps that were on Login Items.
    Could you guys please give me tips on how I can improve the boot time?
    I'm posting below what I got from Console:
    4/24/14 18:45:42.000 bootlog[0]: BOOT_TIME 1398375942 0
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 kernel[0]: Longterm timer threshold: 1000 ms
    4/24/14 18:46:14.000 kernel[0]: PMAP: PCID enabled
    4/24/14 18:46:14.000 kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    4/24/14 18:46:14.000 kernel[0]: vm_page_bootstrap: 972582 free pages and 67802 wired pages
    4/24/14 18:46:14.000 kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    4/24/14 18:46:14.000 kernel[0]: zone leak detection enabled
    4/24/14 18:46:14.000 kernel[0]: "vm_compressor_mode" is 4
    4/24/14 18:46:14.000 kernel[0]: standard timeslicing quantum is 10000 us
    4/24/14 18:46:14.000 kernel[0]: standard background quantum is 2500 us
    4/24/14 18:46:14.000 kernel[0]: mig_table_max_displ = 74
    4/24/14 18:46:14.000 kernel[0]: TSC Deadline Timer supported and enabled
    4/24/14 18:46:14.000 kernel[0]: "name" not a kext
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Sandbox
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Quarantine
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/24/14 18:46:14.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/24/14 18:46:14.000 kernel[0]: The Regents of the University of California. All rights reserved.
    4/24/14 18:46:14.000 kernel[0]: MAC Framework successfully initialized
    4/24/14 18:46:14.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    4/24/14 18:46:14.000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    4/24/14 18:46:14.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    4/24/14 18:46:14.000 kernel[0]: ACPI: sleep states S3 S4 S5
    4/24/14 18:46:14.000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration begin ]
    4/24/14 18:46:14.000 kernel[0]: console relocated to 0xf80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    4/24/14 18:46:14.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    4/24/14 18:46:14.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    4/24/14 18:46:14.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    4/24/14 18:46:14.000 kernel[0]: BTCOEXIST off
    4/24/14 18:46:14.000 kernel[0]: BRCM tunables:
    4/24/14 18:46:14.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    4/24/14 18:46:14.000 kernel[0]: rooting via boot-uuid from /chosen: F2B1CE87-7935-307F-B2ED-E6DF49C1DE99
    4/24/14 18:46:14.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    4/24/14 18:46:14.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffeeac312; max speed s800.
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    4/24/14 18:46:14.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    4/24/14 18:46:14.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    4/24/14 18:46:14.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    4/24/14 18:46:14.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    4/24/14 18:46:14.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    4/24/14 18:46:14.000 kernel[0]: Waiting for DSMOS...
    4/24/14 18:46:14.000 kernel[0]: VM Swap Subsystem is ON
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** launchd[1] has started up. ***
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    4/24/14 18:45:59.937 com.apple.launchd[1]: (com.parallels.desktop.launchdaemon) Unknown key for boolean: HopefullyExitsFirst
    4/24/14 18:46:11.165 hidd[45]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    4/24/14 18:46:11.167 hidd[45]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    4/24/14 18:46:13.516 kdc[42]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    4/24/14 18:46:13.542 Parallels[80]: Unloading kernel extension prl_netbridge.kext
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc[42]) Exited with code: 1
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc) Throttling respawn: Will start in 1 seconds
    4/24/14 18:46:14.423 com.apple.SecurityServer[15]: Session 100000 created
    4/24/14 18:46:14.426 com.apple.usbmuxd[19]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    4/24/14 18:46:14.467 configd[56]: network changed.
    4/24/14 18:46:14.490 configd[56]: setting hostname to "MacBook-Pro-de-Luis-4.local"
    4/24/14 18:46:14.501 Parallels[95]: Unloading kernel extension prl_vnic.kext
    4/24/14 18:46:14.583 Parallels[105]: Unloading kernel extension prl_usb_connect.kext
    4/24/14 18:46:14.722 Parallels[114]: Unloading kernel extension prl_hid_hook.kext
    4/24/14 18:46:14.820 Parallels[123]: Unloading kernel extension prl_hypervisor.kext
    4/24/14 18:46:14.887 Parallels[132]: Loading kernel extension prl_usb_connect.kext
    4/24/14 18:46:15.219 kdc[137]: label: default
    4/24/14 18:46:15.219 kdc[137]:     dbname: od:/Local/Default
    4/24/14 18:46:15.219 kdc[137]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:15.219 kdc[137]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:15.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    4/24/14 18:46:15.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    4/24/14 18:46:17.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    4/24/14 18:46:23.506 stackshot[23]: Timed out waiting for IOKit to finish matching.
    4/24/14 18:46:27.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:28.630 com.apple.SecurityServer[15]: Entering service
    4/24/14 18:46:28.750 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:28.757 digest-service[72]: label: default
    4/24/14 18:46:28.757 digest-service[72]:     dbname: od:/Local/Default
    4/24/14 18:46:28.757 digest-service[72]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:28.757 digest-service[72]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:28.760 digest-service[72]: digest-request: uid=0
    4/24/14 18:46:28.762 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    4/24/14 18:46:28.771 awacsd[59]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    4/24/14 18:46:28.779 awacsd[59]: InnerStore CopyAllZones: no info in Dynamic Store
    4/24/14 18:46:28.812 digest-service[72]: digest-request: netr probe 0
    4/24/14 18:46:28.813 digest-service[72]: digest-request: init request
    4/24/14 18:46:28.823 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    4/24/14 18:46:28.826 digest-service[72]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:46:29.017 airportd[63]: airportdProcessDLILEvent: en1 attached (up)
    4/24/14 18:46:29.000 kernel[0]: createVirtIf(): ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: in func createVirtualInterface ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    4/24/14 18:46:29.000 kernel[0]: Created virtif 0xffffff801050d000 p2p0
    4/24/14 18:46:29.104 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    4/24/14 18:46:29.218 locationd[40]: Location icon should now be in state 'Inactive'
    4/24/14 18:46:29.864 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:30.011 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.012 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.344 kdc[137]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    4/24/14 18:46:31.348 systemkeychain[142]: done file: /var/run/systemkeychaincheck.done
    4/24/14 18:46:31.354 configd[56]: network changed: DNS*
    4/24/14 18:46:31.360 configd[56]: network changed: DNS*
    4/24/14 18:46:31.361 mDNSResponder[35]: D2D_IPC: Loaded
    4/24/14 18:46:31.361 mDNSResponder[35]: D2DInitialize succeeded
    4/24/14 18:46:31.366 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    4/24/14 18:46:31.367 mDNSResponder[35]: Adding registration domain 291933891.members.btmm.icloud.com.
    4/24/14 18:46:31.416 networkd[165]: networkd.165 built Aug 24 2013 22:08:46
    4/24/14 18:46:31.436 awacsd[59]: Configuring lazy AWACS client: 291933891.p04.members.btmm.icloud.com.
    4/24/14 18:46:31.450 awacsd[59]: KV HTTP 0
    4/24/14 18:46:31.475 kdc[137]: KDC started
    4/24/14 18:46:31.963 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:36.482 awacsd[59]: KV HTTP 0
    4/24/14 18:46:39.917 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: Previous Shutdown Cause: 5
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    4/24/14 18:46:42.933 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:44.644 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    4/24/14 18:46:45.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4800 ****
    4/24/14 18:46:45.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4800 ****
    4/24/14 18:46:46.549 awacsd[59]: KV HTTP 0
    4/24/14 18:46:46.850 com.apple.kextd[12]: kext com.protech.NoSleep  103019000 is in exception list, allowing to load
    4/24/14 18:46:46.874 com.apple.kextd[12]: kext com.Cycling74.driver.WondershareAudioDevice  105029000 is in exception list, allowing to load
    4/24/14 18:46:46.000 kernel[0]: init
    4/24/14 18:46:46.000 kernel[0]: probe
    4/24/14 18:46:46.000 kernel[0]: start
    4/24/14 18:46:46.000 kernel[0]: DSMOS has arrived
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4800
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: setting state: 1, for mode: 0 (ac-mode)
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: successfully started
    4/24/14 18:46:46.926 loginwindow[38]: Login Window Application Started
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    4/24/14 18:46:46.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6c80 -- 0x0000 -- 0x4800 ****
    4/24/14 18:46:47.004 WindowServer[168]: Server is starting up
    4/24/14 18:46:47.015 mds[34]: (Normal) FMW: FMW 0 0
    4/24/14 18:46:47.040 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext - not found/unable to create.
    4/24/14 18:46:47.046 Parallels[169]: Failed to load kernel extension prl_usb_connect.kext
    4/24/14 18:46:47.074 Parallels[171]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    4/24/14 18:46:47.171 Parallels[176]: Loading kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.000 kernel[0]: en4: promiscuous mode enable succeeded
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 released (1 references)
    4/24/14 18:46:47.196 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:47.197 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext - not found/unable to create.
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.213 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.216 WindowServer[168]: init_page_flip: page flip mode is on
    4/24/14 18:46:47.254 UserEventAgent[11]: assertion failed: 13C64: com.apple.telemetry + 17682 [FDCB4ECA-3C5D-394A-BAEF-F6555BEB4239]: 0xffffffffe0000001
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.272 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.277 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.280 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.283 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: Mode is safe
    4/24/14 18:46:47.287 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.288 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004004D60 MacBook-Pro-de-Luis-4.local. (Addr) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F90040051F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006960 MacBook-Pro-de-Luis-4.local. (AAAA) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006DF0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.292 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.319 WindowServer[168]: WSMachineUsesNewStyleMirroring: false
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.325 WindowServer[168]: CGXPerformInitialDisplayConfiguration
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x042731c0: Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x000048b3, unit 0, caps QEX|MIPMAP, vram 451 MB
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    4/24/14 18:46:47.410 WindowServer[168]: GLCompositor enabled for tile size [256 x 256]
    4/24/14 18:46:47.410 WindowServer[168]: CGXGLInitMipMap: mip map mode is on
    4/24/14 18:46:47.430 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:47.437 sudo[199]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    4/24/14 18:46:47.441 Parallels[210]: Loading kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.465 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext - not found/unable to create.
    4/24/14 18:46:47.469 Parallels[216]: Failed to load kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.652 Parallels[218]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.880 Parallels[222]: Loading kernel extension prl_netbridge.kext
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext - not found/unable to create.
    4/24/14 18:46:47.913 Parallels[226]: Failed to load kernel extension prl_netbridge.kext
    4/24/14 18:46:48.049 Parallels[228]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.120 Parallels[232]: Loading kernel extension prl_vnic.kext
    4/24/14 18:46:48.282 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext - not found/unable to create.
    4/24/14 18:46:48.286 Parallels[236]: Failed to load kernel extension prl_vnic.kext
    4/24/14 18:46:48.595 Parallels[238]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.782 Parallels[241]: Trying to load kernel extensions, exit status: 5
    4/24/14 18:46:49.017 Parallels[244]: Starting Parallels networking...
    4/24/14 18:46:49.063 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.104 launchctl[246]: com.apple.findmymacmessenger: Already loaded
    4/24/14 18:46:49.145 com.apple.SecurityServer[15]: Session 100004 created
    4/24/14 18:46:49.200 loginwindow[38]: Setting the initial value of the magsave brightness level 1
    4/24/14 18:46:49.244 loginwindow[38]: Login Window Started Security Agent
    4/24/14 18:46:49.262 UserEventAgent[249]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:49.322 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:49.367 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.370 SecurityAgent[255]: This is the first run
    4/24/14 18:46:49.371 SecurityAgent[255]: MacBuddy was run = 0
    4/24/14 18:46:49.385 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.406 WindowServer[168]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fff4be1aec0) - enabling OpenGL
    4/24/14 18:46:49.411 SecurityAgent[255]: User info context values set for luisfernandolins
    4/24/14 18:46:49.987 loginwindow[38]: Login Window - Returned from Security Agent
    4/24/14 18:46:50.015 loginwindow[38]: USER_PROCESS: 38 console
    4/24/14 18:46:50.000 kernel[0]: AppleKeyStore:Sending lock change 0
    4/24/14 18:46:50.941 com.apple.launchd.peruser.501[261]: Background: Aqua: Registering new GUI session.
    4/24/14 18:46:50.945 launchctl[264]: launchctl: Dubious file. Not of type .plist (skipping): /Users/luisfernandolins/Library/LaunchAgents/com.zeobit.MacKeeper.Helper
    4/24/14 18:46:50.961 com.apple.launchd.peruser.501[261]: (com.spotify.webhelper) Unknown key: SpotifyPath
    4/24/14 18:46:50.962 com.apple.launchd.peruser.501[261]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    4/24/14 18:46:50.963 com.apple.launchd.peruser.501[261]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    4/24/14 18:46:50.966 launchctl[264]: com.apple.pluginkit.pkd: Already loaded
    4/24/14 18:46:50.966 launchctl[264]: com.apple.sbd: Already loaded
    4/24/14 18:46:50.981 distnoted[266]: # distnote server agent  absolute time: 70.704574643   civil time: Thu Apr 24 18:46:50 2014   pid: 266 uid: 501  root: no
    4/24/14 18:46:51.641 UserEventAgent[265]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:51.000 kernel[0]: directed SSID scan fail
    4/24/14 18:46:52.153 SystemStarter[190]: StartOuc (198) did not complete successfully
    4/24/14 18:46:52.154 SystemStarter[190]: The following StartupItems failed to start properly:
    4/24/14 18:46:52.154 SystemStarter[190]: /Library/StartupItems/StartOuc
    4/24/14 18:46:52.154 SystemStarter[190]:  - execution of Startup script failed
    4/24/14 18:46:52.155 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:52.294 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:53.414 prl_net_start[247]: Failed to configure Parallels Adapter 0 for network Shared
    4/24/14 18:46:53.420 prl_net_start[247]: Failed to configure Parallels Adapter 1 for network Host-Only
    4/24/14 18:46:53.580 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:46:53.602 Parallels[309]: Parallels networking sucessfully started
    4/24/14 18:46:53.607 sharingd[297]: Starting Up...
    4/24/14 18:46:53.624 prl_naptd[307]: Starting Parallels Network Daemon
    4/24/14 18:46:53.628 Parallels[311]: Restarting CiscoVPN
    4/24/14 18:46:53.717 SystemStarter[315]: Unknown service: CiscoVPN
    4/24/14 18:46:53.728 Parallels[318]: Starting Parallels Dispatcher Service
    4/24/14 18:46:54.048 Parallels[325]: Parallels Dispatcher Service sucessfully started
    4/24/14 18:46:54.074 prl_naptd[307]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    4/24/14 18:46:54.076 prl_naptd[307]: Failed to start: error 718; Parallels Network Daemon will restart in one minute or after receiving of some signal.
    4/24/14 18:46:54.134 xpcproxy[328]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:54.145 com.apple.SecurityServer[15]: Session 100005 created
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.207 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    4/24/14 18:46:54.313 com.apple.IconServicesAgent[333]: IconServicesAgent launched.
    4/24/14 18:46:54.544 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:54.958 xpcproxy[336]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:55.025 com.apple.SecurityServer[15]: Session 100008 created
    4/24/14 18:46:55.390 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.86 seconds (server forcibly re-enabled them after 1.01 seconds)
    4/24/14 18:46:55.758 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58bf30 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    4/24/14 18:46:55.784 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda585c90 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    4/24/14 18:46:55.785 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58b4f0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    4/24/14 18:46:56.032 coreaudiod[282]: 2014-04-24 06:46:56.031416 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    4/24/14 18:46:57.095 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:57.895 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.80 seconds (server forcibly re-enabled them after 1.00 seconds)
    4/24/14 18:46:57.939 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:57.940 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:58.034 accountsd[347]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    4/24/14 18:46:58.146 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252e0e370 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.000 kernel[0]: MacAuthEvent en1   Auth result for: a4:b1:e9:79:78:17  MAC AUTH succeeded
    4/24/14 18:46:58.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    4/24/14 18:46:58.000 kernel[0]: AirPort: Link Up on en1
    4/24/14 18:46:58.000 kernel[0]: en1: BSSID changed to a4:b1:e9:79:78:17
    4/24/14 18:46:58.000 kernel[0]: AirPort: RSN handshake complete on en1
    4/24/14 18:46:58.491 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252c1da50 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.492 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1047286319, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c202a0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:58.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:58.707 com.apple.SecurityServer[15]: Session 100010 created
    4/24/14 18:46:59.734 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3d840 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.817 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e850 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.818 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1647185353, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c1a500 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:59.898 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e050 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f08480 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=291933891, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252f07ad0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3) for weird reason: 2
    4/24/14 18:47:02.667 prl_naptd[370]: Starting Parallels Network Daemon
    4/24/14 18:47:02.668 com.apple.launchd.peruser.501[261]: (com.apple.iTunesHelper.30304[383]) Spawned and waiting for the debugger to attach before continuing...
    4/24/14 18:47:02.688 SocialPushAgent[359]: ApplePushService: APSConnection being used without a delegate queue
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    4/24/14 18:47:04.495 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:47:04.500 configd[56]: network changed: DNS* Proxy
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'LFLINS' making interface primary (protected network)
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    4/24/14 18:47:04.511 UserEventAgent[11]: Captive: en1: Probing 'LFLINS'
    4/24/14 18:47:04.515 configd[56]: network changed: v4(en1!:192.168.1.72) DNS+ Proxy+ SMB
    4/24/14 18:47:05.355 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:05.390 configd[56]: setting hostname to "mbp-de-luis-4.lan"
    4/24/14 18:47:05.414 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    4/24/14 18:47:08.733 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:08.747 com.apple.launchd.peruser.501[261]: (com.apple.mrt.uiagent[362]) Exited with code: 255
    4/24/14 18:47:08.780 ntpd[186]: proto: precision = 1.000 usec
    4/24/14 18:47:08.974 secd[342]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:08.975 secd[342]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:09.065 airportd[63]: _doAutoJoin: Already associated to “LFLINS”. Bailing on auto-join.
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.375 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:10.920 REUpdater[372]: VERSION is 141
    4/24/14 18:47:12.143 AirPlayUIAgent[330]: 2014-04-24 06:47:12.143216 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:12.962 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:15.033 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.033 secd[342]:  securityd_xpc_dictionary_handler WiFiKeychainProx[358] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.060 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:15.275 AirPlayUIAgent[330]: 2014-04-24 06:47:15.275080 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:17.030 syncdefaultsd[321]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    4/24/14 18:47:17.268 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:17.268 digest-service[72]: digest-request: init request
    4/24/14 18:47:17.275 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:17.400 com.apple.NotesMigratorService[398]: Joined Aqua audit session
    4/24/14 18:47:17.418 racoon[401]: accepted connection on vpn control socket.
    4/24/14 18:47:17.835 com.apple.internetaccounts[336]: An instance 0x7fc03bfd4940 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bfd5680> (
    <NSKeyValueObservance 0x7fc03bfd57f0: Observer: 0x7fc03bfc98d0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:17.844 com.apple.internetaccounts[336]: An instance 0x7fc03bd87e60 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bd87f80> (
    <NSKeyValueObservance 0x7fc03bd87f10: Observer: 0x7fc03bd88c30, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.226 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:18.227 digest-service[72]: digest-request: init request
    4/24/14 18:47:18.229 com.apple.internetaccounts[336]: An instance 0x7fc03e00f500 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03e00e210> (
    <NSKeyValueObservance 0x7fc03e000190: Observer: 0x7fc03e003a50, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.234 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:18.245 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:18.570 REUpdater[372]: REUpdate : Did not download since you have the version equal or later than that on the server
    4/24/14 18:47:20.234 com.apple.dock.extra[396]: iPhotoDockTilePlugin: Unable to get dock badge information: connection timeout: did not receive reply
    4/24/14 18:47:21.886 AllMyMusicAgent[369]: SARAgent newAgent
    4/24/14 18:47:22.544 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:23.589 sandboxd[384]: ([367]) assistantd(367) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    4/24/14 18:47:26.529 AddressBookManager[382]: Validate metadata timed out, cancelling
    4/24/14 18:47:26.556 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: ERROR: __CFURLCache:CreateTablesAndIndexes version create - table cfurl_cache_schema_version already exists. ErrCode: 1.
    4/24/14 18:47:26.557 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: __CFURLCache:RecreateEmptyPersistentStoreOnDiskAndOpen: create tables and index failed.
    4/24/14 18:47:27.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.909 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:47:29.758 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:30.760 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.761 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.887 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.762 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.918 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:33.975 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:34.980 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:36.041 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:37.113 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:38.169 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:39.238 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.238 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.946 AddressBookSourceSync[380]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x7fa5eb81cb60 {NSUnderlyingError=0x7fa5e9651cb0 "The request timed out.", NSErrorFailingURLStringKey=https://luisfernandolins%[email protected]/1047286319/principal/[email protected]/1047286319/principal/, NSErrorFailingURLKey=https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/, NSLocalizedDescription=The request timed out.}
    4/24/14 18:47:40.011 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] : had error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))
    4/24/14 18:47:40.013 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.013 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.017 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] :

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Hi all...  Just upgraded from OSX 10.6.8 to Mavricks, my Macbook Pro boots really slowly, and closes slowly.  I'd really appreciate help!

    I just installed Mavricks over Snow Lepard, and my boot speed is really slow and so is the quit time.  From boot to ability to use apps. is slightly greater than 1 minute.  Once the desk top appears, the icons in the dock and all aps are not active for at least 25-30 seconds.  I would really appreciate any advice anyone more knowledgeable that I can offer.  I have attached my system boot log from BOOT_TIME to 1 minute past the time on the clock when I logged in. (I apologize in advance for the length of the log, but hopefully it will suply the needed clues):
    Machine characteristics:
    MacBook Pro                                       
    15-inch, Mid 2009
    OSX 10.9
    3.06 GHz Intel core 2 Duo
    8GB 1067 MHz DDR3
    NVIDIA GeForce 9400M 256 MB
    L2 Cache:6 MB
    Bus Speed: 1.07 GHz
    Boot ROM Version: MBP53.00AC.B03
    BOOT_LOG
    Nov 26 21:49:43 localhost bootlog[0]: BOOT_TIME 1385520583 0
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.appstore" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
                Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.authd" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.bookstore" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.eventmonitor" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.install" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.iokit.power" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.mail" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.MessageTracer" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.performance" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:01 localhost syslogd[19]: Configuration Notice:
                ASL Module "com.apple.securityd" claims selected messages.
                Those messages may not appear in standard system log files or in the ASL database.
    Nov 26 21:50:04 --- last message repeated 6 times ---
    Nov 26 21:50:01 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Nov 26 21:50:01 localhost kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Nov 26 21:50:01 localhost kernel[0]: vm_page_bootstrap: 1957638 free pages and 57594 wired pages
    Nov 26 21:50:01 localhost kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    Nov 26 21:50:01 localhost kernel[0]: zone leak detection enabled
    Nov 26 21:50:01 localhost kernel[0]: "vm_compressor_mode" is 4
    Nov 26 21:50:01 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Nov 26 21:50:01 localhost kernel[0]: standard background quantum is 2500 us
    Nov 26 21:50:01 localhost kernel[0]: mig_table_max_displ = 74
    Nov 26 21:50:01 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Nov 26 21:50:01 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Nov 26 21:50:01 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Nov 26 21:50:01 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Nov 26 21:50:01 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Nov 26 21:50:01 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Nov 26 21:50:01 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Nov 26 21:50:01 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Nov 26 21:50:01 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Nov 26 21:50:01 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Nov 26 21:50:01 localhost kernel[0]: MAC Framework successfully initialized
    Nov 26 21:50:01 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Nov 26 21:50:01 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Nov 26 21:50:01 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Nov 26 21:50:01 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Nov 26 21:50:01 localhost kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Nov 26 21:50:01 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete
    Nov 26 21:50:01 localhost kernel[0]: [ PCI configuration begin ]
    Nov 26 21:50:01 localhost kernel[0]: console relocated to 0xf80010000
    Nov 26 21:50:01 localhost kernel[0]: [ PCI configuration end, bridges 6, devices 19 ]
    Nov 26 21:50:01 localhost kernel[0]: NVEthernet::start - Built Sep 19 2013 22:20:06
    Nov 26 21:50:01 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 64b9e8fffeb7a402; max speed s800.
    Nov 26 21:50:01 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    Nov 26 21:50:01 localhost kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    Nov 26 21:50:01 localhost kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    Nov 26 21:50:01 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Nov 26 21:50:01 localhost kernel[0]: rooting via boot-uuid from /chosen: FE938F11-7B34-3E73-9EE2-51E88F19B800
    Nov 26 21:50:01 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Nov 26 21:50:01 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Nov 26 21:50:01 localhost kernel[0]: BTCOEXIST off
    Nov 26 21:50:01 localhost kernel[0]: BRCM tunables:
    Nov 26 21:50:01 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Nov 26 21:50:01 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST9500420ASG Media/IOGUIDPartitionScheme/Untitled@2
    Nov 26 21:50:01 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Nov 26 21:50:01 localhost kernel[0]: hfs: mounted Macintosh HD on device root_device
    Nov 26 21:50:01 localhost kernel[0]: VM Swap Subsystem is ON
    Nov 26 21:50:01 localhost kernel[0]: Waiting for DSMOS...
    Nov 26 21:49:45 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Nov 26 21:49:45 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Nov 26 21:49:55 localhost com.apple.SecurityServer[14]: Session 100000 created
    Nov 26 21:49:59 localhost distnoted[21]: # distnote server daemon  absolute time: 17.216507128   civil time: Tue Nov 26 21:49:59 2013   pid: 21 uid: 0  root: yes
    Nov 26 21:50:00 localhost hidd[49]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Nov 26 21:50:01 localhost hidd[49]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Nov 26 21:50:01 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Nov 26 21:50:01 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Nov 26 21:50:05 localhost com.apple.usbmuxd[26]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    Nov 26 21:50:05 localhost kernel[0]: init
    Nov 26 21:50:05 localhost kernel[0]: probe
    Nov 26 21:50:05 localhost kernel[0]: start
    Nov 26 21:50:05 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    Nov 26 21:50:05 localhost kernel[0]: NVDAStartup: Official
    Nov 26 21:50:05 localhost kernel[0]: NVDANV50HAL loaded and registered
    Nov 26 21:50:05 localhost kernel[0]: NVDAStartup: Official
    Nov 26 21:50:05 localhost kernel[0]: NVDANV50HAL loaded and registered
    Nov 26 21:50:05 localhost kernel[0]: AGC: 3.4.12, HW version=1.8.8, flags:0, features:4
    Nov 26 21:50:05 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Nov 26 21:50:05 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8213 FirmwareVersion - 0x0207
    Nov 26 21:50:05 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6c00 ****
    Nov 26 21:50:05 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6c00 ****
    Nov 26 21:50:05 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6c00
    Nov 26 21:50:05 localhost kernel[0]: Previous Shutdown Cause: -128
    Nov 26 21:50:05 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Nov 26 21:50:05 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Nov 26 21:50:05 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x7040 -- 0xe000 -- 0x6c00 ****
    Nov 26 21:50:06 localhost kernel[0]: 00000000  00000020 NVEthernet::setLinkStatus - not Active
    Nov 26 21:50:06 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Nov 26 21:50:06 localhost kernel[0]: DSMOS has arrived
    Nov 26 21:50:07 localhost configd[18]: dhcp_arp_router: en1 SSID unavailable
    Nov 26 21:50:07 localhost configd[18]: network changed.
    Nov 26 21:50:07 MacBookPro-2.local configd[18]: setting hostname to "MacBookPro-2.local"
    Nov 26 21:50:07 MacBookPro-2 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Nov 26 21:50:07 MacBookPro-2.local mds[40]: (Normal) FMW: FMW 0 0
    Nov 26 21:50:07 MacBookPro-2.local mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Nov 26 21:50:07 --- last message repeated 2 times ---
    Nov 26 21:50:07 MacBookPro-2.local blued[59]: hostControllerOnline - Number of Paired devices = 2, List of Paired devices = (
                    "00-1d-d8-3a-cc-60",
                    "00-26-08-ab-c6-5f"
    Nov 26 21:50:08 MacBookPro-2.local com.apple.SecurityServer[14]: Entering service
    Nov 26 21:50:08 MacBookPro-2.local loginwindow[44]: Login Window Application Started
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: label: default
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]:       dbname: od:/Local/Default
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]:       mkey_file: /var/db/krb5kdc/m-key
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]:       acl_file: /var/db/krb5kdc/kadmind.acl
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: uid=0
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: netr probe 0
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: init request
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: init return domain: BUILTIN server: MACBOOKPRO-2 indomain was: <NULL>
    Nov 26 21:50:08 MacBookPro-2.local UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Nov 26 21:50:08 MacBookPro-2.local UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Nov 26 21:50:08 MacBookPro-2.local awacsd[61]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Nov 26 21:50:08 MacBookPro-2.local awacsd[61]: InnerStore CopyAllZones: no info in Dynamic Store
    Nov 26 21:50:08 MacBookPro-2.local WindowServer[85]: Server is starting up
    Nov 26 21:50:08 MacBookPro-2.local blued[59]: link key found for device: 00-1d-d8-3a-cc-60
    Nov 26 21:50:08 MacBookPro-2.local configd[18]: network changed.
    Nov 26 21:50:08 MacBookPro-2.local configd[18]: network changed: DNS*
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]: D2D_IPC: Loaded
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]: D2DInitialize succeeded
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]:   4: Listening for incoming Unix Domain Socket client requests
    Nov 26 21:50:08 MacBookPro-2.local networkd[105]: networkd.105 built Aug 24 2013 22:08:46
    Nov 26 21:50:08 MacBookPro-2.local aosnotifyd[64]: aosnotifyd has been launched
    Nov 26 21:50:08 MacBookPro-2.local systemkeychain[88]: done file: /var/run/systemkeychaincheck.done
    Nov 26 21:50:08 MacBookPro-2.local airportd[65]: airportdProcessDLILEvent: en1 attached (up)
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: createVirtIf(): ifRole = 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: in func createVirtualInterface ifRole = 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: Created virtif 0xffffff8014825400 p2p0
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: nspace-handler-set-snapshot-time: 1385520610
    Nov 26 21:50:08 MacBookPro-2.local com.apple.mtmd[39]: Set snapshot time: 2013-11-26 21:50:10 -0500 (current time: 2013-11-26 21:50:08 -0500)
    Nov 26 21:50:08 MacBookPro-2.local locationd[46]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Nov 26 21:50:08 MacBookPro-2.local locationd[46]: NBB-Could not get UDID for stable refill timing, falling back on random
    Nov 26 21:50:09 MacBookPro-2.local locationd[46]: Location icon should now be in state 'Inactive'
    Nov 26 21:50:09 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:09 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312006960 MacBookPro-2.local. (Addr) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312006DF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312008960 MacBookPro-2.local. (AAAA) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312008DF0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:10 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:11 MacBookPro-2.local blued[59]: Save link key for device: 00-1d-d8-3a-cc-60
    Nov 26 21:50:11 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:11 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:12 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:12 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:13 MacBookPro-2.local apsd[63]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Nov 26 21:50:13 MacBookPro-2 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    Nov 26 21:50:13 MacBookPro-2.local mds[40]: (Normal) Volume: volume:0x7f932b028000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    Nov 26 21:50:13 MacBookPro-2.local mtmfs[38]: mount succeeded for /Volumes/MobileBackups
    Nov 26 21:50:13 MacBookPro-2.local mds[40]: (Normal) Volume: volume:0x7f932a8b2000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Nov 26 21:50:13 MacBookPro-2.local mds[40]: (Normal) Volume: volume:0x7f932a8b2000 ********** Created snapshot backup index
    Nov 26 21:50:13 MacBookPro-2.local fseventsd[50]: Logging disabled completely for device:1: /Volumes/Recovery HD
    Nov 26 21:50:14 MacBookPro-2 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    Nov 26 21:50:14 MacBookPro-2 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: Session 256 retained (2 references)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: Session 256 released (1 references)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: Session 256 retained (2 references)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: init_page_flip: page flip mode is on
    Nov 26 21:50:15 MacBookPro-2 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]: HP IO Monitor (126) did not complete successfully
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]: The following StartupItems failed to start properly:
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]: /Library/StartupItems/HP IO
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]:  - execution of Startup script failed
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 1 modes for display 0x00000000 [1, 0]
    Nov 26 21:50:15 --- last message repeated 1 time ---
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 36 modes for display 0x00000000 [30, 6]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 1 modes for display 0x00000000 [1, 0]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: mux_initialize: Mode is logout
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 36 modes for display 0x00000000 [30, 6]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 1 modes for display 0x00000000 [1, 0]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: WSMachineUsesNewStyleMirroring: false
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x04272900: GL mask 0x5; bounds (0, 0)[1440 x 900], 36 modes available
                Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 0, Rotation 0
                UUID 0x8a96a568c33550779a382c64e81094d2
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x003f003d: GL mask 0xa; bounds (0, 0)[0 x 0], 1 modes available
                off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
                UUID 0xffffffffffffffffffffffffffffffff
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: WSSetWindowTransform: Singular matrix
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x04272900: GL mask 0x5; bounds (0, 0)[1440 x 900], 36 modes available
                Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 0, Rotation 0
                UUID 0x8a96a568c33550779a382c64e81094d2
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x003f003d: GL mask 0xa; bounds (2464, 0)[1 x 1], 1 modes available
                off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
                UUID 0xffffffffffffffffffffffffffffffff
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: CGXPerformInitialDisplayConfiguration
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]:   Display 0x04272900: Unit 0; Alias(0, 0x5); Vendor 0x610 Model 0x9ca4 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]:   Display 0x003f003d: Unit 1; Alias(1, 0xa); Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: CGXMuxBoot: Boot normal
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x00004cc3, unit 0, caps QEX|MIPMAP, vram 256 MB
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0202260c, GL mask 0x0000000c, accelerator 0x00003a2b, unit 2, caps QEX|MIPMAP, vram 512 MB
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0202260c, GL mask 0x0000000c, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor enabled for tile size [256 x 256]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: CGXGLInitMipMap: mip map mode is on
    Nov 26 21:50:15 MacBookPro-2.local loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Nov 26 21:50:16 MacBookPro-2.local WindowServer[85]: Display 0x04272900: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Nov 26 21:50:16 MacBookPro-2.local launchctl[138]: com.apple.findmymacmessenger: Already loaded
    Nov 26 21:50:16 MacBookPro-2.local loginwindow[44]: Setting the initial value of the magsave brightness level 1
    Nov 26 21:50:16 MacBookPro-2.local loginwindow[44]: Login Window Started Security Agent
    Nov 26 21:50:16 MacBookPro-2.local SecurityAgent[146]: This is the first run
    Nov 26 21:50:16 MacBookPro-2.local SecurityAgent[146]: MacBuddy was run = 0
    Nov 26 21:50:16 MacBookPro-2.local WindowServer[85]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fe75ac33640) - enabling OpenGL
    Nov 26 21:50:16 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100005 created
    Nov 26 21:50:16 MacBookPro-2.local UserEventAgent[140]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: MacAuthEvent en1   Auth result for: 00:1c:10:21:4e:2f  MAC AUTH succeeded
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: AirPort: Link Up on en1
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: en1: BSSID changed to 00:1c:10:21:4e:2f
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: AirPort: RSN handshake complete on en1
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Nov 26 21:50:17 MacBookPro-2.local WindowServer[85]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Nov 26 21:50:17 MacBookPro-2.local WindowServer[85]: Display 0x04272900: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Nov 26 21:50:19 --- last message repeated 1 time ---
    Nov 26 21:50:19 MacBookPro-2.local SecurityAgent[146]: User info context values set for RS
    Nov 26 21:50:19 MacBookPro-2.local SecurityAgent[146]: Login Window login proceeding
    Nov 26 21:50:19 MacBookPro-2.local configd[18]: network changed: DNS* Proxy
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'NetLink' making interface primary (protected network)
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: en1: Probing 'NetLink'
    Nov 26 21:50:19 MacBookPro-2.local configd[18]: network changed: v4(en1!:192.168.1.107) DNS+ Proxy+ SMB
    Nov 26 21:50:19 MacBookPro-2.local loginwindow[44]: Login Window - Returned from Security Agent
    Nov 26 21:50:19 MacBookPro-2.local loginwindow[44]: USER_PROCESS: 44 console
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Nov 26 21:50:19 MacBookPro-2.local airportd[65]: _doAutoJoin: Already associated to “NetLink”. Bailing on auto-join.
    Nov 26 21:50:19 MacBookPro-2 kernel[0]: AppleKeyStore:Sending lock change 0
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160]: Background: Aqua: Registering new GUI session.
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.cmfsyncagent): Ignored this key: UserName
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Nov 26 21:50:19 MacBookPro-2.local launchctl[162]: com.apple.pluginkit.pkd: Already loaded
    Nov 26 21:50:19 MacBookPro-2.local launchctl[162]: com.apple.sbd: Already loaded
    Nov 26 21:50:19 MacBookPro-2.local distnoted[164]: # distnote server agent  absolute time: 37.621698455   civil time: Tue Nov 26 21:50:19 2013   pid: 164 uid: 501  root: no
    Nov 26 21:50:20 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100007 created
    Nov 26 21:50:20 MacBookPro-2.local WindowServer[85]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Nov 26 21:50:20 MacBookPro-2.local SystemUIServer[172]: Cannot find executable for CFBundle 0x7feb32de2b80 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Nov 26 21:50:20 MacBookPro-2.local sharingd[182]: Starting Up...
    Nov 26 21:50:20 MacBookPro-2.local WindowServer[85]: Display 0x04272900: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Nov 26 21:50:20 MacBookPro-2.local SystemUIServer[172]: Cannot find executable for CFBundle 0x7feb32d53ce0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Nov 26 21:50:20 MacBookPro-2.local SystemUIServer[172]: Cannot find executable for CFBundle 0x7feb32d78760 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Nov 26 21:50:21 MacBookPro-2.local apsd[63]: Unrecognized leaf certificate
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.single-user-client[216]): assertion failed: 13A603: launchd + 102012 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0xd
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[217]): assertion failed: 13A603: launchd + 102012 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0xd
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[217]): Exited with code: 2
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist): Throttling respawn: Will start in 10 seconds
    Nov 26 21:50:21 MacBookPro-2.local apsd[63]: Unexpected connection from logged out uid 501
    Nov 26 21:50:21 MacBookPro-2 accountsd[227]: assertion failed: 13A603: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] ([email protected][215]): Exited with code: 2
    Nov 26 21:50:21 MacBookPro-2.local SystemUIServer[172]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 26 21:50:21 MacBookPro-2.local SystemUIServer[172]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 26 21:50:21 MacBookPro-2 xpcproxy[231]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    Nov 26 21:50:21 MacBookPro-2.local com.apple.IconServicesAgent[230]: IconServicesAgent launched.
    Nov 26 21:50:21 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100011 created
    Nov 26 21:50:22 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.mrt.uiagent[197]): Exited with code: 255
    Nov 26 21:50:22 MacBookPro-2 xpcproxy[238]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    Nov 26 21:50:23 MacBookPro-2.local awacsd[61]: Exiting
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Nov 26 21:50:23 MacBookPro-2.local UserEventAgent[163]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Nov 26 21:50:23 MacBookPro-2.local accountsd[227]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (A3E6B1AD-D8C7-47BB-92AD-3D6B58528D00) could not be found!
    Nov 26 21:50:23 MacBookPro-2.local accountsd[227]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    Nov 26 21:50:23 MacBookPro-2.local WiFiKeychainProxy[192]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Nov 26 21:50:23 MacBookPro-2.local WiFiKeychainProxy[192]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Nov 26 21:50:27 MacBookPro-2.local com.apple.time[163]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Nov 26 21:50:30 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100014 created
    Nov 26 21:50:31 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[251]): assertion failed: 13A603: launchd + 102012 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0xd
    Nov 26 21:50:31 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[251]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Nov 26 21:50:31 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[251]): Job failed to exec(3) for weird reason: 2
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/lck~System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/.fl947E1BDB, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/lck~login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/.fl62323D2F, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:38 MacBookPro-2.local LKDCHelper[255]: Starting (uid=501)
    Nov 26 21:50:38 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9444, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 208.
    Nov 26 21:50:38 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9588, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 208.
    Nov 26 21:50:41 MacBookPro-2.local gamed[226]: CKSoftwareMap: Registering with Daemon
    Nov 26 21:50:42 MacBookPro-2.local syncdefaultsd[222]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    Nov 26 21:50:43 MacBookPro-2.local parentalcontrolsd[256]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/lck~System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/.fl947E1BDB, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/lck~login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/.fl62323D2F, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:47 MacBookPro-2.local com.apple.NotesMigratorService[260]: Joined Aqua audit session
    Nov 26 21:50:47 MacBookPro-2 netsession_mac[216]: netsession_mac(216,0xb031d000) malloc: *** auto malloc[216]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Nov 26 21:50:47 MacBookPro-2.local com.apple.internetaccounts[238]: An instance 0x7f82c16e5760 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
                <NSKeyValueObservationInfo 0x7f82c16c8660> (
                <NSKeyValueObservance 0x7f82c16c8790: Observer: 0x7f82c16cf070, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8fa4b44b, Property: 0x7f82c16c8630>
    Nov 26 21:50:50 MacBookPro-2 netsession_mac[216]: netsession_mac(216,0xb039f000) malloc: *** auto malloc[216]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Nov 26 21:51:00 MacBookPro-2 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x6c00 ****
    Nov 26 21:51:01 MacBookPro-2 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Nov 26 21:51:02 MacBookPro-2 com.apple.launchd.peruser.501[160] (jp.co.canon.UFR2.BackGrounder[208]): Job appears to have crashed: Trace/BPT trap: 5
    Nov 26 21:51:02 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9444, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 267.
    Nov 26 21:51:02 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9588, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 267.
    Nov 26 21:51:03 MacBookPro-2 com.apple.launchd.peruser.501[160] (jp.co.canon.UFR2.BackGrounder[267]): Job appears to have crashed: Trace/BPT trap: 5
    Nov 26 21:51:03 MacBookPro-2 com.apple.launchd.peruser.501[160] (jp.co.canon.UFR2.BackGrounder): Throttling respawn: Will start in 10 seconds
    Nov 26 21:51:03 MacBookPro-2.local ReportCrash[247]: Saved crash report for UFR II BackGrounder[208] version ??? to /Users/RS/Library/Logs/DiagnosticReports/UFR II BackGrounder_2013-11-26-215103_MacBookPro-2.crash
    Nov 26 21:51:03 MacBookPro-2.local ReportCrash[247]: Saved crash report for UFR II BackGrounder[267] version ??? to /Users/RS/Library/Logs/DiagnosticReports/UFR II BackGrounder_2013-11-26-215103-1_MacBookPro-2.crash
    Thanks again... Happy upcoming Turkey Day!

    In the future please don't post so much information unless you are asked for it. Most of what you posted is useless.
    Here's what you can try:
    Try these in order:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and
         after the chime press and hold down the OPTION key until the boot manager screen appears.
         Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Lion/Mountain Lion, Mavericks: Reboot from the Recovery HD. Select Reinstall Lion/Mountain Lion, Mavericks from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

Maybe you are looking for

  • Black spaces in Acrobat, text after printing

    Hello, may I get help please - in some documents, there are black places in Adobe Acrobat Pro 9 where after pringting is a proper text. I checked for updates, there are none available. Also, in Adobe Reader, the text (or pictures) is visible as it is

  • Hi problem with Oracle 10g On windows 2003 SR1

    Hi,    I am installing NW2004S on windows 2003 SR1 (Std.Edition). After the installation of Oracle 10g I am getting the error "I*SQLPlus service" can't be started. Any help on this regard is greatly appreciated. Regards, Rao.M

  • I get no picture on my macbook pro

    I've tried restarting several times, with no success.  I can hear the programs, but can see nothing.  The screen is dark.  Any suggestions?  Thanks in advance..

  • Internal Order error in settlement profile

    Dear Experts I have created statistical internal orders for vehicles e.g u201CABC 1234u201D.It works fine but when I try to enter this order in settlement profile it says this order doesnu2019t exist. The system only reads the order number before the

  • Best data type to represent a file size

    Hi All! I have to create a table which holds details abou the files which process on a system and maintain the file name process, size of the file in byts, full path location the file is stores etc. My question is what would be the best data type for