Get web Content into array

Hello, I am trying to retrieve the content of a web site into an array so that i can compare it to itself later to see if it has changed. I am trying to make get the content into an array then get the content into a different array later and compare the two arrays to look for the change. I am having some trouble with the reading the content and putting that content into the arrays. Is a buffered reader/imputstream reader the best way to do this? Any help would be greatly appreciated :).

Look into this code, this will store url contents into Hashtable and you can compare them by retrieving them from this Hashtable.
import java.util.*;
import java.io.*;
import java.net.*;
class ContentReader {
     private Hashtable urlContent;
     public ContentReader() {
          urlContent = new Hashtable();
     public void addContent(String url) {
          try {
               URL res = new URL(url);
               URLConnection uc = res.openConnection();
               uc.connect();
               InputStream is = uc.getInputStream();
               DataInputStream bs = new DataInputStream(is);
               String line="";
               ArrayList al = new ArrayList();
               while((line=bs.readLine()) != null) al.add(line.trim());
               urlContent.put(url,al);
               Object[] content = al.toArray();
               for(int i=0;i<content.length;i++) System.out.println(content);
          } catch(Exception e) {
               e.printStackTrace();
     public boolean compareURLs(String url1,String url2) {
          boolean ret=false;
          //You can code your comparison here.
          return ret;
     //This method is for testing the above code
     public static void main(String args[]) {
          ContentReader cr = new ContentReader();
          String url1="some_url1";
          String url2="some_url2";
          cr.addContent(url1);
          cr.addContent(url2);
          cr.compareURLs(url1,url2);
Hope this give you an idea. Don't forget dukes if it helps you.
Sudha

Similar Messages

  • How to get formatted text into arrays

    Dear experts and helpers,
    For my project I import an RTF file and then read the data from it into 3 arrays. This works fine when just using the string contents of the paragraphs. However, the final script should be able to read and replace formatted text...
    Why use the intermediate arrays? Because otherwise I need to switch back and forth between two fm-documents (and one may be a book component).
    The imported file starts with a number of lines separated into two items by a TAB (» denotes a TAB, in FM \x08)
    [[Garneau, 1990 #12]]    »   [9]
    The right item may also be locally formatted text, e.g. [9]
    Then follow the same (or smaller) number of paragraphs with formatted text like this:
    [9] » D. Garneau, Ed., National Language Support Reference Manual (National language Information Design Guide. Toronto, CDN: IBM National Language Technical Centre, 1990.
    Is it possible to replace in the body of the function below the following piece
      while(pgf.ObjectValid()) {
        pgfText = GetText (pgf, newDoc);
        gaBibliography.push(pgfText);
        pgf = pgf.NextPgfInFlow;
    with this
      while(pgf.ObjectValid()) {
        gaBibliography.push(pgf);
        pgf = pgf.NextPgfInFlow;
    Do I need a special declaration of the array gaBibliography ?
    And how to get the right part of the intro lines as formatted thingy into array gaFmtCitsFmt ?
    Currently I read into arrays only the 'strings' (function GetText not shown):
    var gaFmtCitsRaw  = [];                           // left column in processed RTF
    var gaFmtCitsFmt  = [];                           // right column in processed RTF
    var gaBibliography= [];                           // bibliography lines from processed RTF
    // filename is something like E:\_DDDprojects\FM+EN-escript\FM-testfiles\BibFM-collected-IEEE.rtf
    function ReadFileRTF (fileName) {
      var nCits=0, nBib = 0, openParams, openReturnParams, newDoc, pgf, pgfText ;
      var TAB = String.fromCharCode(8);               // FM has wrong ASCI for TAB
      var parts = [];
      openParams = GetOpenDefaultParams();
      openReturnParams =  new PropVals(); 
      newDoc = Open (fileName, openParams, openReturnParams); 
      pgf = newDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;  // get first pgf in flow
    // --- read the temp/formatted citations 
      while(pgf.ObjectValid()) {
        pgfText = GetText (pgf, newDoc);
        if (pgfText.substring (0,2) == "[[") {        // citation lines start with [[
          parts = pgfText.split(TAB);                 // get the two parts of the line
          gaFmtCitsRaw.push (parts[0]);               // Push the result onto the global array
          gaFmtCitsFmt.push (parts[1]);
          pgf = pgf.NextPgfInFlow;
        } else { break }
    // --- read the bibliography
      while(pgf.ObjectValid()) {                      // until end of doc
        pgfText = GetText (pgf, newDoc);
        gaBibliography.push(pgfText);
        pgf = pgf.NextPgfInFlow;
      newDoc.Close (Constants.FF_CLOSE_MODIFIED);
    } // --- end ReadFileRTF
    The next questions then will be how to modify Ian Proudfoot's FindAndReplace script to handle formatted text as replacement. IMHO i will need to use copy/paste ...

    Klaus,
    Working with text is about the most complicated thing to do within FrameMaker. It seems counter-intuitive, since it is about the easiest thing to do with the GUI. But alas, once you remove the ability to select with a mouse and type with a keyboard, text becomes a wild jungle of complexity.
    Text ranges are not too bad, once you get the general idea. It is just that... a range of text, like something you would select with a mouse. Like a mouse selection, it starts before some character in some paragraph and ends after some character in some paragraph. It may be the same paragraph, which is a selection within a paragraph. The character can even be the same, which is then just an insertion point (cursor) somewhere.
    So, a text range is a data structure that defines two paragraphs and two characters. In the jargon of scripting, the character is called an "offset." An offset is simply the number of characters past the beginning of said paragraph, where 0 is the beginning.
    For example, if you want to capture the first five characters of a paragraph as a text range, you can do this, where 'pgf' is some paragraph object:
    var textRange = new TextRange();
    textRange.beg.obj = pgf;
    textRange.beg.offset = 0;
    textRange.end.obj = pgf;
    textRange.end.offset = 5;
    If you want to capture a whole paragraph, change that last line to the number of characters in the pgf, or you can do this:
    textRange.end.offset = Constants.FV_OBJ_END_OFFSET;
    ...where that constant is just some built-in thing that means "get me to the end of whatever." It's a convenience of the interface.
    I'll also note that a text range is actually just an array of two text location structures, one named 'beg' and one named 'end.' If you think of a text location as defined by paragraph and an offset from the first character, maybe that will make more sense.
    Text item structures are a whole new mess of complexity. I can't possibly go into an explanation of them here.
    I think that many ES developers (definitely myself included) still use the FDK documentation because it is considerably more comprehensive. The two interfaces are largely parallel, but of course somewhat different in the language syntax. Consider that as a potential resource.
    Russ

  • How to get webi data into dashboard for non-users of webi.

    I need to find a way to get data from a WebIntelligence Report (essentially 3 numbers: Average This Year, Average Last Year and Target This Year (eg, 40, 63, 55)) into a dashboard, where the data is refreshed each day.  The resulting dashboard will be published on my external web site where anyone can access it.  It is essential that a connection to the webi server is not required, so I can publish the report data to a text file on a network drive and pick it up from there. The data will change daily so this must be reflected in the dashboard.
    Webi has no capability of saving to XML, so it's excel, text, csv archive or PDF only.
    I have been playing with the "From Text" option in the Data tab, but changes to the data do not show when the .swf file is run.  When in dashboard mode, I can click on preview to show the dashboard and the data doesn't change, however when I exit preview, the data is updated in the spreadsheet of the dashboard.  It is just never reflected when the dashboard is displayed.  I have dicked the refresh ever 1 minute, refresh data when opening the file, overwrite existing cells options in the External Data Range Properties page for the From Text option and am looking at the data via both a Grid object and an Spreadsheet object.
    Could anyone please suggest what I am doing wrong, or anything else I may be able to try instead.
    Using BO4.1, sp1, p1.
    Thanks
    Rodney.

    Hello Evans,
    PLZ refer publishing webservice connection in webi
    Creating BI Web Service in BO 4.0
    Hope it will suits your requirement
    Regards
    Subbarao M

  • How to read a file and save the contents into array list

    i have textfile contains information like:
    Name: James Smith
    Customer no: 663,282
    Post code: BA1 74E
    Telephone no: 028-372632
    Last modified: Feb 10, 2008 6:50:00 PM GMT
    Name: Janet Smith
    Customer no: 663,283
    Post code: BA1 74E
    Telephone no: 028-372632
    Last modified: Jan 11, 2007 8:10:05 PM GMT
    etc...
    how can i read the contents of this textfile and put the data into an ArrayList called ArrayList<Customer> customerList.
    i knew that i need two classes, one for CustomerDetails and one for ReadFile.
    i have already done the customer class as:
    import java.util.Date;
    public class Customer
        String Name;
        int CustomerNo;
        String Postcode;
        String teleNo;
        Date lastModified;
        public Customer(String Name, int CustomerNo, String Postcode, String teleNo, Date lastModified)
         assign(Name, CustomerNo, Postcode, teleNo, lastModified);
        public void assign(String Name, int CustomerNo, String Postcode, String teleNo, Date lastModified)
         this.Name=Name;
         this.CustomerNo=CustomerNo;
         this.Postcode=Postcode;
         this.teleNo=teleNo;
         this.lastModified=lastModified;
        public String toString()
         String allDetails = "Name: "+Name+
             ", Customer No: "+CustomerNo+
             ", Postcode:"+Postcode+
             ", Telephone No: "+teleNo+
             ", Last Modified Date: "+lastModified;
         return allDetails;
    }i just wondering how can i code the ReadFile class?
    can anyone help me please. thank you in advance.

    thank you for your suggestion, but i have already started to code the readCustomer class using the Scanner.
    the code i got so far is:
    import java.util.Scanner;
    import java.io.*;
    public class readCustomer
        public static void main(String[] args)
         readCustomer("Customers.txt");
        public static void readCustomer(String filename)
         try {
             Scanner scanner = new Scanner(new File(filename));
             scanner.useDelimiter(System.getProperty("line.separator"));
             while (scanner.hasNext()) {
              processLine(scanner.next());
             scanner.close();
         } catch (FileNotFoundException e) {
             e.printStackTrace();
        public static void processLine(String line)
         Scanner scanner2 = new Scanner(line);
         scanner2.useDelimiter("\\s*:\\s*");
         String description = scanner2.next();
    *// here is where i am struggling. i don't know how to get the information after the : sign*   
    }i am currently struggling with the processLine method?
    also, i am not sure how to group a set of information and put them into the arraylist.
    Any hint, please. Thank you.
    Edited by: mujingyue on Feb 26, 2008 12:42 PM

  • Add Web content into ISE Web Server?

    Hello,
    We use Cisco ISE 1.2.0.899 on our network.
    We would like to add a Web based documentation about Guest Portal ("how to find MAC Address", "how to release/renew IP Address"...) on our network to help users.
    Idealy we would like to host these data on the Web server integrated to ISE (which already hosts Guest/Sponsor Portals).
    Does ISE allow that?
    Unregistered users (or not already profiled devices) are automatically redirected to the Guest Portal, but we would like they're able to access to this documentation (hosted on ISE Web Server or another Web Server).
    How can we set that? By not using port 80 to access to this documentation?
    Which elements does ISE identify to redirect browsers to the Guest Portal? Is it port 80, http protocol or other?
    Regards,
    Chris

    Thanks Marvin.
    I've checked this guide, I may have misunderstood, but I've seen how to customize built-in content only, and not how to add our own content.
    We've created our own documentation (html files), and we would like that our users can access to it when they are using the Guest Portal.
    We thought add the documentation URL on the "Guest Portal Login", to open it in a pop-up or new window.
    Can we host these documentation files on ISE Web Server (apache)?
    Or do we have to host them on a separate server?
    Because unregistered users/devices are automatically redirected to the Guest Portal, we would like to know how to allow users to access to this online documentation without the documentation pages are also redirected to the Guest Portal?
    Thanks for your help,
    Chris

  • Is there really an option to get Web Gallery into CC ?

    I see the posts about the bridge option to put a web gallery script there, but I can't get it to work.  How about the other way, going through Photoshop in the "Automate" menu ?  I remember installing the things needed when we went to CS5, but am not seeing anything about it for CC.
    Thanks anyone !

    None of those plugins for cs5 such as Web Photo Gallery work in photoshop cc.
    If you install Bridge CC, install the Adobe Output Module for Bridge CC, then you can do Web Galleries from there.
    http://helpx.adobe.com/bridge/kb/install-output-module-bridge-cc.html
    If you have Lightroom that does Web Photo Galleries as well.

  • Web Content moved into KM?

    I'm looking at incorporating internal web content into our enterprise portal.  The website is currently developed using Frontpage, and as such has lots of extra html and javascript that just doesn't need to be there.  For example, the layout is entirely table drive (yuc), and there's navigation menus that don't need to be displayed, since the portal will have it's own navigation scheme.
    My thought was to extract the content from the website (we have the source, of course), remove the Frontpage garbage, clean up the HTML, and present the content in the portal.  I can't just use a URL iView to expose the content (and filter out parts of the page) since as soon as a link is clicked, the entire web page is shown, not just the captured area.  Yuck.
    The logical place to put the content is in KM, and then expose it via the portal, but I have a few issues around this:
    1. All the links in the HTML are absolute.  Do I have to convert all these links to KM-based urls, or is there another way?  I thought I could use the HTML filter to insert a <base> tag, but this doesn't seem to work (as soon as I defined a HTML filter the repository manager barfs with an error).  Should I look at using the HTML Filter further to insert a base tag, or is there a better way?
    2. Workflow, and version control.  I assume that if I configure the repository correctly, I can implement both workflow (for approvals) and version control - is this right?  Ultimately, I would like users able to create content, but require approval for the content to be released into the wild for consumption.
    3. Another option we're looking at is using KM solely as a content management system, and using another web app server to present the content.  In other words, edit the content via KM (or the Portal Drive), and at various checkpoints extract the content and publish it to the (non-sap) production web server.  Is this practical?  My guess would be no, since placing the content into KM really implies that you'll be using KM to present the data.  My initial tests with the Portal Drive imply that while this would likely be possible, it's probably impractical.
    I'm looking for some guidance on how best to proceed with this.  Suggestions are most welcome.  I would be most interested in knowing how other folks have created internal company information and published it on the portal/km.

    I can probably answer your second question based on what we have implemented here. Yes you can have both versioning and approval set up on the same repository. Infact If I am not wrong versioning is needed for approvals to work.

  • Import Web Page content into table, like Excel imports a Frame from a page

    I have a need to import specific content from a web page (specific frame on the page) and store that data in a table. We currently have Microsoft Excel setup with a link to the page and import a specific frame off the page into Excel. But I would like to do this directly into PeopleSoft. Has anyone done something like this before?
    Thanks
    JB

    Scott-
    You haven't explained what the format of the text file is and
    how you want to display it. You can get the contents of a file with
    CFHTTP (if it's in a web-readable directory) and treat it as a
    query if it is in a delimited data format. Then you can use
    CFOUTPUT as you would with any other query.
    You can also use CFFILE to read the contents of a text file
    and display it in your page. You can use HTML PRE tags or you can
    replace the CR/LF with a BR tag to force a line break.. Lots of
    options, depending on your particular situation.

  • Safari and Chrome will not access our windows based intranet.  When we provide the server and file name we get file:///,  ANy ides how to get this to respond as web content?

    We have an company intranet hosted on a windows platform.  Our windows based machines can access the content with no problems.  When we enter the same //server name/filename into a browser on our Macs, we get a response of "file:///" ANy idea how to get these browsers to recognize the path as web content?

    Anti virus software installed on the Macs?
    Using a router with a Firewall?

  • How to get animate edge to interact with my web content

    Hello and good day,
    I will like to know how to get animate edge to interact with my web content or DOM.
    Am creating my own cms and also i created an image  slider.
    i know how to integrate it to dreamweaver but now i will like to the animate slider to change images when a new image is added to my cms..

    There is  no direct way out of edge animate.
    You could export a OAM from Animate and import that into DreamWeaver CC which has a direct way of Hosting sites

  • Why does the pop up window for a printable coupon only appears briefly (in the upper left corner) and then disappear, even after putting the web site into the Tools,Options,Content,Pop-Up Exceptions?

    I am at http://www.closys.com/samples_&_coupons/get_a_coupon.html and the pop up window for a printable coupon only appears briefly (in the upper left corner) and then disappears, even after putting the web site into the Tools,Options,Content,Pop-Up Exceptions. What gives and how can it be fixed. I have a time limit.
    Thanks for your solution.
    Dan

    Mha007:
    Sorry, but I have already tried this too and verified that the web addresses are listed as Allow, rather than Block. After restart there was no difference, I still get the disappearing pop-up windows.
    Thanks for offering suggestions though.
    Have you heard of any issues like this occurring based on the number of tabs that are open in Firefox?
    Just a thought, even though I have not heard of this as an issue before. I keep about 80 tabs open regularly, because of research that I am always conducting (I am a blogger, a writer/author, a technophile-especially Green Tech.,), email, work, etc.?
    I do have a check in the box for Firefox to let me know if the number of open tabs is causing slow down or other issues.
    Thanks for any help.

  • I got some books from the itunes store and put them into my library.  I created a playlist so that I could burn them to cds.  The title is there but no contents.  It won't even play the playlist.  How do I get the contents of the book?

    I got some books from the itunes store and put them into my library.  I created a playlist so that I could burn them to cds.  It won't even play the book, there are no contents.  How do I get the contents of the book?

    I'm guessing this is a problem unique to me as there have been no replies at all...  Thanks a bunch folks

  • Get xml data from a web service into Forms?

    Hello folks! I am reading active directory info from a web service into forms via imported java classes. I can read from functions that return strings just fine, but I have to get the output from getGroupUsers which returns an XmlDataDocument. How do I read this in and parse it in Forms?
    I will be grateful if y'all could point me to an example.
    Thank you,
    Gary
    P.S. Here is a snippet of how I get the full name by passing an ID:
    DECLARE
    jo ora_java.jobject;
    rv varchar2(100);
    BEGIN
    jo := ADSoapClient.new;
    rv := ADSoapClient.getUserName(jo, 'user_ID');
    :block3.fullname := rv;

    Hello,
    Since you are already dealing with server-side JAVA, I would suggest you create a method that would do the parsing server-side and what your PL/SQL will be dealing with is just the return string.
    Here is a method I use to read an XML file (actually, it is an Oracle Reports file converted to XML) and from the string version, I will do search, replace and other things.
    So, from getGroupUsers which returns an XmlDataDocument, you can adapt this method to get your data server-side and let the form module read the output data.
    <blockquote>
    private String processFileXml(String fileName, int iFile) throws ParserConfigurationException, SAXException,
    IOException, XPathExpressionException{
    try{                
    DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
    domFactory.setNamespaceAware(true);
    InputStream inputStream = new FileInputStream(new File(fileName));
    DocumentBuilder builder = domFactory.newDocumentBuilder();
    Document doc = builder.parse(inputStream);
    StringWriter stw = new StringWriter();
    Transformer serializer = TransformerFactory.newInstance().newTransformer();
    serializer.transform(new DOMSource(doc), new StreamResult(stw));
    return stw.toString();
    catch (Exception e){
    System.err.println(e);
    System.exit(0);
    return "OK";
    </blockquote>
    Let me know if this is of nay help.
    Thanks.

  • I am getting regular safari crashes including the Web Content crashes as in the title... Plus iMac running slower than usual! Help?

    I am getting regular safari crashes including the Web Content crashes as in the title.  I've looked around and haven't been able to find a definitive answer.  Has anybody discovered what is causing this?
    I've also noticed generally my iMac seems to be running far slower recently....
    here's the EtrreCheck Report
    Problem description:
    I am getting regular safari crashes including the Web Content crashes as in the title.  I've looked around and haven't been able to find a definitive answer.  Has anybody discovered what is causing this?
    EtreCheck version: 2.1.8 (121)
    Report generated 11 February 2015 15:53:18 GMT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2012) (Technical Specifications)
        iMac - model: iMac13,1
        1 2.7 GHz Intel Core i5 CPU: 4-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce GT 640M - VRAM: 512 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 23:55:51
    Disk Information: ℹ️
        APPLE HDD ST1000LM024 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.35 GB (425.61 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Seagate Expansion Desk 4 TB
            EFI (disk3s1) <not mounted> : 315 MB
            Seagate Backup Plus Drive (disk3s2) /Volumes/Seagate Backup Plus Drive : 4.00 TB (1.85 TB free)
        Focusrite A.E. Ltd Impulse
        SanDisk Cruzer Facet 8 GB
            NO NAME (disk1s1) /Volumes/NO NAME : 8.00 GB (6.21 GB free)
        Apple Inc. FaceTime HD Camera (Built-in)
        Western Digital External HDD 1 TB
            Elements (disk2s1) /Volumes/Elements : 1.00 TB (169.22 GB free)
        Logitech USB Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
    Firewire Information: ℹ️
        Focusrite SAFFIRE_PRO_24 400mbit - 400mbit max
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
            Apple Inc. Thunderbolt to FireWire Adapter
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [loaded]    com.Greatdy.driver.SystemAudioCapture (1.0.0 - SDK 10.8) [Click for support]
        [not loaded]    com.caiaq.driver.NIUSBGuitarRigMobileDriver (2.6.0 - SDK 10.7) [Click for support]
        [not loaded]    com.caiaq.driver.NIUSBHardwareDriver (2.6.0 - SDK 10.7) [Click for support]
        [not loaded]    com.nike.sportwatch (1.0.0) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.master (5.9.1 - SDK 10.6) [Click for support]
        [not loaded]    com.seagate.driver.PowSecDriverCore (5.2.6 - SDK 10.4) [Click for support]
        [not loaded]    com.tomtom.driver.UsbEthernetGadget (1.0.0d1) [Click for support]
        [loaded]    tc.tctechnologies.driver.PaeFireStudio (4.0.0 14255 - SDK 10.0) [Click for support]
        [loaded]    tc.tctechnologies.driver.Saffire (4.1.4 18735 - SDK 10.6) [Click for support]
            /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns
        [not loaded]    com.paceap.kext.pacesupport.leopard (5.9.1 - SDK 10.4) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.panther (5.9.1 - SDK 10.-1) [Click for support]
        [loaded]    com.paceap.kext.pacesupport.snowleopard (5.9.1 - SDK 10.6) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.tiger (5.9.1 - SDK 10.4) [Click for support]
            /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_4 (5.2.6 - SDK 10.4) [Click for support]
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6 - SDK 10.5) [Click for support]
        [not loaded]    com.seagate.driver.SeagateDriveIcons (5.2.6 - SDK 10.4) [Click for support]
    Problem System Launch Daemons: ℹ️
        [running]    com.seagate.TBDecorator.plist [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.nike.nikeplusconnect.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.paceap.eden.licensed.plist [Click for support]
        [loaded]    PACESupport.plist [Click for support]
        [loaded]    tc.tctechnologies.PaeFireStudio.plist [Click for support]
        [loaded]    tc.tctechnologies.Saffire.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        NIHardwareAgent    Application Hidden (/Library/Application Support/Native Instruments/Hardware/NIHardwareAgent.app)
    Internet Plug-ins: ℹ️
        SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        Default Browser: Version: 600 - SDK 10.10
    User internet Plug-ins: ℹ️
        Aspera Web 3.1.0.67054: Version: Unknown - SDK 10.6 [Click for support]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Native Instruments USB Audio  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 999.35 GB Disk used: 573.74 GB
        Destinations:
            Seagate Backup Plus Drive [Local]
            Total size: 4.00 TB
            Total number of backups: 2
            Oldest backup: 2014-08-25 08:56:21 +0000
            Last backup: 2014-11-16 15:26:36 +0000
            Size of backup disk: Excellent
                Backup size 4.00 TB > (Disk size 999.35 GB X 3)
    Top Processes by CPU: ℹ️
            10%    TweetDeck
             3%    WindowServer
             1%    Sound Forge Pro
             0%    com.apple.WebKit.Networking
             0%    Dropbox
    Top Processes by Memory: ℹ️
        618 MB    TweetDeck
        524 MB    com.apple.WebKit.WebContent
        429 MB    softwareupdated
        215 MB    Safari
        215 MB    Finder
    Virtual Memory Information: ℹ️
        54 MB    Free RAM
        3.14 GB    Active RAM
        3.17 GB    Inactive RAM
        1.43 GB    Wired RAM
        8.58 GB    Page-ins
        423 MB    Page-outs
    Diagnostics Information: ℹ️
        Feb 11, 2015, 10:56:10 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-11-105610_[ redacted].hang
        Feb 10, 2015, 05:35:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Networking_20 15-02-10-173505_[redacted].crash
        Feb 10, 2015, 04:01:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2015-02-10-160103_[reda cted].crash
        Feb 10, 2015, 03:54:44 PM    Self test - passed
        Feb 10, 2015, 09:28:18 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-10-092818_[ redacted].hang
        Feb 10, 2015, 07:35:00 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-10-073500_[ redacted].hang
        Feb 9, 2015, 08:07:10 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-09-200710_[ redacted].hang
        Feb 9, 2015, 08:07:08 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-09-200708_[ redacted].hang
        Feb 9, 2015, 07:27:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AIM_2015-02-09-192742_[redacte d].crash
        Feb 9, 2015, 06:49:47 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-02-09-184947_[reda cted].crash
        Feb 9, 2015, 06:15:19 PM    /Library/Logs/DiagnosticReports/iTunes_2015-02-09-181519_[redacted].hang
        Feb 9, 2015, 05:55:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AIM_2015-02-09-175536_[redacte d].crash
        Feb 9, 2015, 12:51:30 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AIM_2015-02-09-125130_[redacte d].crash
        Feb 9, 2015, 12:35:59 PM    /Library/Logs/DiagnosticReports/Sound Forge Pro_2015-02-09-123559_[redacted].cpu_resource.diag [Click for details]
        Feb 9, 2015, 12:26:46 PM    /Library/Logs/DiagnosticReports/iTunes_2015-02-09-122646_[redacted].hang

    I think this is a Crash report
    Date/Time:       2015-02-12 16:32:19 +0000
    OS Version:      10.10.2 (Build 14C109)
    Architecture:    x86_64
    Report Version:  21
    Command:         com.apple.WebKit.WebContent
    Path:            /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.We bKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Version:         10600 (10600.3.18)
    Build Version:   3
    Project Name:    WebKit2
    Source Version:  7600003018000000
    Parent:          launchd [1]
    Responsible:     Safari [3240]
    PID:             4112
    Event:           hang
    Duration:        3.97s (process was unresponsive for 1260 seconds before sampling)
    Steps:           41 (100ms sampling interval)
    Hardware model:  iMac13,1
    Active cpus:     4
    Fan speed:       1399 rpm
    Timeline format: stacks are sorted chronologically
    Use -i and -heavy to re-report with count sorting
    Heaviest stack for the main thread of the target process:
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9]
      41  ??? (com.apple.WebKit.WebContent + 2880) [0x10d1edb40]
      41  xpc_main + 490 (libxpc.dylib + 88733) [0x7fff83cd9a9d]
      41  _xpc_objc_main + 793 (libxpc.dylib + 81650) [0x7fff83cd7ef2]
      41  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff86d3da14]
      41  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff86d52593]
      41  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff86d5e730]
      41  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff86d5ef81]
      41  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8ac6b6ab]
      41  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8ac6b86a]
      41  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8ac6baef]
      41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858]
      41  __CFRunLoopRun + 927 (CoreFoundation + 466495) [0x7fff82747e3f]
      41  __CFRunLoopDoSources0 + 269 (CoreFoundation + 469005) [0x7fff8274880d]
      41  __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (CoreFoundation + 525953) [0x7fff82756681]
      41  ***::RunLoop::performWork(void*) + 34 (JavaScriptCore + 4979298) [0x7fff859e0a62]
      41  ***::RunLoop::performWork() + 423 (JavaScriptCore + 4977559) [0x7fff859e0397]
      41  IPC::Connection::dispatchOneMessage() + 114 (WebKit + 696628) [0x7fff893fe134]
      41  IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::MessageDecoder, std::__1::default_delete<IPC::MessageDecoder> >) + 94 (WebKit + 688060) [0x7fff893fbfbc]
      41  WebKit::WebProcess::didReceiveWebProcessMessage(IPC::Connection*, IPC::MessageDecoder&) + 85 (WebKit + 2077885) [0x7fff8954f4bd]
      41  void IPC::handleMessageVariadic<Messages::WebProcess::InitializeWebProcess, WebKit::WebProcess, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)>(IPC::MessageDecoder&, WebKit::WebProcess*, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)) + 96 (WebKit + 2080768) [0x7fff89550000]
      41  WebKit::WebProcess::initializeWebProcess(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&) + 951 (WebKit + 2029261) [0x7fff895436cd]
      41  WebKit::WebProcess::ensureNetworkProcessConnection() + 93 (WebKit + 105701) [0x7fff8936dce5]
      41  bool IPC::Connection::sendSync<Messages::WebProcessProxy::GetNetworkProcessConnectio n>(Messages::WebProcessProxy::GetNetworkProcessConnection&&, Messages::WebProcessProxy::GetNetworkProcessConnection::Reply&&, unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 127 (WebKit + 2037397) [0x7fff89545695]
      41  IPC::Connection::sendSyncMessage(unsigned long long, std::__1::unique_ptr<IPC::MessageEncoder, std::__1::default_delete<IPC::MessageEncoder> >, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 432 (WebKit + 692242) [0x7fff893fd012]
      41  IPC::Connection::waitForSyncReply(unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 230 (WebKit + 693010) [0x7fff893fd312]
      41  ***::BinarySemaphore::wait(double) + 69 (JavaScriptCore + 1517925) [0x7fff85693965]
      41  ***::ThreadCondition::timedWait(***::Mutex&, double) + 63 (JavaScriptCore + 84783) [0x7fff85535b2f]
      41  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff87fbe136]
    *41  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80f6491c]
    Process:         com.apple.WebKit.WebContent [4112]
    Path:            /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.We bKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Architecture:    x86_64
    Parent:          launchd [1]
    Responsible:     Safari [3240]
    UID:             501
    Sudden Term:     Dirty (allows idle exit)
    Task size:       4527 pages (+6)
    Note:            Unresponsive for 1260 seconds before sampling
    Note:            2 idle work queue threads omitted
      Thread 0xeb94e      DispatchQueue 1     41 samples (1-41)   priority 37
      <thread QoS user initiated, boosted, received importance donation from Safari [3240], received importance donation from WindowServer [146], IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (com.apple.WebKit.WebContent + 2880) [0x10d1edb40] 1-41
          41  xpc_main + 490 (libxpc.dylib + 88733) [0x7fff83cd9a9d] 1-41
            41  _xpc_objc_main + 793 (libxpc.dylib + 81650) [0x7fff83cd7ef2] 1-41
              41  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff86d3da14] 1-41
                41  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff86d52593] 1-41
                  41  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff86d5e730] 1-41
                    41  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff86d5ef81] 1-41
                      41  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8ac6b6ab] 1-41
                        41  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8ac6b86a] 1-41
                          41  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8ac6baef] 1-41
                            41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                              41  __CFRunLoopRun + 927 (CoreFoundation + 466495) [0x7fff82747e3f] 1-41
                                41  __CFRunLoopDoSources0 + 269 (CoreFoundation + 469005) [0x7fff8274880d] 1-41
                                  41  __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (CoreFoundation + 525953) [0x7fff82756681] 1-41
                                    41  ***::RunLoop::performWork(void*) + 34 (JavaScriptCore + 4979298) [0x7fff859e0a62] 1-41
                                      41  ***::RunLoop::performWork() + 423 (JavaScriptCore + 4977559) [0x7fff859e0397] 1-41
                                        41  IPC::Connection::dispatchOneMessage() + 114 (WebKit + 696628) [0x7fff893fe134] 1-41
                                          41  IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::MessageDecoder, std::__1::default_delete<IPC::MessageDecoder> >) + 94 (WebKit + 688060) [0x7fff893fbfbc] 1-41
                                            41  WebKit::WebProcess::didReceiveWebProcessMessage(IPC::Connection*, IPC::MessageDecoder&) + 85 (WebKit + 2077885) [0x7fff8954f4bd] 1-41
                                              41  void IPC::handleMessageVariadic<Messages::WebProcess::InitializeWebProcess, WebKit::WebProcess, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)>(IPC::MessageDecoder&, WebKit::WebProcess*, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)) + 96 (WebKit + 2080768) [0x7fff89550000] 1-41
                                                41  WebKit::WebProcess::initializeWebProcess(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&) + 951 (WebKit + 2029261) [0x7fff895436cd] 1-41
                                                  41  WebKit::WebProcess::ensureNetworkProcessConnection() + 93 (WebKit + 105701) [0x7fff8936dce5] 1-41
                                                    41  bool IPC::Connection::sendSync<Messages::WebProcessProxy::GetNetworkProcessConnectio n>(Messages::WebProcessProxy::GetNetworkProcessConnection&&, Messages::WebProcessProxy::GetNetworkProcessConnection::Reply&&, unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 127 (WebKit + 2037397) [0x7fff89545695] 1-41
                                                      41  IPC::Connection::sendSyncMessage(unsigned long long, std::__1::unique_ptr<IPC::MessageEncoder, std::__1::default_delete<IPC::MessageEncoder> >, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 432 (WebKit + 692242) [0x7fff893fd012] 1-41
                                                        41  IPC::Connection::waitForSyncReply(unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 230 (WebKit + 693010) [0x7fff893fd312] 1-41
                                                          41  ***::BinarySemaphore::wait(double) + 69 (JavaScriptCore + 1517925) [0x7fff85693965] 1-41
                                                            41  ***::ThreadCondition::timedWait(***::Mutex&, double) + 63 (JavaScriptCore + 84783) [0x7fff85535b2f] 1-41
                                                              41  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff87fbe136] 1-41
                                                               *41  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80f6491c] 1-41
      Thread 0xeb954      DispatchQueue 2     41 samples (1-41)   priority 46
      <thread QoS user interactive, boosted, received importance donation from Safari [3240], received importance donation from WindowServer [146], IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xeb99f      41 samples (1-41)   priority 46
      <thread QoS user interactive, boosted, received importance donation from Safari [3240], received importance donation from WindowServer [146], IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  _NSEventThread + 137 (AppKit + 1602363) [0x7fff86ec233b] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Binary Images:
             0x10d1ed000 -        0x10d1edfff  com.apple.WebKit.WebContent 10600 (10600.3.18) <1049A240-EC53-3714-8209-F5019FC19A02>  /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.We bKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)             <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)            <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff83cc4000 -     0x7fff83cecfff  libxpc.dylib (559.10.3)                        <876216DC-D5D3-381E-8AF9-49AE464E5107>  /usr/lib/system/libxpc.dylib
          0x7fff85521000 -     0x7fff85a34fff  com.apple.JavaScriptCore 10600 (10600.3.13)    <C0C3246C-D26F-3440-AC75-81CFFA4F9C91>  /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
          0x7fff86d3b000 -     0x7fff87885fff  com.apple.AppKit 6.9 (1344.72)                 <44EF7DEB-3072-3515-9F34-2857D557E828>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)            <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff89354000 -     0x7fff8961afff  com.apple.WebKit 10600 (10600.3.18)            <F8E36318-4F4C-348B-B1DE-D4BE035036AD>  /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)                        <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8ac3d000 -     0x7fff8af41fff  com.apple.HIToolbox 2.1.1 (757.3)              <D827FC03-5668-3AA4-AF0E-46EEF7358EEA>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)                    <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff7f80f5e000 - 0xffffff7f80f66fff  com.apple.kec.pthread 1.0 (1)                  <8365956C-8613-3ED4-BC64-0D8570D2089F>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                            <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         accountsd [294]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1881 pages
      Thread 0xd6a        DispatchQueue 1     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (accountsd + 2741) [0x10535cab5] 1-41
          41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
            41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
              41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                 *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0xd6f        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xf16ab      41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
    *41  wq_unsuspend_continue + 0 (pthread + 18452) [0xffffff7f80f62814] (suspended) 1-41
      Binary Images:
             0x10535c000 -        0x10535cfff  accountsd (504.7)                   <FE573A9B-A4D9-3E08-9F08-D98F65D9E14D>  /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff7f80f5e000 - 0xffffff7f80f66fff  com.apple.kec.pthread 1.0 (1)       <8365956C-8613-3ED4-BC64-0D8570D2089F>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AirPlayUIAgent [1061]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2043 pages
      Thread 0x1abf5      DispatchQueue 1     41 samples (1-41)   priority 46
      <thread QoS user interactive, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff86d3da14] 1-41
          41  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff86d52593] 1-41
            41  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff86d5e730] 1-41
              41  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff86d5ef81] 1-41
                41  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8ac6b6ab] 1-41
                  41  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8ac6b86a] 1-41
                    41  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8ac6baef] 1-41
                      41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                        41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                          41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                            41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                             *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x1ac6b      DispatchQueue 2     41 samples (1-41)   priority 46
      <thread QoS user interactive, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x1acb3      41 samples (1-41)   priority 46
      <thread QoS user interactive, IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  _NSEventThread + 137 (AppKit + 1602363) [0x7fff86ec233b] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Binary Images:
             0x10ae97000 -        0x10ae9cfff  com.apple.AirPlayUIAgent 2.0 (215.15) <24B86EE0-207E-3D74-9DE9-3338EA4163B0>  /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86d3b000 -     0x7fff87885fff  com.apple.AppKit 6.9 (1344.72)        <44EF7DEB-3072-3515-9F34-2857D557E828>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)               <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8ac3d000 -     0x7fff8af41fff  com.apple.HIToolbox 2.1.1 (757.3)     <D827FC03-5668-3AA4-AF0E-46EEF7358EEA>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)           <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                   <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         airportd [30]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1840 pages
      Thread 0x1eb        DispatchQueue 1     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (airportd + 235530) [0x10abe180a] 1-41
          41  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1466959) [0x7fff88b1d24f] 1-41
            41  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436297) [0x7fff88a21849] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x433        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  _dispatch_mgr_invoke + 176 (libdispatch.dylib + 19786) [0x7fff8f0e5d4a] 1-41
          41  __select_nocancel + 10 (libsystem_kernel.dylib + 91154) [0x7fff87fbe412] 1-41
           *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Thread 0x5f2        41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x10aba8000 -        0x10ac87fff  airportd (1010.64)                  <19F41714-1140-363A-A12F-D0CAE963A4CD>  /usr/libexec/airportd
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         amfid [291]
    Path:            /usr/libexec/amfid
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       1221 pages
      Thread 0xd53        DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xd54        DispatchQueue 11    41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91970) [0x7fff87fbe742] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x10cbc9000 -        0x10cbcafff  amfid (133.1.1)                     <6DFB17C8-CB07-3730-83A8-391C498C7EB6>  /usr/libexec/amfid
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         appleeventsd [24]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             55
    Task size:       1237 pages (-9)
    Note:            3 idle work queue threads omitted
      Thread 0x41b        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x41c        DispatchQueue 11    41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91970) [0x7fff87fbe742] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x100a9e000 -        0x100a9efff  appleeventsd (681)                  <FB31726D-933F-32CD-BE6B-F8598AA15431>  /System/Library/CoreServices/appleeventsd
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleIDAuthAgent [320]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2264 pages
      Thread 0xfa2        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x10dc       DispatchQueue 19    41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff819ec40d] 1-41
        41  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff819ee637] 1-41
          41  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff8f0f3fe4] 1-41
            41  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff8f0e56b7] 1-41
              41  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff8f0e7ecc] 1-41
                41  _dispatch_queue_drain + 571 (libdispatch.dylib + 20820) [0x7fff8f0e6154] 1-41
                  41  _dispatch_source_invoke + 412 (libdispatch.dylib + 22059) [0x7fff8f0e662b] 1-41
                    41  _dispatch_source_latch_and_call + 721 (libdispatch.dylib + 51326) [0x7fff8f0ed87e] 1-41
                      41  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff8f0e2c13] 1-41
                        41  _dispatch_after_timer_callback + 77 (libdispatch.dylib + 58744) [0x7fff8f0ef578] 1-41
                          41  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff8f0e2c13] 1-41
                            41  _dispatch_call_block_and_release + 12 (libdispatch.dylib + 25379) [0x7fff8f0e7323] 1-41
                              41  ??? (AppleIDAuthAgent + 13366) [0x1091de436] 1-41
                                41  semaphore_timedwait_trap + 10 (libsystem_kernel.dylib + 70962) [0x7fff87fb9532] 1-41
                                 *41  semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 1-41
      Thread 0xfa5        41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91970) [0x7fff87fbe742] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Thread 0x1137       41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
        41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
          41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
           *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x1146       41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  __NSThread__main__ + 1345 (Foundation + 428298) [0x7fff88a1f90a] 1-41
              41  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658560) [0x7fff88f7dc80] 1-41
                41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                  41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                    41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                      41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                       *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x1257       41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x1091db000 -        0x109216fff  AppleIDAuthAgent (640.3)              <45629774-D804-35A2-B251-D430871E2FA8>  /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)    <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff88edd000 -     0x7fff890e0fff  com.apple.CFNetwork 720.2.4 (720.2.4) <E550C671-930F-3B12-8798-23898473E179>  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)           <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                   <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleMobileDeviceHelper [3343]
    Path:            /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper
    Architecture:    x86_64
    Parent:          iTunes [3338]
    Responsible:     iTunes [3338]
    UID:             501
    Task size:       1578 pages
      Thread 0xb8048      DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, IO policy important>
      41  ??? [0x100001e64] 1-41
        41  ??? [0x100002c22] 1-41
          41  ??? [0x10000b95a] 1-41
            41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
             *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Thread 0xb804b      DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xb8058      41 samples (1-41)   priority 31
      <thread QoS legacy, IO policy important>
      41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleSpell [458]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       5105 pages
      Thread 0x200a       DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (AppleSpell + 7362) [0x10c42fcc2] 1-41
          41  -[NSSpellServer run] + 73 (Foundation + 1671256) [0x7fff88b4f058] 1-41
            41  CFRunLoopRun + 97 (CoreFoundation + 1212145) [0x7fff827fdef1] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x200e       DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Binary Images:
             0x10c42e000 -        0x10c511fff  com.apple.AppleSpell 2.2.2 (274.2)  <B6BE2085-9EC6-3CCC-B8EC-C96DD7A182DA>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleSpell [2021]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       679 pages
      Thread 0x6a8ca      DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (AppleSpell + 7362) [0x10c5f3cc2] 1-41
          41  -[NSSpellServer run] + 73 (Foundation + 1671256) [0x7fff88b4f058] 1-41
            41  CFRunLoopRun + 97 (CoreFoundation + 1212145) [0x7fff827fdef1] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x6a8e6      DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Binary Images:
             0x10c5f2000 -        0x10c6d5fff  com.apple.AppleSpell 2.2.2 (274.2)  <B6BE2085-9EC6-3CCC-B8EC-C96DD7A182DA>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleSpell [2616]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       675 pages
      Thread 0x7ad1c      DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (AppleSpell + 7362) [0x108067cc2] 1-41
          41  -[NSSpellServer run] + 73 (Foundation + 1671256) [0x7fff88b4f058] 1-41
            41  CFRunLoopRun + 97 (CoreFoundation + 1212145) [0x7fff827fdef1] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x7ad55      DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Binary Images:
             0x108066000 -        0x108149fff  com.apple.AppleSpell 2.2.2 (274.2)  <B6BE2085-9EC6-3CCC-B8EC-C96DD7A182DA>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         apsd [52]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2477 pages
      Thread 0x201        DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (apsd + 372691) [0x1099effd3] 1-41
          41  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1466959) [0x7fff88b1d24f] 1-41
            41  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436297) [0x7fff88a21849] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x4b4        DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x4f5        41 samples (1-41)   priority 63
      <timers coalesced, IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  __NSThread__main__ + 1345 (Foundation + 428298) [0x7fff88a1f90a] 1-41
              41  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658560) [0x7fff88f7dc80] 1-41
                41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                  41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                    41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                      41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                       *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x9d7        41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
             *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x109995000 -        0x109a5bfff  apsd (275.4)                          <045087F6-4CA3-3CC8-9ADE-F3BFED10F03E>  /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib

  • TS3648 great, but my MBA did not come with an installion disc, only a tiny jump drive that is not recognized by windows; and I can't get the contents of that burned to a DVD either. So how the heck do I get the drivers into Windows 7? My MBA has bootcamp

    great, but my MBA did not come with an installion disc, only a tiny jump drive that is not recognized by windows; and I can't get the contents of that burned to a DVD either. So how the heck do I get the drivers into Windows 7? My MBA has bootcamp 3.0.4.

    Here's what I get:
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    inet 127.0.0.1 netmask 0xff000000
    inet6 ::1 prefixlen 128
    inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0 mtu 1280
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 00:11:24:7d:e7:1e
    media: autoselect (none) status: inactive
    supported media: none autoselect 10baseT/UTP <half-duplex> 10baseT/UTP <full-duplex> 10baseT/UTP <full-duplex,hw-loopback> 100baseTX <half-duplex> 100baseTX <full-duplex> 100baseTX <full-duplex,hw-loopback>
    en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    inet6 fe80::211:24ff:fe28:2e71%en1 prefixlen 64 scopeid 0x5
    inet 169.254.115.141 netmask 0xffff0000 broadcast 169.254.255.255
    ether 00:11:24:28:2e:71
    media: autoselect status: active
    supported media: autoselect
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 2030
    lladdr 00:11:24:ff:fe:7d:e7:1e
    media: autoselect <full-duplex> status: inactive
    supported media: autoselect <full-duplex>

