Message 615

Dear Experts
I have an error Delivery item is not or only partially packed while doing Inbound delivery. I want to received goods partially when required. Whether it is possible in SAP.
But Item categories are picking different 1st  is customizing and 2nd is standard.?
Awaiting for kind reply.

Hi ,
Pls refer path Delivery Issue in PGI
Thanx....

Similar Messages

  • Please help with this bapi

    Hi Experts!
    I am trying to use 'BAPI_OUTB_DELIVERY_CONFIRM_DEC' for posting goods issue but could not succeed. I am getting the message 615 (Delivery item is not or only partially packed) when I test the same in SE37. However the same delivery, if I go to VL02n and issue post goods issue, it is succeeding. I think I am doing some mistake with the parameters to be passed to bapi. Please help me find the error as I am unable to find. I am stuck with this for pretty long time. Points assured for helpful answers.
    Thanks for your time.
    Krishen
    DATA: itab_headerdata TYPE STANDARD TABLE OF bapiobdlvhdrcon WITH HEADER LINE.
    DATA: itab_headercontrol TYPE STANDARD TABLE OF bapiobdlvhdrctrlcon WITH HEADER LINE.
    DATA: itab_itemdata TYPE STANDARD TABLE OF bapiobdlvitemcon WITH HEADER LINE.
    DATA: itab_itemcontrol TYPE STANDARD TABLE OF bapiobdlvitemctrlcon WITH HEADER LINE .
    DATA: itab_bapiret2 TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: itab1_bapiret2 TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: itab3_bapiret2 TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: deliv_numb TYPE bapiobdlvhdrcon-deliv_numb.
    Vbeln and posnr are coming from itab.
      SELECT SINGLE * FROM likp
        WHERE vbeln = itab-vbeln.
      SELECT SINGLE * FROM lips
      WHERE vbeln = itab-posnr.
      itab_headerdata-deliv_numb = likp-vbeln.
      itab_headercontrol-deliv_numb = likp-vbeln.
      itab_headercontrol-post_gi_flg = 'X'.
      CLEAR deliv_numb.
      deliv_numb = likp-vbeln.
      itab_itemdata-deliv_numb = likp-vbeln.
      itab_itemdata-deliv_item = lips-posnr.
      itab_itemdata-dlv_qty = lips-lfimg.
      itab_itemdata-sales_unit = lips-meins.
      itab_itemdata-fact_unit_nom = lips-umvkz.
      itab_itemdata-fact_unit_denom = lips-umvkn.
      itab_itemcontrol-deliv_numb = likp-vbeln.
      itab_itemcontrol-deliv_item = lips-posnr.
      itab_itemcontrol-chg_delqty = 'X'.
      CALL FUNCTION 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
        EXPORTING
          header_data                = itab_headerdata
          header_control             = itab_headercontrol
          delivery                   = deliv_numb
      TECHN_CONTROL              =
        TABLES
      HEADER_PARTNER             =
      HEADER_PARTNER_ADDR        =
      HEADER_DEADLINES           =
       item_data                  = itab_itemdata
       item_control               = itab_itemcontrol
      ITEM_SERIAL_NO             =
      SUPPLIER_CONS_DATA         =
      HANDLING_UNIT_HEADER       =
      HANDLING_UNIT_ITEM         =
      HANDLING_UNIT_SERNO        =
      EXTENSION1                 =
      EXTENSION2                 =
          return                = itab_bapiret2.
      TOKENREFERENCE             =
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait   = 'X'
        IMPORTING
          return = itab1_bapiret2.

    Hi Krishen
       Have done some modifications to your code. Highlighted below are the same. Please check if the same works for you.
    DATA: itab_headerdata TYPE STANDARD TABLE OF bapiobdlvhdrcon WITH HEADER LINE.
    DATA: itab_headercontrol TYPE STANDARD TABLE OF bapiobdlvhdrctrlcon WITH HEADER LINE.
    DATA: itab_itemdata TYPE STANDARD TABLE OF bapiobdlvitemcon WITH HEADER LINE.
    DATA: itab_itemcontrol TYPE STANDARD TABLE OF bapiobdlvitemctrlcon WITH HEADER LINE .
    DATA: itab_bapiret2 TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: itab1_bapiret2 TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: itab3_bapiret2 TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: deliv_numb TYPE bapiobdlvhdrcon-deliv_numb.
    Vbeln and posnr are coming from itab.
    SELECT SINGLE * FROM likp
    WHERE vbeln = itab-vbeln.
    SELECT SINGLE * FROM lips
    WHERE vbeln = itab-posnr.
    <b>select single kostk from vbuk into vbuk-kostk
           where vbeln = itab-vbeln
           and   kostk = 'C'.
    if sy-subrc ne 0.
    message "Picking is not fully done
    else.</b>
    itab_headerdata-deliv_numb = likp-vbeln.
    itab_headercontrol-deliv_numb = likp-vbeln.
    itab_headercontrol-post_gi_flg = 'X'.
    CLEAR deliv_numb.
    deliv_numb = likp-vbeln.
    <b>*itab_itemdata-deliv_numb = likp-vbeln.
    *itab_itemdata-deliv_item = lips-posnr.
    *itab_itemdata-dlv_qty = lips-lfimg.
    *itab_itemdata-sales_unit = lips-meins.
    *itab_itemdata-fact_unit_nom = lips-umvkz.
    *itab_itemdata-fact_unit_denom = lips-umvkn.
    *itab_itemcontrol-deliv_numb = likp-vbeln.
    *itab_itemcontrol-deliv_item = lips-posnr.
    *itab_itemcontrol-chg_delqty = 'X'.</b>
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
    EXPORTING
    header_data = itab_headerdata
    header_control = itab_headercontrol
    delivery = deliv_numb
    TECHN_CONTROL =
    TABLES
    HEADER_PARTNER =
    HEADER_PARTNER_ADDR =
    HEADER_DEADLINES =
    item_data = itab_itemdata
    item_control = itab_itemcontrol
    ITEM_SERIAL_NO =
    SUPPLIER_CONS_DATA =
    HANDLING_UNIT_HEADER =
    HANDLING_UNIT_ITEM =
    HANDLING_UNIT_SERNO =
    EXTENSION1 =
    EXTENSION2 =
    return = itab_bapiret2.
    TOKENREFERENCE =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'
    IMPORTING
    return = itab1_bapiret2.
    <b>endif.</b>
    Kind Regards
    Eswar

  • I just installed Lion on my mac and now Safari will not open.  Keep getting this message:  Safari quit unexpectedly, it gives me an optionto reopen or just click ok.  I click reopen and it gives me the same message, with a long report of information.

    I just installed Lion on my mac and now Safari will not open.  Keep getting this message:  Safari quit unexpectedly, it gives me an optionto reopen or just click ok.  I click reopen and it gives me the same message, with a long report of information.  Ran disk permissions repair and still does the same.  I can't even figure out how to copy the report into this question.  Please help!

    Process:    
    Safari [209]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    5.1.6 (7534.56.5)
    Build Info: 
    WebBrowser-7534056005000000~6
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [140]
    Date/Time:  
    2012-08-17 09:39:19.212 -0500
    OS Version: 
    Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[209]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: (index >= 0) && (index < [_itemArray count])'
    *** First throw call stack:
    0   CoreFoundation                 
    0x00007fff9428ef56 __exceptionPreprocess + 198
    1   libobjc.A.dylib                
    0x00007fff904fed5e objc_exception_throw + 43
    2   CoreFoundation                 
    0x00007fff9428ed8a +[NSException raise:format:arguments:] + 106
    3   Foundation                     
    0x00007fff8f2d771f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    4   AppKit                         
    0x00007fff953a4cdf -[NSMenu itemAtIndex:] + 165
    5   AppKit                         
    0x00007fff953a4e38 -[NSMenu removeItemAtIndex:] + 63
    6   Safari                         
    0x000000010cb99c2e -[AppController awakeFromNib] + 387
    7   CoreFoundation                 
    0x00007fff94285fb1 -[NSObject performSelector:] + 49
    8   CoreFoundation                 
    0x00007fff94285f32 -[NSSet makeObjectsPerformSelector:] + 274
    9   AppKit                         
    0x00007fff9538c9ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    10  AppKit                         
    0x00007fff95382f73 loadNib + 322
    11  AppKit                         
    0x00007fff95382470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    12  AppKit                         
    0x00007fff9538238b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    13  AppKit                         
    0x00007fff953822ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    14  AppKit                         
    0x00007fff955f306f NSApplicationMain + 398
    15  Safari                         
    0x000000010cd9c806 SafariMain + 166
    16  Safari                         
    0x000000010cb82f24 Safari + 3876
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff97a6bce2 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff963557d2 pthread_kill + 95
    2   libsystem_c.dylib        
    0x00007fff96346a7a abort + 143
    3   libc++abi.dylib          
    0x00007fff901d27bc abort_message + 214
    4   libc++abi.dylib          
    0x00007fff901cffcf default_terminate() + 28
    5   libobjc.A.dylib          
    0x00007fff904ff1b9 _objc_terminate + 94
    6   libc++abi.dylib          
    0x00007fff901d0001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib          
    0x00007fff901d005c std::terminate() + 16
    8   libc++abi.dylib          
    0x00007fff901d1152 __cxa_throw + 114
    9   libobjc.A.dylib          
    0x00007fff904fee7a objc_exception_throw + 327
    10  com.apple.CoreFoundation 
    0x00007fff9428ed8a +[NSException raise:format:arguments:] + 106
    11  com.apple.Foundation     
    0x00007fff8f2d771f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    12  com.apple.AppKit         
    0x00007fff953a4cdf -[NSMenu itemAtIndex:] + 165
    13  com.apple.AppKit         
    0x00007fff953a4e38 -[NSMenu removeItemAtIndex:] + 63
    14  com.apple.Safari.framework
    0x000000010cb99c2e -[AppController awakeFromNib] + 387
    15  com.apple.CoreFoundation 
    0x00007fff94285fb1 -[NSObject performSelector:] + 49
    16  com.apple.CoreFoundation 
    0x00007fff94285f32 -[NSSet makeObjectsPerformSelector:] + 274
    17  com.apple.AppKit         
    0x00007fff9538c9ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    18  com.apple.AppKit         
    0x00007fff95382f73 loadNib + 322
    19  com.apple.AppKit         
    0x00007fff95382470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    20  com.apple.AppKit         
    0x00007fff9538238b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    21  com.apple.AppKit         
    0x00007fff953822ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    22  com.apple.AppKit         
    0x00007fff955f306f NSApplicationMain + 398
    23  com.apple.Safari.framework
    0x000000010cd9c806 SafariMain + 166
    24  com.apple.Safari         
    0x000000010cb82f24 0x10cb82000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff97a6c7e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff9076578a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff9076431a _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.CFURLCACHE_work_queue
    0   libsystem_kernel.dylib   
    0x00007fff97a6c5b6 fsync + 10
    1   libsqlite3.dylib         
    0x00007fff92026e38 unixSync + 72
    2   libsqlite3.dylib         
    0x00007fff92034991 syncJournal + 705
    3   libsqlite3.dylib         
    0x00007fff92025a1e sqlite3PagerCommitPhaseOne + 1262
    4   libsqlite3.dylib         
    0x00007fff9201111e sqlite3BtreeCommitPhaseOne + 478
    5   libsqlite3.dylib         
    0x00007fff92010735 vdbeCommit + 981
    6   libsqlite3.dylib         
    0x00007fff91fd355a sqlite3VdbeHalt + 4442
    7   libsqlite3.dylib         
    0x00007fff920051a6 sqlite3VdbeExec + 51958
    8   libsqlite3.dylib         
    0x00007fff91ff7a5b sqlite3_step + 1883
    9   libsqlite3.dylib         
    0x00007fff91fbafb5 sqlite3_exec + 533
    10  com.apple.CFNetwork      
    0x00007fff925f666c __CFURLCache::PostDatabaseOpenPragmaExecute() + 48
    11  com.apple.CFNetwork      
    0x00007fff925f6542 __CFURLCache::OpenDatabase() + 196
    12  com.apple.CFNetwork      
    0x00007fff925f6040 ProcessCacheTasks(__CFURLCache*, bool) + 265
    13  com.apple.CFNetwork      
    0x00007fff925f5a72 _ZL24_CFURLCacheTimerCallbackPv + 662
    14  libdispatch.dylib        
    0x00007fff90763a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib        
    0x00007fff907652d6 _dispatch_queue_drain + 264
    16  libdispatch.dylib        
    0x00007fff90765132 _dispatch_queue_invoke + 54
    17  libdispatch.dylib        
    0x00007fff9076492c _dispatch_worker_thread2 + 198
    18  libsystem_c.dylib        
    0x00007fff963553da _pthread_wqthread + 316
    19  libsystem_c.dylib        
    0x00007fff96356b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff97a6c192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff96355594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff96356b85 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff97a6ca8e pread + 10
    1   libsqlite3.dylib         
    0x00007fff91fb8ce5 unixRead + 69
    2   libsqlite3.dylib         
    0x00007fff91fda4f6 readDbPage + 102
    3   libsqlite3.dylib         
    0x00007fff91fd8c9b sqlite3PagerAcquire + 315
    4   libsqlite3.dylib         
    0x00007fff92007872 moveToChild + 146
    5   libsqlite3.dylib         
    0x00007fff92009b68 sqlite3BtreeNext + 600
    6   libsqlite3.dylib         
    0x00007fff92002909 sqlite3VdbeExec + 41561
    7   libsqlite3.dylib         
    0x00007fff91ff7a5b sqlite3_step + 1883
    8   com.apple.WebCore        
    0x000000010dc35eff WebCore::SQLiteStatement::step() + 63
    9   com.apple.WebCore        
    0x000000010dc366cc WebCore::IconDatabase::performURLImport() + 908
    10  com.apple.WebCore        
    0x000000010dc34d3b WebCore::IconDatabase::iconDatabaseSyncThread() + 475
    11  com.apple.JavaScriptCore 
    0x000000010d57811f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    12  libsystem_c.dylib        
    0x00007fff963538bf _pthread_start + 335
    13  libsystem_c.dylib        
    0x00007fff96356b75 thread_start + 13
    Thread 5:: CoreAnimation render server
    0   libsystem_kernel.dylib   
    0x00007fff97a6a67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff97a69d71 mach_msg + 73
    2   com.apple.QuartzCore     
    0x00007fff94fb12d9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore     
    0x00007fff94fb1219 thread_fun + 24
    4   libsystem_c.dylib        
    0x00007fff963538bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff96356b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff6c780418  rdx: 0x0000000000000000
      rdi: 0x000000000000060b  rsi: 0x0000000000000006  rbp: 0x00007fff6c780440  rsp: 0x00007fff6c780418
       r8: 0x00007fff7e6cffb8   r9: 0x00007fff6c77fea8  r10: 0x00007fff97a6bd0a  r11: 0xffffff80002da8d0
      r12: 0x00007fe41260e3d0  r13: 0x000000000000000d  r14: 0x00007fff7e6d2960  r15: 0x00007fff6c780590
      rip: 0x00007fff97a6bce2  rfl: 0x0000000000000246  cr2: 0x0000000110792000
    Logical CPU: 0
    Binary Images:
    0x10cb82000 -   
    0x10cb82fff  com.apple.Safari (5.1.6 - 7534.56.5) <C1A60C3B-9DA6-3FE7-87BA-6B09016A39A9> /Applications/Safari.app/Contents/MacOS/Safari
    0x10cb8d000 -   
    0x10d027ff7  com.apple.Safari.framework (7536 - 7536.25) <C95F0D4E-6984-3D2F-B0BA-5D12A164EAC8> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    0x10d345000 -   
    0x10d5d4fff  com.apple.JavaScriptCore (7536 - 7536.24) <C613502E-BC98-3269-A25C-4BDB2D87590B> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x10d683000 -   
    0x10d805ff7  com.apple.WebKit (7536 - 7536.25) <8D171955-A1CA-31AA-B701-B9D4F760B10B> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x10d8f6000 -   
    0x10dacffff  com.apple.WebKit2 (7536 - 7536.25) <15991DAF-D0C9-3D65-A96B-AF7428ADCC4E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x10dc31000 -   
    0x10ebd6ff7  com.apple.WebCore (7536 - 7536.24) <F2C26660-05D7-34A7-9158-9C3D21BEB32F> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x7fff6c782000 -
    0x7fff6c7b6baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
    0x7fff8e14e000 -
    0x7fff8e17bfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
    0x7fff8e17c000 -
    0x7fff8e643fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff8e73a000 -
    0x7fff8e742fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8e745000 -
    0x7fff8e7b8fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8efd1000 -
    0x7fff8f006fff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8f1de000 -
    0x7fff8f207ff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8f20c000 -
    0x7fff8f525fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8f526000 -
    0x7fff8f53cfff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8f586000 -
    0x7fff8f58afff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8f58b000 -
    0x7fff8f7fefff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8f7ff000 -
    0x7fff8f800fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8f801000 -
    0x7fff8f805fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
    0x7fff8ff9f000 -
    0x7fff901c9fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff901ca000 -
    0x7fff901d5ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff901fe000 -
    0x7fff904e7ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff904e8000 -
    0x7fff905cce5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff905ce000 -
    0x7fff90630ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff90631000 -
    0x7fff90657fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff9074f000 -
    0x7fff9075fff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff90760000 -
    0x7fff90761ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff90762000 -
    0x7fff90770fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
    0x7fff90ac5000 -
    0x7fff90acbfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
    0x7fff90acc000 -
    0x7fff90ad3fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
    0x7fff90ad4000 -
    0x7fff90ad9fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff90ada000 -
    0x7fff90b70ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff90b9a000 -
    0x7fff90b9cfff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
    0x7fff90b9d000 -
    0x7fff90b9dfff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff90b9e000 -
    0x7fff90caafff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff90e97000 -
    0x7fff90f9cfff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff91011000 -
    0x7fff9101eff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
    0x7fff9101f000 -
    0x7fff91024ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff91025000 -
    0x7fff91095fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff91096000 -
    0x7fff91149ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff9118f000 -
    0x7fff91284fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff91961000 -
    0x7fff919a2fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff919a3000 -
    0x7fff919aefff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff919af000 -
    0x7fff91a54fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff91a55000 -
    0x7fff91a79fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff91a7a000 -
    0x7fff91a85ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff91a86000 -
    0x7fff91a95fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
    0x7fff91c21000 -
    0x7fff91c36fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff91c37000 -
    0x7fff91c41ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
    0x7fff91c42000 -
    0x7fff91c59fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff91c5a000 -
    0x7fff91f86ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff91fb0000 -
    0x7fff920b7fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff92383000 -
    0x7fff923b3ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff92432000 -
    0x7fff92433ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff9250b000 -
    0x7fff92510fff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff92515000 -
    0x7fff92554fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff9258d000 -
    0x7fff925b1fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff925b9000 -
    0x7fff925cfff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff925f0000 -
    0x7fff925f2fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff925f3000 -
    0x7fff9275afff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff9280e000 -
    0x7fff92910fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff92923000 -
    0x7fff9298cfff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff9298d000 -
    0x7fff929c7fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff92a22000 -
    0x7fff92a2bff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff92a2c000 -
    0x7fff92ab1ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff92ab2000 -
    0x7fff92ac6ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff92ac7000 -
    0x7fff92acaff7  com.apple.securityhi (4.0 - 1) <D0ABB03B-CEF9-39E0-A139-AA9484DBBC07> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff92acb000 -
    0x7fff92b14ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff92ba6000 -
    0x7fff92bfefff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff92d0b000 -
    0x7fff92d1eff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    0x7fff92ed8000 -
    0x7fff92f7afff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff9317e000 -
    0x7fff931daff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff931db000 -
    0x7fff93b78c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff93bf5000 -
    0x7fff93c02fff  com.apple.CrashReporterSupport (10.7.4 - 352) <9C16B49C-CF02-38F9-A7CD-969C140D3961> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff93c03000 -
    0x7fff93c30ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff93ca6000 -
    0x7fff93ca7ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff93cd4000 -
    0x7fff93d4afff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
    0x7fff941dd000 -
    0x7fff941eafff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff941eb000 -
    0x7fff943bfff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff943c0000 -
    0x7fff94402ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff94403000 -
    0x7fff94451fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff94452000 -
    0x7fff944ecff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff944ed000 -
    0x7fff944eefff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    0x7fff944fe000 -
    0x7fff94500ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff94501000 -
    0x7fff9492efff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff9495d000 -
    0x7fff94f41fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff94f42000 -
    0x7fff94f42fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff94f43000 -
    0x7fff94faeff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff94faf000 -
    0x7fff9514eff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff9514f000 -
    0x7fff95154fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff951a2000 -
    0x7fff951a5fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff951c3000 -
    0x7fff951d2ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff951e9000 -
    0x7fff952c8ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff952c9000 -
    0x7fff952e9fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff95329000 -
    0x7fff95329fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff9532a000 -
    0x7fff95330fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff95331000 -
    0x7fff95371ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
    0x7fff95372000 -
    0x7fff95f78ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff962dc000 -
    0x7fff96304fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff96305000 -
    0x7fff963e2fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff963e3000 -
    0x7fff963e7ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff963e8000 -
    0x7fff964ccfff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff965a1000 -
    0x7fff965e0ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff965e1000 -
    0x7fff96717fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff96718000 -
    0x7fff96741fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff9690a000 -
    0x7fff96985ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff96986000 -
    0x7fff969eeff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <C6703B2E-62F2-37C4-A4DE-28AF9C81CB44> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff969ef000 -
    0x7fff96a31fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff96a3c000 -
    0x7fff96b49fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff96cd5000 -
    0x7fff96cdbfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff96cdc000 -
    0x7fff96ceeff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff97014000 -
    0x7fff9701afff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff9701d000 -
    0x7fff97024fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff97025000 -
    0x7fff97058ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff971a8000 -
    0x7fff9722bfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff97a0a000 -
    0x7fff97a0cfff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff97a0d000 -
    0x7fff97a0dfff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff97a55000 -
    0x7fff97a75fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
    0x7fff97aa7000 -
    0x7fff97aa7fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff97ac9000 -
    0x7fff97ae6ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff97ae7000 -
    0x7fff97b39ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff97b3a000 -
    0x7fff97c01ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff97cca000 -
    0x7fff97d1eff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff97d8f000 -
    0x7fff97d8ffff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff97d90000 -
    0x7fff97e06fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff97e07000 -
    0x7fff97e53ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff980bb000 -
    0x7fff980e4fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff9835c000 -
    0x7fff9835cfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff9835d000 -
    0x7fff98388ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff986c8000 -
    0x7fff986e5fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff987b4000 -
    0x7fff988cdfff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff988ce000 -
    0x7fff9896fff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff98970000 -
    0x7fff9897eff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
    0x7fff9897f000 -
    0x7fff98a03ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff98a04000 -
    0x7fff98a0bff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff98b29000 -
    0x7fff98b48fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff98b5c000 -
    0x7fff98cb5fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff98d90000 -
    0x7fff98dcbfff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff98dcc000 -
    0x7fff98e0cfff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff98e0e000 -
    0x7fff992b3fff  com.apple.RawCamera.bundle (3.12.0 - 615) <10CCCC87-4A1E-3343-BF09-1C6640B56F45> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff993f7000 -
    0x7fff9940efff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff9940f000 -
    0x7fff99412fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff99475000 -
    0x7fff994c9fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff994ca000 -
    0x7fff9952afff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff99794000 -
    0x7fff99797fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff99798000 -
    0x7fff997c3ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff997c4000 -
    0x7fff997c9fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff99817000 -
    0x7fff99a19fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff99b03000 -
    0x7fff99b09ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff99b7c000 -
    0x7fff99b81fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
    0x7fff99b82000 -
    0x7fff99b83fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff99b89000 -
    0x7fff99b89fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff99bfe000 -
    0x7fff99bfffff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff99c00000 -
    0x7fff99c00fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff99c01000 -
    0x7fff99f1dfff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff99f25000 -
    0x7fff99f33fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff99f34000 -
    0x7fff99f50ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff9a3f9000 -
    0x7fff9a40bff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 4
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 389
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=185.1M resident=127.2M(69%) swapped_out_or_unallocated=57.9M(31%)
    Writable regions: Total=1.0G written=4176K(0%) resident=5504K(1%) swapped_out=0K(0%) unallocated=1.0G(99%)
    REGION TYPE                   
    VIRTUAL
    ===========                   
    =======
    CG shared images                  
    96K
    CoreServices                    
    1088K
    JS JIT generated code              
    8K
    JS JIT generated code (reserved) 
    1.0G   
    reserved VM address space (unallocated)
    MALLOC                          
    23.1M
    MALLOC guard page                 
    48K
    SQLite page cache                
    480K
    STACK GUARD                     
    56.0M
    Stack                           
    10.5M
    VM_ALLOCATE                       
    64K
    __CI_BITMAP                       
    80K
    __DATA                          
    17.5M
    __IMAGE                          
    528K
    __LINKEDIT                      
    59.8M
    __RC_CAMERAS                     
    244K
    __TEXT                         
    125.3M
    __UNICODE                        
    544K
    mapped file                     
    24.7M
    shared memory                    
    312K
    ===========                   
    =======
    TOTAL                            
    1.3G
    TOTAL, minus reserved VM space 
    320.3M
    This was the best I could do to finally get the report posted.
    Message was edited by: ccadkins

  • Compaq 615 crashed. Cannot install the recovery from the partition

    Hi,
    I got a crash on my compaq 615. I want to restore my comp/windows by using my recovery on the partition but it didn't work.
    I want to put a new windows 7 on my comp by usb/dvd but it also didn't work. During the install the windows fily copy is ready(100%) in a few seconds but the next step: windows file extracting stays on 0%. Every time i try.
    When i turn the laptop off and start it again there is the following message:
    1720-smart hard drive detects imminent failure (failing attr C8)
    What can i do? What's the problem? Can anyone help me out?

    Hi:
    Your hard drive has conked out, and you need to purchase a new one.
    Then you should be able to reinstall W7.
    Paul

  • Random restarts, Software malfunction? Error message.

    Hi everyone!
    I would like to ask for your help. My MacBook Pro started the have a malfunction about 1 month ago.
    It has been randomly restarting by itself. As you can imagine this can be very annoying when you are working on your projects.... (saving every second)
    So basically I brought my mbp to an apple store where they ran all the hardware tests. They said it was the Hard Drive so I bought a brand new hdd and replaced it by myself, reinstalled the system (mountain lion) without a problem. BUT A day after, when I fully copied al my documents from the hard drive I had before (wasn't damaged physically) the restarting started again.
    I would highly appreciate if anyone could advise me what to do... since I changed the hard drive and apple said there are no hardware problems.
    After all the restarts (there were a lot) I always got an error message which is the following:
    Interval Since Last Panic Report:  37551 sec
    Panics Since Last Report:          11
    Anonymous UUID:                    65BC4D9A-9BB5-534A-0CDA-B688524AAC0C
    Tue Sep 23 16:03:51 2014
    panic(cpu 0 caller 0xffffff7f947f6f1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xffffff808f2f1000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff808e3bb710 : 0xffffff801261d626
    0xffffff808e3bb780 : 0xffffff7f947f6f1a
    0xffffff808e3bb850 : 0xffffff7f92d5ff1e
    0xffffff808e3bb910 : 0xffffff7f92e3412d
    0xffffff808e3bb950 : 0xffffff7f92e3418e
    0xffffff808e3bb9c0 : 0xffffff7f930faed0
    0xffffff808e3bbaf0 : 0xffffff7f92e5ca75
    0xffffff808e3bbb10 : 0xffffff7f92d66d50
    0xffffff808e3bbbc0 : 0xffffff7f92d647d0
    0xffffff808e3bbdc0 : 0xffffff7f92d65845
    0xffffff808e3bbea0 : 0xffffff7f92d010a4
    0xffffff808e3bbef0 : 0xffffff7f947ba0df
    0xffffff808e3bbf40 : 0xffffff7f947b91e7
    0xffffff808e3bbf60 : 0xffffff801263e25e
    0xffffff808e3bbfb0 : 0xffffff80126b3137
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7f947e9000->0xffffff7f947fbfff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[1D0BB11E-7D71-34CF-ACC3-57DF01CADA 08]@0xffffff7f947e4000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f92c68000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f947d0000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f92be8000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f92cea000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f92ca7000
             com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f92c fe000->0xffffff7f92fa3fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f92c68000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f92cea000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f92ca7000
             com.apple.nvidia.nv50hal(8.1.2)[988EAF3A-3318-3787-8A5A-844830FA1522]@0xffffff7 f92faf000->0xffffff7f93283fff
                dependency: com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f92c fe000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f92c68000
             com.apple.driver.AGPM(100.12.87)[621C8E31-07A5-38AC-95C9-F600FA62270B]@0xffffff 7f947b8000->0xffffff7f947c7fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f92c68000
                dependency: com.apple.driver.IOPlatformPluginFamily(5.3.0d51)[7B50B447-FF44-3529-9505-3F49C F1CCB4F]@0xffffff7f9371e000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f92cea000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f92ca7000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x0000000012400000
    Kernel text base: 0xffffff8012600000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 4414805088952
    last loaded kext at 1784078608355: com.apple.driver.AppleUSBCDC 4.1.23 (addr 0xffffff7f94906000, size 16384)
    last unloaded kext at 1857495295190: com.apple.driver.AppleUSBCDC 4.1.23 (addr 0xffffff7f94906000, size 12288)
    loaded kexts:
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager 4.1.4f2
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AGPM 100.12.87
    com.apple.driver.AppleMikeyHIDDriver 122
    com.apple.driver.AppleHDA 2.3.7fc4
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport 4.1.4f2
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleSMCLMU 2.0.3d0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.ApplePolicyControl 3.4.5
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.GeForce 8.1.2
    com.apple.driver.AppleIntelHDGraphics 8.1.2
    com.apple.driver.AppleIntelHDGraphicsFB 8.1.2
    com.apple.driver.AppleUpstreamUserClient 3.5.10
    com.apple.driver.AppleLPC 1.6.0
    com.apple.driver.AppleMikeyDriver 2.3.7fc4
    com.apple.driver.AppleMuxControl 3.4.5
    com.apple.driver.AppleMCCSControl 1.1.11
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.SMCMotionSensor 3.0.3d1
    com.apple.driver.AppleUSBTCButtons 237.1
    com.apple.driver.AppleUSBTCKeyboard 237.1
    com.apple.driver.AppleUSBCardReader 3.1.7
    com.apple.driver.AppleIRController 320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 34
    com.apple.iokit.SCSITaskUserClient 3.5.5
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.3.1
    com.apple.driver.AppleUSBHub 5.5.5
    com.apple.driver.AirPort.Brcm4331 615.20.17
    com.apple.driver.AppleFWOHCI 4.9.6
    com.apple.driver.AppleAHCIPort 2.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.6.1b4
    com.apple.driver.AppleUSBEHCI 5.5.0
    com.apple.driver.AppleEFINVRAM 1.7
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 1.7
    com.apple.driver.AppleRTC 1.5
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 1.9
    com.apple.driver.AppleACPIEC 1.7
    com.apple.driver.AppleAPIC 1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient 196.0.0
    com.apple.nke.applicationfirewall 4.0.39
    com.apple.security.quarantine 2.1
    com.apple.driver.AppleIntelCPUPowerManagement 196.0.0
    com.apple.iokit.IOSerialFamily 10.0.6
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.3.7fc4
    com.apple.iokit.IOAudioFamily 1.8.9fc11
    com.apple.kext.OSvKernDSPLib 1.6
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport 4.1.4f2
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.iokit.IOSurface 86.0.4
    com.apple.iokit.IOBluetoothFamily 4.1.4f2
    com.apple.nvidia.nv50hal 8.1.2
    com.apple.NVDAResman 8.1.2
    com.apple.driver.AppleSMBusPCI 1.0.11d0
    com.apple.driver.AppleGraphicsControl 3.4.5
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.3.7
    com.apple.driver.AppleSMBusController 1.0.11d0
    com.apple.driver.AppleHDAController 2.3.7fc4
    com.apple.iokit.IOGraphicsFamily 2.3.7
    com.apple.iokit.IOHDAFamily 2.3.7fc4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.3.0d51
    com.apple.driver.AppleSMC 3.1.4d2
    com.apple.driver.AppleUSBMultitouch 237.3
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.5.5
    com.apple.iokit.IOUSBHIDDriver 5.2.5
    com.apple.iokit.IOUSBMassStorageClass 3.5.1
    com.apple.driver.AppleUSBMergeNub 5.5.5
    com.apple.driver.AppleUSBComposite 5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.5.5
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.5.5
    com.apple.iokit.IO80211Family 530.4
    com.apple.iokit.IOUSBUserClient 5.5.5
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCIFamily 2.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.2b1
    com.apple.iokit.IONetworkingFamily 3.0
    com.apple.iokit.IOUSBFamily 5.6.0
    com.apple.driver.AppleEFIRuntime 1.7
    com.apple.iokit.IOHIDFamily 1.8.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 220.3
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.DiskImages 345
    com.apple.iokit.IOStorageFamily 1.8
    com.apple.driver.AppleKeyStore 28.21
    com.apple.driver.AppleACPIPlatform 1.7
    com.apple.iokit.IOPCIFamily 2.7.3
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: HGST HTS721010A9E630, 1 TB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0xfa120000 / 5
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    Message was edited by: D0n0lier

    D0n0lier wrote:
    Hi, thank you. I brought my computer to an apple store genius bar already and they said there is no hardware problem.
    They said, they have no personnel to read the kernel panic... I'm in France.
    Then you went to a store that does not seem to have qualified personnel.  This is the extract from the kernel panic report that clearly indicates the GPU issue:
    Whether your HDD has a problem is a separate issue, but there is no indication here that there is a HDD problem.
    Ciao.

  • SAAJ0537: Invalid Content-Type. Could be an error message instead of a SOAP

    Hi,
    At present i am using JCAPS version 5.1.1
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-
    Type:text/html. Is this an error message instead of a SOAP response?
    I got above error message while invoking the webservice.
    My intention is to get HttpRequest from user and based on the input from user, a web service should be invoked. For this i am using BusinessProcess[einsight]
    In my BusinessProcess, i have HttpServer processRequest service,
    to receive HTTP requests and then i am passing the value of parameter received from http[As String] to next partner which is responsible for invoking a webservice.[Used a wsdl in client mode]
    I am able to get http request successfully , but i got error while invoking web service.
    Please let me know, what to do for rectifying error.

    Although this is an aged topic, this is plaguing our development efforts currently. I have successfully created a webservice that can be executed externally using the generated wsdl but I am unable to get a JCD to execute the WS without getting the following error:
    [#|2007-10-09T19:51:02.700-0700|SEVERE|IS5.1.2|javax.xml.messaging.saaj.soap|_ThreadID=32606; ThreadName=Worker: 34758;|SAAJ0537: Invalid Content-Type. Could be an error message instead of a SOAP message|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is this an error message instead of a SOAP response?|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(MessageImpl.java:296)|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:146)|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.createMessage(SOAPMessageFactory1_1Impl.java:32)|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.xml.rpc.client.http.HttpClientTransport.readResponse(HttpClientTransport.java:169)|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.xml.rpc.client.http.HttpClientTransport.invoke(HttpClientTransport.java:83)|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:69)|#]
    [#|2007-10-09T19:51:02.701-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at tp6.ExecutePortType_Stub.opGetControl(ExecutePortType_Stub.java:66)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at tp6.ExecutePortType_opGetControl.invoke(ExecutePortType_opGetControl.java:188)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.stc.wsclient.runtime.impl.WSDLOtdDelegateImpl.invoke(WSDLOtdDelegateImpl.java:78)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at urn_stc_egate_jce_AI_WebServices_GetControl_jcdGetControl.OpGetControl.invoke(urn_stc_egate_jce_AI_WebServices_GetControl_jcdGetControl.OpGetControl:113)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at AIWebServicesTEST_GetControl_WS.jcdTEST_GetControl_WS.start(jcdTEST_GetControl_WS.java:21)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at TEST_GetControl_WS.cmTEST_GetControl_WS_jcdTEST_GetControl_WS1.jcdTEST_GetControl_WS_Runtime_Handler.handleRequest(jcdTEST_GetControl_WS_Runtime_Handler.java:369)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at sun.reflect.GeneratedMethodAccessor4463.invoke(Unknown Source)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at java.lang.reflect.Method.invoke(Method.java:615)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:140)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:135)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at $Proxy108.handleRequest(Unknown Source)|#]
    [#|2007-10-09T19:51:02.702-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at STC_MDB__eaJCAP_Scheduler_cmTEST_GetControl_WS_jc1527518542.sendMessage(STC_MDB__eaJCAP_Scheduler_cmTEST_GetControl_WS_jc1527518542.java:213)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at STC_MDB__eaJCAP_Scheduler_cmTEST_GetControl_WS_jc1527518542.onContents(STC_MDB__eaJCAP_Scheduler_cmTEST_GetControl_WS_jc1527518542.java:100)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at sun.reflect.GeneratedMethodAccessor4462.invoke(Unknown Source)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at java.lang.reflect.Method.invoke(Method.java:615)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.enterprise.security.SecurityUtil$2.run(SecurityUtil.java:146)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at java.security.AccessController.doPrivileged(AccessController.java:275)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.enterprise.security.application.EJBSecurityManager.doAsPrivileged(EJBSecurityManager.java:940)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:151)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.ejb.containers.MessageBeanContainer.deliverMessage(MessageBeanContainer.java:948)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.ejb.containers.MessageBeanListenerImpl.deliverMessage(MessageBeanListenerImpl.java:42)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.enterprise.connectors.inflow.MessageEndpointInvocationHandler.invoke(MessageEndpointInvocationHandler.java:136)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at $Proxy111.onContents(Unknown Source)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.stc.schedulerotd.scheduleradapter.FileReaderWork.run(FileReaderWork.java:77)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.enterprise.connectors.work.OneWork.doWork(OneWork.java:54)|#]
    [#|2007-10-09T19:51:02.703-0700|WARNING|IS5.1.2|javax.enterprise.system.stream.err|_ThreadID=32606; ThreadName=Worker: 34758;|
         at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:382)|#]
    [#|2007-10-09T19:51:02.704-0700|SEVERE|IS5.1.2|javax.xml.messaging.saaj.soap|_ThreadID=32606; ThreadName=Worker: 34758;|SAAJ0535: Unable to internalize message|#]
    [#|2007-10-09T19:51:02.704-0700|INFO|IS5.1.2|STC.eGate.CMap.Collabs.TEST_GetControl_WS.cmTEST_GetControl_WS_jcdTEST_GetControl_WS1.AIWebServicesTEST_GetControl_WS.jcdTEST_GetControl_WS|_ThreadID=32606; ThreadName=Worker: 34758;|+++EXCEPTION = HTTP transport error: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize message; nested exception is:
         HTTP transport error: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize message|#]
    [#|2007-10-09T19:51:02.704-0700|INFO|IS5.1.2|STC.eGate.CMap.Collabs.TEST_GetControl_WS.cmTEST_GetControl_WS_jcdTEST_GetControl_WS1.AIWebServicesTEST_GetControl_WS.jcdTEST_GetControl_WS|_ThreadID=32606; ThreadName=Worker: 34758;|+++STACK     = [Ljava.lang.StackTraceElement;@31de31de|#]
    [#|2007-10-09T19:51:02.705-0700|INFO|IS5.1.2|com.stc.codegen.OTDImpl.runtime.ejb.OTDService|_ThreadID=32606; ThreadName=Worker: 34758;|terminate each service|#]
    Is anybody else having this same error and how was it resolved? Both my client and server settings seems to be in sync. My only iffy piece is the servlet context. For both client and server external components, host, port, servlet context match. What am I missing??

  • Error while trying a simple message bean

    I got an error while trying the simple message bean from "Developing Enterprise Applications Using the j2ee platform" tutorial (lesson 4).
    The following is the error after I clicked on submit button in bonus html:
    javax.servlet.ServletException: Could not initialize due to javax.security.auth.login.FailedLoginException: Password Incorrect
         at bonus.controllers.BonusCalculationServlet.init(BonusCalculationServlet.java:81)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:852)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:615)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:368)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1012)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107)
         at java.lang.Thread.run(Thread.java:479)
    Does anybody know what cause this error? and how to solve it. Any help is very much appreciated.
    Thanks in advance
    Hans

    I have the exact same problem.
    I can't find a username/password setup for JMS.
    Is the example broken?

  • Warning Message in Console Icon

    I just moved from PC to Mac.  I have a new imac and I want to transfer my files to my mac.  I have a maxter one touch 4 mini drive with all my documents, pictures and music.  It is a locked drive unfortunately.  I tried to connect it to my mac and got a warning message on my console icon.  When I click on that I have a bunch of files see below.  I am not sure what to do,  Should I delete them or are they usable.  I need some direction as to what if anything I can do.  If I need to delete please tell me how to do it.  Thank you in advance for any help.
    Regards
    Gary
    5/7/12 1:30:55.000 PM kernel: 33.563358: switchVap from 1 to 1
    5/7/12 1:30:55.834 PM configd: network configuration changed.
    5/7/12 1:30:56.000 PM kernel: 34.169889: performCountryCodeOperation: Disconnecting from AP
    5/7/12 1:30:56.000 PM kernel: 34.169892: setDISASSOC from ATH_INTERFACE_CLASS disconnectVap
    5/7/12 1:30:56.486 PM com.apple.launchctl.LoginWindow: com.apple.findmymacmessenger: Already loaded
    5/7/12 1:30:57.000 PM kernel: IOUserEthernetController: Ethernet address 10:40:f3:e7:5d:53
    5/7/12 1:30:59.035 PM configd: network configuration changed.
    5/7/12 1:30:59.035 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    5/7/12 1:30:59.143 PM mDNSResponder: mDNSResponder mDNSResponder-320.14.0 (Nov 16 2011 01:16:56) starting OSXVers 11
    5/7/12 1:30:59.167 PM com.apple.usbmuxd: usbmuxd-263 on Nov 14 2011 at 18:58:10, running 64 bit
    5/7/12 1:30:59.383 PM WindowServer: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 1:31:00.757 PM genatsdb: *GENATSDB* FontObjects generated = 324
    5/7/12 1:31:04.563 PM configd: network configuration changed.
    5/7/12 1:31:04.564 PM configd: network configuration changed.
    5/7/12 1:31:04.588 PM mDNSResponder: D2D_IPC: Loaded
    5/7/12 1:31:04.588 PM mDNSResponder: D2DInitialize succeeded
    5/7/12 1:31:22.122 PM rpcsvchost: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    5/7/12 1:31:27.000 PM kernel: [IOBluetoothHIDDriver][getDevicePropertiesWL][7c-c3-a1-99-0f-56] Error retrieving device properties.
    5/7/12 1:31:27.000 PM kernel: [IOBluetoothHIDDriver][probe] Couldn't retrieve device properties
    5/7/12 1:31:30.000 PM kernel: [AppleBluetoothHIDKeyboard][getDevicePropertiesWL] Error retrieving device name
    5/7/12 1:31:30.000 PM kernel: [IOBluetoothHIDDriver][getDevicePropertiesWL] Error retrieving device name
    5/7/12 1:31:36.000 PM kernel: [ffffff800d95f800][BNBMouseDevice::init][66.6] init is complete
    5/7/12 1:31:36.000 PM kernel: [ffffff800d95f800][BNBMouseDevice::handleStart][66.6] Done
    5/7/12 1:31:36.000 PM kernel: [ffffff800e0a7e00][AppleMultitouchHIDEventDriver::start] entered
    5/7/12 1:31:36.000 PM kernel: [ffffff800e131900][AppleMultitouchDevice::start] entered
    5/7/12 1:31:36.170 PM com.apple.loginwindow: Setting boot completed.
    5/7/12 1:32:08.905 PM loginwindow: USER_PROCESS: 49 console
    5/7/12 1:32:09.382 PM com.apple.SecurityServer: Session 100004 created
    5/7/12 1:32:09.386 PM Setup Assistant: Task1
    5/7/12 1:32:09.401 PM Setup Assistant: Task2
    5/7/12 1:32:09.413 PM [0x0-0x5005].com.apple.SetupAssistant: ...System identity already exists for domain com.apple.systemdefault. Done.
    5/7/12 1:32:09.413 PM Setup Assistant: certtool systemdefault 0
    5/7/12 1:32:09.455 PM Setup Assistant: Admin Auth : All clear, SetUpServerConnection now.
    5/7/12 1:32:09.456 PM Setup Assistant: Starting to discover USB Dongles.
    5/7/12 1:32:09.536 PM Setup Assistant: updated network configuration
    5/7/12 1:32:09.540 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    5/7/12 1:32:09.540 PM configd: network configuration changed.
    5/7/12 1:32:09.550 PM Setup Assistant: SCNetworkSetEstablishDefaultConfiguration : no new devices.
    5/7/12 1:32:09.568 PM Setup Assistant: StartListeningForDefaultOutputDeviceChanging
    5/7/12 1:32:09.568 PM Setup Assistant: StartListeningForHeadphonesGettingPluggedIn
    5/7/12 1:32:09.569 PM Setup Assistant: setVolume (34)
    5/7/12 1:32:09.569 PM Setup Assistant: Headphones connected (0)
    5/7/12 1:32:09.569 PM Setup Assistant: modelUID AppleHDA:9
    5/7/12 1:32:09.577 PM Setup Assistant: layoutID 9
    5/7/12 1:32:09.577 PM Setup Assistant: setSpeakerVolume
    5/7/12 1:32:09.578 PM Setup Assistant: TransportType 0 kIOAudioDeviceTransportTypeBuiltIn
    5/7/12 1:32:09.578 PM Setup Assistant: AudioObjectGetPropertyDataSize kAudioDevicePropertyVolumeDecibels for channel (0) : kAudioHardwareUnknownPropertyError
    5/7/12 1:32:09.578 PM Setup Assistant: Mute disabled for 1
    5/7/12 1:32:09.579 PM Setup Assistant: Set volume for channel (1) -10.000000
    5/7/12 1:32:09.579 PM Setup Assistant: Mute disabled for 2
    5/7/12 1:32:09.580 PM Setup Assistant: Set volume for channel (2) -10.000000
    5/7/12 1:32:09.615 PM Setup Assistant: NumberOfKeyboardHIDDevices 1
    5/7/12 1:32:09.616 PM Setup Assistant: NumberOfPointingHIDDevices 1
    5/7/12 1:32:09.625 PM Setup Assistant: ----------
    -> searchForValidSystems has arrived.
    5/7/12 1:32:09.629 PM Setup Assistant: (Snoop) Listening on 8 / 378043390
    5/7/12 1:32:09.885 PM Setup Assistant: . Found disk (diskIdentifier=disk0, mountpoint=(null), isInternal=1, filesystem=(null))
    5/7/12 1:32:09.889 PM Setup Assistant: . Found disk (diskIdentifier=disk0, mountpoint=(null), isInternal=1, filesystem=(null))
    5/7/12 1:32:09.892 PM Setup Assistant: . Found disk (diskIdentifier=disk0s1, mountpoint=(null), isInternal=1, filesystem=(null))
    5/7/12 1:32:09.897 PM Setup Assistant: . Found disk (diskIdentifier=disk0s1, mountpoint=(null), isInternal=1, filesystem=(null))
    5/7/12 1:32:09.900 PM Setup Assistant: . Found disk (diskIdentifier=disk0s2, mountpoint=/, isInternal=1, filesystem=Journaled HFS+ hfs Mac OS Extended (Journaled) Apple_HFS)
    5/7/12 1:32:09.906 PM Setup Assistant: . Found disk (diskIdentifier=disk0s2, mountpoint=/, isInternal=1, filesystem=Journaled HFS+ hfs Mac OS Extended (Journaled) Apple_HFS)
    5/7/12 1:32:09.934 PM Setup Assistant: . Found disk (diskIdentifier=disk0s3, mountpoint=(null), isInternal=1, filesystem=Journaled HFS+ hfs Mac OS Extended (Journaled) Apple_HFS)
    5/7/12 1:32:09.940 PM Setup Assistant: . Found disk (diskIdentifier=disk0s3, mountpoint=(null), isInternal=1, filesystem=Journaled HFS+ hfs Mac OS Extended (Journaled) Apple_HFS)
    5/7/12 1:32:09.947 PM Setup Assistant: . Found disk (diskIdentifier=disk0s2, mountpoint=/, isInternal=1, filesystem=Journaled HFS+ hfs Mac OS Extended (Journaled) Apple_HFS)
    5/7/12 1:32:18.361 PM warmd: [warmctl_evt_timer_bc_activation_timeout:260] BC activation bcstop timer fired!
    5/7/12 1:32:18.682 PM Setup Assistant: Stopped VOT 0
    5/7/12 1:32:18.719 PM Setup Assistant: IntlSetValue(0, "AppleDateResID", 0) returned 0
    5/7/12 1:32:18.721 PM Setup Assistant: IntlSetValue(0, "AppleTimeResID", 0) returned 0
    5/7/12 1:32:18.723 PM Setup Assistant: IntlSetValue(0, "AppleNumberResID", 0) returned 0
    5/7/12 1:32:18.737 PM Setup Assistant: SMSizeFormatter : using `en_US'
    5/7/12 1:32:18.738 PM Setup Assistant: SMSizeFormatter : using `en_US'
    5/7/12 1:32:18.738 PM Setup Assistant: SMSizeFormatter : using `en_US'
    5/7/12 1:32:18.801 PM Setup Assistant: Current Iso LC = en, en
    5/7/12 1:32:19.002 PM Setup Assistant: Time to move from MBIntroCountry (Intro_Country) to MBRegisterKeyboard (Reg_Keyboard) was 0.319457s
    5/7/12 1:32:21.975 PM Setup Assistant: setAsciiLayout currentInputSource <TSMInputSource 0x7fa4106844f0> KB Layout: U.S. (id=0)
    5/7/12 1:32:21.975 PM Setup Assistant: currentSourceIsKBLayout
    5/7/12 1:32:21.975 PM Setup Assistant: isAsciiCapable
    5/7/12 1:32:21.975 PM Setup Assistant: defaultAsciiKBLayout <TSMInputSource 0x7fa4106844f0> KB Layout: U.S. (id=0)
    5/7/12 1:32:21.975 PM Setup Assistant: currentAsciiInputSource <TSMInputSource 0x7fa4106844f0> KB Layout: U.S. (id=0)
    5/7/12 1:32:21.975 PM Setup Assistant: TISSetDefaultAsciiCapableKeyboardLayoutInputSource <TSMInputSource 0x7fa4106844f0> KB Layout: U.S. (id=0)
    5/7/12 1:32:21.976 PM Setup Assistant: TISEnableInputSource <TSMInputSource 0x7fa4106844f0> KB Layout: U.S. (id=0)
    5/7/12 1:32:21.976 PM Setup Assistant: TSMSetCurrentAsciiCapableInputSource <TSMInputSource 0x7fa4106844f0> KB Layout: U.S. (id=0)
    5/7/12 1:32:22.032 PM Setup Assistant: SCNetworkSetEstablishDefaultConfiguration : no new devices.
    5/7/12 1:32:23.000 PM kernel: en1: 802.11d country code set to 'US '.
    5/7/12 1:32:23.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    5/7/12 1:32:24.843 PM Setup Assistant: SCNetworkSetEstablishDefaultConfiguration : no new devices.
    5/7/12 1:32:24.920 PM Setup Assistant: Time to move from MBRegisterKeyboard (Reg_Keyboard) to MBWirelessPickNetwork (Wireless_Pick_Network) was 2.987876s
    5/7/12 1:32:47.489 PM Setup Assistant: configureWithSettings: {
        Connection = Wireless;
        WirelessNetwork = "Apple Demo";
    5/7/12 1:32:47.498 PM Setup Assistant: no TCPConfigureMethod specified, assuming DHCP
    5/7/12 1:32:47.000 PM kernel: en1: BSSID changed to 00:26:cb:41:3e:4e
    5/7/12 1:32:47.000 PM kernel: AirPort: Link Up on en1
    5/7/12 1:32:47.000 PM kernel: en1: BSSID changed to 00:26:cb:41:3e:4e
    5/7/12 1:32:47.824 PM airportd: _doAutoJoin: Already associated to “Apple Demo”. Bailing on auto-join.
    5/7/12 1:32:47.919 PM airportd: _doAutoJoin: Already associated to “Apple Demo”. Bailing on auto-join.
    5/7/12 1:32:47.996 PM airportd: _doAutoJoin: Already associated to “Apple Demo”. Bailing on auto-join.
    5/7/12 1:32:48.164 PM netbiosd: Unable to start NetBIOS name service:
    5/7/12 1:32:48.519 PM com.apple.launchd: (com.apple.xprotectupdater[32]) Exited with code: 255
    5/7/12 1:32:55.335 PM configd: network configuration changed.
    5/7/12 1:32:55.396 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Probe
    5/7/12 1:32:55.396 PM UserEventAgent: CaptiveNetworkSupport:CNSPreferences:60 Creating new preferences
    5/7/12 1:32:55.399 PM UserEventAgent: CaptiveNetworkSupport:CaptiveStartDetect:2371 starting probe to determine captivity...
    5/7/12 1:32:55.399 PM UserEventAgent: CaptiveNetworkSupport:wispr_detect_redirect_async:424 user-agent:"CaptiveNetworkSupport-173 wispr" url:"http://www.apple.com/library/test/success.html"
    5/7/12 1:32:55.726 PM UserEventAgent: CaptiveNetworkSupport:CaptiveHandleRedirect:2145 No wispr redirect detected on en1 (Apple Demo)
    5/7/12 1:32:55.726 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Online
    5/7/12 1:32:55.727 PM UserEventAgent: CaptiveNetworkSupport:CaptiveKnownStore:941 Added Apple Demo/IPv4.Router=10.250.0.1;IPv4.RouterHardwareAddress=00:10:db:ff:20:50 to known good cache
    5/7/12 1:32:55.727 PM UserEventAgent: CaptiveNetworkSupport:CaptiveKnownStore:945 Removed Captive Property from ssid =Apple Demo
    5/7/12 1:32:55.728 PM configd: network configuration changed.
    5/7/12 1:32:56.221 PM mDNSResponder: mDNSCoreReceiveResponse: Received from FE80:0000:0000:0000:7256:81FF:FEA2:2737:5353   48 My\032New\032Mac._apsmigration._tcp.local. TXT model=com.apple.macbookair-13-unibody¦version=1
    5/7/12 1:32:56.221 PM mDNSResponder: mDNSCoreReceiveResponse: ProbeCount 1; will deregister   31 My\032New\032Mac._apsmigration._tcp.local. SRV 0 0 49152 iMac-406C8F0FCA8F.local.
    5/7/12 1:32:56.986 PM Setup Assistant: SCNetworkSetEstablishDefaultConfiguration : no new devices.
    5/7/12 1:32:57.191 PM Setup Assistant: Time to move from MBWirelessPickNetwork (Wireless_Pick_Network) to MBMigrateYN (migrationui) was 0.187606s
    5/7/12 1:33:16.959 PM Setup Assistant: Time to move from MBMigrateYN (migrationui) to MBRegisterAppleID (Reg_Apple_ID) was 0.180752s
    5/7/12 1:33:51.686 PM [0x0-0x6006].com.apple.AppleSpell: 2012-05-07 10:33:51.684 findNames[173:707] Database file is missing: /var/root/Library/Application Support/AddressBook/AddressBook-v22.abcddb
    5/7/12 1:33:56.581 PM helpd: CarbonCore.framework, Our status with coreservicesd is unusual, 2, and things likely will stop working.
    5/7/12 1:33:56.581 PM helpd: CarbonCore.framework: Unable to connect to coreservicesd.  Things likely won't work.  Sorry.
    5/7/12 1:33:56.817 PM [0x0-0x6006].com.apple.AppleSpell: 2012-05-07 10:33:56.816 AddressBookSync[174:1b03] Error, could not create MachMessagePort for com.apple.AddressBook.abd
    5/7/12 1:34:22.059 PM [0x0-0x6006].com.apple.AppleSpell: 2012-05-07 10:34:22.058 AddressBookSync[174:707] [0x10561b300] |ISyncManager|Warning| SyncServer is unavailable: timed out trying to connect
    5/7/12 1:34:22.060 PM [0x0-0x6006].com.apple.AppleSpell: 2012-05-07 10:34:22.059 AddressBookSync[174:707] AddressBookSync (client id: com.apple.AddressBook) error: Exception running AddressBookSync: Timed out waiting for the sync server
    5/7/12 1:34:33.095 PM com.apple.kextcache: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    5/7/12 1:35:06.505 PM Setup Assistant: Time to move from MBRegisterAppleID (Reg_Apple_ID) to MBRegisterSLA (Reg_SLA) was 0.149305s
    5/7/12 1:35:09.374 PM Setup Assistant: Time to move from MBRegisterSLA (Reg_SLA) to MBRegisterUserInfo (Reg_United_States) was 0.059596s
    5/7/12 1:37:14.975 PM [0x0-0x5005].com.apple.SetupAssistant: ...System identity already exists for domain com.apple.systemdefault. Done.
    5/7/12 1:37:14.975 PM Setup Assistant: certtool systemdefault 0
    5/7/12 1:37:14.975 PM Setup Assistant: There is an existing Kerberos realm, [NOT] running configureLocalKDC.
    5/7/12 1:37:14.977 PM Setup Assistant: search paths: (
        "/Local/Default"
    5/7/12 1:37:15.053 PM Setup Assistant: Time to move from MBRegisterUserInfo (Reg_United_States) to MBRegisterLocalAccount (Reg_Local_Account) was 0.128515s
    5/7/12 1:38:16.508 PM Setup Assistant: uniqueInParent:1 uniqueLocal:1
    5/7/12 1:38:16.514 PM Setup Assistant: uniqueInParent:1 uniqueLocal:1
    5/7/12 1:38:21.666 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.669 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.672 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.676 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.679 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.682 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.685 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.688 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.692 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.695 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.698 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.702 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.705 PM UserEventAgent: get_backup_share_points no AFP
    5/7/12 1:38:21.814 PM Setup Assistant: creating loginKeychain for: garymarks
    5/7/12 1:38:21.912 PM Setup Assistant: Keychain ON.
    5/7/12 1:38:21.912 PM Setup Assistant: No AppleID provided so far.
    5/7/12 1:38:21.912 PM Setup Assistant: User opted out of AppleID reset.
    5/7/12 1:38:22.260 PM mDNSResponder: User updated Computer Name from “iMac-406C8F0FCA8F” to “Gary’s iMac”
    5/7/12 1:38:22.465 PM configd: setting hostname to "Garys-iMac.local"
    5/7/12 1:38:22.469 PM Setup Assistant: BluetoothHIDDevice Apple Magic Mouse <AppleBluetoothHIDDevice: 0x7fa410662e90> 7c-c3-a1-6f-da-b0 CoD:ffffff00002580 hidDevice:0x19b93 ID:0xd95f800
    5/7/12 1:38:22.469 PM Setup Assistant: originalDeviceName = Apple Magic Mouse
    5/7/12 1:38:22.469 PM Setup Assistant: setDeviceName Gary’s Mouse
    5/7/12 1:38:22.565 PM mDNSResponder: User updated Local Hostname from “iMac-406C8F0FCA8F” to “Garys-iMac”
    5/7/12 1:38:22.698 PM [0x0-0x5005].com.apple.SetupAssistant: mv: rename /Library/Documentation/CPU_imac/User Guides And Information.localized/Welcome to Snow Leopard.app/ to /Library/Documentation/User Guides And Information.localized/Welcome to Snow Leopard.app/: No such file or directory
    5/7/12 1:38:22.748 PM [0x0-0x5005].com.apple.SetupAssistant: could not ditto /Library/Documentation/CPU_imac/, /Library/Documentation/ at /usr/sbin/locsetup line 117.
    5/7/12 1:38:22.755 PM Setup Assistant: BluetoothHIDDevice Apple Wireless Keyboard <AppleBluetoothHIDDevice: 0x7fa41042a210> 7c-c3-a1-99-0f-56 CoD:ffffff00002540 hidDevice:0x1c003 ID:0xdfeea00
    5/7/12 1:38:22.777 PM Setup Assistant: No username or no password
    5/7/12 1:38:22.785 PM Setup Assistant: No username or no password
    5/7/12 1:38:23.786 PM Setup Assistant: *********** _hadleNotification MBActivityBeganNotification
    5/7/12 1:38:23.786 PM Setup Assistant: *********** _hadleNotification MBActivityStatusChangedNotification
    5/7/12 1:38:23.871 PM Setup Assistant: *********** _hadleNotification MBActivityStatusChangedNotification
    5/7/12 1:38:23.917 PM Setup Assistant: *********** _hadleNotification MBActivityStatusChangedNotification
    5/7/12 1:38:32.252 PM Setup Assistant: Received 233 bytes of data
    5/7/12 1:38:32.252 PM Setup Assistant: MBAppleRegTransaction: No Error in responseDictionary.
    5/7/12 1:38:32.252 PM Setup Assistant: GMTTime Mon, 7 May 2012 17:37:59 GMT
    5/7/12 1:38:32.769 PM [0x0-0x5005].com.apple.SetupAssistant: Offset:           0
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant: names with offset: (
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Abidjan",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Accra",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Bamako",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Banjul",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Bissau",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Casablanca",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Conakry",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Dakar",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/El_Aaiun",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Freetown",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Lome",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Monrovia",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Nouakchott",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Ouagadougou",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Africa/Sao_Tome",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "America/Danmarkshavn",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "America/Scoresbysund",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Atlantic/Azores",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Atlantic/Reykjavik",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     "Atlantic/St_Helena",
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant:     GMT
    5/7/12 1:38:32.779 PM [0x0-0x5005].com.apple.SetupAssistant: )
    5/7/12 1:38:32.785 PM Setup Assistant: *********** _hadleNotification MBActivityStatusChangedNotification
    5/7/12 1:38:32.827 PM [0x0-0x5005].com.apple.SetupAssistant: City found: "Abidjan - Côte d’Ivoire"
    5/7/12 1:38:32.827 PM [0x0-0x5005].com.apple.SetupAssistant: Selection in progress...
    5/7/12 1:38:32.891 PM [0x0-0x5005].com.apple.SetupAssistant: DONE - result: 0 (SUCCESS)
    5/7/12 1:38:32.954 PM Setup Assistant: zset (
        "--osx",
        "--verbose",
        "--offset",
        0
    ) : terminated with 0
    5/7/12 1:38:32.955 PM Setup Assistant: _setNTPServer Africa/Abidjan (GMT) offset 0 0
    5/7/12 1:38:32.955 PM Setup Assistant: GMTOffset -400 (-14400.000000 seconds)
    5/7/12 1:38:32.986 PM [0x0-0x5005].com.apple.SetupAssistant: City:           NY
    5/7/12 1:38:32.986 PM [0x0-0x5005].com.apple.SetupAssistant: Country: US
    5/7/12 1:38:32.986 PM [0x0-0x5005].com.apple.SetupAssistant: Region:           NY
    5/7/12 1:38:32.986 PM [0x0-0x5005].com.apple.SetupAssistant: Reset to default: YES
    5/7/12 1:38:33.324 PM [0x0-0x5005].com.apple.SetupAssistant: City found: "New York, NY - United States"
    5/7/12 1:38:33.324 PM [0x0-0x5005].com.apple.SetupAssistant: Selection in progress...
    5/7/12 1:38:33.428 PM [0x0-0x5005].com.apple.SetupAssistant: DONE - result: 0 (SUCCESS)
    5/7/12 1:38:01.354 PM Setup Assistant: zset (
        "--osx",
        "--verbose",
        "--country",
        US,
        "--region",
        NY,
        "--city",
        NY,
        "--adaptive"
    ) : terminated with 0
    5/7/12 1:38:01.355 PM Setup Assistant: _setNTPServer America/New_York (EDT) offset -14400 (Daylight) 0
    5/7/12 1:38:01.407 PM ntpd: proto: precision = 1.000 usec
    5/7/12 1:38:01.659 PM Setup Assistant: *********** _hadleNotification MBActivityDidSucceedNotification
    5/7/12 1:38:01.661 PM Setup Assistant: *********** _hadleNotification MBActivityStatusChangedNotification
    5/7/12 1:38:04.855 PM Setup Assistant: Received 309 bytes of data
    5/7/12 1:38:04.855 PM Setup Assistant: firstPage is not html
    5/7/12 1:38:05.659 PM Setup Assistant: *********** _hadleNotification MBActivityStatusChangedNotification
    5/7/12 1:38:05.715 PM Setup Assistant: *********** _hadleNotification MBActivityDidFailNotification
    5/7/12 1:38:06.280 PM Setup Assistant: Time to move from MBChooseHasCameraOrNot (Reg__HasCameraOrNot) to MBRegisterAccountPicture (Reg_Account_Picture) was 0.564163s
    5/7/12 1:38:06.280 PM Setup Assistant: *********** _hadleNotification MBActivityEndedNotification
    5/7/12 1:38:40.012 PM Setup Assistant: Time to move from MBRegisterAccountPicture (Reg_Account_Picture) to MBFinishGestureTrap (Configured_And_Sent) was 0.934487s
    5/7/12 1:38:56.442 PM [0x0-0x5005].com.apple.SetupAssistant: Found USB Ethernet Device named = AtherosNewma40Interface
    5/7/12 1:38:56.442 PM [0x0-0x5005].com.apple.SetupAssistant: Found USB Ethernet Device named = IOEthernetAVBInterface
    5/7/12 1:38:56.442 PM [0x0-0x5005].com.apple.SetupAssistant: Found USB Ethernet Device named = AtherosNewma40Interface
    5/7/12 1:38:56.442 PM [0x0-0x5005].com.apple.SetupAssistant: Found USB Ethernet Device named = IOEthernetAVBInterface
    5/7/12 1:38:56.442 PM [0x0-0x5005].com.apple.SetupAssistant: Successfully connected to the Intel plugin
    5/7/12 1:38:56.450 PM blued: -[CBManager init] init returning self:0x10f93e1f0
    5/7/12 1:38:56.517 PM loginwindow: DEAD_PROCESS: 49 console
    5/7/12 1:38:57.000 PM kernel: Found client, reallocating 47001600
    5/7/12 1:38:57.606 PM loginwindow: Login Window Application Started
    5/7/12 1:38:57.615 PM loginwindow: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    5/7/12 1:38:57.755 PM com.apple.launchctl.LoginWindow: com.apple.findmymacmessenger: Already loaded
    5/7/12 1:38:57.914 PM com.apple.SecurityServer: Session 100009 created
    5/7/12 1:38:57.915 PM loginwindow: Login Window Started Security Agent
    5/7/12 1:38:57.954 PM airportd: _doAutoJoin: Already associated to “Apple Demo”. Bailing on auto-join.
    5/7/12 1:38:57.979 PM SecurityAgent: Echo enabled
    5/7/12 1:38:57.979 PM SecurityAgent: Echo enabled
    5/7/12 1:38:58.629 PM com.apple.loginwindow:           Can't find file://localhost/Users/garymarks/Library/Preferences/com.apple.finder.plist
    5/7/12 1:38:58.629 PM com.apple.loginwindow: Pre-generating cache file for user 501
    5/7/12 1:38:58.629 PM com.apple.loginwindow:           Home: /Users/garymarks
    5/7/12 1:38:58.629 PM com.apple.loginwindow:           Cache folder: /var/folders/3p/crcf3g451932w5_v07vb0fg40000gn/C/com.apple.QuickLook.thumbnailc ache
    5/7/12 1:38:58.629 PM com.apple.loginwindow:           No thumbnails found
    5/7/12 1:39:16.092 PM SecurityAgent: User info context values set for garymarks
    5/7/12 1:39:16.092 PM SecurityAgent: User info context values set for garymarks
    5/7/12 1:39:16.226 PM SecurityAgent: Login Window login proceeding
    5/7/12 1:39:16.226 PM SecurityAgent: Login Window login proceeding
    5/7/12 1:39:16.252 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountHomeDirectoryForUser:atPath:homeLocation:] | name = garymarks, path = /Users/garymarks, homeLoc = (null)
    5/7/12 1:39:16.252 PM authorizationhost: DEBUGLOG | -[HomeDirMounter setNeedsToUnmountDirVolumeAtLogout:] | mounter calling mechanism to setNeedsToUnmountDirVolumeAtLogout to 0
    5/7/12 1:39:16.252 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountHomeDirectoryForUser:atPath:homeLocation:] | urlAttribute = null
    5/7/12 1:39:16.252 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountHomeDirectoryForUser:atPath:homeLocation:] | homeDirPath did NOT follow a symlink, keeping original path of: /Users/garymarks
    5/7/12 1:39:16.252 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountHomeDirectoryForUser:atPath:homeLocation:] | homeDirMajorType = 1
    5/7/12 1:39:16.252 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountStandardDirectoryForUser:atPath:attributes:] | name = garymarks, path = /Users/garymarks, homeLoc = (null)
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMechanism isGuestAccount] | enter
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMechanism isGuestAccount] | Guest account check returning 0
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMounter setHomeDirType:] | setHomeDirType to 1
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountStandardDirectoryForUser:atPath:attributes:] | returning 0
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMounter mountHomeDirectoryForUser:atPath:homeLocation:] | returning 0
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMechanism invoke] | mountHomeDirectoryForUser returns 0
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMechanism updateAndUnlockKeychain] | updateAndUnlockKeychain
    5/7/12 1:39:16.253 PM authorizationhost: DEBUGLOG | -[HomeDirMechanism launchHomeDirFixerToolIfNeeded:] | launchHomeDirFixerToolIfNeeded called with 0
    5/7/12 1:39:16.513 PM loginwindow: Login Window - Returned from Security Agent
    5/7/12 1:39:16.519 PM loginwindow: USER_PROCESS: 241 console
    5/7/12 1:39:16.553 PM airportd: _doAutoJoin: Already associated to “Apple Demo”. Bailing on auto-join.
    5/7/12 1:39:16.590 PM com.apple.launchd.peruser.501: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    5/7/12 1:39:16.592 PM com.apple.launchctl.Aqua: load: option requires an argument -- D
    5/7/12 1:39:16.592 PM com.apple.launchctl.Aqua: usage: launchctl load [-wF] [-D <user|local|network|system|all>] paths...
    5/7/12 1:39:16.727 PM UserEventAgent: CaptiveNetworkSupport:CNSServerRegisterUserAgent:187 new user agent port: 14139
    5/7/12 1:39:16.736 PM com.apple.launchd.peruser.501: (com.apple.launchctl.Aqua[264]) Exited with code: 1
    5/7/12 1:39:16.974 PM MiniLauncher: Launching iCloud prefs for user 501
    5/7/12 1:39:17.088 PM MiniLauncher: Launch IncompatibleAppDisplay.app (1)
    5/7/12 1:39:19.382 PM Dock: Bookmark failed to issue extension for item /Developer/Applications (depth=1): No such file or directory
    5/7/12 1:39:19.511 PM com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.512 PM com.apple.dock.extra: 2012-05-07 13:39:19.507 com.apple.dock.extra[310:1707] Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.512 PM com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.512 PM com.apple.dock.extra: 2012-05-07 13:39:19.511 com.apple.dock.extra[310:1707] Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.512 PM com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.513 PM com.apple.dock.extra: 2012-05-07 13:39:19.512 com.apple.dock.extra[310:1707] Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.513 PM com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:19.513 PM com.apple.dock.extra: 2012-05-07 13:39:19.512 com.apple.dock.extra[310:1707] Could not connect the action buttonPressed: to target of class NSApplication
    5/7/12 1:39:21.216 PM System Preferences: Database file is missing: /Users/garymarks/Library/Application Support/AddressBook/AddressBook-v22.abcddb
    5/7/12 1:39:22.603 PM iCal Helper: Could not find Meta Data for persistent Store
    5/7/12 1:39:22.666 PM System Preferences: Lock Contention on CalendarStore Initialization
    5/7/12 1:39:23.730 PM System Preferences: The IAAccountDiscovery completed notification
    5/7/12 1:39:23.930 PM System Preferences: kCGErrorIllegalArgument: CGSDeviceCreate: Invalid window
    5/7/12 1:39:23.930 PM System Preferences: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 1:39:23.930 PM System Preferences: Failed to create window context device
    5/7/12 1:39:23.930 PM System Preferences: CGWindowContextCreate: failed to create window context delegate.
    5/7/12 1:39:23.930 PM [0x0-0x14014].com.apple.systempreferences: May  7 13:39:23 Garys-iMac.local System Preferences[285] <Error>: Failed to create window context device
    5/7/12 1:39:23.930 PM [0x0-0x14014].com.apple.systempreferences: May  7 13:39:23 Garys-iMac.local System Preferences[285] <Error>: CGWindowContextCreate: failed to create window context delegate.
    5/7/12 1:39:23.930 PM System Preferences: _initWithWindowNumber: error creating graphics ctxt object for ctxt:0xb003, window:0x0
    5/7/12 1:39:23.930 PM System Preferences: CGPixelAccessLock failed!
    5/7/12 1:39:27.884 PM com.apple.launchd.peruser.501: (com.apple.AddressBook.abd) Throttling respawn: Will start in 10 seconds
    5/7/12 1:39:28.468 PM genatsdb: *GENATSDB* FontObjects generated = 324
    5/7/12 1:39:31.932 PM coreservicesd: *** process 25 exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    5/7/12 1:39:53.702 PM diskmanagementd: DM ->T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: inHostDiskUDS=0x10c808c20=disk0s2=Macintosh HD inWhatStr=RecoveryInfoBaseSystemVersion
    5/7/12 1:39:53.755 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did get booterRecoveryUDS=0x10c808ae0=disk0s3=Recovery HD
    5/7/12 1:39:53.860 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did mount nobrowse; MP=/Volumes/Recovery HD OMS=0x10c51a610
    5/7/12 1:39:53.860 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: getting dict from file=/Volumes/Recovery HD/com.apple.recovery.boot/SystemVersion.plist
    5/7/12 1:39:53.864 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: got dict (or NULL=will return err): oooInfoDict=0x7fcccad0c490
    5/7/12 1:39:53.909 PM fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
    5/7/12 1:39:54.037 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did if-needed-best-effort unmount
    5/7/12 1:39:54.038 PM diskmanagementd: DM <-T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: retErr=0 outInfoDict={
        ProductBuildVersion = 11D2001;
        ProductCopyright = "1983-2012 Apple Inc.";
        ProductName = "Mac OS X";
        ProductUserVisibleVersion = "10.7.3";
        ProductVersion = "10.7.3";
    5/7/12 1:40:34.997 PM Mail: Using V2 Layout
    5/7/12 1:41:26.529 PM PubSubAgent: SQL Error: SQLITE_CANTOPEN[14.0]: Database file not found
    5/7/12 1:42:03.945 PM Mail: Database file is missing: /Users/garymarks/Library/Application Support/AddressBook/MailRecents-v4.abcdmr
    5/7/12 1:42:17.559 PM helpd: CarbonCore.framework, Our status with coreservicesd is unusual, 2, and things likely will stop working.
    5/7/12 1:42:17.559 PM helpd: CarbonCore.framework: Unable to connect to coreservicesd.  Things likely won't work.  Sorry.
    5/7/12 1:44:43.305 PM mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 1:45:36.505 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:45:40.464 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:45:46.030 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:45:47.947 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:45:50.966 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:45:52.537 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:46:08.399 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:46:12.204 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:46:12.646 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:46:21.393 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:46:41.971 PM DashboardClient: error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:41.971 PM com.apple.Dock.agent: 2012-05-07 13:46:41.970 DashboardClient[387:403] error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:42.004 PM DashboardClient: error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:42.005 PM com.apple.Dock.agent: 2012-05-07 13:46:42.004 DashboardClient[387:403] error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:42.080 PM DashboardClient: error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:42.080 PM com.apple.Dock.agent: 2012-05-07 13:46:42.079 DashboardClient[387:403] error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:43.155 PM DashboardClient: error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:46:43.155 PM com.apple.Dock.agent: 2012-05-07 13:46:43.155 DashboardClient[387:403] error [1001] setting colorSpace to iMac colorspace
    5/7/12 1:47:06.477 PM Dock: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    5/7/12 1:47:06.477 PM Dock: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 1:47:06.478 PM Dock: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    5/7/12 1:47:16.707 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 1:49:12.262 PM Mail: Using V2 Layout
    5/7/12 1:51:06.625 PM Mail: Using V2 Layout
    5/7/12 1:51:57.838 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:00.848 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:17.256 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:18.435 PM [0x0-0x2c02c].com.apple.iTunes: The plugin 'Quartz Composer Visualizer' failed to load because it has the wrong CPU architecture for this version of iTunes. (3585)
    5/7/12 1:52:21.938 PM com.apple.SecurityServer: Session 100006 created
    5/7/12 1:52:22.034 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:25.637 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:27.851 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:34.196 PM Mail: Using V2 Layout
    5/7/12 1:52:50.636 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:52.642 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:55.325 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:52:59.656 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:54:06.437 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 1:54:09.258 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 1:55:52.249 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 1:56:23.724 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:32.343 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:32.496 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:32.521 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:32.550 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:32.909 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:33.263 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:33.552 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:33.555 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:56:33.567 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.660 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.661 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char
    for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char
    for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char " for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char , for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char , for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char . for PropertyName in line 65
    5/7/12 1:57:44.662 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char , for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char . for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char , for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.663 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char , for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char   for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char . for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char " for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char
    for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char
    for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.664 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.665 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char # for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char
    for PropertyName in line 65
    5/7/12 1:57:44.666 PM mdworker: Invalid char
    for PropertyName in line 65
    5/7/12 1:57:58.906 PM mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 1:58:33.926 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:35.954 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:44.425 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:44.556 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:44.610 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:44.648 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:44.681 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:58:47.340 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 1:59:01.135 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 1:59:05.286 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 1:59:51.496 PM com.apple.mdworker.pool.0: I/O error : encoder error
    5/7/12 2:00:23.552 PM mdworker: *** Failed to decode QUOT-PRINTED data, treating as binary
    5/7/12 2:03:48.743 PM [0x0-0x2c02c].com.apple.iTunes: Successfully connected to the Intel plugin
    5/7/12 2:03:48.743 PM [0x0-0x2c02c].com.apple.iTunes: Version from driver for Certificates 1
    5/7/12 2:09:09.060 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[82.000000,18.000000] offset [340.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.060 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[60.000000,18.000000] offset [0.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.060 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[65.000000,18.000000] offset [422.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.060 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[61.000000,18.000000] offset [487.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.060 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[37.000000,18.000000] offset [0.000000,36.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.060 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[66.000000,18.000000] offset [548.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[62.000000,18.000000] offset [614.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[67.000000,18.000000] offset [676.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[57.000000,18.000000] offset [743.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[61.000000,18.000000] offset [800.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[72.000000,18.000000] offset [861.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[24.000000,18.000000] offset [933.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[33.000000,18.000000] offset [957.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[40.000000,18.000000] offset [160.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.061 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[39.000000,18.000000] offset [200.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[41.000000,18.000000] offset [239.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[66.000000,18.000000] offset [280.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[26.000000,18.000000] offset [990.000000,0.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[94.000000,18.000000] offset [346.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[73.000000,18.000000] offset [440.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[46.000000,18.000000] offset [513.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[103.000000,18.000000] offset [559.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[35.000000,18.000000] offset [662.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.062 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[46.000000,18.000000] offset [697.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.063 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[115.000000,18.000000] offset [743.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.063 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[51.000000,18.000000] offset [858.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.063 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[83.000000,18.000000] offset [909.000000,18.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.063 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[46.000000,18.000000] offset [85.000000,36.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.063 PM Finder: --ImageKit Error: updateGLTextureWithBitmapData: glPixelStorei returned an error : 506 (subSize=[88.000000,18.000000] offset [131.000000,36.000000] glID:2, context:0x7f8e7c603bd0)
    5/7/12 2:09:09.064 PM Finder: --ImageKit Error: error before reading pixels: 506
    5/7/12 2:09:09.064 PM Finder: --ImageKit Error: error after reading pixels: 506
    5/7/12 2:09:33.993 PM com.apple.launchd.peruser.501: ([0x0-0x20020].com.apple.A

    Please carefully read Lion Setup Assistant tips, this will show you how to move your files. It's extremely simple to do, also please book mark and begin using:
    Mac 101
    Switch 101
    Find Out How Video tutorials
    List of Useful URLs for switchers
    To be honest I think you're over thinking the matter and making your transition more difficult than need be. IMHO this is natural coming from the Windows world where managing your system is difficult, not so with OS X. Take some look over the URL's and study them and begin playing with the system and you'll see how easy it really is.

  • D-Link DIR-615 (Rev H1(!)) does not work with Airport Express?

    Hi there,
    I had my AirPlay working just fine with my Airport Express (AX) and my wireless N Router D-Link DIR-615 (Rev. B2). Now I changed my Internet provider and received a D-Link DIR-615 (Rev. H1) and I cannot find my AX anymore (I mean, it's still here, but the AirPort Utility cant find it!)
    Are there known issues between those two?
    (The Rev. H1/B2 is the Hardware Version of my D-Link DIR-615. The Firmware is up-to-date (8.01 I think))
    The status light is a solid, beautiful green.
    I already tried the following:
    - restart the AX, the D-Link and my MacBook (10.7.2)
    - changed from AES to TKIP (found that somewhere in the internet)
    - Reseted my AX to factory settings and configured everything new. (via Ethernet)
    Probably interesting:
    - After resetting to factory settings and configuring everything new, the AX showed up in iTunes, but when I tried to connect with it, it kept me waiting for 1-3 Minutes and simply did not connect w/o error message. The AX disappeared after restarting iTunes.
    I'm running out of solutions..
    Anyone a good question/suggestion or answer for me?
    greetings
    squob

    Only way I see out other than waiting, is to hook he Drive to a Mac, (FW preferable for speed), then get Tri-Backup...
    http://www.tri-edre.com/english/tribackup.html
    Which can be set to trigger Backups when Shares mount.

  • Exception in setting up message-driven bean container

    hello,
    I'm trying to deploy a single mdb and I'm getting an exception. I've tried closely following the way things are done with the mdb example in the samples AppServer7 directory. Am I missing something in one of my deployment descriptior files?
    Thanks,
    Robert
    [17/Apr/2003:12:18:24] SEVERE ( 1832): MDB00030: [mdb2-simpleEjb:MessageProcessorBean]: Exception in setting up message-driven bean container: [[C4060]: Login failed.]
    [17/Apr/2003:12:18:24] FINE ( 1832): MDB00018: [mdb2-simpleEjb:MessageProcessorBean]: Closing message-driven bean container connection
    [17/Apr/2003:12:18:24] SEVERE ( 1832): MDB00017: [MessageProcessorBean]: Exception in creating message-driven bean container: [javax.jms.JMSSecurityException: [C4060]: Login failed.]
    [17/Apr/2003:12:18:24] SEVERE ( 1832): javax.jms.JMSSecurityException
    javax.jms.JMSSecurityException: [C4060]: Login failed.
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.authenticate(ProtocolHandler.java:682)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.hello(ProtocolHandler.java:615)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.hello(ConnectionImpl.java:238)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:1512)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:403)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:234)

    Hi,
    You have not created the jms destination queue object
    jms/Warehouse
    Your server logs says it cannot find the destination queue object.It has got nothing to do with jndi name of your bean
    Create jms destination queue object using
    asadmin>create-jms-resource instance <instance_name> resourcetype javax.jms.Queue --property imqDestinationName=<NAme>  jms/Warehouse
    Then use list-jms-resources <instance_name> to
    find if jms/Warehouse destionation queue object has been created.
    Get back in case of any issues

  • My computer can't start the AMD due to error message 1053.

    This started after I tried to install the new update that came today. I uninstalled iTunes and when attempting to install it again, it failed. The icon is there but when I try to open it a message comes up saying that it can't find it.

    I switched back to 11.1.1.0.1, loaded the backup of the app i made.
    In this version of JDeveloper the application runs fine, however the similar error as above is displayed in the log and i think is more meaningful then above.
    Here it is:
    INFO: JMX Portable Framework initialized with platform SPI "class oracle.as.jmx.framework.wls.spi.JMXFrameworkProviderImpl"
    <Jul 16, 2009 1:57:56 PM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'DirectedMessaging' due to error weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: false].
         at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:16)
         Truncated. see log file for complete stacktrace
    >
    Application Redeployed Successfully.
    Elapsed time for deployment: 22 seconds
    ---- Deployment finished. ---- Jul 16, 2009 1:59:06 PM
    Run startup time: 26203 ms.
    [Application DirectedMessaging deployed to Server Instance DefaultServer]
    Target URL -- http://****
    I hope this information will help to solve my original problem of this post. Any ideas ?
    Thanks,
    Valon

  • Problem deploying message driven bean using Log4j

    Hello all.
    Using JDeveloper 11.1.1.0.2, I'm having a problem with a message driven bean I've created and associated with a JMS queue.
    I've created an EJB Module project in my application (in which some other projects exist), and created the bean. A simple test of the bean, sending a message through the jms queue and printing it on system.out in the mdb onMessage() worked just fine.
    However, when I add apache commons logging to my mdb, things start to go wrong. Running the project on the integrated weblogic 10.3 server just fails during deployment, due to a NoClassDefFoundError on org/apache/log4j/Logger.
    In project properties -> libraries and classpath, I've added a log4j library (Log4j-1.2.14.jar) next to Commons Logging 1.0.4 but it doesn't seem to matter anything.
    The code of my message bean:
    @MessageDriven(mappedName = "weblogic.wsee.DefaultQueue")
    public class MyMessageBean implements MessageListener {
        // logger
        private static Log sLog = LogFactory.getLog(MyMessageBean.class);
        public void ejbCreate() {
        public void ejbRemove() {
        public void onMessage(Message message) {
            MapMessage mapmsg = null;
            try {
                if (message instanceof MapMessage) {
                    mapmsg = (MapMessage)message;
                    boolean msgRedelivered = mapmsg.getJMSRedelivered();
                    String msgId = mapmsg.getJMSMessageID();
                    if (!msgRedelivered) {
                        sLog.debug("****** Successfully received message " + msgId);
                    } else {
                        sLog.debug("****** Successfully received redelivered message " + msgId);
                    // Haal de inhoud op:
                    int testInt = mapmsg.getInt("TestInt");
                    sLog.debug("TestInt:" + testInt);
                } else {
                    sLog.debug("Message of wrong type: " +
                                       message.getClass().getName());
            } catch (Exception e) {
                sLog.error("Fout in verwerken",e);           
    }Does anybody have any clue as to what I might be doing wrong or missing out here?
    The complete stacktrace:
    5-aug-2009 12:54:44 oracle.adf.share.config.ADFConfigFactory cleanUpApplicationState
    INFO: Cleaning up application state
    java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.ejb.container.dd.xml.EjbAnnotationProcessor.processWLSAnnotations(EjbAnnotationProcessor.java:1705)
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.processWLSAnnotations(EjbDescriptorReaderImpl.java:346)
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.createReadOnlyDescriptorFromJarFile(EjbDescriptorReaderImpl.java:192)
         at weblogic.ejb.spi.EjbDescriptorFactory.createReadOnlyDescriptorFromJarFile(EjbDescriptorFactory.java:93)
         at weblogic.ejb.container.deployer.EJBModule.loadEJBDescriptor(EJBModule.java:1198)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:380)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:42)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:16)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:155)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:197)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:89)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:723)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@51b296 for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger) (Caused by org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@51b296 for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger))
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:543)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:235)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:209)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:351)
         at nl.justid.dolores.mdb.MyMessageBean.<clinit>(MyMessageBean.java:19)
         ... 32 more
    Caused by: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@51b296 for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:413)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:529)
         ... 36 more
    Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
         at java.lang.Class.getConstructor0(Class.java:2699)
         at java.lang.Class.getConstructor(Class.java:1657)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:410)
         ... 37 more
    Caused by: java.lang.ClassNotFoundException: org.apache.log4j.Logger
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         ... 42 more
    <5-aug-2009 12:54:44 uur CEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1249469684085' for task '14'. Error is: 'weblogic.application.ModuleException: Exception preparing module: EJBModule(Dolores-MessageBeans-ejb)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    null.'
    weblogic.application.ModuleException: Exception preparing module: EJBModule(Dolores-MessageBeans-ejb)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    null.
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:452)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         Truncated. see log file for complete stacktrace
    java.lang.ClassNotFoundException: org.apache.log4j.Logger
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
         Truncated. see log file for complete stacktrace
    >
    5-aug-2009 12:54:44 oracle.adf.share.config.ADFConfigFactory cleanUpApplicationState
    INFO: Cleaning up application state
    <5-aug-2009 12:54:44 uur CEST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'Dolores'.>
    <5-aug-2009 12:54:44 uur CEST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: Exception preparing module: EJBModule(Dolores-MessageBeans-ejb)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    null.
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:452)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         Truncated. see log file for complete stacktrace
    java.lang.ClassNotFoundException: org.apache.log4j.Logger
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
         Truncated. see log file for complete stacktrace
    >
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application Dolores on DefaultServer.: Exception preparing module: EJBModule(Dolores-MessageBeans-ejb)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    null..
    weblogic.application.ModuleException: Exception preparing module: EJBModule(Dolores-MessageBeans-ejb)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    null.
    ####  Deployment incomplete.  ####    Aug 5, 2009 12:54:44 PM
    oracle.jdeveloper.deploy.DeployException
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:247)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:157)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:436)
         at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
         at oracle.jdevimpl.runner.adrs.AdrsStarter$5$1.run(AdrsStarter.java:1365)
    Caused by: oracle.jdeveloper.deploy.DeployException
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:413)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:238)
         ... 11 more
    Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:395)
         ... 12 more
    #### Cannot run application Dolores due to error deploying to DefaultServer.
    [Application Dolores stopped and undeployed from Server Instance DefaultServer]Thanks in advance!
    Greetings,
    Eelse
    Edited by: Eelse on Aug 5, 2009 1:57 PM
    Edited by: Eelse on Aug 5, 2009 5:39 PM

    Creating a new deployment profile (EAR) and including the original deployment (JAR) and the needed libraries (in a lib-directory) solved the problem.

  • Cannot Delete Messages in XI (PI)

    HI,
    We are using SAP NetWeaver PI v7.00 SP15.  Our PSAPSR3DB tablespace is growing and we can't delete the messages.  If I run RSXMB_SHOW_REORG_STATUS it shows 615,086 asynchronous messages not in retention period (can be deleted). There are only 1314 messages in the retention period.  There are 113,759 messages without errors to be flagged. 
    If I run RSXMB_DELETE_MESSAGES through TCODE SXMB_ADM I get these results:
    07.10.2008 13:10:21 Job started
    07.10.2008 13:10:21 Step 001 started (program RSXMB_DELETE_MESSAGES, variant &0000000000027, user ID DBARBOUR)
    07.10.2008 13:10:34 0 XML messages deleted
    07.10.2008 13:10:34 Step 002 started (program RSXMB_TABLE_SWITCH, variant &0000000000027, user ID DBARBOUR)
    07.10.2008 13:10:34 Job finished
    I'm working through Note 872388 Troubleshooting Archiving and Deletion in XI 3.0 / PI 7.0 and others, but nothing is working.
    I've even tried using the http screen suggested in 807615, but still can't get rid of the old messages.  My configuration is set to 'simple" (without table switch?) so it's somewhat puzzling the deletion job tries the switch, although I'm not sure if that's signifigant.
    Can someone help me out here?

    David,
    I had similar issues, but note 872388 solved my problems. I am also running without table switch.
    -Regards

  • An erroe message please see other link ( inside the post )

    A new discussion related to :
    https://discussions.apple.com/thread/5317193?start=15&tstart=0
    I had a Live Chat with an Apple advisor ,
    he said :
    The problem started when you updated to 10.8.5, but the reason is because your external drives were connected during the update and this has caused an issue.
    I say :
    if ill upgrading software -the HD should be disconnected ???
    To try and solve the issue , :
    If ill Format the 2 HD external drivers - can this solve the problem instead of cleaning my iMac PRAM ....and other solutions
    Thanks

    Hi.
    The problem still here ,
    Yesterday at 12:52 PM I've made a PRAM .
    Turned the iMac to sleep at 12:59 PM
    in the morning 07:12 the iMac woke by me .
    Here is a small log ,
    Can you see something please ?
    9/22/13 12:52:25.000 AM bootlog[0]: BOOT_TIME 1379800345 0
    9/22/13 12:52:27.000 AM kernel[0]: PMAP: PCID enabled
    9/22/13 12:52:27.000 AM kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    9/22/13 12:52:27.000 AM kernel[0]: Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    9/22/13 12:52:27.000 AM kernel[0]: vm_page_bootstrap: 4021542 free pages and 139994 wired pages
    9/22/13 12:52:27.000 AM kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    9/22/13 12:52:27.000 AM kernel[0]: zone leak detection enabled
    9/22/13 12:52:27.000 AM kernel[0]: standard timeslicing quantum is 10000 us
    9/22/13 12:52:27.000 AM kernel[0]: standard background quantum is 2500 us
    9/22/13 12:52:27.000 AM kernel[0]: mig_table_max_displ = 74
    9/22/13 12:52:27.000 AM kernel[0]: TSC Deadline Timer supported and enabled
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto kext started!
    9/22/13 12:52:27.000 AM kernel[0]: Running kernel space in FIPS MODE
    9/22/13 12:52:27.000 AM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    9/22/13 12:52:27.000 AM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    9/22/13 12:52:27.000 AM kernel[0]: corecrypto.kext FIPS POST passed!
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    9/22/13 12:52:27.000 AM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    9/22/13 12:52:27.000 AM kernel[0]: calling mpo_policy_init for TMSafetyNet
    9/22/13 12:52:27.000 AM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    9/22/13 12:52:27.000 AM kernel[0]: calling mpo_policy_init for Sandbox
    9/22/13 12:52:27.000 AM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    9/22/13 12:52:27.000 AM kernel[0]: calling mpo_policy_init for Quarantine
    9/22/13 12:52:27.000 AM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    9/22/13 12:52:27.000 AM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    9/22/13 12:52:27.000 AM kernel[0]: The Regents of the University of California. All rights reserved.
    9/22/13 12:52:27.000 AM kernel[0]: MAC Framework successfully initialized
    9/22/13 12:52:27.000 AM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    9/22/13 12:52:27.000 AM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    9/22/13 12:52:27.000 AM kernel[0]: ACPI: sleep states S3 S4 S5
    9/22/13 12:52:27.000 AM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 1245
    9/22/13 12:52:27.000 AM kernel[0]: AppleIntelCPUPowerManagement: (built 16:43:02 Jul 29 2013) initialization complete
    9/22/13 12:52:27.000 AM kernel[0]: pci build Aug 29 2013 20:19:31, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    9/22/13 12:52:27.000 AM kernel[0]: [ PCI configuration begin ]
    9/22/13 12:52:27.000 AM kernel[0]: console relocated to 0xf80020000
    9/22/13 12:52:27.000 AM kernel[0]: [ PCI configuration end, bridges 15, devices 17 ]
    9/22/13 12:52:27.000 AM kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    9/22/13 12:52:27.000 AM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    9/22/13 12:52:27.000 AM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    9/22/13 12:52:27.000 AM kernel[0]: rooting via boot-uuid from /chosen: 8FD1576E-AAF9-3269-A128-DE3C13D37DB8
    9/22/13 12:52:27.000 AM 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>
    9/22/13 12:52:27.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    9/22/13 12:52:27.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    9/22/13 12:52:27.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    9/22/13 12:52:27.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    9/22/13 12:52:27.000 AM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    9/22/13 12:52:27.000 AM kernel[0]: BTCOEXIST off
    9/22/13 12:52:27.000 AM kernel[0]: BRCM tunables:
    9/22/13 12:52:27.000 AM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    9/22/13 12:52:27.000 AM kernel[0]: CoreStorage: fsck_cs has finished for group "AF1C1444-D575-4756-9207-C46A8716977E" with status 0x00
    9/22/13 12:52:27.000 AM kernel[0]: thr 0xffffff802857f000 Composite Disk alg="bloomclock" unit_nbytes=131072
    9/22/13 12:52:27.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT1@1/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE SSD SM128E Media/IOGUIDPartitionScheme/Customer@2/CoreStoragePhysical/CoreStorageGroup/Mac intosh HD
    9/22/13 12:52:27.000 AM kernel[0]: BSD root: disk2, major 1, minor 8
    9/22/13 12:52:27.000 AM kernel[0]: Kernel is LP64
    9/22/13 12:52:25.305 AM com.apple.launchd[1]: *** launchd[1] has started up. ***
    9/22/13 12:52:25.305 AM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    9/22/13 12:52:27.302 AM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    9/22/13 12:52:27.000 AM kernel[0]: USBMSC Identifier (non-unique): 000000000573673c20ed 0x59f 0x105e 0x1, 3
    9/22/13 12:52:27.000 AM kernel[0]: BCM5701Enet: Ethernet address 10:dd:b1:a5:5b:84
    9/22/13 12:52:27.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address 8c:2d:aa:59:5f:61
    9/22/13 12:52:27.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    9/22/13 12:52:27.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    9/22/13 12:52:28.510 AM airportd[29]: _processDLILEvent: en1 attached (down)
    9/22/13 12:52:28.000 AM kernel[0]: createVirtIf(): ifRole = 1
    9/22/13 12:52:28.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    9/22/13 12:52:28.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff8029a92400
    9/22/13 12:52:28.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    9/22/13 12:52:28.000 AM kernel[0]: Created virtif 0xffffff8029a92400 p2p0
    9/22/13 12:52:28.544 AM com.apple.SecurityServer[15]: Session 100000 created
    9/22/13 12:52:28.587 AM com.apple.SecurityServer[15]: Entering service
    9/22/13 12:52:28.696 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    9/22/13 12:52:29.000 AM kernel[0]: NVDAStartup: Official
    9/22/13 12:52:29.000 AM kernel[0]: NVDAGK100HAL loaded and registered
    9/22/13 12:52:29.000 AM kernel[0]: Previous Shutdown Cause: 5
    9/22/13 12:52:29.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    9/22/13 12:52:29.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    9/22/13 12:52:29.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0066
    9/22/13 12:52:29.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff8029bc4800 ****
    9/22/13 12:52:29.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff8029bc4800
    9/22/13 12:52:29.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    9/22/13 12:52:29.000 AM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    9/22/13 12:52:29.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    9/22/13 12:52:29.000 AM kernel[0]: DSMOS has arrived
    9/22/13 12:52:29.000 AM kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    9/22/13 12:52:29.000 AM kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0fd8
    9/22/13 12:52:29.305 AM configd[17]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    9/22/13 12:52:29.305 AM configd[17]: DHCP en1: INIT transmit failed
    9/22/13 12:52:29.319 AM configd[17]: network changed.
    9/22/13 12:52:29.322 AM configd[17]: setting hostname to "Ronens-iMac.local"
    9/22/13 12:52:29.385 AM blued[41]: Read the UHE Info
    9/22/13 12:52:29.385 AM blued[41]: Read version 2 info.  Number of devices:1
    9/22/13 12:52:29.385 AM blued[41]: Class of device:     0x2580
    9/22/13 12:52:29.385 AM blued[41]: Device name: 'Apple Magic Mouse' length:18
    9/22/13 12:52:29.385 AM blued[41]: Finished reading the HID data
    9/22/13 12:52:29.385 AM blued[41]: Found a device with PID:0x030d VID:0x05ac
    9/22/13 12:52:30.000 AM kernel[0]: [BNBMouseDevice::init][75.19] init is complete
    9/22/13 12:52:30.000 AM kernel[0]: [BNBMouseDevice::handleStart][75.19] returning 1
    9/22/13 12:52:30.000 AM kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    9/22/13 12:52:30.000 AM kernel[0]: [AppleMultitouchDevice::start] entered
    9/22/13 12:52:32.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,2301,0de1,0300,45e1,0000]
    9/22/13 12:52:32.375 AM hidd[69]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    9/22/13 12:52:32.388 AM corestoraged[74]: 0x7fff71f2f180 unlockLVF: LVF=4AE29FB0-E787-4D6C-9FB1-37E17F7056E0, "None", status = "Unlocked"
    9/22/13 12:52:32.440 AM appleeventsd[75]: main: Starting up
    9/22/13 12:52:32.440 AM hidd[69]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    9/22/13 12:52:32.449 AM mDNSResponder[62]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    9/22/13 12:52:32.464 AM com.apple.usbmuxd[49]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    9/22/13 12:52:32.490 AM coreservicesd[38]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    9/22/13 12:52:32.493 AM coreservicesd[38]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    9/22/13 12:52:32.000 AM kernel[0]: macx_swapon SUCCESS
    9/22/13 12:52:32.501 AM mds[61]: (Normal) FMW: FMW 0 0
    9/22/13 12:52:32.568 AM awacsd[78]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    9/22/13 12:52:32.574 AM loginwindow[65]: Login Window Application Started
    9/22/13 12:52:32.581 AM awacsd[78]: InnerStore CopyAllZones: no info in Dynamic Store
    9/22/13 12:52:32.588 AM mDNSResponder[62]: D2D_IPC: Loaded
    9/22/13 12:52:32.588 AM mDNSResponder[62]: D2DInitialize succeeded
    9/22/13 12:52:32.589 AM configd[17]: network changed: DNS*
    9/22/13 12:52:32.589 AM aosnotifyd[81]: bootstrap_look_up failed (44e)
    9/22/13 12:52:32.611 AM systemkeychain[89]: done file: /var/run/systemkeychaincheck.done
    9/22/13 12:52:32.641 AM WindowServer[92]: Server is starting up
    9/22/13 12:52:32.669 AM locationd[66]: NOTICE,Location icon should now be in state 0
    9/22/13 12:52:32.678 AM netbiosd[60]: Unable to start NetBIOS name service:
    9/22/13 12:52:32.681 AM apsd[80]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/22/13 12:52:32.682 AM apsd[80]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/22/13 12:52:33.977 AM WindowServer[92]: Session 256 retained (2 references)
    9/22/13 12:52:33.977 AM WindowServer[92]: Session 256 released (1 references)
    9/22/13 12:52:33.983 AM WindowServer[92]: Session 256 retained (2 references)
    9/22/13 12:52:33.984 AM WindowServer[92]: init_page_flip: page flip mode is on
    9/22/13 12:52:34.557 AM WindowServer[92]: mux_initialize: Couldn't find any matches
    9/22/13 12:52:34.570 AM WindowServer[92]: GLCompositor enabled for tile size [256 x 256]
    9/22/13 12:52:34.570 AM WindowServer[92]: CGXGLInitMipMap: mip map mode is on
    9/22/13 12:52:34.621 AM WindowServer[92]: WSMachineUsesNewStyleMirroring: true
    9/22/13 12:52:34.622 AM WindowServer[92]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 30 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a0120000000004280480
    9/22/13 12:52:34.622 AM WindowServer[92]: 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 0xffffffffffffffffffffffff003f003e
    9/22/13 12:52:34.622 AM WindowServer[92]: 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 0xffffffffffffffffffffffff003f003d
    9/22/13 12:52:34.626 AM WindowServer[92]: Created shield window 0x5 for display 0x04280480
    9/22/13 12:52:34.626 AM WindowServer[92]: Created shield window 0x6 for display 0x003f003e
    9/22/13 12:52:34.626 AM WindowServer[92]: Created shield window 0x7 for display 0x003f003d
    9/22/13 12:52:34.627 AM WindowServer[92]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 30 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a0120000000004280480
    9/22/13 12:52:34.627 AM WindowServer[92]: Display 0x003f003e: GL mask 0x4; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    9/22/13 12:52:34.627 AM WindowServer[92]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    9/22/13 12:52:34.627 AM WindowServer[92]: CGXPerformInitialDisplayConfiguration
    9/22/13 12:52:34.628 AM WindowServer[92]:   Display 0x04280480: MappedDisplay Unit 0; Vendor 0x610 Model 0xa012 S/N 0 Dimensions 18.70 x 10.51; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    9/22/13 12:52:34.628 AM WindowServer[92]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    9/22/13 12:52:34.628 AM WindowServer[92]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    9/22/13 12:52:34.693 AM WindowServer[92]: GLCompositor: GL renderer id 0x01022647, GL mask 0x00000007, accelerator 0x0000419b, unit 0, caps QEX|QGL|MIPMAP, vram 512 MB
    9/22/13 12:52:34.699 AM WindowServer[92]: GLCompositor: GL renderer id 0x01022647, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/22/13 12:52:34.702 AM loginwindow[65]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    9/22/13 12:52:34.767 AM WindowServer[92]: Created shield window 0x8 for display 0x04280480
    9/22/13 12:52:34.767 AM WindowServer[92]: Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/22/13 12:52:34.774 AM WindowServer[92]: Unable to open IOHIDSystem (e00002bd)
    9/22/13 12:52:34.802 AM launchctl[118]: com.apple.findmymacmessenger: Already loaded
    9/22/13 12:52:34.810 AM com.apple.SecurityServer[15]: Session 100005 created
    9/22/13 12:52:34.836 AM hidd[69]: CGSShutdownServerConnections: Detaching application from window server
    9/22/13 12:52:34.837 AM hidd[69]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    9/22/13 12:52:34.866 AM loginwindow[65]: Login Window Started Security Agent
    9/22/13 12:52:34.878 AM UserEventAgent[119]: cannot find useragent 1102
    9/22/13 12:52:34.942 AM SecurityAgent[128]: This is the first run
    9/22/13 12:52:34.942 AM SecurityAgent[128]: MacBuddy was run = 0
    9/22/13 12:52:34.955 AM WindowServer[92]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280480 device: 0x1015f7110  isBackBuffered: 1 numComp: 3 numDisp: 3
    9/22/13 12:52:34.979 AM SecurityAgent[128]: User info context values set for Ronen
    9/22/13 12:52:35.000 AM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    9/22/13 12:52:35.251 AM loginwindow[65]: Login Window - Returned from Security Agent
    9/22/13 12:52:35.261 AM loginwindow[65]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    9/22/13 12:52:35.270 AM loginwindow[65]: USER_PROCESS: 65 console
    9/22/13 12:52:35.315 AM com.apple.launchd.peruser.501[133]: (com.apple.gamed) Ignored this key: UserName
    9/22/13 12:52:35.315 AM com.apple.launchd.peruser.501[133]: (com.apple.gamed) Ignored this key: GroupName
    9/22/13 12:52:35.316 AM com.apple.launchd.peruser.501[133]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    9/22/13 12:52:35.320 AM loginwindow[65]: Connection with distnoted server was invalidated
    9/22/13 12:52:35.327 AM distnoted[137]: # distnote server agent  absolute time: 10.601397315   civil time: Sun Sep 22 00:52:35 2013   pid: 137 uid: 501  root: no
    9/22/13 12:52:35.349 AM WindowServer[92]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    9/22/13 12:52:35.495 AM coreaudiod[149]: Enabled automatic stack shots because audio IO is inactive
    9/22/13 12:52:35.504 AM WindowServer[92]: Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/22/13 12:52:35.588 AM com.apple.launchd.peruser.501[133]: (com.apple.afpstat-qfa[173]) Exited with code: 2
    9/22/13 12:52:35.905 AM NetworkBrowserAgent[189]: Starting NetworkBrowserAgent
    9/22/13 12:52:35.931 AM com.apple.launchd.peruser.501[133]: (com.apple.mrt.uiagent[162]) Exited with code: 255
    9/22/13 12:52:36.073 AM coreservicesd[38]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationBirth to notificationID=117
    9/22/13 12:52:36.200 AM 1Password Helper[154]: Starting 1Password Helper 3.9.6 #39600.038 built Jul  6 2012 21:08:25
    9/22/13 12:52:36.361 AM 1Password Helper[154]: reloadAllObjects
    9/22/13 12:52:36.398 AM 1Password Helper[154]: Database (AGHtmlDatabase:file://localhost/Users/Ronen/Dropbox/1Password/1Password.agilek eychain/) load time [Cache]: 0.024+0.012 (354 objects)
    9/22/13 12:52:36.626 AM WindowServer[92]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    9/22/13 12:52:36.969 AM WindowServer[92]: Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/22/13 12:52:36.993 AM configd[17]: network changed: v4(en0+:10.0.0.2) DNS+ Proxy+ SMB
    9/22/13 12:52:37.093 AM com.apple.SecurityServer[15]: Session 100006 created
    9/22/13 12:52:37.302 AM WindowServer[92]: Display 0x04280480: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/22/13 12:52:37.310 AM ntpd[44]: proto: precision = 1.000 usec
    9/22/13 12:52:37.543 AM apsd[80]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    9/22/13 12:52:37.550 AM com.apple.time[136]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    9/22/13 12:52:38.214 AM com.apple.SecurityServer[15]: Session 100009 created
    9/22/13 12:52:39.001 AM OverlayHelper[237]: --- Log opened Sun Sep 22 00:52:39 2013 ---
    9/22/13 12:52:39.005 AM OverlayHelper[237]: --- OverlayHelper ---
    9/22/13 12:52:39.107 AM OverlayLoader[237]: --- Log opened Sun Sep 22 00:52:39 2013 ---
    9/22/13 12:52:39.107 AM OverlayLoader[237]: --- OverlayLoader ---
    9/22/13 12:52:39.114 AM Finder[148]: --- Log opened Sun Sep 22 00:52:39 2013 ---
    9/22/13 12:52:39.114 AM Finder[148]: --- Finder 10.8.3 ---
    9/22/13 12:52:39.372 AM SystemUIServer[147]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:52:39.373 AM SystemUIServer[147]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:52:40.000 AM kernel[0]: fsevents: watcher dbfseventsd (pid: 240) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    9/22/13 12:52:41.900 AM OverlayHelper[247]: --- Log opened Sun Sep 22 00:52:41 2013 ---
    9/22/13 12:52:41.904 AM OverlayHelper[247]: --- OverlayHelper ---
    9/22/13 12:52:42.002 AM OverlayLoader[247]: --- Log opened Sun Sep 22 00:52:42 2013 ---
    9/22/13 12:52:42.003 AM OverlayLoader[247]: --- OverlayLoader ---
    9/22/13 12:52:42.000 AM kernel[0]: Finder (map: 0xffffff802b33db30) triggered DYLD shared region unnest for map: 0xffffff802b33db30, region 0x7fff81a00000->0x7fff81c00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    9/22/13 12:52:47.728 AM awacsd[78]: Exiting
    9/22/13 12:52:55.443 AM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[124]) Exit timeout elapsed (20 seconds). Killing
    9/22/13 12:53:14.967 AM System Preferences[255]: Cannot setMachineString without first being authenticated
    9/22/13 12:53:15.000 AM System Preferences[255]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:53:15.001 AM System Preferences[255]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:53:15.004 AM System Preferences[255]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:53:15.005 AM System Preferences[255]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:53:35.454 AM SubmitDiagInfo[267]: Launched to submit Diagnostics and Usage
    9/22/13 12:53:42.332 AM SubmitDiagInfo[267]: SubmitDiagInfo successfully uploaded 118 diagnostic messages.
    9/22/13 12:53:48.402 AM Dock[145]: no information back from LS about running process
    9/22/13 12:54:41.439 AM System Preferences[270]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:54:41.439 AM System Preferences[270]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:54:50.371 AM System Preferences[270]: Attempted search for modules of unknown type (4)
    9/22/13 12:55:50.482 AM System Preferences[270]: Unable to open IOHIDSystem (e00002bd)
    9/22/13 12:55:50.000 AM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    9/22/13 12:56:25.088 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.123 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.124 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.199 AM com.apple.time[136]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    9/22/13 12:56:25.208 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.208 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.231 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.231 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.487 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:25.519 AM System Preferences[270]: INFO: FMMService: Service disabled because determing status
    9/22/13 12:56:25.737 AM fseventsd[40]: Logging disabled completely for device:1: /Volumes/Recovery HD
    9/22/13 12:56:26.520 AM System Preferences[270]: INFO: FMM: Recovery partition check timeout (1 second(s)) expired before check completed
    9/22/13 12:56:26.547 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: YES
    9/22/13 12:56:26.547 AM System Preferences[270]: INFO: FMM: can enable: NO
    9/22/13 12:56:26.551 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:26.769 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:26.769 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:26.770 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:26.770 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:26.770 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:26.770 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:26.771 AM System Preferences[270]: INFO: FMM: can enable: YES
    9/22/13 12:56:26.771 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:26.771 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:26.772 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:26.772 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:26.772 AM System Preferences[270]: INFO: FMM: can enable: YES
    9/22/13 12:56:26.789 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:26.797 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:32.146 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:32.146 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:32.146 AM System Preferences[270]: INFO: FMM: can enable: YES
    9/22/13 12:56:36.763 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:36.763 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:36.764 AM System Preferences[270]: INFO: FMM: containsRecoveryPartition: YES, version: 12C3103
    9/22/13 12:56:36.764 AM System Preferences[270]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    9/22/13 12:56:36.764 AM System Preferences[270]: INFO: FMM: can enable: YES
    9/22/13 12:56:36.768 AM System Preferences[270]: INFO: FMM: isLocationServicesCapable: YES
    9/22/13 12:56:36.768 AM System Preferences[270]: INFO: FMM: areLocationServicesEnabled: YES
    9/22/13 12:56:36.948 AM fseventsd[40]: Logging disabled completely for device:1: /Volumes/Recovery HD
    9/22/13 12:56:52.827 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.439 AM System Preferences[270]: MailIAPlugin: Tried to get settings for nonexistent account with uid 26B95DED-B34A-4B87-A79A-E102E60652E9
    9/22/13 12:56:57.451 AM System Preferences[270]: MailIAPlugin: Tried to get settings for nonexistent account with uid A9D42993-A6E7-4EEE-A5C2-2967C51FA62B
    9/22/13 12:56:57.461 AM System Preferences[270]: MailIAPlugin: Tried to get settings for nonexistent account with uid 26B95DED-B34A-4B87-A79A-E102E60652E9
    9/22/13 12:56:57.470 AM System Preferences[270]: MailIAPlugin: Tried to get settings for nonexistent account with uid A9D42993-A6E7-4EEE-A5C2-2967C51FA62B
    9/22/13 12:56:57.476 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.477 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.490 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.490 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.506 AM System Preferences[270]: MailIAPlugin: Tried to get settings for nonexistent account with uid 26B95DED-B34A-4B87-A79A-E102E60652E9
    9/22/13 12:56:57.522 AM System Preferences[270]: MailIAPlugin: Tried to get settings for nonexistent account with uid A9D42993-A6E7-4EEE-A5C2-2967C51FA62B
    9/22/13 12:56:57.734 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.846 AM System Preferences[270]: INFO: FMM: isLocationServicesCapable: YES
    9/22/13 12:56:57.846 AM System Preferences[270]: INFO: FMM: areLocationServicesEnabled: YES
    9/22/13 12:56:57.889 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.893 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:56:57.893 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:57:00.047 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:57:01.935 AM System Preferences[270]: Could not find image named 'InvalidDataIcon'.
    9/22/13 12:57:01.968 AM System Preferences[270]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:57:01.968 AM System Preferences[270]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:57:24.014 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:57:28.534 AM com.apple.kextcache[335]: rebuilding /System/Library/Caches/com.apple.corestorage/EFILoginLocalizations
    9/22/13 12:57:30.249 AM System Preferences[270]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    9/22/13 12:57:30.266 AM System Preferences[270]: INFO: FMM: isLocationServicesCapable: YES
    9/22/13 12:57:30.266 AM System Preferences[270]: INFO: FMM: areLocationServicesEnabled: YES
    9/22/13 12:57:32.795 AM com.apple.kextcache[335]: /System/Library/Caches/com.apple.corestorage/EFILoginLocalizations not cached.
    9/22/13 12:57:32.869 AM fseventsd[40]: Logging disabled completely for device:1: /Volumes/Boot OS X
    9/22/13 12:57:33.509 AM com.apple.kextcache[335]: Successfully updated disk1s3.
    9/22/13 12:57:33.641 AM fseventsd[40]: Logging disabled completely for device:1: /Volumes/Recovery HD
    9/22/13 12:57:35.459 AM com.apple.kextcache[335]: Successfully updated disk0s3.
    9/22/13 12:57:39.355 AM System Preferences[270]: /usr/sbin/nvram boot-args (exit status 1)
    9/22/13 12:57:39.401 AM System Preferences[270]: /usr/sbin/nvram boot-args (exit status 1)
    9/22/13 12:57:39.614 AM System Preferences[270]:                      OSXCheck: Found /System/Library/CoreServices/boot.efi
    9/22/13 12:57:39.614 AM System Preferences[270]:                      OSXCheck: No /System/Library/CoreServices/mach_kernel
    9/22/13 12:57:39.615 AM System Preferences[270]:                      OSXCheck: Found //mach_kernel
    9/22/13 12:57:39.616 AM System Preferences[270]:            OSXCheck: disk appears to be a valid OS X disk Volume Name: Macintosh HD. Kind: DADiskRef disk2 (CoreStorage).
    ContextualData: {
        ProductBuildVersion = 12F37;
        ProductCopyright = "1983-2013 Apple Inc.";
        ProductName = "OS X";
        ProductVersion = "10.8.5";
        SystemFolderPath = "/System/Library/CoreServices";
        SystemVersionMajor = 10;
        csData =     {
            "BSD Name" = disk2;
            "com.apple.corestorage.lv.contenthint" = "Apple_HFS";
            "com.apple.corestorage.lv.familyUUID" = "4AE29FB0-E787-4D6C-9FB1-37E17F7056E0";
            "com.apple.corestorage.lv.groupUUID" = "AF1C1444-D575-4756-9207-C46A8716977E";
            "com.apple.corestorage.lv.name" = "Macintosh HD";
            "com.apple.corestorage.lv.sequence" = 4;
            "com.apple.corestorage.lv.size" = 1111826497536;
            "com.apple.corestorage.lv.status" = Online;
            "com.apple.corestorage.lv.uuid" = "04B9B153-507D-4545-A717-F0FE2B86A67F";
            "com.apple.corestorage.lv.version" = 65536;
    9/22/13 12:57:39.619 AM System Preferences[270]: currentBootDevice: being checked by DiskManagement
    9/22/13 12:57:39.684 AM System Preferences[270]:           currentBootDevice: DONE checking by DM copyDiskForBootPreference, err = -69794
    9/22/13 12:57:39.749 AM System Preferences[270]: currentBootDevice: (null)
    9/22/13 12:57:39.770 AM System Preferences[270]: Netboot rescan time interval set to 180 seconds
    9/22/13 12:57:39.800 AM System Preferences[270]: currentBootDevice: being checked by DiskManagement
    9/22/13 12:57:39.865 AM System Preferences[270]:           currentBootDevice: DONE checking by DM copyDiskForBootPreference, err = -69794
    9/22/13 12:57:39.866 AM System Preferences[270]: currentBootDevice: (null)
    9/22/13 12:57:39.866 AM System Preferences[270]: dCBDMSF doesn't know boot-dev yet to check /System/Library/CoreServices
    9/22/13 12:57:39.887 AM System Preferences[270]:
                         -[SDController(VolumeEvents) _volumeAppeared:]: DADiskRef 0x7fc4f2583300  disk4s2
    9/22/13 12:57:39.888 AM System Preferences[270]:                      mountable disk appeared: /Volumes/TimeMachine Backup
    9/22/13 12:57:39.889 AM System Preferences[270]:                      -> So far so good, passing disk to System Searcher.
    9/22/13 12:57:39.890 AM System Preferences[270]:                      OSXCheck: No boot.efi in System Folder or volume root.
    9/22/13 12:57:39.898 AM System Preferences[270]:                      WinCheck: Not a valid windows filesystem: /Volumes/TimeMachine Backup
    9/22/13 12:57:39.899 AM System Preferences[270]:                      WinCheck: Not a valid windows filesystem: /Volumes/TimeMachine Backup
    9/22/13 12:57:39.899 AM System Preferences[270]:
                         -[SDController(VolumeEvents) _volumeAppeared:]: DADiskRef 0x7fc4f0e43310  disk0s3
    9/22/13 12:57:39.901 AM System Preferences[270]:                      No mount point (Apple_Boot)
    9/22/13 12:57:39.901 AM System Preferences[270]:
                         -[SDController(VolumeEvents) _volumeAppeared:]: DADiskRef 0x7fc4f33c4440  disk1s3
    9/22/13 12:57:39.902 AM System Preferences[270]:                      No mount point (Apple_Boot)
    9/22/13 12:57:39.902 AM System Preferences[270]:
                         -[SDController(VolumeEvents) _volumeAppeared:]: DADiskRef 0x7fc4f20cef70  disk2
    9/22/13 12:57:39.904 AM System Preferences[270]:                      mountable disk appeared: /
    9/22/13 12:57:39.905 AM System Preferences[270]:                      -> So far so good, passing disk to System Searcher.
    9/22/13 12:57:39.906 AM System Preferences[270]:                      OSXCheck: Found /System/Library/CoreServices/boot.efi
    9/22/13 12:57:39.906 AM System Preferences[270]:                      OSXCheck: No /System/Library/CoreServices/mach_kernel
    9/22/13 12:57:39.907 AM System Preferences[270]:                      OSXCheck: Found //mach_kernel
    9/22/13 12:57:39.908 AM System Preferences[270]:            OSXCheck: disk appears to be a valid OS X disk Volume Name: Macintosh HD. Kind: DADiskRef disk2 (CoreStorage).
    ContextualData: {
        ProductBuildVersion = 12F37;
        ProductCopyright = "1983-2013 Apple Inc.";
        ProductName = "OS X";
        ProductVersion = "10.8.5";
        SystemFolderPath = "/System/Library/CoreServices";
        SystemVersionMajor = 10;
        csData =     {
            "BSD Name" = disk2;
            "com.apple.corestorage.lv.contenthint" = "Apple_HFS";
            "com.apple.corestorage.lv.familyUUID" = "4AE29FB0-E787-4D6C-9FB1-37E17F7056E0";
            "com.apple.corestorage.lv.groupUUID" = "AF1C1444-D575-4756-9207-C46A8716977E";
            "com.apple.corestorage.lv.name" = "Macintosh HD";
            "com.apple.corestorage.lv.sequence" = 4;
            "com.apple.corestorage.lv.size" = 1111826497536;
            "com.apple.corestorage.lv.status" = Online;
            "com.apple.corestorage.lv.uuid" = "04B9B153-507D-4545-A717-F0FE2B86A67F";
            "com.apple.corestorage.lv.version" = 65536;
        kSDSelectDiskOnAddIfValid = 0;
    9/22/13 12:57:39.909 AM System Preferences[270]:
                         -[SDController(VolumeEvents) _volumeAppeared:]: DADiskRef 0x7fc4f254a430  disk3s2
    9/22/13 12:57:39.910 AM System Preferences[270]:                      mountable disk appeared: /Volumes/Thunderbolt Backup
    9/22/13 12:57:39.911 AM System Preferences[270]:                      -> So far so good, passing disk to System Searcher.
    9/22/13 12:57:39.912 AM System Preferences[270]:                      OSXCheck: No boot.efi in System Folder or volume root.
    9/22/13 12:57:39.913 AM System Preferences[270]:                      WinCheck: Not a valid windows filesystem: /Volumes/Thunderbolt Backup
    9/22/13 12:57:39.913 AM System Preferences[270]:                      WinCheck: Not a valid windows filesystem: /Volumes/Thunderbolt Backup
    9/22/13 12:57:39.916 AM System Preferences[270]: currentBootDevice: being checked by DiskManagement
    9/22/13 12:57:39.981 AM System Preferences[270]:           currentBootDevice: DONE checking by DM copyDiskForBootPreference, err = -69794
    9/22/13 12:57:39.982 AM System Preferences[270]: currentBootDevice: (null)
    9/22/13 12:57:39.982 AM System Preferences[270]: dCBDMSF doesn't know boot-dev yet to check /System/Library/CoreServices
    9/22/13 12:57:41.588 AM System Preferences[270]: Saving cache: (
        "/System/Library/CoreServices"
    9/22/13 12:58:15.915 AM System Preferences[270]: willDeauthenticate: (null)
    9/22/13 12:58:23.035 AM System Preferences[365]: Cannot setMachineString without first being authenticated
    9/22/13 12:58:23.065 AM System Preferences[365]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:58:23.066 AM System Preferences[365]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:58:23.068 AM System Preferences[365]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:58:23.070 AM System Preferences[365]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    9/22/13 12:58:25.250 AM coreaudiod[149]: Disabled automatic stack shots because audio IO is active
    9/22/13 12:58:26.086 AM coreaudiod[149]: Enabled automatic stack shots because audio IO is inactive
    9/22/13 12:58:34.251 AM WebProcess[373]: objc[373]: Object 0x7f903b41c600 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    9/22/13 12:58:34.262 AM WebProcess[373]: objc[373]: Object 0x7f903b41c600 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    9/22/13 12:58:44.983 AM sandboxd[378]: ([376]) com.apple.qtkits(376) deny process-fork
    9/22/13 12:58:44.000 AM kernel[0]: Sandbox: sandboxd(378) deny mach-lookup com.apple.coresymbolicationd
    9/22/13 12:58:50.839 AM 1Password Helper[154]: [HYBI] socketDidDisconnect: Error Domain=GCDAsyncSocketErrorDomain Code=7 "Socket closed by remote peer" UserInfo=0x7f814c402e90 {NSLocalizedDescription=Socket closed by remote peer}
    9/22/13 12:59:00.610 AM com.apple.time[11]: Next maintenance wake [Backup Interval]: <date: 0x7f802b808c60> Sun Sep 22 01:52:29 2013 IDT (approx)
    9/22/13 12:59:00.610 AM com.apple.time[11]: Requesting maintenance wake [Backup Interval]: <date: 0x7f802b808c60> Sun Sep 22 01:52:29 2013 IDT (approx)
    9/22/13 12:59:00.625 AM WindowServer[92]: Created shield window 0xa8 for display 0x04280480
    9/22/13 12:59:00.626 AM WindowServer[92]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    9/22/13 12:59:00.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    9/22/13 12:59:00.634 AM WindowServer[92]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    9/22/13 12:59:01.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0 (wol enabled, BJP 550)
    9/22/13 12:59:01.000 AM kernel[0]: LE is supported - Disable LE meta event
    9/22/13 12:59:04.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,2301,0181,0000,45e1,0000]
    9/22/13 12:59:05.000 AM kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 94
    9/22/13 12:59:05.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    9/22/13 12:59:05.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    9/22/13 12:59:05.000 AM kernel[0]: TBT W (2): 0x0100 [x]
    9/22/13 12:59:06.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 3 unplug = 0
    9/22/13 1:47:16.000 AM kernel[0]: Wake reason: RTC (Alarm)
    9/22/13 1:47:16.000 AM kernel[0]: RTC: Maintenance 2013/9/21 22:47:14, sleep 2013/9/21 21:59:05
    9/22/13 1:47:16.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    9/22/13 1:47:16.000 AM kernel[0]: AirPort_Brcm43xx::checkInterfacePowerState: Check _pwrOffThreadCall!
    9/22/13 1:47:16.000 AM kernel[0]: Previous Sleep Cause: 5
    9/22/13 1:47:16.000 AM kernel[0]: [ PCI configuration begin ]
    9/22/13 1:47:16.000 AM kernel[0]: [ PCI configuration end, bridges 15, devices 17 ]
    9/22/13 1:47:16.000 AM kernel[0]: AppleBCM5701::selectMedium - autoselect, any duplex, EEE allowed, flow control allowed
    9/22/13 1:47:16.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0
    9/22/13 1:47:16.752 AM configd[17]: network changed: v4(en0-:10.0.0.2) DNS- Proxy- SMB
    9/22/13 1:47:17.379 AM hidd[69]: MultitouchHID: device bootloaded
    9/22/13 1:47:19.395 AM com.apple.time[11]: Next maintenance wake [Backup Interval]: <date: 0x7f802a425550> Sun Sep 22 01:52:29 2013 IDT (approx)
    9/22/13 1:47:19.395 AM com.apple.time[11]: Requesting maintenance wake [Backup Interval]: <date: 0x7f802a425550> Sun Sep 22 01:52:29 2013 IDT (approx)
    9/22/13 1:47:19.000 AM kernel[0]: Graphics suppressed 3102 ms
    9/22/13 1:47:19.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,2301,0de1,0300,45e1,0000]
    9/22/13 1:47:20.503 AM configd[17]: network changed: v4(en0+:10.0.0.2) DNS+ Proxy+ SMB
    9/22/13 1:47:35.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    9/22/13 1:47:35.000 AM kernel[0]: LE is supported - Disable LE meta event
    9/22/13 1:47:35.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0 (wol enabled, BJP 550)
    9/22/13 1:47:38.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,2301,0181,0000,45e1,0000]
    9/22/13 1:47:45.000 AM kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 61
    9/22/13 1:47:45.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    9/22/13 1:47:45.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    9/22/13 1:47:45.000 AM kernel[0]: TBT W (2): 0x0100 [x]
    9/22/13 2:09:06.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 3 unplug = 0
    9/22/13 2:09:06.000 AM kernel[0]: Wake reason: EC.SleepTimer (SleepTimer)
    9/22/13 2:09:06.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    9/22/13 2:09:06.000 AM kernel[0]: AirPort_Brcm43xx::checkInterfacePowerState: Check _pwrOffThreadCall!
    9/22/13 2:09:06.000 AM kernel[0]: Previous Sleep Cause: 5
    9/22/13 2:09:06.000 AM kernel[0]: [ PCI configuration begin ]
    9/22/13 2:09:06.000 AM kernel[0]: [ PCI configuration end, bridges 15, devices 17 ]
    9/22/13 2:09:06.122 AM configd[17]: network changed: v4(en0-:10.0.0.2) DNS- Proxy- SMB
    9/22/13 2:09:06.000 AM kernel[0]: AppleBCM5701::selectMedium - autoselect, any duplex, EEE allowed, flow control allowed
    9/22/13 2:09:06.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0
    9/22/13 2:09:07.115 AM hidd[69]: MultitouchHID: device bootloaded
    9/22/13 2:09:09.000 AM kernel[0]: Graphics suppressed 3099 ms
    9/22/13 2:09:09.392 AM com.apple.time[11]: Next maintenance wake [Backup Interval]: <date: 0x7f802b808c60> Sun Sep 22 01:52:29 2013 IDT (approx)
    9/22/13 2:09:09.393 AM com.apple.time[11]: Requesting maintenance wake [Backup Interval]: <date: 0x7f802b808c60> Sun Sep 22 01:52:29 2013 IDT (approx)
    9/22/13 2:09:09.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,2301,0de1,0300,45e1,0000]
    9/22/13 2:09:11.015 AM configd[17]: network changed: v4(en0+:10.0.0.2) DNS+ Proxy+ SMB
    9/22/13 2:09:26.000 AM kernel[0]: hibernate image path: /var/vm/sleepimage
    9/22/13 2:09:26.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    9/22/13 2:09:28.000 AM kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    9/22/13 2:09:28.000 AM kernel[0]: macx_swapon SUCCESS
    9/22/13 2:09:28.000 AM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    9/22/13 2:09:28.000 AM kernel[0]: macx_swapon SUCCESS
    9/22/13 2:09:30.000 AM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    9/22/13 2:09:30.000 AM kernel[0]: macx_swapon SUCCESS
    9/22/13 2:09:31.000 AM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    9/22/13 2:09:31.000 AM kernel[0]: macx_swapon SUCCESS
    9/22/13 2:09:33.000 AM kernel[0]: hibernate_alloc_pages act 179991, inact 109863, anon 71769, throt 0, spec 189790, wire 265622, wireinit 139994
    9/22/13 2:09:33.000 AM kernel[0]: hibernate_setup(0) took 7136 ms
    9/22/13 2:09:33.000 AM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff81f58a5000, 0xffffff81f5925000
    9/22/13 2:09:33.000 AM kernel[0]: hibernate_page_list_setall time: 339 ms
    9/22/13 2:09:33.000 AM kernel[0]: pages 730879, wire 251106, act 938, inact 0, cleaned 0 spec 0, zf 79, throt 0, could discard act 173004 inact 109775 purgeable 6178 spec 189790 cleaned 9
    9/22/13 2:09:33.000 AM kernel[0]: hibernate_page_list_setall preflight pageCount 252123 est comp 50 setfile 550981856 min 2147483648
    9/22/13 2:09:33.000 AM kernel[0]: sizeof(IOHibernateImageHeader) == 512
    9/22/13 2:09:33.000 AM kernel[0]: kern_open_file_for_direct_io(0) took 18 ms
    9/22/13 2:09:33.000 AM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 1
    9/22/13 2:09:33.000 AM kernel[0]: hibernate image major 1, minor 1, blocksize 512, pollers 5
    9/22/13 2:09:33.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0 (wol enabled, BJP 550)
    9/22/13 2:09:33.000 AM kernel[0]: LE is supported - Disable LE meta event
    9/22/13 2:09:36.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,2301,0181,0000,45e1,0000]
    9/22/13 3:03:24.000 AM kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 66
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff81f58a5000, 0xffffff81f5925000
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_page_list_setall time: 631 ms
    9/22/13 3:03:24.000 AM kernel[0]: pages 730420, wire 251598, act 5234, inact 0, cleaned 0 spec 1, zf 2278, throt 0, could discard act 168554 inact 106792 purgeable 6174 spec 189789 cleaned 0
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_page_list_setall found pageCount 259111
    9/22/13 3:03:24.000 AM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    9/22/13 3:03:24.000 AM kernel[0]: IOHibernatePollerOpen(0)
    9/22/13 3:03:24.000 AM kernel[0]: encryptStart 17540
    9/22/13 3:03:24.000 AM kernel[0]: bitmap_size 0x7f8e0, previewSize 0x779b90, writing 256873 pages @ 0x8109b0
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_machine_init: state 2, image pages 251394, sum was a65b9d5a, image1Size efddc00, conflictCount 514, nextFree 31d
    9/22/13 3:03:24.000 AM kernel[0]: restore times 818, 697, 2 ms, tsc 0x83693b08 scale 0x5f07e6be
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_page_list_discard time: 143 ms, discarded act 168554 inact 106792 purgeable 6174 spec 189789 cleaned 0
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_newruntime_map time: 0 ms, IOHibernatePollerOpen(), ml_get_interrupts_enabled 0
    9/22/13 3:03:24.000 AM kernel[0]: IOHibernatePollerOpen(0)
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_machine_init reading
    9/22/13 3:03:24.000 AM kernel[0]: PMStats: Hibernate read took 158 ms
    9/22/13 3:03:24.000 AM kernel[0]: hibernate_machine_init pagesDone 258907 sum2 c2148fef, time: 158 ms, comp bytes: 30609408 time: 34 ms 844 Mb/s, crypt bytes: 12276736 time: 4 ms 2403 Mb/s
    9/22/13 3:03:24.000 AM kernel[0]: TBT W (2): 0x0100 [x]
    9/22/13 3:03:24.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 3 unplug = 1
    9/22/13 3:03:24.000 AM kernel[0]: IOThunderboltSwitch<0xffffff8028b1c800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 3 unplug = 0
    9/22/13 3:03:24.000 AM kernel[0]: Wake reason: RTC (Alarm)
    9/22/13 3:03:24.000 AM kernel[0]: RTC: SleepTimer 2013/9/22 00:03:13, sleep 2013/9/21 23:09:33
    9/22/13 3:03:24.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    9/22/13 3:03:24.000 AM kernel[0]: AirPort_Brcm43xx::checkInterfacePowerState: Check _pwrOffThreadCall!
    9/22/13 3:03:24.000 AM kernel[0]: Previous Sleep Cause: 5
    9/22/13 3:03:24.000 AM kernel[0]: Previous Shutdown Cause: 5
    9/22/13 3:03:24.000 AM kernel[0]: USB (EHCI):Port 1 on bus 0x1a connected or disconnected: portSC(0x3002)
    9/22/13 3:03:24.000 AM kernel[0]: USB (EHCI):Port 1 on bus 0x1d connected or disconnected: portSC(0x3002)
    9/22/13 3:03:24.000 AM kernel[0]: [ PCI configuration begin ]
    9/22/13 3:03:24.000 AM kernel[0]: [ PCI configuration end, bridges 15, devices 17 ]
    9/22/13 3:03:24.000 AM kernel[0]: External AHCI device terminated after hibernation
    9/22/13 3:03:24.000 AM kernel[0]: External AHCI device terminated after hibernation
    9/22/13 3:03:24.000 AM kernel[0]: AppleBCM5701::selectMedium - autoselect, any duplex, EEE allowed, flow control allowed
    9/22/13 3:03:24.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0
    9/22/13 3:03:24.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- Error -- GetDeviceInformation() returned 0xE000404B (kIOUSBHighSpeedSplitError) ****
    9/22/13 3:03:25.055 AM configd[17]: network changed: v4(en0-:10.0.0.2) DNS- Proxy- SMB
    9/22/13 3:03:25.033 AM fontd[197]: ATSFindFolder timeout. (domain:-32763, dirType:'font', createFolder:false, ATSServer pid:197)
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: hfs: err 6 reading VH blk (Thunderbolt Backup)
    9/22/13 3:03:25.000 AM kernel[0]: disk3s2: media is not present.
    9/22/13 3:03:25.000 AM kernel[0]: jnl: disk3s2: do_jnl_io: strategy err 0x6
    9/22/13 3:03:25.000 AM kernel[0]: jnl: disk3s2: write_journal_header: error writing the journal header!
    9/22/13 3:03:25.259 AM WindowServer[92]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    9/22/13 3:03:25.000 AM kernel[0]: jnl: disk3s2: replay_journal: from: 68532224 to: 69871616 (joffset 0x1d1c000)
    9/22/13 3:03:25.653 AM WindowServer[92]: Created shield window 0xa9 for display 0x003f003d
    9/22/13 3:03:25.654 AM WindowServer[92]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    9/22/13 3:03:25.654 AM WindowServer[92]: Created shield window 0xaa for display 0x003f003e
    9/22/13 3:03:25.654 AM WindowServer[92]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    9/22/13 3:03:25.940 AM fseventsd[40]: event logs in /Volumes/Thunderbolt Backup/.fseventsd out of sync with volume.  destroying old logs. (4093 0 8643)
    9/22/13 3:03:25.949 AM fseventsd[40]: log dir: /Volumes/Thunderbolt Backup/.fseventsd getting new uuid: 838BA3B1-011C-4828-AB3C-8224C87AD56C
    9/22/13 3:03:25.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][StartInterruptPipeRead] -- mInt0InterruptPipe->ClearPipeStall() failed with error 0xE000404B (kIOUSBHighSpeedSplitError) -- this = 0xffffff8029bc4800 ****
    9/22/13 3:03:25.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][StartBulkPipeRead] -- mInt0BulkInPipe->ClearPipeStall() failed with error 0xE000404B (kIOUSBHighSpeedSplitError) -- this = 0xffffff8029bc4800 ****
    9/22/13 3:03:25.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][StartLMPLoggingBulkPipeRead] -- ERROR -- ClearPipeStall (TRUE) failed with error 0xE000404B (kIOUSBHighSpeedSplitError) -- this = 0xffffff8029bc4800
    9/22/13 3:03:25.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][DeviceRequestCompleteHandler] -- Received 0xE000404B (kIOUSBHighSpeedSplitError) -- target = 0xffffff8029bc4800 ****
    9/22/13 3:03:25.000 AM kernel[0]: jnl: disk3s2: journal replay done.
    9/22/13 3:03:27.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,2301,0de1,0300,45e1,0000]
    9/22/13 3:03:29.083 AM configd[17]: network changed: v4(en0+:10.0.0.2) DNS+ Proxy+ SMB
    9/22/13 3:03:31.000 AM kernel[0]: [[0xffffff8029023000]  OpCode 0xFD03 (Broadcom VSC -- Set Event Mask) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 5000] Bluetooth warning: An HCI Req timeout occurred.
    9/22/13 3:03:31.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][DeviceRequestCompleteHandler] -- Received 0xE000404B (kIOUSBHighSpeedSplitError) -- target = 0xffffff8029bc4800 ****
    9/22/13 3:03:36.000 AM kernel[0]: [[0xffffff8029023000]  OpCode 0x0C01 (Set Event Mask) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 5000] Bluetooth warning: An HCI Req timeout occurred.
    9/22/13 3:03:36.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][DeviceRequestCompleteHandler] -- Received 0xE000404B (kIOUSBHighSpeedSplitError) -- target = 0xffffff8029bc4800 ****
    9/22/13 3:03:39.000 AM kernel[0]: HubDevice::terminate(kIOServiceSynchronous) timeout
    9/22/13 3:03:40.000 AM kernel[0]: [[0xffffff8029023000]  OpCode 0xFCC2 (Broadcom VSC -- BFC Set Params) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 5000] Bluetooth warning: An HCI Req timeout occurred.
    9/22/13 3:03:40.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][LMPLoggingBulkOutWriteCompleteHan dler] -- Received 0xe00002eb (kIOReturnAborted); inBufferSizeRemaining = 0x00000002; isInactive = FALSE, suspended = FALSE -- inTarget = 0xffffff8029bc4800
    9/22/13 3:03:40.000 AM kernel[0]: [AppleMultitouchDevice::willTerminate] entered
    9/22/13 3:03:40.808 AM configd[17]: network changed: v4(en0-:10.0.0.2) DNS- Proxy- SMB
    9/22/13 3:03:41.000 AM kernel[0]: [AppleMultitouchDevice::stop] entered
    9/22/13 3:03:41.000 AM kernel[0]: [0xffffff8029a7c800][free]()
    9/22/13 3:03:41.803 AM configd[17]: network changed: v4(en0+:10.0.0.2) DNS+ Proxy+ SMB
    9/22/13 3:03:41.806 AM mDNSResponder[62]: mDNS_RegisterInterface: Frequent transitions for interface en0 (10.0.0.2)
    9/22/13 3:03:42.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    9/22/13 3:03:42.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0066
    9/22/13 3:03:42.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff8029266000 ****
    9/22/13 3:03:42.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller

  • Error Message: JBO-30003: The application pool

    Dear Members,
    I've an application that was developed using JDeveloper 3 and BC4J Components. This application currently running on WebSphere Application Server (WAS) 3.5 and Oracle 8i. Now I'm trying to deploy the same on WAS 5.1.x and Oracle 9i on Solaris.
    Before deploying the application on Solaris, I tried to deploy on Windows XP and WAS 5.0 Test Server. And I succeeded. Hence I generated .ear file using WebSphere Application Studio Developer.
    I'm able to successfully deploy the .ear on WAS 5.1.x. However when I access the application. I'm getting following error.
    Error Message: JBO-30003: The application pool, buildjsps_package1_Package1Module, failed to checkout an application module instance.
    Error Message: JBO-25222: Unable to create application module.
    Could any one help me to resolve this issue.
    The Stack trace is:
    oracle.jbo.ApplicationModuleCreateException: JBO-25222: Unable to create application module.
    at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:96)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.createNewInstance(ApplicationPoolImpl.java:511)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.checkout(ApplicationPoolImpl.java:634)
    at oracle.jbo.html.jsp.JSPApplicationRegistry.internalGetAppModuleInstance(JSPApplicationRegistry.java:463)
    at oracle.jbo.html.jsp.JSPApplicationRegistry.getAppModuleInstance(JSPApplicationRegistry.java:377)
    at oracle.jdeveloper.html.DataWebBeanImpl.internalInitialize(DataWebBeanImpl.java:404)
    at oracle.jdeveloper.html.WebBeanImpl.initialize(WebBeanImpl.java:56)
    at oracle.jdeveloper.html.DataWebBeanImpl.initialize(DataWebBeanImpl.java:360)
    at custom.LoginBean.initialize(LoginBean.java:33)
    at oracle.jdeveloper.html.DataWebBeanImpl.initialize(DataWebBeanImpl.java:253)
    at org.apache.jsp._login._jspService(_login.java:174)
    at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:344)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:683)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:781)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1019)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:592)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:204)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:125)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:286)
    at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:615)
    at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:439)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:912)
    ## Detail 0 ##
    java.lang.NullPointerException
    at java.util.Locale.toUpperCase(Locale.java:1134)
    at java.util.Locale.<init>(Locale.java:266)
    at java.util.Locale.<init>(Locale.java:281)
    at oracle.jbo.server.SessionImpl.getLocale(SessionImpl.java:186)
    at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:275)
    at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:85)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.createNewInstance(ApplicationPoolImpl.java:511)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.checkout(ApplicationPoolImpl.java:634)
    at oracle.jbo.html.jsp.JSPApplicationRegistry.internalGetAppModuleInstance(JSPApplicationRegistry.java:463)
    at oracle.jbo.html.jsp.JSPApplicationRegistry.getAppModuleInstance(JSPApplicationRegistry.java:377)
    at oracle.jdeveloper.html.DataWebBeanImpl.internalInitialize(DataWebBeanImpl.java:404)
    at oracle.jdeveloper.html.WebBeanImpl.initialize(WebBeanImpl.java:56)
    at oracle.jdeveloper.html.DataWebBeanImpl.initialize(DataWebBeanImpl.java:360)
    at custom.LoginBean.initialize(LoginBean.java:33)
    at oracle.jdeveloper.html.DataWebBeanImpl.initialize(DataWebBeanImpl.java:253)
    at org.apache.jsp._login._jspService(_login.java:174)
    at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:344)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:683)
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:781)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1019)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:592)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:204)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:125)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:286)
    at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:615)
    at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:439)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:912)
    [1/3/05 9:22:34:186 EST] 6487f7 SystemOut O

    Gina,
    I would recommend checking out the following HowTo's recently posted on OTN by the JDev Team. They may indicate where your problem is occuring and how to fix it:
    Set up your Webserver to run BC4J: http://technet.oracle.com:89/ubb/Forum2/HTML/006397.html
    Deploy a BC4J JSP Application on iAS and Tomcat: http://technet.oracle.com:89/ubb/Forum2/HTML/006398.html
    How to Deploy Multiple BC4J JSP Web Apps to the same Webserver: http://technet.oracle.com:89/ubb/Forum2/HTML/006726.html
    Note, if you are deploying on iAS, the Online Orders tutorial application comes with that release, so you might want to refer to the last HowTo to make sure your webserver is set up to handle multiple apps, even if one if them isn't yours!
    null

Maybe you are looking for

  • Wireless connection with AIM and ichat

    Why will instant messaging not work with my netgear wireless? My son told me that I have to use instant messaging (AIM) in order to video chat. *I am new to using a MAC

  • I cannot read a external hard disk in mac computer!

    I am using a 60G portable Samsung harddisk for working with my present acer laptop and some mac computers A few weeks ago. It works perfectly well whenever i plugged in my portable harddisk into the mac computers. They couol detect the harddisk and i

  • PLD How to move down zone "end of report" ?

    Hello, I have a problem when I print an invoice. It's printing an invoice in 2 pages, but I would like it in 1 page, on the print issue there is place but not on PLD. So I would like to resize and move the "end of report" and "repetitive area " in or

  • Odd library behaviour.

    I'm stumped with a Library problem. I'm running Snowleopard 10.6.6 I'm running iTunes 10.1.1 I've got about 5000 tracks. My library is on an external firewire connected drive called MongoDisk. The disk was disconnected without ejecting it properly. (

  • Creative Zen Stone Plus

    Hi, I'm having some problems with my mp3. Both my?laptops just can't seem to recognise it though it was working fine for the past few months. It turned up as another dri've ?Removal Disk(I instead of the name of my mp3(as i've?named it). Kept on sayi