Problems with custom JSP Tag, can someone offer some advice?

Greetings,
I have a problem here that I am stumped on. I am trying to create a custom JSP tag, I created a simple "Hello World" JSP, however, I am coming up a bit short. I am running Apache Tomcat 6.0 on a Win XP environment.
The code I have is as follows:
TLDTest.tld:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_2.dtd">
<taglib>
     <tlibversion>1.0</tlibversion>
     <jspversion>1.2</jspversion>
     <shortname>firstTag</shortname>
     <info>My First Tag</info>
<!-- Here goes nothing!!! -->
<tag>
     <name>hola</name>
     <tagclass>Hola</tagclass>
     <bodycontent>empty</bodycontent>
     <info>a simple hello tag</info>
<!-- attributes -->
<!-- Personalize the name -->
<attribute>
     <name>name</name>
     <required>false</required>
     <rtexpvalue>false</rtexpvalue>
</attribute>
</tag>
</taglib>
The Hola.jsp is:
<%@ taglib uri="/Hola" prefix="test" %>
<html>
     <head>Just a little test on tags</head>
     <body>
          <hr />
          <test:Hola name="Woot Master" />
          <hr />
     </body>
</html>
And the source code for the .class file (named Hola) is:
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class Hola extends TagSupport
     private String name = null;
     public void setName(String value)
          name = value;
     public String getName()
          return(name);
/* doStartTag is called and defined below here for the java tag */
     public int doStartTag()
          try
               JspWriter out = pageContext.getOut();
               out.println("<table border=1>");
                    if (name != null)
                         out.println("<tr><td> Hola " + name + "!" + "</td></tr>");
                    else
                         out.println("<tr><td> Hola! Porque tu es una piquito perra? </td></tr>");
          catch (Exception ex)
               throw new Error("Dio's Mio!, Esta No Va!, tu problema es en la StartTag!!!");
          return SKIP_BODY;
/* doEndTag is defined here. */
     public int doEndTag()
          try
               final JspWriter out = pageContext.getOut();
               out.println("</table>");
          catch (final Exception ex)
               throw new Error("Oops, it's broken, check your coding in the End tag!!!");
What I keep getting is the following error:
org.apache.jasper.JasperException: /Hola/Hola.jsp(6,2) No tag "Hola" defined in tag library imported with prefix "test"
     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
     org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
     org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:198)
I've been back and forth on this, but I am lost. Obviously I am missing something, but what is it? It wouldn't be in the web.xml file would it? I am running a vanilla tomcat install. Any help that anyone can provide would be greatly appreciated.
Sincerely,
- Josh

Ok
1 - In the JSP, your tag should be "hola" not "Hola". Yes case matters.
  <test:hola name="Woot Master" />2 - Importing the taglibrary correctly.