Maybe you are looking for

  • Error while building scrotwm package

    Hi, I'm having an issue building the scrotwm package from AUR. After downloading the tarball and PKGBUILD and doing: makepkg I am met with this error: ==> Making package: scrotwm 0.9.30-1 (Fri Jun 17 22:18:24 EDT 2011) ==> Checking runtime dependenci

  • Xcode 6.2 failed to download on OSX 10.10.2

    I have been trying to install Xcode 6.2 on OSX Yosemite 10.10.2 whole day. But every time it downloads 2.58GB then while installing it fails (errors out Xcode failed to download, use the purchase page to try again). I have all the latest update on my

  • Oracle 8.1.7 on solaris 7 install

    Hi all This is about a half solved problem that I thought someone can shed some light on. I tried to set up oracle 8.1.7 on a solaris 7 unix box and the install failed, just at the point the db assistant was connecting to the oracle db to create the

  • P305D Shuts down unexpectedly

    I have a Toshiba Laptop Model Number P305D-S8834. It shuts down unexpectedly. Powers off. No screen display, no blue screen. It simply shuts itself down without warning. So far I have booted in setup using F2 and just let it run at the setup screen.

  • Windows Platform FIPS validated cryptographic algorithm

    I have a fairly simple Script Transformation that is now causing us an issue.  We've upgraded to SQL Server 2012 SP2 on our development servers.   When the package runs, we receive the following coming from the script transformation. Error: 2014-08-1