Google Docs Draw Application

Hey Mozilla! =)
The Google Documents draw application allows one to collaborate on design elements in what's essentially real-time, however Firefox has a keyboard shortcut that makes the use of this site somewhat annoying.
Pressing the 'Shift' key allows for multiple-select within Google Draw, however when this action is used upon an image object in the draw document, a new window spawns in Firefox to display the original image. With as many objects as I'm working with, it's kind of cramping my style.
Is there a way to disable this hotkey for this site?
If not, it would be nice as a feature request. I'd love some options that allow users to adjust their hotkeys as they'd like; or disable them altogether. :)
Cheers,
K

Hi,
Unfortunately the Google Docs app is not available on the Photosmart 7510 e-AiO printer. Sorry about that
If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
I am an HP employee.

Similar Messages

  • Creating a cfhttp multi part form post for google docs upload

    Hey all,
    If you saw my last thread, you know I am working with google docs and uploading documents to it. Well I got basic document uploading working, but now I am trying to include meta data. Google requires you to include the metadata with the actual file data and seperate them by using a multi part form upload. I don't know exactly the process for doing so, but they have a handy code snippet of the desired results at
    http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#UploadingDoc s
    So I am basically trying to mimic that payload, however I am continually getting an error stating that there are no parts in a multi part form upload.
    <errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>InvalidEntryException</code><internalReason>No parts detected in multipart message</internalReason></error></errors>
    to be exact. I am not really sure what I am doing wrong here. I figure it is one of two things, either I am not including the actual data in the payload properly (I am currently using a body type param for the payload, but I have also tried a formfield named content to deliver it. Neither worked). So maybe I need to do something else tricky there? The other thing which I am not reallly sure about is the content-length attribute. I don't know exactly how to calculate that, and I read in another forum that a content length attribute was messing that guy up. Right now I am just taking the lenght of the payload string and multiplying by 8 (to get the number of bytes for the entire payload) but hell if I know if that is right. It could be I just don't know how to set up the parts for the message, it seems pretty straight forward though. Just define a boundary in the content-type, then put two dashes before it wherever you define a new part, and two dashes trailing the last part.
    Anyway, here is my code, any help is much appreciate. I'm a bit beyond my expertise here (not really used to trying to have to roll my own http requests, nevermind multipart post form data) so I'm kinda flailing around. Thanks again.
    <cffunction name="upload" access="public" returnType="any" hint="I upload the document." output="false">
        <cfargument name="filePath" type="string" required="false" hint="file to upload.">
        <cfargument name="docType" type="string" required="yes" hint="The document type to identify this document see google list api supported documents">
        <cfargument name="parentCollectionId" type="string" required="no" hint="the name of the collection/collection to create (include collection%3A)">
        <cfargument name="metaData" type="struct" required="no" hint="structure containing meta data. Keyname is attribute name, value is the value">
        <cfset var result = structnew()>
        <cfset result.success = true>
        <cftry>
            <cfif structkeyexists(arguments,"parentCollectionId")>
                      <cfset arguments.parentCollectionId = urlencodedformat(parentCollectionId)>             
                      <cfset result.theUrl = "https://docs.google.com/feeds/default/private/full/#arguments.parentCollectionId#/contents">
                <cfelse>
                        <cfset result.theUrl = "https://docs.google.com/feeds/default/private/full/">
            </cfif>
             <cfoutput>
                  <cffile action="read" file="#arguments.filePath#" variable="theFile">
                <cfsavecontent variable="atomXML">
                     Content-Type: application/atom+xml
                    <?xml version='1.0' encoding='UTF-8'?>
                    <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007">
                      <category scheme="http://schemas.google.com/g/2005##kind"
                          term="http://schemas.google.com/docs/2007###arguments.docType#"/>
                        <cfloop collection="#arguments.metaData#" item="key">
                            <#key#>#arguments.metadata[key]#</#key#>
                        </cfloop>
                    </entry>
                    --END_OF_PART
                    Content-Type: text/plain
                    #theFile#
                    --END_OF_PART--
                </cfsavecontent>       
            </cfoutput>      
            <cfset result.postData = atomXML>
            <cfhttp url="#result.theUrl#" method="post" result="httpRequest" charset="utf-8" multipart="yes">
                <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth()#">
                <cfhttpparam type="header" name="GData-Version" value="3">
                <cfhttpparam type="header" name="Content-Length" value="#len(trim(atomXML))*8#">           
                <cfhttpparam type="header" name="Content-Type" value="multipart/related; boundary=END_OF_PART">
                <cfhttpparam type="header" name="Slug" value="test file --END_OF_PART">
                <cfhttpparam type="body" name="content" value="#trim(atomXML)#">
            </cfhttp>
            <cftry>
                   <cfset packet = xmlParse(httpRequest.fileContent)>
                <cfif httpRequest.statusCode neq "201 created">
                    <cfthrow message="HTTP Error" detail="#httpRequest.fileContent#" type="HTTP CODE #httpRequest.statusCode#">
                </cfif>
                <cfset result.data.resourceId = packet.entry['gd:resourceId'].xmlText>
                <cfset result.data.feedLink = packet.entry['gd:feedLink'].xmlText>
                <cfset result.data.title = packet.entry.title.xmlText>  
                <cfset result.data.link = packet.entry.title.xmlText>    
                <cfcatch>
                     <cfset result.data = httpRequest>
                </cfcatch>
            </cftry>       
            <cfcatch type="any">
                 <cfset result.error = cfcatch>
                <cfset result.success = false>
            </cfcatch>
        </cftry>   
        <cfreturn result>
    </cffunction>
    Also, this is what my atomXML data ended up looking like when it got sent to google. This isn't the WHOLE request (it doesn't include the headers, just the body).
    Content-Type: application/atom+xml
    <?xml version='1.0' encoding='UTF-8'?>
    <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007">
    <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/docs/2007#document"/>
    <TITLE>Woot Test</TITLE> </entry>
    --END_OF_PART
    Content-Type: text/plain
    I'm a test document lol!
    --END_OF_PART--

    Woot, I got it. I had to send the gData version number, and change the URL.
    Here is the working function.
    <cffunction name="upload" access="public" returnType="any" hint="I upload the document." output="false">
        <cfargument name="myFile" type="string" required="false" hint="file to upload.">
        <cfset var result = "">
        <cfset theUrl = "https://docs.google.com/feeds/default/private/full">
        <cffile action="read" file="C:\website\xerointeractive\testing\test.txt" variable="theFile">
        <cfset fileSize = createObject("java","java.io.File").init("C:\website\xerointeractive\testing\test.txt").length()>
        <cfhttp url="#theURL#" method="post" result="result" charset="utf-8" >
            <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth()#">
            <cfhttpparam type="header" name="Content-Type" value="text/plain">
            <cfhttpparam type="header" name="Slug" value="test file">
            <cfhttpparam type="header" name="GData-Version" value="3">
            <cfhttpparam type="header" name="Content-Length" value="#fileSize#">
            <cfhttpparam type="body" value="#theFile#">
        </cfhttp>
        <cfreturn result>
    </cffunction>

  • Inserting/deleting spreadsheet row in Google Docs

    When using Google Docs on an iPhone (or iPod Touch in my case), how does one insert a row at a certain location? There is a function to add a row, but that is only appended at the bottom, even if I've selected another row. I was using the new version of Spreadsheet on a laptop, but I'm not sure what version gets used when I access the document on the iPod Touch.

    Re:  "...now is there any way to..."
    I see "mission creep" ocurring here.
    Your request can get complicated...
      What if the user enters "1,3;xyz,9 44" ?
      You can prevent entries into a textbox, that are not numbers or commas, using the Textbox_KeyPress event.
      You can also clean up the text after entry by removing all non-numbers and dupe commas.
      Then the Split function can be used to separate the entry into row numbers.
      Verification by the user (with a message box) at this point would be wise.
      Each row could then be verified to contain data using Application.WorksheetFunction.CountA.
    Suggest you review the VBA help file for: KeyPress event, Like operator, Split function, Msgbox function and the Excel CountA function; then post a new question.
    Jim Cone

  • Problems opening Google Docs

    HI
    I have a 3G blackberry with 6.0 OS.
    I have a little problem with blackberry browser. I tried to open google docs. I found a good mobile site but when I try to open a page i can't view all the page. I can view only on the up-left of the page... i can't go right or down. 
    I don't think it's a google problem. I have the same problem with ATM Mobile (an application to see metros of Milan). When i try to see maps of metros I can't scroll the (probably) jpeg image of the maps (a vertical image. I can see up o down but not the middle of the image).
    Why there is a problem like this in a good smartphone like it?
    Thanks who can help me
    Maximoff

    Google Docs is not an application. It is just a web page. If you want to open a true attachment with Google Docs, you have to upload it. Normally, documents that originate in Google Docs are shared via a link to the document in Google Docs. If you want to open true attachments, you need an application that can handle the data.

  • Can't see detail on Google Docs

    Hello.  First time I haven't brought a Mac and although I am trying to be positive and realistic about the level of service I will get from the Touchsmart I must say it hasn't been a great experience so far. 
    Within a month of using it, it had to be returned to the HP shop due to bugs. It took a mamouth amount of phonecalls to get the computer fixed. 
    Still now the following issues arise, in order of importance:
    Documents are blurred in Google docs and HP say this is the software companies fault. I haven't ever experinced a hardware company passing the buck in this way neither have I had issues using standard software on a known brands device 
    The Windows home button still randomly moves to applications at its own will e.g. Skype
    Applications such as Spotify are extremely slow to load 
    Generally my productivity on basic matters is at least 50% slower 
    I'd love to return the product but HP won't allow it. Maybe someone could help with the first three points?
    Thanks in advance for your support. 

    Hello @Angalossy,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that you are having a couple issues with your HP computer and are looking for assistance. I would be happy to assist you, but first I would encourage you to post your product number for your computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Opening google docs with apple mail

    Hi there
    Anyone worked out away to open an attachment in Apple Mail App using Google Docs? Or will I have to change my mail app or stick with using Gmail in my browser?
    Any hints appreciated
    Cheers

    Google Docs is not an application. It is just a web page. If you want to open a true attachment with Google Docs, you have to upload it. Normally, documents that originate in Google Docs are shared via a link to the document in Google Docs. If you want to open true attachments, you need an application that can handle the data.

  • Powerpoint Mac 11.3.2 version converting to Google Docs Presentation, I'm told I need Quicktime and a compressor to view images. What does this mean?

    Starting with files in
    Powerpoint Mac 11.3.2 version converting to Google Docs Presentation, I'm told I need Quicktime and a compressor to view images. What does this mean?

    Were you using third-party software when the panic occurred? Is the panic repetitive or it just happened once? IN the latter case it could simply be a software glitch. But if it's repetitive then there's some other problem either hardware or software. Use the Console application in the Utilities folder and review the console log around the time of the panic to see if there are additional clues to the cause of the panic.
    The error indicates that the problem was a failure to respond to an interrupt by the CPU. Now this could simply be caused by a software glitch, but it could be a hardware problem related to the CPU. In the latter case the panic would probably become repetitive, in which case you would want to take the computer in for service to be sure the CPU isn't failing.

  • SIRI Dictation not working with google docs

    I was wondering if anyone knew why siri dication does not work in google docs. It wont work on chrome, works only once on firefox, and wont work in safari. Yes I followed all troubleshooting documents already. Just in the physical google doc when typing a document it does not work. It'll work anywhere else in general, just not on that page. Any ideas? thanks!

    I am assuming that it has to do with Apples feud with Google. I have the same problem, it is begun to appear that Apple is trying to make it as difficult as possible for Apple users to integrate Google applications into their workflows. It is an incredibly frustrating miscalculation on their part and will be a major factor in my decision to discontinue patronage. 

  • How can I open a google doc on IPAD 2?

    Created a google doc presentation.  The presentation slides open, but slides cannot be edited.  How can I edit the slides using the IPAD2?  Otherwise, is there some application for IPAD that can be used like a Google Doc?  Thank you.

    After you open the Google Docs presentation, there should be a bar at the bottom of the screen.  Select 'Actions' and then choose 'Edit'.  You'll get a message saying that the browser doesn't support all options, or something to that effect -- just ignore it.

  • TLF Font Size different from Word, Excel, Google Docs

    I have Times New Roman size 10 font.  In Word, Excel, and Google Docs the height of "Mg" in pixels is 12 but in my application and in the TLF Demo application the height is 9 pixels.
    Anyone know why?
    Thanks

    fontSize in FlashPlayer is in pixels not points and FlashPlayer has a 72 DPI screen resolution (see flash.system.Capabilities.screenDPI).  These other apps may have a better handle on actual screen DPI.  You could try scaling the fontSize setting.
    Regards,
    Richard

  • Safari 6.1 Crashes With Google Translate and Google Docs

    I am using a MacBook Pro, 10.7.5, just updated to Safari 6.1.
    Since the Safari update I have been unable to navigate to Google Docs and Google Translate without Safari crashing the instant the page starts to load.  I get the error report listed below.  I have both Chrome and Firefox installed and both work perfectly fine when navigating to these pages.  I have successfully navigated to Google Picasa in Safari since the update, so it doesn't appear to be all Google products, and the Google search page works fine.  I have reset Safari and still get the crashing behavior.  Any help would be greatly appreciated, as it's annoying to have to switch between browsers.
    Thanks.
    Process:         WebProcess [14101]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         7537 (7537.71)
    Build Info:      WebKit2-7537071000000000~1
    Code Type:       X86 (Native)
    Parent Process:  ??? [14099]
    Date/Time:       2013-11-19 20:57:49.003 -0500
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          8860181 sec
    Crashes Since Last Report:           79
    Per-App Interval Since Last Report:  144149 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      387EB47A-3F18-45EB-9823-B94B0874934C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000048
    VM Regions Near 0x48:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
        VM_ALLOCATE            0000000000001000-0000000000019000 [   96K] ---/--- SM=NUL 
    Application Specific Information:
    objc[14101]: garbage collection is OFF
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Single Web Process
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore                0x0084115b operationGetByValCell + 203
    1   ???                                     0x06c08881 0 + 113281153
    2   com.apple.JavaScriptCore                0x00608faf JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 575
    3   com.apple.JavaScriptCore                0x00608d61 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 97
    4   com.apple.JavaScriptCore                0x007a3cfe _ZN3JSCL21functionProtoFuncCallEPNS_9ExecStateE + 254
    5   ???                                     0x0418114f 0 + 68686159
    6   com.apple.JavaScriptCore                0x00608faf JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 575
    7   com.apple.JavaScriptCore                0x00608d61 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 97
    8   com.apple.JavaScriptCore                0x007a3cfe _ZN3JSCL21functionProtoFuncCallEPNS_9ExecStateE + 254
    9   ???                                     0x0418114f 0 + 68686159
    10  com.apple.JavaScriptCore                0x00608faf JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 575
    11  com.apple.JavaScriptCore                0x00608d61 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 97
    12  com.apple.JavaScriptCore                0x007a3cfe _ZN3JSCL21functionProtoFuncCallEPNS_9ExecStateE + 254
    13  ???                                     0x0418114f 0 + 68686159
    14  com.apple.JavaScriptCore                0x00608faf JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 575
    15  com.apple.JavaScriptCore                0x00608d61 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 97
    16  com.apple.JavaScriptCore                0x007a3cfe _ZN3JSCL21functionProtoFuncCallEPNS_9ExecStateE + 254
    17  ???                                     0x0418114f 0 + 68686159
    18  com.apple.JavaScriptCore                0x00608faf JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 575
    19  com.apple.JavaScriptCore                0x00608d61 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 97
    20  com.apple.JavaScriptCore                0x007d46e3 _ZN3JSCL22functionProtoFuncApplyEPNS_9ExecStateE + 1139
    21  ???                                     0x041810ef 0 + 68686063
    22  com.apple.JavaScriptCore                0x007550a4 JSC::Interpreter::execute(JSC::EvalExecutable*, JSC::ExecState*, JSC::JSValue, JSC::JSScope*) + 1188
    23  com.apple.JavaScriptCore                0x0074e59a JSC::eval(JSC::ExecState*) + 1626
    24  com.apple.JavaScriptCore                0x008286b3 llint_slow_path_call_eval + 275
    25  com.apple.JavaScriptCore                0x0082c6cd llint_op_call_eval + 22
    26  com.apple.JavaScriptCore                0x00608faf JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 575
    27  com.apple.JavaScriptCore                0x00608d61 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 97
    28  com.apple.WebCore                       0x00ba70b3 WebCore::JSMainThreadExecState::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 195
    29  com.apple.WebCore                       0x00beb777 WebCore::ScheduledAction::executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue, WebCore::ScriptExecutionContext*) + 567
    30  com.apple.WebCore                       0x00beb501 WebCore::ScheduledAction::execute(WebCore::Document*) + 321
    31  com.apple.WebCore                       0x00beb3a8 WebCore::ScheduledAction::execute(WebCore::ScriptExecutionContext*) + 40
    32  com.apple.WebCore                       0x00beb1e1 WebCore::DOMTimer::fired() + 321
    33  com.apple.WebCore                       0x009b49f0 WebCore::ThreadTimers::sharedTimerFiredInternal() + 192
    34  com.apple.WebCore                       0x009b4914 WebCore::ThreadTimers::sharedTimerFired() + 84
    35  com.apple.WebCore                       0x009b48a0 _ZN7WebCoreL10timerFiredEP16__CFRunLoopTimerPv + 64
    36  com.apple.CoreFoundation                0x994c72a6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    37  com.apple.CoreFoundation                0x994c6c37 __CFRunLoopDoTimer + 743
    38  com.apple.CoreFoundation                0x994a5cd0 __CFRunLoopRun + 1888
    39  com.apple.CoreFoundation                0x994a51dc CFRunLoopRunSpecific + 332
    40  com.apple.CoreFoundation                0x994a5088 CFRunLoopRunInMode + 120
    41  com.apple.HIToolbox                     0x9994d543 RunCurrentEventLoopInMode + 318
    42  com.apple.HIToolbox                     0x999548ab ReceiveNextEventCommon + 381
    43  com.apple.HIToolbox                     0x9995471a BlockUntilNextEventMatchingListInMode + 88
    44  com.apple.AppKit                        0x93632ee8 _DPSNextEvent + 678
    45  com.apple.AppKit                        0x93632752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    46  com.apple.AppKit                        0x9362eac1 -[NSApplication run] + 911
    47  com.apple.WebCore                       0x00d3e374 WebCore::RunLoop::run() + 148
    48  com.apple.WebKit2                       0x00361543 int WebKit::ChildProcessMain<WebKit::WebProcess, WebKit::WebContentProcessMainDelegate>(int, char**) + 693
    49  com.apple.WebProcess                    0x00019dec 0x19000 + 3564
    50  com.apple.WebProcess                    0x00019c8d 0x19000 + 3213
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92e2390a kevent + 10
    1   libdispatch.dylib                       0x9b2ffe04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9b2fe853 _dispatch_mgr_thread + 53
    Thread 2:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x92e2283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9ce68e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9ce193e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x005a6c4b ***::ThreadCondition::timedWait(***::Mutex&, double) + 123
    4   com.apple.JavaScriptCore                0x005a67a2 JSC::BlockAllocator::blockFreeingThreadMain() + 130
    5   com.apple.JavaScriptCore                0x0059dc0c _ZN3WTFL16threadEntryPointEPv + 76
    6   com.apple.JavaScriptCore                0x0059dba0 _ZN3WTFL19wtfThreadEntryPointEPv + 16
    7   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 3:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92e2283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9ce68e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9ce1942c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x005a723b JSC::GCThread::waitForNextPhase() + 123
    4   com.apple.JavaScriptCore                0x005a70c8 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore                0x0059dc0c _ZN3WTFL16threadEntryPointEPv + 76
    6   com.apple.JavaScriptCore                0x0059dba0 _ZN3WTFL19wtfThreadEntryPointEPv + 16
    7   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92e2283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9ce68e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9ce1942c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x005a723b JSC::GCThread::waitForNextPhase() + 123
    4   com.apple.JavaScriptCore                0x005a70c8 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore                0x0059dc0c _ZN3WTFL16threadEntryPointEPv + 76
    6   com.apple.JavaScriptCore                0x0059dba0 _ZN3WTFL19wtfThreadEntryPointEPv + 16
    7   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 5:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92e2283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9ce68e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9ce1942c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x005a723b JSC::GCThread::waitForNextPhase() + 123
    4   com.apple.JavaScriptCore                0x005a70c8 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore                0x0059dc0c _ZN3WTFL16threadEntryPointEPv + 76
    6   com.apple.JavaScriptCore                0x0059dba0 _ZN3WTFL19wtfThreadEntryPointEPv + 16
    7   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92e20c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92e201f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9949c9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x994a5b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x994a51dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x994a5088 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x952080c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x951fbe25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x951fbdd5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92e22b42 __select + 10
    1   com.apple.CoreFoundation                0x994f3e15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 8:: com.apple.coremedia.networkbuffering
    0   libsystem_kernel.dylib                  0x92e20c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92e201f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9949c9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x994a5b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x994a51dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x994b5f01 CFRunLoopRun + 129
    6   com.apple.CoreMedia                     0x988b6d01 FigThreadGlobalNetworkBufferingRunloop + 167
    7   com.apple.CoreMedia                     0x988b9e33 figThreadMain + 496
    8   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 9:: com.apple.coremedia.asyncio
    0   libsystem_kernel.dylib                  0x92e2283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9ce68e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9ce1942c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreMedia                     0x988b8b0e WaitOnCondition + 19
    4   com.apple.CoreMedia                     0x988b8d3b FigSemaphoreWaitRelative + 194
    5   com.apple.MediaToolbox                  0x9c832dc3 0x9c823000 + 64963
    6   com.apple.CoreMedia                     0x988b9e33 figThreadMain + 496
    7   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 10:: WebCore: File
    0   libsystem_kernel.dylib                  0x92e2283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9ce68e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9ce1942c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x005a6c13 ***::ThreadCondition::timedWait(***::Mutex&, double) + 67
    4   com.apple.WebCore                       0x00ec5908 ***::PassOwnPtr<WebCore::FileThread::Task> ***::MessageQueue<WebCore::FileThread::Task>::waitForMessageFilteredWithTimeout <bool ()(WebCore::FileThread::Task*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::FileThread::Task*), double) + 120
    5   com.apple.WebCore                       0x00ec56ed WebCore::FileThread::runLoop() + 189
    6   com.apple.JavaScriptCore                0x0059dc0c _ZN3WTFL16threadEntryPointEPv + 76
    7   com.apple.JavaScriptCore                0x0059dba0 _ZN3WTFL19wtfThreadEntryPointEPv + 16
    8   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x92e20c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92e201f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9949c9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x994a5b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x994a51dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x994b5f01 CFRunLoopRun + 129
    6   com.apple.QuickTime                     0x9441f94f QTSNetworkThread_RunThread + 132
    7   libsystem_c.dylib                       0x9ce64ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9ce686de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x92e2302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9ce66ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9ce686fe start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x92e2302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9ce66ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9ce686fe start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x92e2302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9ce66ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9ce686fe start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x92e2302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9ce66ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9ce686fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000048  ebx: 0x128d7318  ecx: 0x0323feb8  edx: 0xfffffffb
      edi: 0x03c747f8  esi: 0x03c747f8  ebp: 0xc0014f88  esp: 0xc0014ee0
       ss: 0x00000023  efl: 0x00010206  eip: 0x0084115b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000048
    Logical CPU: 2
    Binary Images:
       0x19000 -    0x19ffd  com.apple.WebProcess (7537 - 7537.71) <4B6BC482-6765-39F4-9F54-D21F330230D7> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
       0x1f000 -    0x1fffc  WebProcessShim.dylib (537.71.0 - compatibility 1.0.0) <9DA4B721-D9DD-3AA4-A6C8-1E801CAA8F25> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcessShim.dylib
       0x26000 -    0x26fff  com.apple.VideoDecodeAcceleration (1.1 - 8) <B32A6585-ACA5-3B79-9BF1-35AA0FAA7CCB> /System/Library/Frameworks/VideoDecodeAcceleration.framework/Versions/A/VideoDe codeAcceleration
      0x200000 -   0x3e2ff3  com.apple.WebKit2 (7537 - 7537.71) <B40779BA-309E-389F-99BC-685E3D80668D> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
      0x595000 -   0x8bfff3  com.apple.JavaScriptCore (7537 - 7537.65) <B91904ED-B016-333B-BC51-46B7CA04B4BC> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
      0x98b000 -  0x17f1ff7  com.apple.WebCore (7537 - 7537.70) <919F72EE-FCD0-3AC9-9FF7-FF27CAAFFE90> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x33f3000 -  0x381bffb  com.apple.Safari.framework (7537 - 7537.71) <785FF679-961E-37B1-B833-D4DD6C17AC4E> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    0x3ab1000 -  0x3bc4ffb  com.apple.WebKit (7537 - 7537.71) <0739D166-9511-3945-AE29-2CCDB6EE8D20> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0xd549000 -  0xd54bfff  libCoreFSCache.dylib (??? - ???) <9E7CBE71-566C-36E9-A49F-C5FF6956D76F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xd6e0000 -  0xd6e1ffc  ATSHI.dylib (??? - ???) <0B0F21B6-C254-34AE-8128-F3FBC80C68E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xdc83000 -  0xdc87ffb  com.apple.audio.AudioIPCPlugIn (1.2.3 - 1.2.3) <D4092467-5BBE-3ED6-A493-7DB1EE8E6686> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xdd60000 -  0xdd65fff  com.apple.audio.AppleHDAHALPlugIn (2.2.5 - 2.2.5a5) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x10559000 - 0x10619fff +net.sourceforge.webcam-osx.common (0.9.2 - 0.9.2) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x12bf0000 - 0x12c13ff7  libPDFRIP.A.dylib (600.0.0 - compatibility 64.0.0) <125A3C57-1023-320F-B828-CAFCA71519F5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x1c380000 - 0x1c54cff7  com.apple.audio.codecs.Components (2.3 - 2.3) <FE9FB866-C44F-397B-BDA6-AD218A84BA4C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1ec06000 - 0x1ed47fff  com.apple.audio.units.Components (1.7.3 - 1.7.3) <288826E4-A704-3FDB-8DF6-AFD50A73142B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x20e60000 - 0x20e72fff +net.telestream.license (1.1.0.1 -GC - 1.1.0.1 -GC) <DC7780FD-AAAC-310E-92D5-1B8E7AB20E8C> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x218bf000 - 0x218cbffb  libGPUSupport.dylib (??? - ???) <A4467427-9E43-3F03-96E7-B09BBD5F0A6D> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x21bec000 - 0x21bf5ff6  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <95A88DC8-E5EE-363F-9275-214D5AB7A2EF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x23600000 - 0x23710ff7 +net.telestream.wmv.import (2.5.0.1 - 3.0.0.126) <6CB544CE-B60B-3BEE-954F-67BD9228B6C9> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x23f30000 - 0x24066ff7  com.apple.QuickTimeStreaming.component (7.7.1 - 2348) <2A9F28EE-D150-3C15-B92B-16A79FA15573> /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x2954e000 - 0x2957bff0  GLRendererFloat (??? - ???) <B72FCE8D-7A5E-35F3-8A9F-0D139F8921AB> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x30af2000 - 0x30c7aff9  GLEngine (??? - ???) <84549EEF-900F-397A-AABC-47DD261F40BE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x30dc0000 - 0x30f2affb  libGLProgrammability.dylib (??? - ???) <169ED314-B937-3877-A7D7-4AFB96D8C561> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x320c0000 - 0x32441fef  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.32.12 - 7.3.2) <AB1CE0F6-8FD8-384E-9DE9-A31DDD0607BD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
    0x8fe18000 - 0x8fe4aaa7  dyld (195.6 - ???) <60FD3471-A1D7-342E-99A7-3EDECDAEC6EC> /usr/lib/dyld
    0x90005000 - 0x90022fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x90023000 - 0x90063ff3  com.apple.corelocation (330.12 - 330.12) <3F6542AA-B0ED-399A-ABD0-AE7205A8B7BA> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x90064000 - 0x90075fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x901be000 - 0x9021bffb  com.apple.htmlrendering (76 - 1.1.4) <409EF0CB-2997-369A-9326-BE12436B9EE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90440000 - 0x90445ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x90446000 - 0x90454ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x90455000 - 0x90459ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9045a000 - 0x9046fff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9047b000 - 0x9053efff  com.apple.CoreServices.OSServices (478.50 - 478.50) <916A3B50-1033-3FFE-A9AF-3CC2B0F60EAE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9053f000 - 0x90542ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x90543000 - 0x905dffff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x905e8000 - 0x906e7ffb  com.apple.DiskImagesFramework (10.7.4 - 331.7) <31A74A7E-E2AE-313D-A7C4-6DFCF0F22C9A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x90735000 - 0x90755ff7  com.apple.RemoteViewServices (1.5 - 44.2) <11C87337-FF29-3976-A230-6387D96563C5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x90756000 - 0x90839ff7  libcrypto.0.9.8.dylib (49.1.0 - compatibility 0.9.8) <819B5833-97F6-3827-8CAE-2F7CA91F0A0D> /usr/lib/libcrypto.0.9.8.dylib
    0x9083a000 - 0x9083afff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9083b000 - 0x9116672b  com.apple.CoreGraphics (1.600.0 - ???) <DD7CDD67-FC4F-36FE-962F-2EA7EF3FC780> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x914dc000 - 0x914e3ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x917f3000 - 0x91806ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <86C11177-EF7C-33DC-AFE3-703652463562> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91887000 - 0x91a7fff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91a80000 - 0x91b70ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x91b7d000 - 0x91b97fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91bca000 - 0x91ce8fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91ce9000 - 0x91df8ff7  com.apple.DesktopServices (1.6.5 - 1.6.5) <CEC069D7-37A3-3D25-A3BB-39DE99FDA46E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91df9000 - 0x91e95ffe  com.apple.PDFKit (2.7.8 - 2.7.8) <2DFB71DA-158B-375B-AA75-532AF883EAAA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91e96000 - 0x91ea4fff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91ea5000 - 0x91ee9fff  com.apple.MediaKit (12 - 602) <6E429DD7-8829-37DE-94AF-940FB70F2FB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x91eea000 - 0x91efffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91f00000 - 0x91f87fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91f88000 - 0x91fe1fff  com.apple.HIServices (1.21 - ???) <91EC636D-AC27-3332-BA1C-FD7301917429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91fe2000 - 0x91fe2ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92078000 - 0x92078fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92079000 - 0x92150ff3  com.apple.avfoundation (2.0 - 180.50) <7B7FDF30-AC40-3715-A409-B5A27F7B5585> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x92157000 - 0x9219fff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <C8DE66D7-0880-3F5F-A4BA-215B52DEFC74> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x921a0000 - 0x922f6fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <F09C7075-2C4E-3A4F-A372-95D700125513> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x922f7000 - 0x927d3ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x927d4000 - 0x92a48ff3  com.apple.CoreImage (7.99.1 - 1.0.1) <C4B2DD2A-8E45-31CD-9B25-2AC1CA252B14> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x92a4f000 - 0x92a93ff3  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <8A99ADB8-4A3E-3B8E-A0E4-A39398C288EC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x92dc6000 - 0x92e09ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x92e0a000 - 0x92e28ff7  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
    0x92e38000 - 0x92e40ff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x92e41000 - 0x92e42ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x92e43000 - 0x92e46ffc  libMatch.1.dylib (??? - ???) <85DB21F5-BF07-321B-9565-96FC89D1E597> /usr/lib/libMatch.1.dylib
    0x92e47000 - 0x93121ff7  com.apple.RawCamera.bundle (4.00 - 658) <F72D5DF2-406B-3310-AC16-F0AB434237DE> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x93122000 - 0x93597ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x935f2000 - 0x93628ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93629000 - 0x940beff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940bf000 - 0x94111ffb  com.apple.CoreMediaIO (216.0 - 3199.8) <A079E576-64FD-3069-846E-F3B67AF28E15> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x94112000 - 0x94116ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x94117000 - 0x9411fff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x94120000 - 0x94142ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x94185000 - 0x941bcfef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x941bf000 - 0x941c1ff9  com.apple.securityhi (4.0 - 1) <ACEEED5F-8D58-377D-B2B8-E4A7F4E5E286> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x941ee000 - 0x94473fe3  com.apple.QuickTime (7.7.1 - 2348) <DAA61DE5-ED45-3AAE-8030-351D2C636FF2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94474000 - 0x944c3ffb  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <1188E7AB-76FE-343F-9108-30CD67E5A37B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x944c4000 - 0x944d2fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x944d3000 - 0x944d3ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x94782000 - 0x94819fff  com.apple.securityfoundation (5.0 - 55116) <510A3BA7-7171-3D98-A717-8EECCCE5FC91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94bef000 - 0x94c05ffe  libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
    0x94c06000 - 0x94dbaff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
    0x94dbb000 - 0x94eccff7  libJP2.dylib (??? - ???) <3B6A6D1C-5E4D-3814-892A-7C580E063268> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x94ecd000 - 0x94f0dff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x94f2f000 - 0x95005aab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x9519c000 - 0x954a6ff3  com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x954a7000 - 0x955bbff3  com.apple.QuickTimeImporters.component (7.7.1 - 2348) <7DE6FA98-D2E5-39B5-844F-338C600EE8F8> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x955bc000 - 0x955bdfff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9562d000 - 0x95638ffb  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <A1764D2F-EB84-33DC-9ED5-CDA3B468FF3E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9567e000 - 0x957e0ffb  com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x957e1000 - 0x95803ffe  com.apple.framework.familycontrols (3.0 - 300) <6735D7ED-7053-3AB8-B144-E7F70A124CCD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95804000 - 0x95878fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95879000 - 0x958acfef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x958ad000 - 0x95912ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95913000 - 0x95a0bff7  libFontParser.dylib (??? - ???) <71B33EB1-27F8-3C68-B940-FC61A3CFE275> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95a6a000 - 0x95ae0fff  com.apple.Metadata (10.7.0 - 627.37) <F54AED70-95C5-3561-8C87-D9E5539E98A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95ae1000 - 0x95b6bffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95b6c000 - 0x95c2cffb  com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95c2d000 - 0x95c8effb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95c9f000 - 0x95ca0fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x95ca1000 - 0x95d03ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x95d18000 - 0x95d19ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x95e45000 - 0x96b96fff  com.apple.QuickTimeComponents.component (7.7.1 - 2348) <BBFA6BA1-DF2F-32EA-9064-CE54EE7894C5> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96b97000 - 0x96babfff  com.apple.CFOpenDirectory (10.7 - 146) <9149C1FE-865E-3A8D-B9D9-547384F553C8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96bac000 - 0x96badff7  MetadataLib.dylib (4.0.0 - compatibility 2.2.1) <D669C124-4F8E-3CCC-B77C-4667BB08EE14> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
    0x974fe000 - 0x9755cff7  com.apple.coreui (1.2.2 - 165.11) <340B0B83-1407-3AB4-BCAB-505C29303EE2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9755d000 - 0x975eaff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x975ee000 - 0x975f7fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9760f000 - 0x9771ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x9773b000 - 0x9775efff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97760000 - 0x97769ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9776a000 - 0x978cdfff  com.apple.QTKit (7.7.1 - 2348) <E3312B31-238A-3021-9D23-9F2FD5F0B57A> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x978ce000 - 0x979faff9  com.apple.CFNetwork (520.5.1 - 520.5.1) <F3C606BF-6DCF-33CD-981B-7253C9E3113A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x979fb000 - 0x97a3cff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <9FD420FB-7984-3A07-8914-BB19E687D38B> /usr/lib/libcurl.4.dylib
    0x97a3d000 - 0x97a4dfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97a4e000 - 0x97a5eff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x97a70000 - 0x97b06ff7  com.apple.LaunchServices (480.40 - 480.40) <D5C0DEF9-398C-3742-8C4E-875C3365EC8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97b07000 - 0x97b08ffd  libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x97b09000 - 0x97b64ff3  com.apple.Symbolication (1.3 - 91) <B9D69476-B09A-38BB-AB8F-644C0032DA97> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97b65000 - 0x97f67ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x97f68000 - 0x97fccfff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97fcd000 - 0x97fe9ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x97fea000 - 0x980d2fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x9811f000 - 0x98187fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x98193000 - 0x981baff3  com.apple.framework.Apple80211 (7.4.1 - 741.1) <7F29673A-B030-34AF-B8CA-AB30DD63FFAB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9825c000 - 0x982d4ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x982d5000 - 0x982f2ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x982f3000 - 0x98329ff4  com.apple.LDAPFramework (3.2 - 120.2) <CCEB43CD-3861-33CC-8D9B-588F415A7028> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9832a000 - 0x9834fff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98350000 - 0x9837fff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x98380000 - 0x983befff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <AF1174F9-4402-31EB-9C84-AB644E5865DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x983bf000 - 0x986c1fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <C613B0DA-B401-3DC7-B626-6E20D4DDC8A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9872e000 - 0x98756ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x9875f000 - 0x98766fff  com.apple.agl (3.2.0 - AGL-3.2.0) <B06FB8BF-77A7-3357-8B46-06E609E3F775> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98896000 - 0x988d8ff7  com.apple.CoreMedia (1.0 - 705.94) <10D5D25F-9BCB-3406-B737-23D9FDF2CC71> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x988d9000 - 0x98916ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
    0x9894e000 - 0x98997ff7  libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98998000 - 0x98a25fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98aa7000 - 0x98abeff8  com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x98abf000 - 0x98ac6ff9  libsystem_dnssd.dylib (??? - ???) <EBEAF723-84F8-3544-8FB2-31B7771B50D0> /usr/lib/system/libsystem_dnssd.dylib
    0x98cdc000 - 0x98cddfff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98cde000 - 0x98cdfff7  libsystem_sandbox.dylib (??? - ???) <036370E2-9D3E-38B8-B3A5-9056C57E780E> /usr/lib/system/libsystem_sandbox.dylib
    0x98ce0000 - 0x98ce3ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x98ce4000 - 0x990d8feb  com.apple.VideoToolbox (1.0 - 705.94) <8FCC2C08-2D4C-3A96-B57A-CAA56911120F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x99273000 - 0x99273fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x99274000 - 0x992c6ff7  libFontRegistry.dylib (??? - ???) <C2B84661-A62D-3FFF-8D8C-BC697E9BDF4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x992cd000 - 0x992fbfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <112D9C23-18FE-3995-A8DB-CDBE81CC7BAB> /usr/lib/libSystem.B.dylib
    0x99301000 - 0x99305ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x99306000 - 0x99330ff1  com.apple.CoreServicesInternal (113.19 - 113.19) <F7A309D1-DCB4-38DE-8248-E16D0182AA6C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x99356000 - 0x99356fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9940f000 - 0x99460ff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x99461000 - 0x99468ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99469000 - 0x99469ff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9946a000 - 0x99641fe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99642000 - 0x99646fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x99647000 - 0x99916ffb  com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x99942000 - 0x9994aff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x9994b000 - 0x99c91ff3  com.apple.HIToolbox (1.9 - ???) <E5EA9EEF-3CCA-36A0-8688-DA2E64E2256C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99c92000 - 0x99cc8ff8  libssl.0.9.8.dylib (49.1.0 - compatibility 0.9.8) <1FB07221-3160-3E55-A8CC-55B4405C8A30> /usr/lib/libssl.0.9.8.dylib
    0x99cc9000 - 0x99ccafff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x99cf6000 - 0x99cf9ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x99cfa000 - 0x99d07fff  libGL.dylib (??? - ???) <A72F14F7-1836-34AB-9F08-67836CB966E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x99d5c000 - 0x99dbeffb  com.apple.datadetectorscore (3.0 - 179.4) <8340BEC3-FB03-3AD8-B9E8-1FFA9DC7C220> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x99dbf000 - 0x99dc2ffb  com.apple.help (1.3.2 - 42) <B1E6701C-7473-30B2-AB5A-AFC9A4823694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9a1ed000 - 0x9a1f1ff7  com.apple.OpenDirectory (10.7 - 146) <CFBA4CCF-65D4-3879-BC6A-8888C13E3345> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9ac6f000 - 0x9b2fbff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9b2fc000 - 0x9b2fcfff  com.apple.Carbon (153 - 153) <63603A0C-723B-3968-B302-EBEEE6A14E97> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9b2fd000 - 0x9b30bfff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
    0x9b348000 - 0x9b350fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9b351000 - 0x9b351fff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9b352000 - 0x9b35cff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9b35d000 - 0x9b369ff4  com.apple.CrashReporterSupport (10.7.4 - 353) <96C5799C-5273-3B56-9273-CE38900EFE65> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9b36a000 - 0x9b370ffd  com.apple.CommerceCore (1.0 - 17.1) <32AB16CE-7BBB-3124-8C42-2EE3E1D336F0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9b3b7000 - 0x9b3b9ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9b4a2000 - 0x9b4a4ff7  libdyld.dylib (195.6.0 - compatibility 1.0.0) <1F865C73-5803-3B08-988C-65B8D86CB7BE> /usr/lib/system/libdyld.dylib
    0x9b4cb000 - 0x9b4ffff3  libTrueTypeScaler.dylib (??? - ???) <C2D2257F-11E6-336C-BBA8-934BD9214728> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9b50b000 - 0x9b511ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9b552000 - 0x9b55dffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <B63F5D07-93B3-3F02-BFB7-472B4ED3521F> /usr/lib/libbz2.1.0.dylib
    0x9b77a000 - 0x9b7caffa  libTIFF.dylib (??? - ???) <9511A31E-070C-313E-8320-AAB683AD0653> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9b7cb000 - 0x9b7ceff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9b859000 - 0x9b864ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9b865000 - 0x9b893ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <8D03D180-D834-39F3-A106-78E0B22A7893> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9b89e000 - 0x9b8dbfef  libGLImage.dylib (??? - ???) <FC13D46F-69C4-3BA1-A5E8-52C2EC8B7D58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9b8dc000 - 0x9b980fff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9ba24000 - 0x9ba2ffff  libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
    0x9ba30000 - 0x9ba9ffff  com.apple.Heimdal (2.2 - 2.0) <8ACC5067-441D-31C2-ACBD-4527C1AD73EF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9baa4000 - 0x9bb1fffb  com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9bf42000 - 0x9bf5eff1  libPng.dylib (??? - ???) <F084226B-14F0-36C0-B5EC-22C78406D2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9c587000 - 0x9c5ceff5  com.apple.opencl (2.0.19 - 2.0.19) <7689E7B9-EE5A-3F74-8699-4CDED9162260> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9c5e8000 - 0x9c5f6ff7  libxar.1.dylib (??? - ???) <9162C7BD-60FE-37B1-A323-DA4F829FEED0> /usr/lib/libxar.1.dylib
    0x9c823000 - 0x9cb69fff  com.apple.MediaToolbox (1.0 - 705.94) <89D37021-C389-3CC5-A158-620ADCBD99EF> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9cb6a000 - 0x9cc3affb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <C3CB142F-BE91-3AFA-B052-409F776C0B9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9cc3b000 - 0x9cc3cff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x9cc3d000 - 0x9cc43fff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9cc44000 - 0x9cc84ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9cc85000 - 0x9cc89fff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9cc8a000 - 0x9cc95ffe  com.apple.NetAuth (3.2 - 3.2) <4377FB18-A550-35C6-BCD2-71C42134EEA6> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9cc96000 - 0x9ccc3ff9  com.apple.securityinterface (5.0 - 55022.6) <0FA3E84B-B5FF-3A58-A408-46280982CACC> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9ccc4000 - 0x9ccc4fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AF

    Try third party plug-ins ...
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.
    Also, can you disable the >   net.sourceforge.webcam-osx.common    to test ??
    macam : USB webcam support for Mac OS X
    Message was edited by: CS

  • Scripts are crashing in Google Docs.

    Whenever I have a Google Docs document open, I get script errors. With all Firefox add-ons disabled, I get this:
    "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: https://docs.google.com/wrt/client/js/193216031-EditPageModularized_editor_base_mod.js:53"
    When I had adblock turned on, it gave me a script error for that instead.
    Even if I tell it not to ask me again, it keeps popping up.
    I'm using
    Windows XP, Firefox 3.6.11 (with all add-ons disabled)
    Clearing cache and cookies didn't help.

    Hi Alex,
    Welcome to the forum.
    Try selecting all the text and setting the language to English In
    +Inspector > Text > More > Language+
    Failing that select the text and double click the appropriate style in the Styles Drawer to force the formatting.
    Peter

  • Safari crashes whenever I start typing in a google doc

    Whenever I start to type in a google doc safari crashes and I get the Safari Web Content quit unexpectedly.  I tried using new RAM, I ran Hardware tests and they all passed.  I re imaged the machine and it still does it.  Any suggestions?
    rocess:         WebProcess [1183]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.30.1)
    Build Info:      WebKit2-7536030001000000~9
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    User ID:         501
    Date/Time:       2013-11-12 12:58:37.633 -0500
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          1344 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  459 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      96561BB8-7C95-8151-6BFF-AA415AD9990B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000007a0
    VM Regions Near 0x7a0:
    -->
        __TEXT                 0000000102459000-000000010245a000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore                 0x00007fff8fd8032e WebCore::MainResourceLoader::didFinishLoading(double) + 190
    1   com.apple.Foundation              0x00007fff8ec81d88 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 28
    2   com.apple.Foundation              0x00007fff8ec81ccc -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 227
    3   com.apple.Foundation              0x00007fff8ec81bc8 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 63
    4   com.apple.CFNetwork               0x00007fff96d66151 ___delegate_didFinishLoading_block_invoke_0 + 40
    5   com.apple.CFNetwork               0x00007fff96d5860a ___withDelegateAsync_block_invoke_0 + 90
    6   com.apple.CFNetwork               0x00007fff96de8fea __block_global_1 + 28
    7   com.apple.CoreFoundation          0x00007fff93f72154 CFArrayApplyFunction + 68
    8   com.apple.CFNetwork               0x00007fff96d49374 RunloopBlockContext::perform() + 124
    9   com.apple.CFNetwork               0x00007fff96d4924b MultiplexerSource::perform() + 221
    10  com.apple.CoreFoundation          0x00007fff93f53b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    11  com.apple.CoreFoundation          0x00007fff93f53455 __CFRunLoopDoSources0 + 245
    12  com.apple.CoreFoundation          0x00007fff93f767f5 __CFRunLoopRun + 789
    13  com.apple.CoreFoundation          0x00007fff93f760e2 CFRunLoopRunSpecific + 290
    14  com.apple.HIToolbox               0x00007fff9349ceb4 RunCurrentEventLoopInMode + 209
    15  com.apple.HIToolbox               0x00007fff9349cc52 ReceiveNextEventCommon + 356
    16  com.apple.HIToolbox               0x00007fff9349cae3 BlockUntilNextEventMatchingListInMode + 62
    17  com.apple.AppKit                  0x00007fff96f97533 _DPSNextEvent + 685
    18  com.apple.AppKit                  0x00007fff96f96df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    19  com.apple.AppKit                  0x00007fff96f8e1a3 -[NSApplication run] + 517
    20  com.apple.WebCore                 0x00007fff907784ff WebCore::RunLoop::run() + 63
    21  com.apple.WebKit2                 0x00007fff98390462 WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    22  com.apple.WebKit2                 0x00007fff98356bfd WebKitMain + 285
    23  com.apple.WebProcess              0x0000000102459e7b 0x102459000 + 3707
    24  libdyld.dylib                     0x00007fff8e5db7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x00007fff98954d16 kevent + 10
    1   libdispatch.dylib                 0x00007fff966c0dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                 0x00007fff966c09ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib            0x00007fff989546d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff96c15f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff96c15ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff96c00191 start_wqthread + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_c.dylib                 0x00007fff96c01f95 _spin_lock$VARIANT$mp + 53
    1   com.apple.CFNetwork               0x00007fff96d4919c MultiplexerSource::perform() + 46
    2   com.apple.CoreFoundation          0x00007fff93f53b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    3   com.apple.CoreFoundation          0x00007fff93f53455 __CFRunLoopDoSources0 + 245
    4   com.apple.CoreFoundation          0x00007fff93f767f5 __CFRunLoopRun + 789
    5   com.apple.CoreFoundation          0x00007fff93f760e2 CFRunLoopRunSpecific + 290
    6   com.apple.Foundation              0x00007fff8ec9c546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    7   com.apple.Foundation              0x00007fff8ecfa562 __NSThread__main__ + 1345
    8   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    9   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 4:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib            0x00007fff989540fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff96c17fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore          0x00007fff9a0a6b66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore          0x00007fff9a2c9bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore          0x00007fff9a2df25f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    6   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 5:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib            0x00007fff989540fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff96c17fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore          0x00007fff9a22c9d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore          0x00007fff9a22c8b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore          0x00007fff9a2df25f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    6   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 6:: WebCore: Scrolling
    0   libsystem_kernel.dylib            0x00007fff98952686 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff98951c42 mach_msg + 70
    2   com.apple.CoreFoundation          0x00007fff93f71233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation          0x00007fff93f76916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation          0x00007fff93f760e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation          0x00007fff93f84dd1 CFRunLoopRun + 97
    6   com.apple.WebCore                 0x00007fff9078d5e1 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore          0x00007fff9a2df25f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    9   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib            0x00007fff98954322 __select + 10
    1   com.apple.CoreFoundation          0x00007fff93fb5f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    3   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib            0x00007fff989546d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff96c15f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff96c15ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff96c00191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib            0x00007fff989546d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff96c15f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff96c15ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff96c00191 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib            0x00007fff989546d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff96c15f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff96c15ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff96c00191 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib            0x00007fff989546d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff96c15f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff96c15ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff96c00191 start_wqthread + 13
    Thread 12:: WebCore: LocalStorage
    0   libsystem_kernel.dylib            0x00007fff989540fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff96c17fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore          0x00007fff9a0a6b2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                 0x00007fff907b2d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                 0x00007fff8fd0312a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore          0x00007fff9a2df25f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    7   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 13:: WebCore: LocalStorage
    0   libsystem_kernel.dylib            0x00007fff989540fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff96c17fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore          0x00007fff9a0a6b2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                 0x00007fff907b2d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                 0x00007fff8fd0312a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore          0x00007fff9a2df25f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                 0x00007fff96c13772 _pthread_start + 327
    7   libsystem_c.dylib                 0x00007fff96c001a1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib            0x00007fff989546d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff96c15f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff96c15ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff96c00191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000155662b00  rcx: 0x00000000001f8100  rdx: 0x000000000001db80
      rdi: 0x0000000102465400  rsi: 0x0000000000000001  rbp: 0x00007fff5d7a4f00  rsp: 0x00007fff5d7a4ed0
       r8: 0x0000000000000002   r9: 0x000000002fc9d35c  r10: 0x00007fe934370100  r11: 0x000000001bf2d277
      r12: 0x00007fe934551b10  r13: 0x00007fe93454efd0  r14: 0x0000000156ecd000  r15: 0x0000000000000000
      rip: 0x00007fff8fd8032e  rfl: 0x0000000000010203  cr2: 0x00000000000007a0
    Logical CPU: 0
    Binary Images:
           0x102459000 -        0x102459fff  com.apple.WebProcess (8536 - 8536.30.1) <F967F09F-969C-3788-9376-7B4067F402B4> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
           0x10245d000 -        0x10245dfff  WebProcessShim.dylib (7536.30.1) <15AC7990-1B63-3AD9-905F-7331C901A578> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x144e43000 -        0x144e59fff  com.apple.WebInspector (8536 - 8536.30) <7DD903D1-505E-34D3-835A-15BE44CC49B6> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x146815000 -        0x14682bff7  com.apple.webcontentfilter.framework (3.1 - 5) <1C3967C0-93B5-3D98-AC74-393EEAEA5505> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x147649000 -        0x14764aff7  ATSHI.dylib (341.1) <6860AB9D-27E6-3516-91BF-05E4B9E8A8F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x14dde1000 -        0x14df9ffff  GLEngine (8.10.1) <1BD4D913-CE6C-3389-B4E1-FC7352E4C23F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x14dfd6000 -        0x14e146fff  libGLProgrammability.dylib (8.10.1) <3E488CEF-5751-3073-B8EE-0B4CA39CB6AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x14e17e000 -        0x14e18bfff  libGPUSupport.dylib (8.10.1) <7860F083-3F7B-3811-A56C-E8557A90C7DB> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x14e192000 -        0x14e1bdfff  GLRendererFloat (8.10.1) <055EC8E7-2D7E-370C-96AD-DBEEDB106927> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x14e1c6000 -        0x14e1cffe7  libcldcpuengine.dylib (2.2.16) <B6E3B14B-1EAC-3FDD-8AED-87231A033BED> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x200000000 -        0x20092eff7  com.apple.GeForceGLDriver (8.16.74 - 8.1.6) <1B20E6CC-D5C8-3F83-BA74-A8FB24A52E7B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff62059000 -     0x7fff6208d93f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff8e5aa000 -     0x7fff8e5b8ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8e5b9000 -     0x7fff8e5d8ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8e5d9000 -     0x7fff8e5dcff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8e865000 -     0x7fff8e8a2fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8e8a3000 -     0x7fff8e8ccfff  libsandbox.1.dylib (220.3) <410BC7E1-24A4-3E5A-ACCF-2F444DC82814> /usr/lib/libsandbox.1.dylib
        0x7fff8e8cd000 -     0x7fff8e8dfff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8e8e0000 -     0x7fff8e8e1ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8e8e3000 -     0x7fff8e908ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8e909000 -     0x7fff8e93aff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8e93b000 -     0x7fff8eb3bfff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8eb3c000 -     0x7fff8eb48fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8eb49000 -     0x7fff8ec63fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8ec64000 -     0x7fff8efc3fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8efc4000 -     0x7fff8eff2ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8eff3000 -     0x7fff8f000fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8f001000 -     0x7fff8f05dff7  com.apple.Symbolication (1.3 - 93) <D5044687-E424-31CF-B120-667143E6B9C1> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f05e000 -     0x7fff8f060ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8f061000 -     0x7fff8f09dfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8f09e000 -     0x7fff8f0b1ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8f0b2000 -     0x7fff8f0e6fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8f0e7000 -     0x7fff8f0fefff  com.apple.CFOpenDirectory (10.8 - 151.10) <7AD5F6E7-A745-3FF4-B813-9D064A8146EC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8f0ff000 -     0x7fff8f154ff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f155000 -     0x7fff8f1a4fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8f1a5000 -     0x7fff8f1aafff  com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8f1ab000 -     0x7fff8f1b2fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8f1b3000 -     0x7fff8f1b4ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8f1b5000 -     0x7fff8f1c1fff  libCSync.A.dylib (333.1) <319D3E83-8086-3990-8773-872F2E7C6EB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8f20c000 -     0x7fff8f20cfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8f20d000 -     0x7fff8f326fff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8f327000 -     0x7fff8f32efff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8f32f000 -     0x7fff8f369ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8f36a000 -     0x7fff8f3a0fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8f3a1000 -     0x7fff8f3abff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8f3ac000 -     0x7fff8f7c9fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8f7d7000 -     0x7fff8f929fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8f92a000 -     0x7fff8f96aff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8f96b000 -     0x7fff8fa09ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8fa0a000 -     0x7fff8fa0bfff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff8fa0c000 -     0x7fff8fa1aff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff8fa1b000 -     0x7fff8fa21fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8fa22000 -     0x7fff8fa25fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8fa26000 -     0x7fff8fbc1fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8fbc2000 -     0x7fff8fc1cfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8fce4000 -     0x7fff90ca3ff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff90ca4000 -     0x7fff90caefff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff90caf000 -     0x7fff90d1ffff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff90d20000 -     0x7fff90d56fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90de2000 -     0x7fff90dffff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff90e23000 -     0x7fff90e27fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff90ec8000 -     0x7fff90f0cfff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff90f68000 -     0x7fff9103aff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff9103b000 -     0x7fff9103dfff  com.apple.securityhi (4.0 - 55002) <9B6CBA92-123F-3307-A2D7-D77A8D3BF87E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff91082000 -     0x7fff91086fff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff91130000 -     0x7fff9113dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff9114f000 -     0x7fff91154fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff91155000 -     0x7fff9124afff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff912b3000 -     0x7fff912b5ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff912b6000 -     0x7fff912d8ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff912d9000 -     0x7fff913f9fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff913fa000 -     0x7fff91411fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff91472000 -     0x7fff91474ff7  com.apple.EFILogin (2.0 - 2) <6C1E7ED7-8FC7-308E-AD17-4C766E936519> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff9147e000 -     0x7fff914b7ff7  libssl.0.9.8.dylib (47.2) <46DF85DC-18FB-3108-91F6-52AE3EBF2347> /usr/lib/libssl.0.9.8.dylib
        0x7fff914e1000 -     0x7fff914e9fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff914ea000 -     0x7fff914f5fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff914f6000 -     0x7fff914f6fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff9157a000 -     0x7fff915b9ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff915e9000 -     0x7fff915fffff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff91650000 -     0x7fff91663ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff91f1a000 -     0x7fff91f25ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <F02E8FC3-18DC-3F03-8763-E6EE3E2A6B5A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff91f26000 -     0x7fff91fa7fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff91fa8000 -     0x7fff91faeff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff91faf000 -     0x7fff9201cff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9201d000 -     0x7fff9228afff  com.apple.RawCamera.bundle (4.07 - 697) <1588CEC6-012E-30E5-BF38-5BBDABB2F48F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff9228b000 -     0x7fff9228bfff  com.apple.Carbon (154 - 155) <CC5AA589-242E-3BE1-B776-7D4FFD93D0C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9228c000 -     0x7fff92351ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff924ac000 -     0x7fff924d7fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff924d8000 -     0x7fff925c9ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <5C56181F-1E9F-336A-B7BB-620565A8BD6E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff925ca000 -     0x7fff925d0fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff9268a000 -     0x7fff926cdff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff926ce000 -     0x7fff927cbff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff927cc000 -     0x7fff927cdfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff927ce000 -     0x7fff927d0fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff927d1000 -     0x7fff92828ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff92829000 -     0x7fff9282cff7  com.apple.LoginUICore (2.1 - 2.1) <98A808A9-F27D-37A9-84D6-77B61C444F97> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff92bc5000 -     0x7fff92fbcfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff92fbd000 -     0x7fff92fc4fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff92fc5000 -     0x7fff93289fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff9328a000 -     0x7fff9328eff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff9328f000 -     0x7fff932dbfff  com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff932fd000 -     0x7fff93314fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff93323000 -     0x7fff93326fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff93327000 -     0x7fff93401fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff9343d000 -     0x7fff9376dfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff9376e000 -     0x7fff937d6ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff937d7000 -     0x7fff93867ff7  libCoreStorage.dylib (296.18.2) <2FFB6BCA-3033-3AC1-BCE4-ED102DCBECD5> /usr/lib/libCoreStorage.dylib
        0x7fff9387d000 -     0x7fff93882fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff93883000 -     0x7fff939f4ff7  com.apple.QTKit (7.7.1 - 2599.41) <A645347D-3EEC-34A7-8051-A57AC60151EF> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff939f5000 -     0x7fff939fdff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff939fe000 -     0x7fff93f05ff7  com.apple.Safari.framework (8536 - 8536.30.1) <5C62034A-BAA0-32BB-84C2-2559389B72C4> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff93f06000 -     0x7fff93f40fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff93f41000 -     0x7fff9412bff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9412c000 -     0x7fff94164fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff94165000 -     0x7fff94171ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <5AA375C4-9FD4-3F4F-849D-0329E0D5DC04> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff941ea000 -     0x7fff941f8fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff941f9000 -     0x7fff94220fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff94221000 -     0x7fff9423bfff  com.apple.CoreMediaAuthoring (2.1 - 914) <F0E11E75-03DA-3622-B614-2257EBDABF25> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff94290000 -     0x7fff94299ff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9429a000 -     0x7fff94549fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff9454a000 -     0x7fff94576fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff94581000 -     0x7fff94583fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff94584000 -     0x7fff94584fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff94585000 -     0x7fff945cfff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff945d0000 -     0x7fff94805ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff94806000 -     0x7fff94806fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff94807000 -     0x7fff94fecff7  libclh.dylib (4.0.3 - 4.0.3) <ECCDD699-CA06-3DDE-9B68-E32FAEFEE619> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
        0x7fff94fed000 -     0x7fff95055fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff95056000 -     0x7fff95082ff7  libRIP.A.dylib (333.1) <CC2A33EB-409C-3C4D-97D4-41F4A080F874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff950dd000 -     0x7fff95183ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95184000 -     0x7fff951e0fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff951e1000 -     0x7fff951effff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff951f0000 -     0x7fff9544bff7  com.apple.QuartzComposer (5.1 - 287.1) <D1DD68D1-05D5-3037-ABB6-BF6EB183C155> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff9544c000 -     0x7fff95476ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff95477000 -     0x7fff95486fff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff95487000 -     0x7fff9548efff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff9548f000 -     0x7fff954f2fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff954f3000 -     0x7fff9561dfff  com.apple.avfoundation (2.0 - 361.40.1) <82E0EE8C-6026-33AD-8947-B20D2ED7B2E1> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff9561e000 -     0x7fff95639ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff9563a000 -     0x7fff956ebfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff956ec000 -     0x7fff956edfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff956ee000 -     0x7fff956f2ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff956f3000 -     0x7fff956fdfff  libcsfde.dylib (296.18.2) <08092C5B-2171-3C1D-A98F-CF499A315DDC> /usr/lib/libcsfde.dylib
        0x7fff956fe000 -     0x7fff95725ff7  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff95726000 -     0x7fff9572afff  libCGXType.A.dylib (333.1) <16625094-813E-39F8-9AFE-C1A24ED11749> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff9572b000 -     0x7fff957b8ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff957b9000 -     0x7fff95815fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff95816000 -     0x7fff95819fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff9581a000 -     0x7fff95827ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff95828000 -     0x7fff95863fff  com.apple.LDAPFramework (2.4.28 - 194.5) <7E4F2C08-0010-34AE-BC46-149B7EE8A0F5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff95864000 -     0x7fff95885ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff95886000 -     0x7fff9599e92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff9599f000 -     0x7fff959a0fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
        0x7fff959a1000 -     0x7fff959edff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff959ee000 -     0x7fff9637e627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff9637f000 -     0x7fff9639ffff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff963a0000 -     0x7fff963a0fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff963a1000 -     0x7fff963a3fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff963a4000 -     0x7fff966bbff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff966bc000 -     0x7fff966d1ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff966d2000 -     0x7fff966ddfff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff966de000 -     0x7fff96b1afff  com.apple.VideoToolbox (1.0 - 926.106) <B1185D9D-02AC-3D27-B894-21B1179F2AEF> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff96b1b000 -     0x7fff96b2aff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff96b2b000 -     0x7fff96bfeff7  com.apple.DiscRecording (7.0 - 7000.2.4) <9DA3C0A7-0AB9-3DD1-9D84-737BB0014F1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff96bff000 -     0x7fff96ccbff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff96ccc000 -     0x7fff96e41ff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff96e42000 -     0x7fff97a6ffff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff97ace000 -     0x7fff97acefff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff97acf000 -     0x7fff97b3dff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff97cf0000 -     0x7fff97dadff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff97dae000 -     0x7fff97dafff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff97db0000 -     0x7fff97e63ff7  com.apple.PDFKit (2.8.5 - 2.8.5) <EAAED40E-7B2C-3312-826E-26A9DEDBF0FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff97f04000 -     0x7fff97f53ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff97f54000 -     0x7fff97feefff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff97fef000 -     0x7fff98016ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff9802e000 -     0x7fff9807fff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff98080000 -     0x7fff980d7ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff980d8000 -     0x7fff980d8fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff980de000 -     0x7fff98100ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff98101000 -     0x7fff98101ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff98102000 -     0x7fff98204fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff98205000 -     0x7fff98233fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff98234000 -     0x7fff98235ff7  libSystem.B.dylib (169.3) <FF25248A-574C-32DB-952F-B948C389B2A4> /usr/lib/libSystem.B.dylib
        0x7fff98236000 -     0x7fff98241ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff9828b000 -     0x7fff9828bfff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9828c000 -     0x7fff98478ff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff98479000 -     0x7fff9847cfff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff9847d000 -     0x7fff98734ff7  com.apple.MediaToolbox (1.0 - 926.106) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff9873a000 -     0x7fff9873bfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff98788000 -     0x7fff987cbff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff987cc000 -     0x7fff988cafff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff988cb000 -     0x7fff988e1fff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff988e2000 -     0x7fff98941fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff98942000 -     0x7fff9895dff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9895e000 -     0x7fff98a69fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff98a6a000 -     0x7fff98d3bff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff98d3c000 -     0x7fff98d3cfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff98d3d000 -     0x7fff98e9bfef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff98ec8000 -     0x7fff98f47ff7  com.apple.securityfoundation (6.0 - 55115.4) <64EDD2F2-4DE2-3DE5-BE57-43D413853CF9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff98f90000 -     0x7fff99211fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff99212000 -     0x7fff99226fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff99229000 -     0x7fff99799ff7  com.apple.CoreAUC (6.22.03 - 6.22.03) <A77BC97A-B695-3F7E-8696-5B2357C2726B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff9979a000 -     0x7fff9979cfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff997a0000 -     0x7fff9992bfff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff9992c000 -     0x7fff99ab2fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff99ab3000 -     0x7fff99adffff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff99ae0000 -     0x7fff99b3aff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff99b3b000 -     0x7fff99ba4fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff99ba5000 -     0x7fff99ca7fff  libcrypto.0.9.8.dylib (47.2) <CF3BAB7E-4972-39FD-AF92-28ACAFF0873E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff99ca8000 -     0x7fff99cb9ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff99cba000 -     0x7fff99d10fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff99d11000 -     0x7fff99d43fff  com.apple.framework.Admin (12.2 - 12.2) <C61706AD-6952-3B8D-B926-330506F45339> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff99d44000 -     0x7fff99ddffff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff9a038000 -     0x7fff9a087ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff9a088000 -     0x7fff9a093ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff9a094000 -     0x7fff9a09fff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff9a0a0000 -     0x7fff9a33bff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff9a33c000 -     0x7fff9a3bcff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff9a3ca000 -     0x7fff9a412fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff9a413000 -     0x7fff9a4a7ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff9a4a8000 -     0x7fff9a52aff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9a561000 -     0x7fff9a70ffff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff9a710000 -     0x7fff9a75dfff  com.apple.CoreMediaIO (309.0 - 4163.1) <8FD1C1A9-25C5-3B9E-A76D-BE813253B358> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff9a75e000 -     0x7fff9a77dff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff9a77e000 -     0x7fff9a782fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9a7a4000 -     0x7fff9a7a8fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff9a800000 -     0x7fff9a800fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff9a801000 -     0x7fff9a85aff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff9a85b000 -     0x7fff9a870fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff9a871000 -     0x7fff9a892fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff9a893000 -     0x7fff9a8bbfff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff9a8bc000 -     0x7fff9ab60ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff9ab61000 -     0x7fff9ac5efff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff9ac5f000 -     0x7fff9acaafff  com.apple.CoreMedia (1.0 - 926.106) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff9acab000 -     0x7fff9acaffff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        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: 965
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=232.5M resident=104.6M(45%) swapped_out_or_unallocated=127.9M(55%)
    Writable regions: Total=1.2G written=88.5M(7%) resident=141.9M(11%) swapped_out=116K(0%) unallocated=1.1G(89%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    ATS (font support)                   31.8M
    CG image                              268K
    CG raster data                        348K
    CG shared images                     1184K
    CoreAnimation                         980K
    CoreServices                         1340K
    IOKit                                47.7M
    IOKit (reserved)                        4K        reserved VM address space (unallocated)
    JS JIT generated

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain models.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Estorage Google docs applicatio​n on my HP Photosmart 5520 ?

    Hi, i'm a french user and i can't download the estorage Google docs application on my new HP Photosmart 5520 ! I have error : no available for this printer
    Why ? I bought this printer specially for this feature 
    Thanks for answer

    Hi Azerty21,
    I understand that you are having problems with your Photosmart 5520, ePrint device. With the device you have, you will not be able to do eStorage but you should be able to print Google Docs with the Google Docs app.
    I hope this helps.
    -Tyekey
    I work for HP.
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    -Tyekey
    I work for HP.

  • May seem silly, but I can't seem to cut and paste from delta computer services (land role) to google docs

    How can I cut and paste from Delta Computer Systems (land roles) to Google Docs using my new MacBook Pro?

    How can I cut and paste from Delta Computer Systems (land roles) to Google Docs using my new MacBook Pro?

Maybe you are looking for

  • 2nd ipod won't work

    I lost my ipod mini and just got a new one. i do not want to re-install the software b/c i have quite a few songs on my itunes already. How do i get my computer and itunes to recognize my new ipod mini. When i plu it in it just charges and will not t

  • How to use dll function in JDeveloper?

    I want to use function in dll to develope my application,but I can't find how to do that in the JDeveloper document. null

  • IDVD can't create disc image

    I posted this in the iDVD forum and it was suggested that I also post it here, since its an FCP movie. (I use Final Cut Studio 5) Here is my iDVD post: (I have searched iDVD for solutions and have tried all i could find, as you'll read below, but sti

  • Extended program check and code inspector

    Hi Gurus, I developed on report . I wrote at end of  and at new in loop but extended code checking it showing one error  is: 1)The LOOP statement processing will be limited   (FROM, TO and WHERE additions in LOOP)   Interaction with group change proc

  • Apple Remote Desktop Client slow in mini

    I'm using Apple Remote Desktop from my PowerBook. I can control an iMac G5 without any problems, but controlling my new intel Mini is very very slow... i can only work more or less if i put the screen without colors! Is this normal? I can't understan