Either reference its tld <%@ taglib uri="/WEB-INF/Hola.tld" prefix="test" %>
(and have the tld file sitting in /WEB-INF/Hola.tld )
or
Define a uri for it in the tld...
<taglib>
<tlibversion>1.0</tlibversion>
<jspversion>1.2</jspversion>
<shortname>firstTag</shortname>
<uri>http://mytag/hola</uri>
...and then use that uri to import it in your JSP
<%@ taglib uri="http://mytag/hola" prefix="test" %>
3 - Put your tag class in a package. Classes not in packages have a way of not being found.
package mypackage
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class Hola extends TagSupport {
...That will move it in your folder structure to be /mypackage/Hola.java
You would also need to update the tagclass element in the tld to reflect the change:
<tagclass>mypackage.Hola</tagclass>4 - Mistake in your tld: You are missing an "r" in "rtexprvalue". <rtexpvalue> should be <rtexp*r*value>
5 - In your Tag class, you should return something from the "doEndTag()" method.
return super.doEndTag(); or maybe return EVAL_PAGE;
Revised code:
WEB-INF/hola.tld
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_2.dtd">
<taglib>
     <tlibversion>1.0</tlibversion>
     <jspversion>1.2</jspversion>
     <shortname>firstTag</shortname>
     <uri>http://mytag/hola</uri>
     <info>My First Tag</info>
     <!-- Here goes nothing!!! -->
     <tag>
          <name>hola</name>
          <tagclass>mypackage.Hola</tagclass>
          <bodycontent>empty</bodycontent>
          <info>a simple hello tag</info>
          <!-- attributes -->
          <!-- Personalize the name -->
          <attribute>
               <name>name</name>
               <required>false</required>
               <rtexprvalue>false</rtexprvalue>
          </attribute>
     </tag>
</taglib>hola.jsp:
<%@ taglib uri="http://mytag/hola" prefix="test"%>
<html>
  <head>Just a little test on tags</head>
  <body>
    <hr />
    <test:hola name="Woot Master" />
    <hr />
  </body>
</html>Hola.java. Compiles into WEB-INF/classes/mypackage/Hola.class
package mypackage;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class Hola extends TagSupport {
     private String name = null;
     public void setName(String value) {
          name = value;
     public String getName() {
          return (name);
     /* doStartTag is called and defined below here for the java tag */
     public int doStartTag() {
          try {
               JspWriter out = pageContext.getOut();
               out.println("<table border=1>");
               if (name != null)
                    out.println("<tr><td> Hola " + name + "!" + "</td></tr>");
               else
                    out.println("<tr><td> Hola! Porque tu es una piquito perra? </td></tr>");
          } catch (Exception ex) {
               throw new Error("Dio's Mio!, Esta No Va!, tu problema es en la StartTag!!!");
          return SKIP_BODY;
     /* doEndTag is defined here. */
     public int doEndTag() {
          try {
               final JspWriter out = pageContext.getOut();
               out.println("</table>");
               return super.doEndTag();
          } catch (final Exception ex) {
               throw new Error("Oops, it's broken, check your coding in the End tag!!!");
}Cheers,
evnafets

Similar Messages

  • Why I got this email if I didn't schedule any storage plan ? This is the email I got;        On 10/07/2013 you are scheduled to be charged $20.00 for your 10 GB iCloud storage plan, but there is a problem with your payment information, Can someone help me

    Why I got this email if I didn't schedule any storage plan ? This is the email I got;       
    On 10/07/2013 you are scheduled to be charged $20.00 for your 10 GB iCloud storage plan, but there is a problem with your payment information, Can someone help me ? I don't want to be charge for something I don't want to buy.

    You may want to do couple things
    1. cancel auto renewal for icloud - instructions here -under downgrade storage
    http://support.apple.com/kb/HT4874
    2. change your payment info in itunes, to either none or other payment method - instructions here
    http://support.apple.com/kb/ht1918

  • Can anyone offer some advice i am looking to upgrade the OS system on one of my macbook pro's, currently running os10.4.11, I would like to upgrade to OS10.5? how would I go about this, and is there a cost, for what is an old operating system now?

    Can anyone offer some advice i am looking to upgrade the OS system on one of my macbook pro's, currently running os10.4.11, I would like to upgrade to OS10.5? how would I go about this, and is there a cost, for what is an old operating system now?

    Since your Mac probably came with 10.4, there is no longer a way to get 10.5 Leopard install media. IF it has the requirements, you may be able to upgrade to 10.6 Snow Leopard by buying the boxed install media at the Apple Store for $30.
    System requirements are found here: http://support.apple.com/kb/SP575
    General support can be found here: http://www.apple.com/support/snowleopard/

  • Error with custom JSP tags

    Firstly, thanks for any assistance. The problem I'm facing is that I am using this open source tag library in WebLogic Platform v8.1.5 and it is showing an error when viewed within Workshop. The problematic custom tag was underlined in red by Workshop with the error message "ERROR: This attribute value is not valid." when hovering the mouse over it.
    I tried the other JSP tag specified in the tld file and they were ok. I suspect that there might be an error in one of the Java classes that form the JSP tag. As I hardly do much JSP tag, so my question is my hunch correct? Or should I look elsewhere? The JSP tag in question has an empty <bodycontent> and basically exposes some static variables for use in the JSP page. The tld file is as below and the problematic tag is highlighted in bold. Thank you again for any advise given!
    <?xml version="1.0"?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
    <taglib>
         <tlibversion>1.0</tlibversion>
         <jspversion>1.1</jspversion>
         <shortname>theme</shortname>
         <uri>http://liferay.com/tld/theme</uri>
         <tag>
              <name>box</name>
              <tagclass>com.liferay.taglib.theme.BoxTag</tagclass>
              <bodycontent>JSP</bodycontent>
              <attribute>
                   <name>top</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
              <attribute>
                   <name>bottom</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
         </tag>
         <tag>
              <name>defineObjects</name>
              <tagclass>com.liferay.taglib.theme.DefineObjectsTag</tagclass>
              <teiclass>com.liferay.taglib.theme.DefineObjectsTei</teiclass>
              <bodycontent>empty</bodycontent>
         </tag>
         <tag>
              <name>include</name>
              <tagclass>com.liferay.taglib.theme.IncludeTag</tagclass>
              <bodycontent>JSP</bodycontent>
              <attribute>
                   <name>page</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
         </tag>
         <tag>
              <name>param</name>
              <tagclass>com.liferay.taglib.util.ParamTag</tagclass>
              <bodycontent>JSP</bodycontent>
              <attribute>
                   <name>name</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
              <attribute>
                   <name>value</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
         </tag>
    </taglib>

    nvm..i already fix the problem..

  • I'm Still having problems with my contact form, can someone look at it and help me?

    http://www.alpenawebdesigns.com
    when I try and submit my contact form I get a 404 error something about a port 80 (I'm using port 21) I use Godaddy as a host and this contact form works in another program
    http://www.bayviewdropincenter.org
    can someone look at these and tell me what is the problem?
    Also is there a user group in the Alpena Mi area?

    The requested URL /form-to-email.php was not found on this server.  Did you upload the script?
    Also, please take my URL out of your footer code.   Thanks. 
    <div id="footer">
    <p>&copy; 2012 <a href="http://alt-web.com/">Alpena Web Designs</a> all rights reserved.</p>
    </div>
    Finally, validate your code.  You're missing a closing </div> tag for your header.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.alpenawebdesigns.com%2Fcontac tus.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • I have a unique problem with my playlists. Can someone help?

    The playback of the playlist is fine, as far as I know the music files are fine, but my problem is when I go back to listen to a playlist that I was listening to last, it skips backwards in the playlist.

    optical is only going to give those speakers 5. on content that is encoded in dolby digital. That is pretty much limited to dvd's. You either have to use Dolby Digital Li've when converts everything to Dolby Digital or use the analog connections. If you are using a X-Fi you can buy or use a optical cable and buy the <a target="_self" rel="nofollow" href="http://buy.soundblaster.com/_creativelabsstore/cgi-bin/pd.cgi?page=product_detail&category=Software&pid=F 2222DDN6Z2H2ADDEZD">Dolby Digital Li've Pack. The analog way will cause you way less headaches. In the Playback tab of the Windows Vista sound panel there should only be 3 options there. ATI HDMI, Speakers, SPDIF. All the other connections you saw were in the Recording tab. If those are being detected it's most likely because the pins on the front bay aren't aligned correctly. If you installed the drivers from the website none of the other software is included with it and you have to download it seperately. You can still change modes with the Creative Audio Control Panel. That should be in the Creative listing in the programs menu. If you want to enable EAX you have to download and install Alchemy for games that use the Directsound3D engine. Games that use the OpenAL engine don't need it. Here is a <a target="_self" rel="nofollow" href="http://connect.creativelabs.com/alchemy/Lists/Games/AllItems.aspx">list of games[/url] that require alchemy to work.

  • Memory install problems with my iMac. Can someone help me?

    I read several post before leave it my question here—like having similar RAM memory problems—but looks like nobody has the right answer. This is my dilemma.
    I have an iMac/Intel Core 2 Duo/2.8 GHz/RAM 2 GB/800 MHz,(Anodized Aluminum) 1st Generation - Summer 2007 Family, and has many others here I bought an extra 2GB module in hope to boost the memory from 2GB to 3GB (the new 2GB memory module and the old 1GB).
    I did the installation, making sure they fully seat into their sockets, turn on the computer, checking if the computer recognize the new memory module... and everything went right until I started working with the computer.
    The first indication of a problem happen 15 min. after I installed the memory. The computer crash and I follow the normal procedures to restart the Mac. No problems for about one hour.
    The second time the computer crash I was working an InDesign file, I did turn off and on the computer but this time it didn't work. There was no beep or other sound, nothing was shown on the screen. I took the new memory module out and replace it for the old 1GB.
    Now is working just fine. Is this an Apple scam to make us buy expensive Apple memory modules? The module in question, the one that I bought brand new from memory.com for just $26—instead of the outrageous price of $100 from Apple Store—in as follow:
    2GB DDR2-800 non ECC SO-DIM
    This is the recommended module for iMac 2.8GHz Intel Core 2 Duo 24-inch at memory.com
    http://www.memory.com/net/System.aspx?model=37204
    I wondering if my problem could be the use of two different configurations (2GB+1GB modules) or is just a "conspiracy theory" that Apple want to make us buy expensive RAM memory.
    If I bought a "wrong module", why the computer recognize the upgrade and I was able to work, at least for 2 hrs?

    sergei63,
    It seems you did not purchase the correct memory! The memory for mid 2007 iMac (first generation Aluminum machines) is:
    667 MHz, PC2-5300, DDR2 compliant (also referred to as DDR2 667)
    Look in your owners manual and you will find this information. As you are finding out your machine will not run if it has incorrect memory in it.
    My suggestion is return the RAM you received and purchase the specification listed above.
    Regards,
    Roger

  • Running out of patience... Can someone offer some ...

    Hi,
    We have a few issues with BT Vision...
    Firstly, we are on BT infinity II with a BT HomeHub 3. Only a new master Infinity socket recently fitted with no extensions. Our BT Vision Box is a Black Box, and out service started on the 18th May. The BT Vision box is connected to the Hub via a 10m ethernet cable. We have the £4 a month Essentials service. Our average D/L speed is between 50 and 65mbps, and upload is around 12mbps. We have no issues with speed on the laptops/ipad/etc. We are using a 2M long, expensive HDMI cable (but see below)
    First issue - Quality of the Catch-Up TV. For the first two weeks the catch-up TV services were unwatchable, pausing every 2-3 seconds on Iplayer ITV Player, 4OD, etc. We then had a week of good picture, able to fast forward, skip forward and back 30secs without any issue... all great. Then the box crashed, and we are now back to stuttering, unwatchable catch-up services. This is the main reason we bought the BT Vision service.
    Second Issue - A subsequent crash, led me to perform a factory reset (down arrow and ok while switching on at the mains), this took a number of boot attempts to complete, and now I cannot get 780i output via the HDMI connection. When starting up the box we can see the boot up screen, but then we either get a Green screen, or more commonly "no HDMI souce found" when we would normally get the menu screen and programmes. If I connect using the scart lead it is fine, but the picture quality isn't great. I've tried two different HDMI cables, and tried reversing them as per the call centres instructions.
    Third Issue - We have spent hours, literally, on the phone to the call centre, and a keen, but ultimately unhelpful engineer called Greg. At least a quarter of this time was trying to put through to people trained on the new BT Vision Box. So far they haven't managed to resolve either of the above problems, so we are expecting an engineer visit, which may cost us £110 if the fault isn't BT's... This seems ridiculous, and how do we prove it one way or the other? 
    Sorry, that was a long post, and I've tried to keep it polite despite the 2 1/2hrs my wife spent on the phone this morning which resulted in tears and stress as person after person repeated what the previous person had done, and then the booking systems failed, which is not needed at the moment.
    Hoping someone here can help!!!
    Thanks in advance!

    Hi MattDay,
    Thanks for posting. I've picked up your email and I'll get back to you today.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • I installed Yosemite and now I have problems with my intuos tablet can i get some help

    when I upgraded to Yosemite, I am having trouble with my Intuos tablet,

    Does Intuos have an upgrade driver for Yosemite?

  • Can someone give some advice?

    i am wondering.
    are these proper ipod headphones (the back ones)
    or just some website trying to make you believe they are??
    http://ipod.techdevils.com/index2.php?resid=u202
    i really want black ones because they will go much better with my black nano. but i dont know if these ones are really ipod headphones or just an imitation. if anyone could resolve this it would be great.
    thanks.

    They look/sound genuine. If you check if the company that distributes them is an official apple ipod gear retailer, then they probably real.
    If you want official gear you'd want to check Apple's store.
    Apple Store

  • Problem with custom paper size on dot matrix printer

    Hi All,
    I'm using CR2008 with updated to SP2. I have a problem with custom paper size (W=21; H=14), the CR Viewer show report with custom paper size correctly but when I print it to a dot matrix printer (Epson LQ 300+) the content was rotated to landscape. If print to a laser printer the content was printed correctly. My report was printed correctly by CR10 or previous versions I got this issue when upgraded to CR2008. I aslo tested my computer and printer with orther application like MS Word the printing have no problem with custom paper size.
    Thanks for any advice for me.
    Han

    Looking at the Epson LQ 300+ driver, I see that the latest update is from 2002. In my experience, most matrix printer drivers are not unicode. Crystal Reports is designed to only work with unicode printer drivers. See the [How Printer Driver Options Affect a Report|https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/a09051e9-721e-2b10-11b6-f9c65c64ef29&overridelayout=true] article, page 6 for details. Also, see [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Finally, see if you can print from the CR designer to this printer and if you get the correct results here.
    Ludek

  • I think pesimo customer service three days, I'm looking for someone I can ayudr activation problem with my CC and can not find anyone who can help me.

    I think pesimo customer service three days, I'm looking for someone I can ayudr activation problem with my CC and can not find anyone who can help me.

    Online Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Problems in developing custom JSP tags

    I have problems in debugging custom JSP tags. Sometimes the doStartTag is not called on tags but the doEndTag is called. I don't know why.
    Thanks.

    Fahr--
    A word of caution -- NetUI did not ship a JSP tag SDK in 8.x, and
    we're making no compatibility guarantees for custom JSP tags written on
    the 8.x release and future releases.
    You can accomplish the same sort of functionality with a combination
    of the <netui-data:getData> tag and JSTL 1.0. This solution would
    probably provide similar functionality and be more future-proof relative
    to JSTL and the NetUI tags currently being developed in Beehive.
    Hope that helps.
    Eddie
    Fahr Vegnugen wrote:
    We are in the midst of creating our own JSP tags to work with datasources.
    In an example where you would need to compare two different datasources how would you do this?
    ie.
    <prefix:isGreater dataSource="{pageflow.column1}" dataSourceToCompare="{pageFlow.column2}" />
    How would I evaluate what column2 is since the tag will only resolve one data source
    this.evaluateDataSource();
    Any pointers you can provide would be appreciated, or if there is a library of jsp tags that evaluate objects using datasources already created, that would even be better.

  • I have had a problem with my iMac running Safari with the error message stating "safari quit unexpectedly" each time I try to open it. Can anyone offer me advice on how to remedy this issue please.

    I have had a problem with my iMac running Safari with the error message stating "safari quit unexpectedly" each time I try to open it. Can anyone offer me advice on how to remedy this issue please.

    Thanks Carolyn,
    It says:
    Process:    
    Safari [2396]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    6.0.5 (8536.30.1)
    Build Info: 
    WebBrowser-7536030001000000~6
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [183]
    User ID:    
    501
    Date/Time:  
    2013-08-23 09:30:13.088 +0100
    OS Version: 
    Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:     
    18231 sec
    Crashes Since Last Report:      
    7
    Per-App Interval Since Last Report:  36 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                 
    621AAEC4-4C9D-6640-8458-8D48CE14770F
    Crashed Thread:  4  WebCore: IconDatabase
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    VM Regions Near 0x18:
    -->
    __TEXT            
    000000010b432000-000000010b433000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Enabled Extensions:
    com.divx.DivXHTML5-KZYJ7HJ34P (2.1 - 2.1.2.145) DivX Plus Web Player HTML5 <video>
    com.codec.extension-9FHEC8C8B8 (1.0.0.1 - 1.0.0.1) codec-M
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff91b5effa read + 10
    1   com.apple.CoreFoundation 
    0x00007fff958d9855 fileRead + 37
    2   com.apple.CoreFoundation 
    0x00007fff958d9549 CFReadStreamRead + 409
    3   com.apple.Safari.framework
    0x00007fff8b4f2e7a Safari::getSHA1HashFromFileContents(Safari::CF::URL const&, ***::Vector<unsigned char, 0ul>&) + 137
    4   com.apple.Safari.framework
    0x00007fff8b52e2a6 Safari::ExtensionExtractor::verifyAgainstContentsInDirectory(Safari::CF::URL const&) const + 792
    5   com.apple.Safari.framework
    0x00007fff8b52de6b Safari::ExtensionExtractor::extractExtension(Safari::CF::URL const&, Safari::ExtensionExtractorClient&, Safari::ExtensionExtractor::CertificateRevocationCheckType, ***::PassRefPtr<Safari::CertificateRevocationObserver>) + 249
    6   com.apple.Safari.framework
    0x00007fff8b537924 Safari::ExtensionsController::extensionFromDictionaryRepresentation(Safari::CF: :Dictionary const&, bool&) + 328
    7   com.apple.Safari.framework
    0x00007fff8b53878f Safari::ExtensionsController::loadInstalledExtensions() + 379
    8   com.apple.Safari.framework
    0x00007fff8b537692 Safari::ExtensionsController::reloadAllExtensions() + 54
    9   com.apple.Safari.framework
    0x00007fff8b3ff250 -[AppController awakeFromNib] + 1541
    10  com.apple.CoreFoundation 
    0x00007fff9590b8e9 -[NSSet makeObjectsPerformSelector:] + 201
    11  com.apple.AppKit         
    0x00007fff8d3f3136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    12  com.apple.AppKit         
    0x00007fff8d3d211d loadNib + 317
    13  com.apple.AppKit         
    0x00007fff8d3d1649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    14  com.apple.AppKit         
    0x00007fff8d3d147e -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200
    15  com.apple.AppKit         
    0x00007fff8d3d125e +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360
    16  com.apple.AppKit         
    0x00007fff8d3cd9ff NSApplicationMain + 398
    17  com.apple.Safari.framework
    0x00007fff8b617564 SafariMain + 166
    18  libdyld.dylib            
    0x00007fff94db67e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff91b5e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff91b83f4c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff91b83d13 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff91b6e1d1 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff91b5ed16 kevent + 10
    1   libdispatch.dylib        
    0x00007fff90ddedea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x00007fff90dde9ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff91b5e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff91b83f4c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff91b83d13 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff91b6e1d1 start_wqthread + 13
    Thread 4 Crashed:: WebCore: IconDatabase
    0   com.apple.WebCore        
    0x00007fff8f77e761 std::__1::pair<***::String, WebCore::IconRecord*>* ***::HashTable<***::String, std::__1::pair<***::String, WebCore::IconRecord*>, ***::PairFirstExtractor<std::__1::pair<***::String, WebCore::IconRecord*> >, ***::StringHash, ***::HashMapValueTraits<***::HashTraits<***::String>, ***::HashTraits<WebCore::IconRecord*> >, ***::HashTraits<***::String> >::lookup<***::IdentityHashTranslator<***::StringHash>, ***::String>(***::String const&) + 33
    1   com.apple.WebCore        
    0x00007fff8eff4f6a WebCore::IconDatabase::getOrCreateIconRecord(***::String const&) + 42
    2   com.apple.WebCore        
    0x00007fff8eff44ee WebCore::IconDatabase::performURLImport() + 590
    3   com.apple.WebCore        
    0x00007fff8eff2c7f WebCore::IconDatabase::iconDatabaseSyncThread() + 479
    4   com.apple.JavaScriptCore 
    0x00007fff8d1d325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib        
    0x00007fff91b817a2 _pthread_start + 327
    6   libsystem_c.dylib        
    0x00007fff91b6e1e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff91b5e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff91b83f4c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff91b83d13 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff91b6e1d1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff91b5e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff91b83f4c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff91b83d13 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff91b6e1d1 start_wqthread + 13
    Thread 7:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff91b5c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff91b5bc42 mach_msg + 70
    2   com.apple.QuartzCore     
    0x00007fff95cac17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore     
    0x00007fff95d30dc6 thread_fun + 25
    4   libsystem_c.dylib        
    0x00007fff91b817a2 _pthread_start + 327
    5   libsystem_c.dylib        
    0x00007fff91b6e1e1 thread_start + 13
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff91b5c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff91b5bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff958b0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff958b5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff958b50e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff8cb73546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation     
    0x00007fff8cbd1562 __NSThread__main__ + 1345
    7   libsystem_c.dylib        
    0x00007fff91b817a2 _pthread_start + 327
    8   libsystem_c.dylib        
    0x00007fff91b6e1e1 thread_start + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x00000000000001ff  rbx: 0x000000010c8b07b8  rcx: 0x000000014d829000  rdx: 0x000000014cab1e18
      rdi: 0x0000000000000000  rsi: 0x000000014cab1e18  rbp: 0x000000014cab1cb0  rsp: 0x000000014cab1c70
       r8: 0x0000000000000061   r9: 0x000000014d824478  r10: 0x0000000000000001  r11: 0x0000000000000019
      r12: 0x000000010c8b0978  r13: 0x000000010c8b0680  r14: 0x000000014cab1df0  r15: 0x000000010c8e7000
      rip: 0x00007fff8f77e761  rfl: 0x0000000000010202  cr2: 0x0000000000000018
    Logical CPU: 0
    Binary Images:
    0x10b432000 -   
    0x10b432fff  com.apple.Safari (6.0.5 - 8536.30.1) <7E1AB8E9-8D8B-3A43-8E63-7C92529C507F> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff6b032000 -
    0x7fff6b06693f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
    0x7fff8a7cb000 -
    0x7fff8a816fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8a817000 -
    0x7fff8a866ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8a867000 -
    0x7fff8ab0bff7  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
    0x7fff8ab0c000 -
    0x7fff8ab0dff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8ab60000 -
    0x7fff8ab8cfff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8b373000 -
    0x7fff8b377fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x7fff8b378000 -
    0x7fff8b3acfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8b3df000 -
    0x7fff8b3f2ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x7fff8b3f3000 -
    0x7fff8b8faff7  com.apple.Safari.framework (8536 - 8536.30.1) <5C62034A-BAA0-32BB-84C2-2559389B72C4> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff8b8fb000 -
    0x7fff8b9cdff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8b9ce000 -
    0x7fff8ba04fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    0x7fff8ba5f000 -
    0x7fff8bbd4ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8bbd5000 -
    0x7fff8bc24ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x7fff8bc29000 -
    0x7fff8bcc7ff7  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
    0x7fff8bcc8000 -
    0x7fff8bcdffff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff8bce0000 -
    0x7fff8bdd5fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x7fff8bf22000 -
    0x7fff8bf22fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8bf23000 -
    0x7fff8bf32ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x7fff8bf34000 -
    0x7fff8bf4bfff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8bf4c000 -
    0x7fff8c8dc4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8c8dd000 -
    0x7fff8c8defff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8c8df000 -
    0x7fff8c8eafff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff8ca4a000 -
    0x7fff8ca59fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8ca5a000 -
    0x7fff8ca5bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8ca77000 -
    0x7fff8caf7ff7  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
    0x7fff8cb3b000 -
    0x7fff8ce9afff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8ce9b000 -
    0x7fff8cef7ff7  com.apple.Symbolication (1.3 - 93) <C0FEE99C-6AD9-35D7-9B41-574F25F843B9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8cef8000 -
    0x7fff8cf93fff  com.apple.CoreSymbolication (3.0 - 117) <50716F74-41C2-3BB9-AC16-12C4D4C2DD1E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8cf94000 -
    0x7fff8d22fff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8d27f000 -
    0x7fff8d280ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
    0x7fff8d281000 -
    0x7fff8d2dbff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8d2dd000 -
    0x7fff8df0afff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8df0b000 -
    0x7fff8df0bfff  com.apple.Carbon (154 - 155) <CC5AA589-242E-3BE1-B776-7D4FFD93D0C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8df0c000 -
    0x7fff8df3aff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x7fff8df3b000 -
    0x7fff8df3ffff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8df40000 -
    0x7fff8df65ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
    0x7fff8dfb6000 -
    0x7fff8dff0ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8dff1000 -
    0x7fff8dff1fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8dff2000 -
    0x7fff8dff4ff7  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
    0x7fff8dff5000 -
    0x7fff8e01dfff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8e076000 -
    0x7fff8e2e3ff7  com.apple.RawCamera.bundle (4.07 - 696) <CCB97D78-309C-3CD9-B499-81192069A333> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8e2e4000 -
    0x7fff8e321fef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8e44d000 -
    0x7fff8e5e8fef  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
    0x7fff8e85b000 -
    0x7fff8e8acff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8e8ad000 -
    0x7fff8e8b4fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8e8b5000 -
    0x7fff8e8c3fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8e8c9000 -
    0x7fff8e90cff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8ee19000 -
    0x7fff8ee1afff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x7fff8ee1b000 -
    0x7fff8ee46fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x7fff8ee47000 -
    0x7fff8ee4efff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff8ee4f000 -
    0x7fff8eeb8fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x7fff8ef44000 -
    0x7fff8ef4ffff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8ef50000 -
    0x7fff8ef52ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x7fff8ef8e000 -
    0x7fff8efbfff7  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
    0x7fff8efee000 -
    0x7fff8ffadff7  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
    0x7fff8ffae000 -
    0x7fff8fff8ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8fff9000 -
    0x7fff9007bff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff90097000 -
    0x7fff903aeff7  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
    0x7fff903af000 -
    0x7fff90680ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff906e2000 -
    0x7fff9079fff7  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
    0x7fff907ee000 -
    0x7fff907f3fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x7fff90958000 -
    0x7fff90963ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff909ac000 -
    0x7fff909e4fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x7fff909e5000 -
    0x7fff90a29fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
    0x7fff90a2a000 -
    0x7fff90a35ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff90a42000 -
    0x7fff90a48ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x7fff90a49000 -
    0x7fff90a8cff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff90a8d000 -
    0x7fff90a9afff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff90a9b000 -
    0x7fff90aaeff7  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
    0x7fff90aaf000 -
    0x7fff90bbafff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff90bc8000 -
    0x7fff90bddfff  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
    0x7fff90be2000 -
    0x7fff90c45ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff90c5e000 -
    0x7fff90c60fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff90cce000 -
    0x7fff90cdafff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff90dda000 -
    0x7fff90defff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x7fff90df0000 -
    0x7fff90eb5ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff90eb6000 -
    0x7fff90eb6fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff9102e000 -
    0x7fff91030fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff91031000 -
    0x7fff91031fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff91032000 -
    0x7fff91134fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff91135000 -
    0x7fff9113bfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff9113c000 -
    0x7fff91163fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff91164000 -
    0x7fff91178fff  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
    0x7fff91179000 -
    0x7fff911ceff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff911cf000 -
    0x7fff911cffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff911d0000 -
    0x7fff911f2ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
    0x7fff911f3000 -
    0x7fff91379fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff91657000 -
    0x7fff91a4efff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff91a4f000 -
    0x7fff91a6eff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff91a77000 -
    0x7fff91a7efff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff91b02000 -
    0x7fff91b0afff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff91b4c000 -
    0x7fff91b67ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
    0x7fff91b6d000 -
    0x7fff91c39ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
    0x7fff91c3b000 -
    0x7fff91c3cff7  libSystem.B.dylib (169.3) <5ED23C27-47AF-3C93-984A-172751CF745A> /usr/lib/libSystem.B.dylib
    0x7fff91cb7000 -
    0x7fff91d13fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff91d53000 -
    0x7fff91d81fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff91e17000 -
    0x7fff92003ff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff92004000 -
    0x7fff92071ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff92083000 -
    0x7fff9208dff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff92836000 -
    0x7fff92890fff  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
    0x7fff92891000 -
    0x7fff928a7fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff929bb000 -
    0x7fff92dd8fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff92dd9000 -
    0x7fff9300eff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff93010000 -
    0x7fff9301dfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x7fff9302a000 -
    0x7fff9302eff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff9302f000 -
    0x7fff9307bff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
    0x7fff930ab000 -
    0x7fff930d5ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff93241000 -
    0x7fff9331bfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff9331c000 -
    0x7fff93373ff7  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
    0x7fff93374000 -
    0x7fff933f5fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff93769000 -
    0x7fff937d1fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff9384d000 -
    0x7fff9384ffff  com.apple.securityhi (4.0 - 55002) <A91F8981-ECB6-3B65-A7BA-8DCBD9CCE3D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff938de000 -
    0x7fff938dffff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
    0x7fff93caa000 -
    0x7fff93caafff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff93cab000 -
    0x7fff93caefff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff93e0d000 -
    0x7fff93e23fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff93e53000 -
    0x7fff93e58fff  com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff93e59000 -
    0x7fff93e5bfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
    0x7fff93ea5000 -
    0x7fff93edbfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff93edc000 -
    0x7fff93efbff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff93f35000 -
    0x7fff94032ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    0x7fff942a6000 -
    0x7fff942aeff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff942b9000 -
    0x7fff94346ff7  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
    0x7fff94347000 -
    0x7fff9434afff  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
    0x7fff9434b000 -
    0x7fff94359ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x7fff94365000 -
    0x7fff943e4ff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff947a7000 -
    0x7fff947a7ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff947a8000 -
    0x7fff947acfff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff947ad000 -
    0x7fff947bbff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
    0x7fff94899000 -
    0x7fff948d5fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff948d9000 -
    0x7fff94938fff  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
    0x7fff949c9000 -
    0x7fff949dbff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x7fff94a30000 -
    0x7fff94a3efff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff94a3f000 -
    0x7fff94b3cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x7fff94b3d000 -
    0x7fff94b4aff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff94bdb000 -
    0x7fff94bdffff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff94be0000 -
    0x7fff94cf9fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff94cfa000 -
    0x7fff94d11fff  com.apple.CFOpenDirectory (10.8 - 151.10) <F7AD9844-559A-366E-8192-BB4FCF9EE7A3> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff94d19000 -
    0x7fff94db3fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff94db4000 -
    0x7fff94db7ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff94df4000 -
    0x7fff94e43fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff94e94000 -
    0x7fff95094fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
    0x7fff952f3000 -
    0x7fff952fffff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff95300000 -
    0x7fff95452fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff95453000 -
    0x7fff9556b92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x7fff9556c000 -
    0x7fff9561dfff  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
    0x7fff9561e000 -
    0x7fff9563fff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    0x7fff95732000 -
    0x7fff9579aff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x7fff9579b000 -
    0x7fff9579dfff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff9580e000 -
    0x7fff9582efff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff95875000 -
    0x7fff9587ffff  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
    0x7fff95880000 -
    0x7fff95a6aff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff95a6b000 -
    0x7fff95a92ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E8DA9FDB-3A58-3934-A7C9-2728B683D741> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff95a93000 -
    0x7fff95a94ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
    0x7fff95aed000 -
    0x7fff95aedfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff95bc2000 -
    0x7fff95bcbff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff95bcc000 -
    0x7fff95beeff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff95bef000 -
    0x7fff95d9dfff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff95faa000 -
    0x7fff95fc7ff7  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
    0x7fff95ff5000 -
    0x7fff9609bff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <FFDDD2D8-690D-388F-A48F-4750A792D2CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff960c4000 -
    0x7fff9611afff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff969d2000 -
    0x7fff969f3fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff969f4000 -
    0x7fff96a33ff7  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
    0x7fff96ce4000 -
    0x7fff96ce9fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x7fff96cf6000 -
    0x7fff96e81fff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff96e82000 -
    0x7fff96fa2fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff96fa3000 -
    0x7fff96fa7ff7  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
    0x7fff96fc3000 -
    0x7fff96fc9fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff9728f000 -
    0x7fff972fdff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff972fe000 -
    0x7fff9762efff  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
    0x7fff97721000 -
    0x7fff97721fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    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: 2440
    thread_create: 3
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=173.9M resident=136.4M(78%) swapped_out_or_unallocated=37.5M(22%)
    Writable regions: Total=1.1G written=5988K(1%) resident=8720K(1%) swapped_out=4K(0%) unallocated=1.0G(99%)
    REGION TYPE                   
    VIRTUAL
    ===========                   
    =======
    CG shared images                  
    96K
    CoreServices                    
    1216K
    JS JIT generated code              
    8K
    JS JIT generated code (reserved) 
    1.0G   
    reserved VM address space (unallocated)
    MALLOC                          
    44.5M
    MALLOC guard page                 
    48K
    SQLite page cache                
    768K
    STACK GUARD                     
    56.0M
    Stack                           
    12.1M
    VM_ALLOCATE                       
    40K
    __DATA                          
    14.0M
    __IMAGE                          
    528K
    __LINKEDIT                      
    52.2M
    __TEXT                         
    121.8M
    __UNICODE                        
    544K
    mapped file                     
    27.2M
    shared memory                    
    308K
    ===========                   
    =======
    TOTAL                            
    1.3G
    TOTAL, minus reserved VM space 
    331.2M
    Model: iMac12,2, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 2.7 GHz, 4 GB, SMC 1.72f2
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.72.0-P2P
    Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • Just recently, I have encountered a problem with my iPhone. When someone calls, I can clearly hear the caller, but the caler canno hear me speak. Sometimes the problem goe off and works properly, b most of the times, I am facing this problem.

    Just recently, I have encountered a problem with my iPhone. When someone calls, I can clearly hear the caller, but the caller cannot hear me speak. Sometimes the problem is nt there and works properly, but most of the times, I am facing this problem. I have tried plugging in the earphone and speak, but its the same.... can anyone advse what may be the problem?

    iphone 4g have this problem
    first solution :change the flex micro
    second solution : ic audio must reballed
    also watch video
    http://www.youtube.com/watch?v=C-n1LJEK3PM
    http://www.youtube.com/watch?v=prSZ9yJnofY
    http://www.youtube.com/watch?v=tkEiR6OPhhc

Maybe you are looking for

  • How do I import AVI video with stereo audio (and keep it that way)?

    Today I just discovered that all the AVI video with stereo audio I've ever imported into a Premiere Pro CS6 project has been mysteriously converted to mono. And I can't find any import setting anywhere that enable me to change this. Here's the deal..

  • Creative Cloud Muse Sites Not Working HELP!!!!!

    I have a lot of sites in Adobe Business Catalyst and with in the last 45 min, any sites that are not uploaded through an FTP no longer work. When you google the web addresses google just says "Oops! Google Chrome could not connect to ____________". I

  • Mail queue filling up - Delivery Temporarily Suspended Connection Refused

    About 2 hours ago we stopped getting any email from our server. The mail queue is filling up. If I click on one of the messages in queue, it gives me a message of "delivery temporarily suspended: connect to 127.0.0.1[127.0.0.1]: connection refused".

  • 999 Accounting Line item limitation

    Hi, I am sure many of us have faced this situation in our projects that SAP has a limitation of 999 line items on the Accounting document. We cannot use in our project FI summarisation because of COPA reporting requirements . Is there any other way t

  • 11  ..very slow

    while working on 11 when we delete any application it take much time to get deleted .. any reason?