PS format plugin issue

I use Photo Ninja as my default raw converter for Photoshop CS5, or at least I did up until it quit functioning. When I double-click on a raw file, first PS opens and then PN launches as expected, but that's it — no image is ever imported to PN and I sit staring at a blank workspace.
After mucking around, resetting PS prefs, uninstalling PN and reinstalling, reverting to a previous version of PN, etc., I started loading up system images created by Macrium Reflect from prior months when I know for certain that PS and PN were working as they are supposed to.
Same result.
So, at this point I don't believe it's a PN issue but I'm not convinced PS is at fault either. How can it be that an OS (Win8 64) and software environment that was functional months ago is now not? Could I be looking at a hardware issue (none of which has changed, BTW)? How do I troubleshoot this?

OK, I know this probably doesn't have an obvious answer, but I'd sure like some kind of lead to pursue. Consider: By restoring images to my system drive I've recreated the exact conditions that existed when all was working well. i.e., this particular problem had never been seen (at least by me). Yet the problem persists.
It tends to make me believe that this is a  hardware issue, but I can't wrap my head around how that could be. I don't normally run out of ideas when tracking down computer weirdness, but I'm just about there now.

Similar Messages

  • PS Custom Format Plugin - Issue Reading Files 2GB & 4GB

    Is this issue fixable within our format plugin code, or is it  a photoshop limitation?
    I am new to Photoshop & Photoshop Plugins.  I have reviewed the sdk photoshop documentation & searched web on this subject.
    I am working with a photoshop format plugin written by my predecessor who is no longer here.
    The plugin is modeled after the simpleFormat plugin.
    The plugin is being used on systems running Photoshop CS6 & CC on 64bit Windows 7 with 8GB or more memory.
    The plugin allows a file of our format to be opened, read and written.
    ISSUE:
    The plugin works fine reading  files < 2GB or > 4GB.  For files between 2GB and 4GB, the call to allocate memory fails.
    In the plugin's PIPL structure:   the FormatMaxSize {32767, 32767} and PluginMaxSize {PlugInMaxSize { 2147483647, 2147483647 }
    In the plugin code;  the DoReadStart() method opens the file and reads the file header information.  This works fine.
    Next, in the DoReadContinue() method: SPsBuffer->New(&bufferSize, buffersize) is returning NULL.     see below.
    void PluginMain (const int16 selector,
                                                                             FormatRecordPtr formatParamBlock,
                                                                             intptr_t * data,
                                                                             int16 * result)
        gFormatRecord = reinterpret_cast<FormatRecordPtr>(formatParamBlock);
              gPluginRef = reinterpret_cast<SPPluginRef>(gFormatRecord->plugInRef);
              gResult = result;
              gDataHandle = data;
    sSPBasic = ((FormatRecordPtr)formatParamBlock)->sSPBasic;
    if (gCountResources == NULL ||
                gGetResources == NULL ||
                gAddResource == NULL ||
    gFormatRecord->advanceState == NULL)
    *gResult = errPlugInHostInsufficient;
    return;
    // new for Photoshop 8, big documents, rows and columns are now > 30000 pixels
    if (gFormatRecord->HostSupports32BitCoordinates)
            gFormatRecord->PluginUsing32BitCoordinates = true;
    static void DoReadPrepare()
         gFormatRecord->maxData = 0
    static void DoReadContinue (void)
              int32 done;
              int32 total;
              int32 row;
              VPoint imageSize = GetFormatImageSize();
              /* Set up the buffer & progress variables. */
              done = 0;
              total = imageSize.v;
        Ptr pixelData        = NULL;
        Ptr rawData          = NULL;
        Ptr uncompressedData = NULL;
        int64* offsetTable   = NULL;
    /* allocate the pixel buffer. */
              unsigned32 bufferSize = gFormatRecord->planes * imageSize.v * imageSize.h;
              pixelData = sPSBuffer->New( &bufferSize, bufferSize );            <======   This allocation fails for file sizes > 2GB & < 4GB.
              if (pixelData == NULL)
                        *gResult = memFullErr;
                        //return;
                        if(*gResult == memFullErr) { goto ReadContinueCleanUp; }

    Some examples of files that are successfully read and files that are not successfully read are shown below:
    Filenames that contain "nok" as part of the name, would not open and an out of RAM error occurs.
    in the ReadContinue method, shown in an earlier post on this thread.
    Filenames
    12x12ok
    12x24ok
    ok
    nok
    nok
    nok
    ok
    hdots
    17280
    17280
    23160
    23180
    30001
    32768
    32768
    vdots
    8640
    17280
    23160
    23180
    30001
    32768
    32768
    hdots * vdots
    149299200
    298598400
    536385600
    537312400
    900060001
    1.074E+09
    1.074E+09
    hdots  + vdots
    25920
    34560
    46320
    46360
    60002
    65536
    65536
    hdpi,vdpi
    1440:720
    1440:720
    1440:720
    1440:720
    1440:720
    1440:720
    1440:720
    #channels
    4
    4
    4
    4
    4
    4
    5
    #bpp
    2
    2
    2
    2
    2
    2
    2
    compression
    Packbits
    Packbits
    Packbits
    Packbits
    Packbits
    fileLength(bytes)
    8593776
    8647536
    14365054
    17063936
    21258240
    filesize (MB)
    356
    712
    8.19
    8.24
    13.7
    16.27
    20.27
    filesize (GB)
    0.348
    0.69
    0.008
    0.008
    0.0134
    0.016
    0.0198

  • Format Plugin Issue

    Dear Experts,
    I develop "Custom Format Plugin" using sample sdk's code. It is working fine for Grey as well as RGB images. But it is creating problems for Indexed images. When I filled the redLUT,greenLUT and blueLUT member of FormatRecord strcture, It showed me image with only red color. As far as I understand , it is not setting the other colors table properly.Thats why it is displaying image with only red color rest image is displayed with black color. if I don't fill the blue and green table , result remain the same. So it is confirmed that after filling all the three tables , it has effect only for red color rest remain unchanged. I won't be able to break where actually the problem is coming. Kindly help me in this regard, if somebody had done work similar to that in their project.
    Thanks;
    Vikas

    Dear Experts,<br />             Kindly find the code given below:-<br /><br />SimpleFormat.cpp<br /><br />SPBasicSuite * sSPBasic = NULL;<br />SPPluginRef gPluginRef = NULL;<br /><br />FormatRecord * gFormatRecord = NULL;<br />int32 * gDataHandle = NULL;<br />Data * gData = NULL;<br />int16 * gResult = NULL;<br /><br />#define gCountResources gFormatRecord->resourceProcs->countProc<br />#define gGetResources   gFormatRecord->resourceProcs->getProc<br />#define gAddResource     gFormatRecord->resourceProcs->addProc<br /><br />static void DoReadStart (void)<br />{<br />     <br />     // If you add fmtCanCreateThumbnail to the FormatFlags PiPL property<br />     // you will get called to create a thumbnail. The only way to tell<br />     // that you are processing a thumbnail is to check openForPreview in the<br />     // FormatRecord. You do not need to parse the entire file. You need to<br />     // process enough for a thumbnail view and you need to do it quickly.<br />     <br />     <br />     ReadScriptParamsOnRead (); // override params here<br />     <br />     /* Exit if we have already encountered an error. */<br /><br />    if (*gResult != noErr) return;<br />          <br />     /* If we have not encountered an error, then we want to read<br />        the file header. */<br />        <br />     *gResult = SetFPos (gFormatRecord->dataFork, fsFromStart, 0);<br />     if (*gResult != noErr) return;<br />     <br />     ReadSome (sizeof (header.manufacturer), &header.manufacturer);<br />     if(header.manufacturer != manufacturer_flag)<br />          return;<br />     <br />     ReadSome(sizeof(header.version), &header.version);<br />     if(header.version != version_0 && header.version != version_2 && header.version != version_3 && header.version != version_4 && header.version != version_5)<br />          return;<br /><br />     ReadSome(sizeof(header.encoding), &header.encoding);<br />     if(header.encoding != uncompressed)<br />          return;<br /><br />     ReadSome(sizeof(header.bits_per_sample), &header.bits_per_sample);<br />     if(header.bits_per_sample != bits_1 && header.bits_per_sample != bits_2 && header.bits_per_sample != bits_4 <br />          && header.bits_per_sample != bits_8)<br />          return;<br /><br />     for (int i=0;i< window_size;i++)<br />          ReadSome(sizeof(header.window[i]), &(header.window[i]));<br /><br />     header.image_height = header.window[3] - header.window[1] + 1;<br />     header.image_width = header.window[2] - header.window[0] + 1;<br /><br />     ReadSome(sizeof(header.hdpi), &header.hdpi);<br />     ReadSome(sizeof(header.vdpi), &header.vdpi);<br /><br />     for(int i= 0; i<default_palette_size; i++)<br />     ReadSome(sizeof(header.palette[i]), &header.palette[i]);<br /><br />     ReadSome(sizeof(header.reserved), &header.reserved);<br />     <br />     ReadSome(sizeof(header.nplanes), &header.nplanes);<br />     if (header.nplanes != index_gray && header.nplanes != rgb && header.nplanes != rgba)<br />          return;<br /><br />     ReadSome(sizeof(header.bytes_per_line), &header.bytes_per_line);<br />     ReadSome(sizeof(header.palette_info), &header.palette_info);<br /><br />     ReadSome(sizeof(header.hscreen_size), &header.hscreen_size);<br />     ReadSome(sizeof(header.vscreen_size), &header.vscreen_size);<br />     <br />     //header.filler.resize(filler_size);<br />     for(int i= 0; i<filler_size; i++)<br />     ReadSome(sizeof(header.filler[i]), &header.filler[i]);<br />     <br /><br />     // read gray/index/bitmap type<br />     if (header.nplanes == index_gray){<br />          if(header.palette_info == palette_info_type  && header.version <= version_3)<br />               gFormatRecord->imageMode = plugInModeGrayScale;<br />          else if(header.bits_per_sample > bits_1)<br />               gFormatRecord->imageMode = plugInModeIndexedColor;<br />          else if(header.bits_per_sample == bits_1)<br />                gFormatRecord->imageMode = plugInModeBitmap;<br />     }<br />     else if (header.nplanes == rgb) {<br />          gFormatRecord->imageMode = plugInModeRGBColor;<br />     }<br />     else if (header.nplanes == rgba) {<br />          gFormatRecord->imageMode = plugInModeCMYKColor;<br />     }<br />  <br />     VPoint imageSize;<br />     <br />     imageSize.h = header.image_width;<br />     imageSize.v = header.image_height;<br />     SetFormatImageSize(imageSize);<br />     gFormatRecord->depth = header.bits_per_sample;<br />     gFormatRecord->planes = header.nplanes;<br />     gFormatRecord->transparencyPlane = 0;<br />     gFormatRecord->canTranspose = TRUE;<br />     gFormatRecord->transparencyMatting = DESIREDMATTING;<br /><br />     if (sPSHandle->New != NULL)<br />          gFormatRecord->imageRsrcData = sPSHandle->New(0);<br />     gFormatRecord->imageRsrcSize = 0;<br />          <br />     /* Next, we will will read the lookup tables if in indexed color mode. */<br />     <br />     if (gFormatRecord->imageMode == plugInModeIndexedColor)<br />     {<br />          LONG data_size = header.bytes_per_line * header.image_height;<br /><br />          long data_moved = SetFilePointer ((HANDLE)gFormatRecord->dataFork,data_size, NULL,FILE_CURRENT);<br />          if (data_moved != 128 + data_size)<br />               return;<br />     <br />          int8 color_marker;<br />          ReadSome (1, &color_marker);<br />          if (*gResult != noErr) return;<br /><br />          if(color_marker == 12){<br />               ReadSome (sizeof (LookUpTable), &gFormatRecord->redLUT);<br />               ReadSome (sizeof (LookUpTable), &gFormatRecord->greenLUT);<br />               ReadSome (sizeof (LookUpTable), &gFormatRecord->blueLUT);<br />               if (*gResult != noErr)<br />                    goto CleanUp;<br />          }<br />          data_moved = SetFilePointer ((HANDLE)gFormatRecord->dataFork,128, NULL,FILE_BEGIN);<br />          if(data_moved != 128)<br />               return;<br />          <br />     }<br />          <br />     return;<br />          <br />     /* The following code does any clean-up work in the event of an error. */<br />     <br />CleanUp:<br />     <br />     DisposeImageResources ();   <br />}<br /><br />/*****************************************************************************/<br /><br />static void DoReadContinue (void)<br />{<br />     <br />     int32 done;<br />     int32 total;<br />     int16 plane;<br />     int32 row;<br />     <br />     /* Dispose of the image resource data if it exists. */<br />     <br />     DisposeImageResources ();<br />     <br />     /* Set up the progress variables. */<br />     <br />     done = 0;<br />     VPoint imageSize = GetFormatImageSize();<br />     total = imageSize.v * gFormatRecord->planes;<br />          <br />     /* Next, we will allocate the pixel buffer. */<br /><br />     uint32 bufferSize = header.bytes_per_line;//RowBytes();<br />     Ptr pixelData = sPSBuffer->New( &bufferSize, bufferSize );<br />     <br />     if (pixelData == NULL)<br />     {<br />          *gResult = memFullErr;<br />          return;<br />     }<br />     <br />     /* Set up to start returning chunks of data. */<br />     <br />     VRect theRect;<br /><br />     theRect.left = 0;<br />     theRect.right = imageSize.h;<br />     gFormatRecord->colBytes = (gFormatRecord->depth + 7) >> 3;<br />     gFormatRecord->rowBytes =/* header.bytes_per_line;//*/RowBytes();<br />     gFormatRecord->planeBytes = 0;<br />     gFormatRecord->data = pixelData;<br /><br />          <br />     for (row = 0; *gResult == noErr && row < imageSize.v; ++row)<br />     {<br />          for (plane = 0; *gResult == noErr && plane < gFormatRecord->planes; ++plane)<br />          {<br />               gFormatRecord->loPlane = gFormatRecord->hiPlane = plane;<br />               theRect.top = row;<br />               theRect.bottom = row + 1;<br />               SetFormatTheRect(theRect);<br />               ReadSome (header.bytes_per_line/*header.image_width*/, pixelData);<br />               <br />               if(*gResult == noErr)<br />                    *gResult = gFormatRecord->advanceState();<br />               <br />               gFormatRecord->progressProc(++done, total);<br />          }<br />          <br />     }<br /><br />     if (*gResult != noErr) return;<br />     <br />     gFormatRecord->data = NULL;<br />     <br />     sPSBuffer->Dispose(&pixelData);<br /><br />     DoReadICCProfile ();<br />}<br /><br />/*****************************************************************************/<br /><br />static void DoReadFinish (void)<br />{<br />     /* Test the ability to create the file inside a smart object */<br />     /* This flag also tells you which menu item was selected */<br /><br />     // if openAsSmartObject is already true then you cannot turn it off<br />     gFormatRecord->openAsSmartObject = gData->openAsSmartObject;<br />     <br />     // every other time we open as smart, that should be confusing enough for a user!<br />     gData->openAsSmartObject = !gData->openAsSmartObject;<br />     <br />     /* Dispose of the image resource data if it exists. */<br />     DisposeImageResources ();<br />     WriteScriptParamsOnRead (); // should be different for read/write<br />     //AddComment (); // write a history comment<br /><br />}

  • Alpha channel data with layered format plugin

    I have a layered format plugin and I am trying to write the alpha channel information separately. I have set up channelPortProcs and I am attempting to read the pixel data with readPixelsProc. The issue is that even though the readPixelsProc function doesn't return any errors the rectangle that is supposed to store the rectangle that was actually read is a 0x0 rectangle. I can't seem to find why this would be or what I might be doing wrong. Here's what I have so far:
    // set up the pixel buffer
    int32 bufferSize = imSize.h*imSize.v;
    Ptr pixelData = sPSBuffer->New( &bufferSize, bufferSize );
    if (pixelData == NULL)
         *gResult = memFullErr;
         return;
    // Define the source and destination rectangles
    ReadChannelDesc *alphaChannel = gFormatRecord->documentInfo->alphaChannels;
    PIChannelPort port = alphaChannel->port;
    PSScaling scale;
    scale.sourceRect = scale.destinationRect = alphaChannel->bounds;
    VRect destRect = scale.sourceRect;
    // Set up the descriptor for reading pixel data
    VRect wroteRect = {0};
    PixelMemoryDesc dest = {0};
    dest.rowBits = imSize.h*alphaChannel->depth;
    dest.colBits = alphaChannel->depth;
    dest.depth = alphaChannel->depth;
    dest.data = pixelData;
    // Put the pixel data into the buffer
    *gResult = gFormatRecord->channelPortProcs->readPixelsProc(port,&scale, &destRect, &dest, &wroteRect);
    if(*gResult != noErr)
         return;
    The alpha channel gives me the proper name, but I just can't get the data associated with it. Thanks.

    I am still trying to find a solution to this.  The propChannelName is read only and the documentInfo structure is NULL when reading.  Any suggestions?

  • Is there a 2GB file size limit on saving a custom format plugin for a custom file type?

    I have resolved issues on reading files > 2GB. Now when I save files >2GB, I get a popup that states there is a 2GB limit for plugins.
    I an using photoshop CS6 on a MAC OSX 10.9 with 16 GB RAM.
    The custom file type is what should be selected when the Save As Dialogue is visible. 
    I looked for a setting in the Photoshop preferences for Files & setting to PSB, but did not see one.
    I tried modifying values in the PiPL for formatmaxSize and PluginMaxSize, but the only values that the code will compile in with:
    32767 & 2147483647.
    I saw a posting in previous years that custom plugins were limited to 2 GB. 

    I would like to rephrase my question, now that I have worked a little more with my code.
    Is there a 2GB limit per channel and 4GB limit for total file size for a custom photoshop format plugin?

  • Safari won't open, claims webcore plugin issue?

    Hello, for some reason, the safari on my macbook won't open. Claims it is some sort of webcore plugin issue. I'll post the problem details here in case it helps. Thank you in advance!
    Process:    
    Safari [751]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.3 (9537.75.14)
    Build Info: 
    WebBrowser-7537075014000000~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [158]
    Responsible:
    Safari [751]
    User ID:    
    501
    PlugIn Path:  
    /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    PlugIn Identifier: com.apple.WebCore
    PlugIn Version:
    9537 (9537.75.14)
    Date/Time:  
    2014-04-23 12:55:20.618 +1000
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  B28C173F-43B0-5E19-BDEA-AAA483CA061B
    Crashed Thread:  3  Dispatch queue: com.apple.WebKit.StorageManager
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x0000000102de5358
    VM Regions Near 0x102de5358:
    VM_ALLOCATE       
    0000000102042000-0000000102043000 [
    4K] rw-/rwx SM=ALI 
    --> __TEXT            
    0000000102047000-0000000102e9a000 [ 14.3M] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    __DATA            
    0000000102e9a000-0000000103058000 [ 1784K] rw-/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   dyld                     
    0x00007fff6c9159d0 ImageLoaderMachOCompressed::doBindFastLazySymbol(unsigned int, ImageLoader::LinkContext const&, void (*)(), void (*)()) + 592
    1   dyld                     
    0x00007fff6c900da5 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 90
    2   libdyld.dylib            
    0x00007fff9a8ad2dd dyld_stub_binder_ + 13
    3   ???                      
    0x00000001011d9b28 0 + 4313684776
    4   com.apple.Safari.framework
    0x0000000100cdb7e3 +[AppController initialize] + 310
    5   libobjc.A.dylib          
    0x00007fff92ba5371 _class_initialize + 645
    6   libobjc.A.dylib          
    0x00007fff92bb1254 lookUpImpOrForward + 170
    7   libobjc.A.dylib          
    0x00007fff92ba4169 objc_msgSend + 233
    8   com.apple.AppKit         
    0x00007fff9085276d -[NSCustomObject nibInstantiate] + 89
    9   com.apple.AppKit         
    0x00007fff908526b0 -[NSIBObjectData instantiateObject:] + 309
    10  com.apple.AppKit         
    0x00007fff908519a5 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 413
    11  com.apple.AppKit         
    0x00007fff9084675e loadNib + 327
    12  com.apple.AppKit         
    0x00007fff90845cfc +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    13  com.apple.AppKit         
    0x00007fff90845aec -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 197
    14  com.apple.AppKit         
    0x00007fff908458db +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 357
    15  com.apple.AppKit         
    0x00007fff90841727 NSApplicationMain + 448
    16  com.apple.Safari.framework
    0x0000000100f00c8d SafariMain + 267
    17  libdyld.dylib            
    0x00007fff9a8af5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff98677e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff93212f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff93215fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff98678662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff9a59b43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff9a59b152 _dispatch_mgr_thread + 52
    Thread 3 Crashed:: Dispatch queue: com.apple.WebKit.StorageManager
    0   com.apple.WebKit2        
    0x0000000101c6fb42 WebKit::LocalStorageDatabaseTracker::importOriginIdentifiers() + 124
    1   com.apple.WebKit2        
    0x0000000101c6f884 ___ZN9WorkQueue8dispatchERKN3***8FunctionIFvvEEE_block_invoke + 20
    2   libdispatch.dylib        
    0x00007fff9a59c1d7 _dispatch_call_block_and_release + 12
    3   libdispatch.dylib        
    0x00007fff9a5992ad _dispatch_client_callout + 8
    4   libdispatch.dylib        
    0x00007fff9a59b68f _dispatch_queue_drain + 451
    5   libdispatch.dylib        
    0x00007fff9a59c9dd _dispatch_queue_invoke + 110
    6   libdispatch.dylib        
    0x00007fff9a59afa3 _dispatch_root_queue_drain + 75
    7   libdispatch.dylib        
    0x00007fff9a59c193 _dispatch_worker_thread2 + 40
    8   libsystem_pthread.dylib  
    0x00007fff93212ef8 _pthread_wqthread + 314
    9   libsystem_pthread.dylib  
    0x00007fff93215fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff98677e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff93212f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff93215fb9 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   com.apple.WebCore        
    0x0000000102797900 WebCore::IconDatabase::checkIntegrity() + 96
    1   com.apple.WebCore        
    0x000000010204d721 WebCore::IconDatabase::performOpenInitialization() + 65
    2   com.apple.WebCore        
    0x000000010204d033 WebCore::IconDatabase::iconDatabaseSyncThread() + 259
    3   com.apple.JavaScriptCore 
    0x00000001015d153f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib  
    0x00007fff93211899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff9321172a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff93215fc9 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001039c7dd8  rcx: 0x0000000102de5358  rdx: 0x00000001039c7e48
      rdi: 0x0000040000000503  rsi: 0x0000050000000500  rbp: 0x000000010398add0  rsp: 0x000000010398ad60
       r8: 0x0000000000000040   r9: 0x000000010398ac00  r10: 0x00000000bcfdf583  r11: 0x0000000068fde2a0
      r12: 0x00006100000ca1a4  r13: 0x0000000000000000  r14: 0x000000010398ad88  r15: 0x0000000000000000
      rip: 0x0000000101c6fb42  rfl: 0x0000000000010206  cr2: 0x0000000102de5358
    Logical CPU:
    2
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x100cc6000 -   
    0x100cc6ffd  com.apple.Safari (7.0.3 - 9537.75.14) <170ED2F7-108B-326D-96B6-D54CCA40AA85> /Applications/Safari.app/Contents/MacOS/Safari
    0x100cd2000 -   
    0x1011d8ffb  com.apple.Safari.framework (9537 - 9537.75.14) <4803DE3D-4606-3B70-A537-6D12F172665A> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x1015c8000 -   
    0x10193fff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <8018AEEE-9FAB-34DE-AF60-97B2F221747A> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x101a3a000 -   
    0x101b70ffc  com.apple.WebKit (9537 - 9537.75.14) <CBAF76C6-E6F7-390A-A21D-CBCAF4A6896A> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x101c6a000 -   
    0x101e5bff3  com.apple.WebKit2 (9537 - 9537.75.14) <B3511A1C-A7E7-3F81-9EDB-2602C4EFAF19> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x102047000 -   
    0x102e99ffb  com.apple.WebCore (9537 - 9537.75.14) <99715507-9651-3DCE-831B-BF815FB3DE44> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x7fff6c8fd000 -
    0x7fff6c930817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff8d5ef000 -
    0x7fff8d75fff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8d7fe000 -
    0x7fff8e11daf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e1b1000 -
    0x7fff8e40aff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8e40b000 -
    0x7fff8e426ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8ea1c000 -
    0x7fff8ea57fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8f903000 -
    0x7fff8f921ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8f922000 -
    0x7fff8f995fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8f996000 -
    0x7fff8fa5aff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8fa7e000 -
    0x7fff8fa81fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8fcb3000 -
    0x7fff8fcb3fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8fdeb000 -
    0x7fff8fe2dff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff8feac000 -
    0x7fff8ff19fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8ff1a000 -
    0x7fff8ff1bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff8ff1c000 -
    0x7fff8ff37ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8ff38000 -
    0x7fff901e2ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff906d2000 -
    0x7fff906f6ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff90775000 -
    0x7fff9083efff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff9083f000 -
    0x7fff913b5fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff913f5000 -
    0x7fff913f9ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
    0x7fff916c3000 -
    0x7fff916c7ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff916c8000 -
    0x7fff916d6fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff916d7000 -
    0x7fff916e1ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff916e2000 -
    0x7fff916e7fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff918b8000 -
    0x7fff918c0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff918c1000 -
    0x7fff918c7ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x7fff91c40000 -
    0x7fff91c79ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff91d12000 -
    0x7fff91d13fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff91da3000 -
    0x7fff91da5fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff91e73000 -
    0x7fff91ee2ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff91ee3000 -
    0x7fff91f36fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff91f59000 -
    0x7fff91f71ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff9202e000 -
    0x7fff9203aff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff920a1000 -
    0x7fff920aeff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff920af000 -
    0x7fff920c8ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff9211b000 -
    0x7fff92137fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff92138000 -
    0x7fff92226fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff92227000 -
    0x7fff92228ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff92286000 -
    0x7fff922d7ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff92b9c000 -
    0x7fff92b9eff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff92b9f000 -
    0x7fff92d4cf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x7fff92d58000 -
    0x7fff92da5ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff92dfa000 -
    0x7fff92ee4fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff92f31000 -
    0x7fff930effff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff930f0000 -
    0x7fff93101ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff931ab000 -
    0x7fff9320ffff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff93210000 -
    0x7fff93217ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff93409000 -
    0x7fff9341aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff9341b000 -
    0x7fff93425ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff934b1000 -
    0x7fff9353afff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff936a8000 -
    0x7fff936d9ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
    0x7fff936da000 -
    0x7fff936e7ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff9371d000 -
    0x7fff9371ffff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff939b2000 -
    0x7fff93aa3ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff93ff0000 -
    0x7fff93ff2ff7  com.apple.securityhi (9.0 - 55005) <38784C88-AA07-350E-97A3-FCC24C97FC82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff9435f000 -
    0x7fff94517ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x7fff9454f000 -
    0x7fff9461afff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff94621000 -
    0x7fff9463eff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff9463f000 -
    0x7fff94643ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff94644000 -
    0x7fff9464bff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff9464c000 -
    0x7fff94a2dffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff94a75000 -
    0x7fff94adaff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff94b32000 -
    0x7fff94e30fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff94f3f000 -
    0x7fff94f6dff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff95042000 -
    0x7fff95042ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff9506e000 -
    0x7fff95080ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <4A5857F9-E249-3FA6-ADBB-410606AEC8CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff95081000 -
    0x7fff95082fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff95083000 -
    0x7fff950edff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff9514c000 -
    0x7fff95193ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff9532b000 -
    0x7fff953a2fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <DAF9AF17-0AC5-364C-B0BF-B1AF3FB4A07F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff953a3000 -
    0x7fff953a4ff7  libSystem.B.dylib (1197.1.1) <5292BF21-9406-32D5-8BB3-7DD02C672FA0> /usr/lib/libSystem.B.dylib
    0x7fff956ac000 -
    0x7fff956c7ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff956e7000 -
    0x7fff956f2ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff956f3000 -
    0x7fff956ffff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff95700000 -
    0x7fff95701ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff957fa000 -
    0x7fff95996ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff95997000 -
    0x7fff9599bfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff959e5000 -
    0x7fff959edff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff959ee000 -
    0x7fff95ad2fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff95adf000 -
    0x7fff95b09ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff95b0a000 -
    0x7fff95ceffff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff95cf0000 -
    0x7fff95d20fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff95d74000 -
    0x7fff95ee2ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff95ee3000 -
    0x7fff95eecffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff95eed000 -
    0x7fff95efdfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff95efe000 -
    0x7fff95f07ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff95f08000 -
    0x7fff95f08fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff95f09000 -
    0x7fff95f14fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
    0x7fff95f6e000 -
    0x7fff95f80fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff96060000 -
    0x7fff96122ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff96132000 -
    0x7fff96157ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff96158000 -
    0x7fff96165ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff96166000 -
    0x7fff961adfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff961ae000 -
    0x7fff96237ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff9624c000 -
    0x7fff9637cff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff963d5000 -
    0x7fff963d6ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff96410000 -
    0x7fff96414ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
    0x7fff96415000 -
    0x7fff966fffff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff96700000 -
    0x7fff969d4fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff96bec000 -
    0x7fff96c14ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff96c15000 -
    0x7fff96c1efff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff96c1f000 -
    0x7fff96c71fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff96cca000 -
    0x7fff970fdffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff970fe000 -
    0x7fff9713ffff  com.apple.PerformanceAnalysis (1.47 - 47) <B5B491F2-EF86-3382-B23B-EA78AC40AF25> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff97142000 -
    0x7fff97169ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff971e5000 -
    0x7fff971e6fff  libquit.dylib (161.2) <54B83D99-F84C-35E1-87D5-FCCB2F200FBD> /usr/lib/libquit.dylib
    0x7fff971e7000 -
    0x7fff971e7fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff97331000 -
    0x7fff97358ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff97359000 -
    0x7fff97360ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff97484000 -
    0x7fff974a8fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff974a9000 -
    0x7fff974aafff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff974ab000 -
    0x7fff974d4fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff974d5000 -
    0x7fff97561ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff97562000 -
    0x7fff97569fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff97cca000 -
    0x7fff97cf6fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff97d03000 -
    0x7fff97d69fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff97d9c000 -
    0x7fff97e1cfff  com.apple.CoreSymbolication (3.0 - 141) <DC9F84AA-9BD0-322B-83C3-FDC1FA771F37> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff97e8e000 -
    0x7fff97ebdfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff97ee6000 -
    0x7fff97efeff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff97f02000 -
    0x7fff97f0affc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff97f65000 -
    0x7fff97faaffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff985cc000 -
    0x7fff9861afff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff9861b000 -
    0x7fff9861cff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9861d000 -
    0x7fff9861dfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff98622000 -
    0x7fff98661fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff98662000 -
    0x7fff9867eff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff9867f000 -
    0x7fff987d2ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff987d3000 -
    0x7fff987d7fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff987d8000 -
    0x7fff987d8fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff987d9000 -
    0x7fff98832fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff98833000 -
    0x7fff9883afff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff98862000 -
    0x7fff988baff7  com.apple.Symbolication (1.4 - 129) <6D47983E-9B8E-38A0-9503-099601CF118E> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff98c43000 -
    0x7fff98c46fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff98c47000 -
    0x7fff98e8fff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff98ed3000 -
    0x7fff98f36ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff98f37000 -
    0x7fff98f39fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff98f3a000 -
    0x7fff98f3dfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff98faa000 -
    0x7fff990b0ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff990b1000 -
    0x7fff990c0ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff990c1000 -
    0x7fff990ffff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff9916b000 -
    0x7fff991a3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff991a4000 -
    0x7fff991cdff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff9935c000 -
    0x7fff99369fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff9936a000 -
    0x7fff993c9fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff993ca000 -
    0x7fff9945afff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff998ae000 -
    0x7fff998c5ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff998cb000 -
    0x7fff99929ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff9992a000 -
    0x7fff9992afff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9997f000 -
    0x7fff99989ff7  com.apple.CrashReporterSupport (10.9 - 538) <DD7669BA-78A6-3BEA-8410-17F556ACAA18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff99ec6000 -
    0x7fff99ef5ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff99f2a000 -
    0x7fff99f85ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff99f89000 -
    0x7fff9a259ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff9a25a000 -
    0x7fff9a349fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff9a34a000 -
    0x7fff9a363ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff9a364000 -
    0x7fff9a414ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff9a448000 -
    0x7fff9a52fff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff9a572000 -
    0x7fff9a597ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff9a598000 -
    0x7fff9a5b2fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff9a5b9000 -
    0x7fff9a5c3fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff9a876000 -
    0x7fff9a87bff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff9a87c000 -
    0x7fff9a8abfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff9a8ac000 -
    0x7fff9a8afff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff9a95a000 -
    0x7fff9a9a8fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff9a9a9000 -
    0x7fff9a9aefff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff9a9af000 -
    0x7fff9a9afffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff9a9b0000 -
    0x7fff9a9bbfff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff9ad99000 -
    0x7fff9ada1fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff9b185000 -
    0x7fff9b185ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff9b1c5000 -
    0x7fff9b1c8ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff9b1c9000 -
    0x7fff9b1cbff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 903
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=196.5M resident=113.6M(58%) swapped_out_or_unallocated=82.9M(42%)
    Writable regions: Total=1.1G written=2652K(0%) resident=3540K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                   
    VIRTUAL
    ===========                   
    =======
    CG shared images                 
    140K
    JS JIT generated code              
    8K
    JS JIT generated code (reserved) 
    1.0G   
    reserved VM address space (unallocated)
    Kernel Alloc Once                  
    8K
    MALLOC                          
    71.6M
    MALLOC (admin)                    
    32K
    SQLite page cache                
    256K
    STACK GUARD                     
    56.0M
    Stack                           
    10.1M
    VM_ALLOCATE                      
    348K
    WebKit Malloc                   
    1232K
    __DATA                          
    23.3M
    __IMAGE                          
    528K
    __LINKEDIT                      
    79.4M
    __TEXT                         
    117.1M
    __UNICODE                        
    544K
    mapped file                     
    32.6M
    shared memory                      
    4K
    ===========                   
    =======
    TOTAL                            
    1.4G
    TOTAL, minus reserved VM space 
    393.1M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f4
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Hub
    USB Device: USB2.0 Hub
    USB Device: USB OPTICAL MOUSE
    USB Device: Dell USB Keyboard
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 22.1

    Try repairing permissions.
    Launch Disk Utility located in Applications > Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click:   Repair Disk Permissions.
    Restart your Mac when it's finished then try Safari.

  • File Format Plugin - "Save As" vs "Save"....

    I have a format plugin that I would like to have triggered with File->SAVE.
    With only one layer in the document, Ctrl-S (Save) *does* call my plugin. So far so good.
    BUT if the document has more than one layer, then Ctrl-S pops up a dialog, with .PSD as the default file type. i.e., "Save" behaves like "Save As". Thats not what I want.
    Lets say that my own file format plugin can handle multiple layers.
    Any ideas on how I can get "Save" to save, without popping up a dialog each time? I looked through the documentation, for a way to specify my custom file format as a multi-layer file format. No luck. Any clues are appreciated.
    Thanks.

    Might You have set »Append File Extension« to »Never« in Preferences - File Handling by any Chance?

  • How to set alpha channel names in a format plugin?

    I am writing a format plugin with 6 color planes for CMYK mode. I want to set the apha channel names for planes 5 and 6 to "White" and "Clear" instead of "Alpha 1" and "Alpha 2" when I read the color data from my file. How do I set the alpha channel names?
    Thanks!

    I am still trying to find a solution to this.  The propChannelName is read only and the documentInfo structure is NULL when reading.  Any suggestions?

  • Setting the layer name from a format plugin with CS2 and before

    Hello,
    I wrote a new format plugin and the name of the layer shown in PS , when I read a file, does not seem to be consistent on all computers for versions CS2 and before :  some times I get "Background" and some times I get "Layer 0" .
    When the layer is named is "Background",  it is locked. If I double click on the layer, I get a panel to rename it and the name suggested is "Layer 0" (and not "Background").
    Somehow, it seems that my plugin is not doing exactly the right thing or there is a setting in PS options (or in the registry) that controls/causes that behavior. My understanding is that we can't name layers from the plugin before version CS3 (setting the layerName field in the FormatRecord makes no difference for CS2 and before).
    I do not care much about the actual layer name as long as that name is consistent for all installations. Does anybody know what is going on?
    Thank you!
    Gilbert

    If it has transparency, it has to be a layer ("Layer0").
    If it doesn't have transparency, it is treated as a background.
    And yes, changing the background to a layer does normally rename it to "layer X".

  • Global variables in a format plugin

    Hello,
    I developped a format plugin under Windows and I am now porting it to the Macinstosh. I found that the global variables dont seem to behave as they do in windows. In windows, they are real global variables that keep they value as long as Photoshop runs. Under the Macintosh, the variables get reset once in a while. It seems that the plugin gets reloaded, probably after each set of events ( ex: if loading a file requires a ReadStart, ReadContinue and ReadFinish event, then the global variables keep their value for these events. On the next file loaded, they are reinitialised to their default value).
    This is a bit annoying because I like keeping a few basic states in memory to save time (ex: load an INI file only once) but that does not work on the Mac. Is there something to do to have the same behavior as we have under windows (have the plugin loaded only once or some other way to have global variables keep their values?
    Thanks,
    Gilbert

    Plugins get unloaded when they're done being used - that is pretty well documented in the SDK.
    You can't assume that globals will remain valid on any platform.
    That's why the example plugins save their globals in a structure and save that via the plugin API.

  • How do you assign profile in a format plugin read sequence

    I have a format plugin that will read various image formats.  I know what the source colorspace or profile  (i.e. ProPhoto RGB, sRGB, AdobeRGB, whatever) is.  I haven't figured out how to do the equivalent to Assign Profile from with my Read sequence in my Format Plugin.
    Surely there is a way to do this.  ACR does it.
    Any clues will be greatly appreciated!

    Well, it appears that you just fill in the iCCprofileData/iCCprofileSize fields with an ICC profile.
    You can read the ICC profile for a filter plugin and you can specify an ICC profile for a format plugin read sequence.

  • How to retrieve alpha channel data in format plugin

    I want to ask how to get the alpha channel 's data that describle the document's transparent info, in a format plugin.
    for example , when open a PNG file in Photoshop, the photoshop set FormatRecord:: planes to 3 (not 4),
    in this case i can only request the RGB data.
    then how can i get if the pixel is transparent in document ?  (that is 0 - completely transparent, 255 - completely opaque)
    Thanks~

    i have resolved this problem, it's maybe i didnot set the fmtCanWriteTransparency flag in the pipl.
    thanks.

  • V3.6.3 Crash Today - Possible Plugin Issue?

    Re: v3.6.3 Crash Today - Possible Plugin Issue?
    Ref: (a) Crash ID bp-cb196f96-dd38-44d7-bffb-778a22100531.
    (b) https://www.mozilla.com/en-US/plugincheck/
    This user really does not know whether a plugin is involved here, but also, cannot rule that out. And exploring the Plugin Check page with its limited information, has found the following significant issue un-addressed, and thus, mysterious to him.
    Please, consider adding to the Plugin Check page, ref. (b), an explanation on this question>> What must one do, i.e., perform what steps, to update a plugin? I.e, is it infallibly sufficient to download & to run the download? Is updating a fully automated process for all plugins?, or even for some plugins? E.g., does updating an Adobe plugin ever require uninstalling the old plugin first (as does updating the Adobe Reader program, and Acrobat, etc.)? How shall the general user of Firefox know precisely what he/she should perform in this regard, when it is well known that the Adobe updates sites generally fail to recognize and advise the user on the question of whether to uninstall first. We see it in forums, that many of us general users have encountered install failures with Adobe updates, and (1) have found that Adobe updates usually do not work well if installed over the old version, and (2) have found that uninstalling Adobe apps often does not go smoothly and fails to complete the job, leaving vulnerable exe's or dll's hanging around to frustrate our subsequent updating. And, Adobe is not the only offender in this way. A frank and helpful mention of this issue would save much wailing and gnashing of teeth, and if uninstallation is a good idea, please explain how to Uninstall a Plugin, because plugins generally lack an Uninstall button in the Add-ons window of Firefox. And, this begs the question, is it desirable to Disable a plugin, before running the updating installation file? Or is there "no benefit" if Disabled first? Please try to write up these aspects plainly. Ideally, from this user's perspective, placement of this ought to be a few sentences directly on the Plugin Check page. Your consideration and adoption of this suggestion is respectfully requested, and it will be much appreciated.
    == Crash ID(s) ==
    bp-cb196f96-dd38-44d7-bffb-778a22100531

    Posted on Thu 03 of Jun, 2010 10:51 PST by
    cor-el:
    ''You can disable plugins here: Tools > Add-ons > Plugins
    See also Troubleshooting plugins
    Plugins provide a way to use other program to embed content. so you have to go to the program that adds a plugin and check the options (preferences) to disable the plugin.''
    Anyone knowledgeable, please comment.
    Thanx for suggesting the Disable button, cor-el, but my question addressed Uninstall of Plug-ins. This was due to the now-recognized problem which afflicts Adobe update patches, that the patch doesn't go well unless the old version is Uninstalled first; thus requiring a clean installation of the fully updated application.
    It is my understanding that the Disable button does not necessarily uninstall the old files. When I was unaware of this consistently occurring property of Adobe's patches, I had more than one case of Adobe Reader and Acrobat failing to update completely, causing hours of fruitless troubleshooting, and this continued with the most recent patches to Adobe Reader, the one updating it to v9.3.2, as well as earlier ones. Therefore, it seems not unreasonable to expect that the Shockwave Flash plugin that is now flagged as vulnerable again (v10.0.45.2), needs to be Uninstalled before updating.
    Is there no dependable method for Uninstalling plugins?
    If not, then one wonders, why not? Is there a reason why Mozilla designs Plugins to be different from Extensions in this regard?

  • My web-based email downloads aren't working properly. Is this a plugin issue?

    Either since upgrading to Firefox 4.0 (and updates) or getting Adobe Reader updates, my download configuration is no longer working properly. For example, when I am downloading (from my web-based email) attachments such as images, word docs, excel docs, this is what happens:
    1) I am NOT asked if I want to Save or Open
    2) The document opens awkwardly in the correct application, attempts to PRINT immediately, then quickly closes and re-opens in Adobe Reader!
    I cancel the printing as quickly as I can, but am baffled. I'm guessing it's a plugin issue, but don't know how to resolve that.
    I know it's a Firefox issue, because I tried in Opera and it works normally. Please help, thanks!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Custom Format Plugin Problem

    Hello Experts,
    I am new in the field of plugin development. I used sample application available in SDK and tried to implement my own Format Plugin . I changed pcx file's extension with .PBZ and try to parse it as new file and open it using sdk sample code availble. I read pcx file by following the pcx file format specification. It is opening grey image properly. But when i tried to open rgb or indexed image ,then color information is lost. I filled the redLUT,greenLUT and blueLUT member of FormatRecord with red green and blue data .Still color is not displayed . In case of RGB it display image as grey image and in case of Indexed image is not display properly. I don't know where I made the mistake. If anybody can help me in this regard. I am really thankful.
    Thanks
    Vikas

    Thankx for replying to my query. Actually if you saw in SDK sample code it was mentioned in Simple format code that in doReadStart function we are reading and filling color table ,if it is an indexed image. But as I am trying to read PCX file in which index image contain color table only after the data. So I fill the redLUT,greenLUT and blueLUT in the DoReadContinue functon , after readng the data, read color information in the order first red ,green and then blue .
    eg...
    ReadSome (sizeof (LookUpTable), &gFormatRecord->redLUT);
    ReadSome (sizeof (LookUpTable), &gFormatRecord->greenLUT);
    ReadSome (sizeof (LookUpTable), &gFormatRecord->blueLUT);
    if (*gResult != noErr)
    But as I saw these structure need to be filled in DoReadStart function as I not done so far. Is this might be the reason or anyother problem is there, where I made the mistake. Today I am able to open RGB image ,But in case of Indexed Image color data is not displayed.Kindly help me in this regards
    Thanks;
    Vikas

Maybe you are looking for

  • HT201303 how can i change my security question to a new one

    How can I change my sercurity question to a new?

  • Approved Task items are not disappearing from uwl task list

    Hi we have implemended Guided procedures with universal work list. For most of the users, once the any task items are approved, it suppose to disappear from the task list. But it is not disappearing from the task list. Even if i click on "refresh" un

  • 'Edit Locally' command Error -- IISProxy?

    Hi, We have a problem with 'Edit Locally' command since we are using Windows Authentication. Our architecture is: SAP EP 6.0 SP2 Patch 28 (Solaris) IIS Proxy (Windows 2003) The situation is: If we access to SAP Portal using old url (directly to Solar

  • Need help on N900

    OK I 'm not that smart when it comes to cell phones, so please bear with me. I am 80% of the time in the USA and 20% in Hong Kong. If I buy an unlocked Nokia, which carrier will have a sim card that will enable me to use it in the USA, and if I go to

  • Strange certificate error for google and facebook !

    When i open facebook or youtube, it shows up a cert. error stating the site's ssl is only valid for yimg.com ! It's not always yimg.com, sometime it says the certificate is only valid for google.com when i browse FB or some other https sites ! The pr