If statement doesn't work in JPanel

Hi everybody.
I'd like somebody tell me the reason why the "if" statement doesn't work in a Jpanel but works in a Japplet. I'm including the fragments of code that are relevant to the question.
Thanks in advance.
public class Applet_INVEN extends JApplet {
jTabbedPane jTabbedPane1 = new JTabbedPane();
Panel_1 p_1 = new Panel_1();
JLabel jLabel1 = new JLabel();
JTextField jTextField1 = new JTextField();
JButton jButton1 = new JButton();
void jButton1_actionPerformed(ActionEvent e) {
if (jTextField1.getText() != "0") //------Executes when the condition is true
jLabel1.setText("bingo");
public class Panel_1 extends JPanel {//------INSIDE a JPANEL
JTextField jTextField1 = new JTextField();
JTextField jTextField2 = new JTextField();
JTextField jTextField3 = new JTextField();
JButton jButton1 = new JButton();
void jButton1_actionPerformed(ActionEvent e) {
jTextField2.setText(jTextField1.getText()); //----Ever executes, of course!
if(jTextField1.getText() != "0") //----Never executes, even when
jTextField3.setText("ojo"); //----the condition is true!

You shouldn't use the != operator to test equality of Objects. Use Object.equals() instead.
if (jTextField1.getText() != "0")
should be
if ( ! jTextField1.getText().equals("0"))
or better:
if ( ! "0".equals(jTextField1.getText())) <-- avoids null pointer exception.

Similar Messages

  • In day 4, video # Creating "pages" with Flex states doesn't work

    i can't open video training http://www.adobe.com/devnet/flex/videotraining in day 4. it's name( Creating "pages" with Flex states ) doesn't work, it report error. supporter can look it and solve problem

    Hi,
         I'm also pacing the same issue. if click on the video in the Day 4 exercises. i don't know, what is the issue with that particular videos. and also pacing one more issue that design mode is not showing in my flash builder 4. if u have any ans plz help me out. PFA

  • "Merge into" statement doesn't work

    Hi Reader,
    It seems that in some of our installed machines merge into statement doesn't;t work. We've already experienced this issue on databases installed within virtual machines, but also found on other configurations sporadically.
    Using statement match a single/multiple records (according required logic)
    statement:
    MERGE INTO RNCATEGORIES CV
    USING dual ON
    ( CV.DESIGNCENTERID = in_DESIGNCENTERID
    AND CV.CADPACKAGENAME = in_CADPACKAGENAME
    WHEN MATCHED THEN
    UPDATE SET
    PKGCATEGORYID = in_PKGCATEGORYID,
         UserPackageType = in_UserPackageType
    WHEN NOT MATCHED THEN
    INSERT VALUES ( in_DESIGNCENTERID,
    in_CADPACKAGENAME, in_PKGCATEGORYID,in_UserPackageType );
    Table script:
    CREATE TABLE RNCATEGORIES
    DESIGNCENTERID RAW(16) NOT NULL,
    CADPACKAGENAME NVARCHAR2(64) NOT NULL,
    PKGCATEGORYID RAW(16),
    USERPACKAGETYPE NVARCHAR2(64)
    PK_RNCATEGORIES PRIMARY KEY (DESIGNCENTERID, CADPACKAGENAME)
    Thanks in advance,
    Amir

    After creating the table, your merge statement gives me
    SQL> MERGE INTO RNCATEGORIES CV
      2  USING dual ON
      3  ( CV.DESIGNCENTERID = in_DESIGNCENTERID
      4  AND CV.CADPACKAGENAME = in_CADPACKAGENAME
      5  )
      6  WHEN MATCHED THEN
      7  UPDATE SET
      8  PKGCATEGORYID = in_PKGCATEGORYID,
      9  UserPackageType = in_UserPackageType
    10  WHEN NOT MATCHED THEN
    11  INSERT VALUES ( in_DESIGNCENTERID,
    12  in_CADPACKAGENAME, in_PKGCATEGORYID,in_UserPackageType );
    AND CV.CADPACKAGENAME = in_CADPACKAGENAME
    ERROR at line 4:
    ORA-00904: "IN_CADPACKAGENAME": invalid identifierwhich is about what I expected. The USING clause requires a select statement, not just a table name. It looks to me like this merge statement is in some kind of stored procedure, and that the in_XXX are variables passed to that procedure. If this is correct, then your merge needs to be more like:
    MERGE INTO rncategories cv
    USING (SELECT in_designcenterid dcid, in_cadpackagename cpn,
                  in_pkgcategoryid pcid, in_userpackagetype upt
           FROM dual)
    ON (cv.designcenterid = dcid and
        cv.cadpackagename = cpn)
    WHEN MATCHED THEN
       UPDATE SET
       pkgcategoryid = pcid
       userpackagetype = upt
    WHEN NOT MATCHED THEN
       INSERT VALUES (dcid, cpn, pcid, upt);John

  • Property.state doesn't work

    Hallo everybody. I am using Flash Builder not since much time but i learned basilar things.. One of these things is that if i have a flex component and in my applications i have 2 states, state1 and state2, if i want to change a property (es. width) of that component in state1 and i wish it can be different in state2 i can write like this:
    width.state1
    width.state2
    This works always. Now, i just created my own component. The name of this component is "mioPannello":
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
         <![CDATA[
              public var rett_titolo_bottom:int;
              public var rett_centrale_top:int;
              public var rett_centrale_bottom:int;
              public var font_label:Number;
    ]]>
    </fx:Script>
    </s:Panel>
    As you can see, i just created my 4 properties which i will use in my own skin. The name of this skin is "mioPannello_skin":
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:s="library://ns.adobe.com/flex/spark" width="100%" height="100%" bottom="0" creationComplete="aCreazioneCompletata(event)">
        <s:states>
            <s:State name="normal" />
            <s:State name="disabled" />
        </s:states>
        <fx:Metadata>
            [HostComponent("componenti.mioPannello")]
        </fx:Metadata>
    <fx:Script>
    <![CDATA[
    import componenti.mioPannello;
    import mx.collections.ArrayList;
    import mx.events.FlexEvent;
    [Bindable]
    public var font_label:Number;
    public function aCreazioneCompletata(event:FlexEvent):void
         this.rett_titolo.bottom = hostComponent.rett_titolo_bottom;
         this.rett_centrale.top = hostComponent.rett_centrale_top;
         this.rett_centrale.bottom = hostComponent.rett_centrale_bottom;
         this.font_label = hostComponent.font_label;
    ]]>
    </fx:Script>
    <s:Rect id="rett_sfondo" height="90%" width="100%" bottom="0">
    <s:fill>
    <s:SolidColor color="#BDCCD4"/>
    </s:fill>
    </s:Rect>
    <s:Rect id="rett_centrale" height="100%" width="90%" horizontalCenter="0">
    <s:stroke>
    <s:SolidColorStroke caps="none" color="#FFFFFF" joints="miter" miterLimit="10" weight="1"/>
    </s:stroke>
        </s:Rect>
        <s:Rect id="rett_titolo" alpha="0.71" height="100%" width="80%" top="0" horizontalCenter="0">
        <s:fill>
        <s:SolidColor color="#E8EBF2"/>
        </s:fill>
        </s:Rect>
        <s:Label id="titleDisplay"
    top="5"
        color="#FFFFFF"
        fontWeight="bold"
        fontFamily="Myriad Pro" fontSize="{font_label}"
        horizontalCenter="0"/>    
    </s:SparkSkin>
    When i call my component in my application, i can set property values in this way:
    <componenti:mioPannello width="100%" height="100%" title="panel title" skinClass="skins.mioPannello_skin" rett_titolo_bottom="15" rett_centrale_bottom="10" rett_centrale_top="30" font_label="12"/>
    Everything works good if i have just 1 state, but if, in my application i have 2 states, state1 and state2, the code doesn't work. So, if i write:
    <componenti:mioPannello width="100%" height="100%" title="panel title" skinClass="skins.mioPannello_skin" rett_titolo_bottom.state2="5" rett_titolo_bottom="15" rett_centrale_bottom="10" rett_centrale_top="30" font_label="12"/>
    rett_titolo_bottom.state2="5" it should change in state2 (or not??) but it doesn't change... It takes always the value 15 as it is in main state.
    Why this thing happen??.. I though i just created a normal property... How can i change that property in each different state. I hope you understand my problem and can help me..
    Sry for bad english
    Thx for all
    Max   

    Ok, i solved my problem. The problem was that i was applying my properties in the CreationComplete event but now i changed it and i applied the new value through render Event and it works fine.
    Thx a lot CoreyRLucier
    Max

  • Why this statement doesn't work?

    I have two table job and job_status,I use Page Process try to insert records to job_status, but the select query doesn't work, it display all the job in job table didn't filtered out the job matching the query, do someone know why? Any suggestion will be appreciated!
    DECLARE
    BEGIN
    FOR x IN (
    SELECT
    JOB_SEQ,
    PRIMARY
    FROM JOB
    WHERE ((RUN_DATES like '%'||:P6_WDAY||'%')
    or (RUN_DATES like '%'||:P6_DD ||'%')
    or (RUN_DATES like ''|| 0 ||'')))
    LOOP
    INSERT INTO JOB_STATUS(JOB_SEQ, OPERATOR,RUN_DATE) VALUES
    (x.JOB_SEQ,x.PRIMARY,to_date(:P6_DATE,'YYYYMMDD'));
    END LOOP;
    END;

    ops wrong typed
    try
    DECLARE
    BEGIN
    FOR x IN (
    SELECT
    JOB_SEQ,
    PRIMARY
    FROM JOB WHERE
    ((RUN_DATES like CHR(39)||'%'||:P6_WDAY||'%'||CHR(39))
    or (RUN_DATES like CHR(39)||'%'||:P6_DD ||'%'||CHR(39))
    or (RUN_DATES like ''|| 0 ||'')))
    LOOP
    INSERT INTO JOB_STATUS(JOB_SEQ, OPERATOR,RUN_DATE) VALUES
    (x.JOB_SEQ,x.PRIMARY,to_date(:P6_DATE,'YYYYMMDD'));
    END LOOP;
    END;

  • Why Statement doesn't work?

    In my jsp page,I wrote:
    <%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    Connection conn=DriverManager.getConnection("jdbc:microsoft:sqlserver://CE800:1181;DatabaseName=supermarket;user=sa;Password=");
    Statement stmt=conn.CreateStatement("SELECT * FROM dic_ware_class");
    ResultSet rs=stmt.executeQuery();
    %>
    But tomcat report some exceptions:
    Error: 500
    Location: /myjsp/test.jsp
    Internal Servlet Error:
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\tomcat\work\localhost_8080%2Fmyjsp\_0002ftest_0002ejsptest_jsp_0.java:63: Ambiguous class: java.beans.Statement and java.sql.Statement
    Statement stmt=conn.createStatement("SELECT * FROM dic_ware_class");
    ^
    C:\tomcat\work\localhost_8080%2Fmyjsp\_0002ftest_0002ejsptest_jsp_0.java:63: Wrong number of arguments in method.
    Statement stmt=conn.createStatement("SELECT * FROM dic_ware_class");
    ^
    2 errors, 1 warning
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:282)
         at org.apache.jasper.servlet.JspServlet.doLoadJSP(JspServlet.java:612)
         at org.apache.jasper.servlet.JasperLoader12.loadJSP(JasperLoader12.java:146)
         at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:542)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:258)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:268)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:806)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread.run(Thread.java:536)
    If I use PreparedStatement,it works,who can tell me reason,thanks a lot.

    The select statement does not go into the createStatement(). it goes in the executeQuery(). Also you must be importing both the java.bean.* package and java.sql.* package. Since they both contain a Statement class, you are getting an ambigious answer. You need to prefix java.sql. to the statement class ex. java.sql.Statement stmt = ....

  • My Wifi doesn´t work. The Wifi icon on top menu bar states there is no hardware connected. How can I resolve this as previously Wifi connection worked perfectly. Is this something that to do with the computer hardware? Please advise.

    My Wifi doesn´t work. The Wifi icon on top menu bar states there is no hardware connected. How can I resolve this as previously Wifi connection worked perfectly. Is this something that to do with the computer hardware? Please advise.

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

  • Preview App Saved State Removal Doesn't Work

    I'm having trouble with my Preview App in Mavericks.  I evidently had too many windows opewn and it became unresponsive, so I had to use Force Quit.  Relaunching opened all the previous windows and the problem was repeated.  After searching the Communities, I learned that the Saved State folder for Preview should be deleted.  Then, I couldn't find the Saved State folder, and, after more time searching, I learned it's hidden in Library of the Go menu (Thanks a lot, Apple).  I trashed the Saved State folder for Preview, but nothing changed: It STILL opens up all the previous windows.  I can't even wrap my brain around how this is possible!
    The machine is a 2010 Mac Pro running Mavericks 10.9.1
    Any help would be appreciated.

    Richard Benson2 wrote:
    Edit: I should have said "Zoom to Fit doesn't work as expected"
    I was hoping to use Preview as a proper replacement for Acrobat but this is really aggravating. The zoom to fit only seems to use the horizontal Preview document space to determine the viewed file's fitment. Which of course is useless if you want to view the whole file in totality at the maximum space available. I simply want 100% of the viewable document area to maximize to the given space, not just 100% horizontal. As it stands there doesn't seem to be a way to do that other than using the scale field and just trial and error the percentage until you get the result...
    Any tips, tricks, workarounds?
    Message was edited by: Richard Benson2 for clarity
    I have had the same issue for over a year, and it's very aggravating, as I used to use it all the time, and still need to, but it just won't work. It will work if an image is too large, but not when it's too small, and it take multiple "zoom ins", and then you can't get it to fit right! I don't know Apple hasn't fixed this key flaw.... No OS update yet, has fixed it.

  • I reinstalled acrobat 8 on my computer but when I try to print to a pdf it states that the program isn't activated.  I tried to install and reinstall it but it still doesn't work.

    I reinstalled acrobat 8 on my computer but when I try to print to a pdf it states that the program isn't activated.  I tried to install and reinstall it but it still doesn't work.  It shows that it is activated.  I tried to deactivate and reactivate but that doesn't help either.  Everything else seems to work.

    Hi tspcat,
    What operating system are you using, and what version? You may be running into a compatibility issue between your older version of Acrobat and the OS that you're running.
    Please let us know a bit more about your setup, so we can get to the bottom of this printing issue.
    Thanks,
    Sara

  • Itunes states "ipod detected but could not be identified properly" when I plug in my new nano. tried uninstalling/reinstalling itunes 6 times - get pop-up "itunes helper error" with abort, retry, ignore options. retry doesn't work

    I am trying to connect my new nano to my iTunes account. I keep getting msg "ipod detected but not identified properly. disconnect and reconnect. if problem persists uninstall/reinstall iTunes". I've uninstalled/ reinstalled iTunes 6 times but keep getting the same msg.
    when installing iTunes I get a pop-up "iTunes helper error" check access. with options to abort, retry, ignore. retry doesn't work. ignore installs iTunes but it doesn't recognize my nano. abort shuts down the download.
    how do I fix these problems??

    Hello, KenaiK9.  
    Thank you for visiting Apple Support Communites.  
    I see you are receiving an error and have processed some troubleshooting steps with the issue persisting.  There are just a couple more in the article below that covers this specific error.  
    iPod nano: Error message saying that iPod could not be identified properly
    Cheers, 
    Jason H.  

  • I have a 2.2 GHz Intel Core i7 macbook pro that has lion installed when I recieved it, according to the support pages AHT is supposed to work over the internet if it wasn't installed, Mine wasn't and it doesn't work. Where can I download it from?

    I Have a 2.2 GHz Intel Core i7 macbook pro, I recieved it with OSx 7.2 lion installed, I need to us AHT (apple hardware test) according to the support page that I copy here
    Additional Information
    Apple Hardware Test is included on the DVDs that are shipped with some Macintosh computers. If the copy on your hard drive becomes unavailable, use the DVDs to run Apple Hardware Test.
    For Intel-based Apple computers that shipped with Mac OS X v10.5.4  or earlier, Apple Hardware Test is located on the Mac OS X Install Disc 1  and should be included with your computer.
    For Apple computers that shipped with Mac OS X v10.5.5 to 10.6.7, Apple Hardware Test is located on the Applications Install  Disc 2 and should be included with your computer.
    For some Apple computers that shipped with OS X Lion, if Apple Hardware Test cannot be found on the hard drive, an Internet-based version starts up instead.
    This doesn't work as the additional information statement says it should above.  Could someone at apple give me an idea of where to get it or what the "REAL" solution is, since it doesn't work on an internet version which was confirmed today at the Genius Bar in the Apple store.
    Please help me

    chrisfrommarion wrote:
    Thanks, while it worked on yours it doesn't work on mine, any other ideas?
    Are you holding down the "d" key, all by itself, just after the system shuts down for a restart?
    And how long did you hold it down?
    I held mine down for about 40-50 seconds. Then I lookat at my routers WAN light and it was flickering so I let up on the d key.
    If that does not work then maybe there is something wrong with your MBP. Is that the reason you want to run this test, something isn't right with your unit?

  • I have recently found a pop up box telling me that 'Safari quit unexpectedly', and askes me to either report, re-open or ignore. However when I quit on re-open it doesn't work. I just get the same pop up box appearing. Has anyone any ideas please?

    Sorry - I meant to say: 'However when I click on re-open it doesn't work'.
    This problem has only occurred within the last week or so, since I have started to run my Mac on Safari OX 10 Yosemite. I wonder if anyone else has had similar problems and can suggest how I rectify it?
    I am now using Firefox to get on line but would like to know what has gone wrong with Safari.
    Many thanks,
    Clare.

    I cannot use mine at all! I am having to use Firefox as well, i continue to get this and have no idea what to do???
    Process:          
    Safari [786]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [786]
    User ID:          
    501
    Date/Time:        
    2014-12-27 12:02:59.114 -0600
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    AED39F4B-8E1B-0B58-D4A3-96C28B329DEE
    Time Awake Since Boot: 2300 seconds
    Crashed Thread:   
    15
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    0000000101bb0000-0000000101bb1000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff8ec12a7e __getattrlist + 10
    1   com.apple.CoreServicesInternal    0x00007fff94ba674f prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227
    2   com.apple.CoreServicesInternal    0x00007fff94ba40ea _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 211
    3   com.apple.CoreFoundation
    0x00007fff8b13904b CFURLCopyResourcePropertyForKey + 123
    4   com.apple.CoreFoundation
    0x00007fff8b140f3e -[NSURL getResourceValue:forKey:error:] + 190
    5   com.apple.AppKit        
    0x00007fff8a21e34b +[NSImageRep _imageRepsWithContentsOfURL:expandImageContentNow:giveUpOnNetworkURLsWithoutGoo dExtensions:] + 142
    6   com.apple.AppKit        
    0x00007fff8a21e261 __51-[NSImageURLReferencingRepProvider representations]_block_invoke + 55
    7   com.apple.Foundation    
    0x00007fff95d9a006 _NSFaultInObject + 32
    8   com.apple.AppKit        
    0x00007fff8a21e223 -[NSImageURLReferencingRepProvider representations] + 89
    9   com.apple.AppKit        
    0x00007fff8a1c3af2 __45-[NSImage _usingRepresentationsPerformBlock:]_block_invoke + 47
    10  com.apple.AppKit        
    0x00007fff8a1c3a8c -[NSImage _usingRepresentationsPerformBlock:] + 91
    11  com.apple.AppKit        
    0x00007fff8a21e0fc __15-[NSImage size]_block_invoke + 380
    12  com.apple.AppKit        
    0x00007fff8a212dc7 -[NSImage size] + 137
    13  com.apple.AppKit        
    0x00007fff8a2ce62f -[NSImageCell _cellSizeAccountingForImageInControl:] + 92
    14  com.apple.AppKit        
    0x00007fff8a2ce582 -[NSImageView intrinsicContentSize] + 95
    15  com.apple.AppKit        
    0x00007fff8a26ff28 -[NSView(NSConstraintBasedLayout) _generateContentSizeConstraints] + 50
    16  com.apple.AppKit        
    0x00007fff8a26fb04 -[NSView(NSConstraintBasedLayout) _updateContentSizeConstraints] + 433
    17  com.apple.AppKit        
    0x00007fff8a26f060 -[NSView updateConstraints] + 80
    18  com.apple.AppKit        
    0x00007fff8a26ee38 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 664
    19  com.apple.AppKit        
    0x00007fff8a26ed70 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 464
    20  com.apple.AppKit        
    0x00007fff8a285f94 __82-[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:]_block _invoke + 277
    21  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    22  com.apple.AppKit        
    0x00007fff8a26ec86 -[NSView _updateConstraintsForSubtreeIfNeededCollectingViewsWithInvalidBaselines:] + 230
    23  com.apple.AppKit        
    0x00007fff8a26ead6 __45-[NSView updateConstraintsForSubtreeIfNeeded]_block_invoke + 49
    24  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    25  com.apple.AppKit        
    0x00007fff8a1f27ea -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    26  com.apple.AppKit        
    0x00007fff8a26ea9e -[NSView updateConstraintsForSubtreeIfNeeded] + 88
    27  com.apple.AppKit        
    0x00007fff8a2ce4b8 __62-[NSWindow(NSConstraintBasedLayout) updateConstraintsIfNeeded]_block_invoke + 136
    28  com.apple.Foundation    
    0x00007fff95dd24ae -[NSISEngine withBehaviors:performModifications:] + 155
    29  com.apple.AppKit        
    0x00007fff8a1f27ea -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    30  com.apple.AppKit        
    0x00007fff8a2ce3dc -[NSWindow(NSConstraintBasedLayout) updateConstraintsIfNeeded] + 208
    31  com.apple.AppKit        
    0x00007fff8a26e696 -[NSView layoutSubtreeIfNeeded] + 155
    32  com.apple.AppKit        
    0x00007fff8a4d2f45 -[NSAlert buildAlertStyle:title:formattedMsg:first:second:third:oldStyle:] + 9397
    33  com.apple.AppKit        
    0x00007fff8a4d0a45 -[NSAlert layout] + 357
    34  com.apple.AppKit        
    0x00007fff8a4decf1 -[NSAlert runModal] + 46
    35  com.apple.AppKit        
    0x00007fff8a1e165d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1037
    36  com.apple.AppKit        
    0x00007fff8a1e120e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    37  com.apple.AppKit        
    0x00007fff8a1e11ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    38  com.apple.AppKit        
    0x00007fff8a1e0e9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    39  com.apple.AppKit        
    0x00007fff8a1e0c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    40  com.apple.AppKit        
    0x00007fff8a1e06b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    41  com.apple.Foundation    
    0x00007fff95da2458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    42  com.apple.Foundation    
    0x00007fff95da22c9 _NSAppleEventManagerGenericHandler + 102
    43  com.apple.AE            
    0x00007fff8c13b99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    44  com.apple.AE            
    0x00007fff8c13b719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    45  com.apple.AE            
    0x00007fff8c13b623 aeProcessAppleEvent + 295
    46  com.apple.HIToolbox     
    0x00007fff8979f37e AEProcessAppleEvent + 56
    47  com.apple.AppKit        
    0x00007fff8a1dcd76 _DPSNextEvent + 2665
    48  com.apple.AppKit        
    0x00007fff8a1dbe80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    49  com.apple.Safari.framework  
    0x0000000101c2fad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    50  com.apple.AppKit        
    0x00007fff8a1cfe23 -[NSApplication run] + 594
    51  com.apple.AppKit        
    0x00007fff8a1bb2d4 NSApplicationMain + 1832
    52  libdyld.dylib           
    0x00007fff922305c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff8ec1422e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff955a9a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 7:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff8ec13132 __psynch_cvwait + 10
    1   com.apple.WebCore       
    0x00000001037dd88b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore       
    0x00000001037da9d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore
    0x000000010299ca9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff8ec0e52e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8ec0d69f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff9468fd63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff9468fc96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff8ec0e52e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8ec0d69f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff8b14eb14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff8b14dfdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff8b14d838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff90ecad20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff95de8b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff8ec133f6 __select + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd092fc _pthread_body + 131
    2   libsystem_pthread.dylib 
    0x00007fff8dd09279 _pthread_start + 176
    3   libsystem_pthread.dylib 
    0x00007fff8dd074b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff8ec13946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8dd074a1 start_wqthread + 13
    Thread 14:
    Thread 15 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff8dd07695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff98093b78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff9808c620 fprintf + 186
    3   ???                     
    0x000000010ac515dc 0 + 4475655644
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7b4f11d8  rcx: 0x00007fff7b4f11f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff7b4f11f0  rsi: 0x00007fff8dd07b14  rbp: 0x000000010ac4de30  rsp: 0x000000010ac4ddb0
       r8: 0x000000010abb4000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff7b4f06b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff8dd07695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    6
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x101bb0000 -   
    0x101bb0fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x101bb9000 -   
    0x1024f2ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x102992000 -   
    0x102ea5ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x10300b000 -   
    0x1032bffff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x10359b000 -   
    0x10359bfff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x1035a1000 -   
    0x1036ddffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x1037d6000 -   
    0x10477bff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x10a7dc000 -   
    0x10a7dcff5 +cl_kernels (???) <2B02B8D9-91CE-461E-9862-EE769DF8E174> cl_kernels
    0x10a7de000 -   
    0x10a8c4fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x10a98b000 -   
    0x10a98bfef +cl_kernels (???) <7A55F558-91D3-494C-812B-D4C6768AC6AD> cl_kernels
    0x7fff69b06000 -
    0x7fff69b3c837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff88fc1000 -
    0x7fff88fc2ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x7fff88fc3000 -
    0x7fff88feefff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff88ff8000 -
    0x7fff89049ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8904a000 -
    0x7fff893b5fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff893d5000 -
    0x7fff893d8fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8947c000 -
    0x7fff89763ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff89764000 -
    0x7fff89a66fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff89a7f000 -
    0x7fff89aaffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff89ab0000 -
    0x7fff89ac3ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff89ac4000 -
    0x7fff89b3afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff89b3b000 -
    0x7fff89f6bfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff89f6c000 -
    0x7fff89f8fff7  com.apple.framework.familycontrols (4.1 - 410) <41499068-0AB2-38CB-BE6A-F0DD0F06AB52> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff89f90000 -
    0x7fff89fb8fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x7fff89fb9000 -
    0x7fff8a19e267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff8a19f000 -
    0x7fff8a1a3fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
    0x7fff8a1a4000 -
    0x7fff8a1aaff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff8a1b8000 -
    0x7fff8acf9fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8acfa000 -
    0x7fff8ad8bfff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff8b023000 -
    0x7fff8b06dfff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff8b06e000 -
    0x7fff8b0bafff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8b0dc000 -
    0x7fff8b472fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8b473000 -
    0x7fff8b48cff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8b48d000 -
    0x7fff8b4fcfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8b4fd000 -
    0x7fff8b51bff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff8b51c000 -
    0x7fff8b5c4ff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff8b5ea000 -
    0x7fff8b606ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8b607000 -
    0x7fff8b65bfff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff8b65f000 -
    0x7fff8b667ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff8b673000 -
    0x7fff8b673fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8b674000 -
    0x7fff8b68fff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x7fff8b6c3000 -
    0x7fff8b6ceff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8b6cf000 -
    0x7fff8b6d0ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8b6d1000 -
    0x7fff8b794ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8b795000 -
    0x7fff8b7c0ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
    0x7fff8b7c1000 -
    0x7fff8b855fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8b88f000 -
    0x7fff8b894ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x7fff8b895000 -
    0x7fff8b8a4fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8c12e000 -
    0x7fff8c18dff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8c18e000 -
    0x7fff8c18efff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8c18f000 -
    0x7fff8c192ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8c1ad000 -
    0x7fff8c2ddfff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8c2de000 -
    0x7fff8c319fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8c31a000 -
    0x7fff8c35bfff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8c3a7000 -
    0x7fff8c462ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8c463000 -
    0x7fff8c471ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff8c5d7000 -
    0x7fff8c5dafff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8c5e8000 -
    0x7fff8c631ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8c635000 -
    0x7fff8c63cfff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
    0x7fff8c660000 -
    0x7fff8c69bfff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c69c000 -
    0x7fff8c6b6ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8c6b7000 -
    0x7fff8c704ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff8c70d000 -
    0x7fff8c712ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff8c713000 -
    0x7fff8c724fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff8c793000 -
    0x7fff8c828ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8c932000 -
    0x7fff8c963fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
    0x7fff8c971000 -
    0x7fff8c9e5fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8c9e6000 -
    0x7fff8ca26fff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff8ca27000 -
    0x7fff8ca2ffe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7fff8ca7b000 -
    0x7fff8ca82fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff8ca83000 -
    0x7fff8ca87fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8ca88000 -
    0x7fff8cab5fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8cab6000 -
    0x7fff8caeefff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff8caef000 -
    0x7fff8caf0fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8ccaf000 -
    0x7fff8ccd2fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8ccd3000 -
    0x7fff8cdc7ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8cf05000 -
    0x7fff8cf0cfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8cf5d000 -
    0x7fff8cf65fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff8cf80000 -
    0x7fff8cf96ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff8cf97000 -
    0x7fff8d038ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff8d039000 -
    0x7fff8d03fff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8d040000 -
    0x7fff8d0d1fff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
    0x7fff8d113000 -
    0x7fff8d11bfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff8d11c000 -
    0x7fff8d136ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff8d137000 -
    0x7fff8d137ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff8d1bf000 -
    0x7fff8d3ffff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8d400000 -
    0x7fff8d517fe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8d518000 -
    0x7fff8d520ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x7fff8d521000 -
    0x7fff8d535ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8d536000 -
    0x7fff8d543fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8d544000 -
    0x7fff8d627fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8d693000 -
    0x7fff8d71cfff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8d71d000 -
    0x7fff8daf4fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8daf5000 -
    0x7fff8daf7fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
    0x7fff8daf8000 -
    0x7fff8dc3afff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x7fff8dc3b000 -
    0x7fff8dc3bfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8dc3c000 -
    0x7fff8dc45fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8dc46000 -
    0x7fff8dc6bff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8dced000 -
    0x7fff8dcf1ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8dcf2000 -
    0x7fff8dcfeff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8dd06000 -
    0x7fff8dd0ffff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8dd10000 -
    0x7fff8e567ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e568000 -
    0x7fff8e5b4ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x7fff8e5b5000 -
    0x7fff8e610fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8e611000 -
    0x7fff8e641ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8e642000 -
    0x7fff8e688ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8e689000 -
    0x7fff8e6dcffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff8e6dd000 -
    0x7fff8ebc9fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8ebca000 -
    0x7fff8ebfcff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8ebfd000 -
    0x7fff8ec1afff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8ec1b000 -
    0x7fff8ec3cfff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8ec3d000 -
    0x7fff8eccbff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8eccc000 -
    0x7fff8ecfcffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8ecfd000 -
    0x7fff8ed6eff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8ed6f000 -
    0x7fff8edc9ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff8edca000 -
    0x7fff8edccfff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8edcd000 -
    0x7fff8ee0ffff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
    0x7fff8ee10000 -
    0x7fff8ee49fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff8ee4a000 -
    0x7fff8ee50fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8ee66000 -
    0x7fff8ee6efff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
    0x7fff8ef12000 -
    0x7fff8ef41fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8f169000 -
    0x7fff8f415fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8f416000 -
    0x7fff8f508ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff8f509000 -
    0x7fff8f916ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8f917000 -
    0x7fff8f98fff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8f990000 -
    0x7fff8f99aff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8f99b000 -
    0x7fff8f9b5ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff8f9b6000 -
    0x7fff8f9c0ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8f9c1000 -
    0x7fff8fc3bfff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8fc3c000 -
    0x7fff8fc43ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8fc44000 -
    0x7fff8fc4cff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff8fc4d000 -
    0x7fff8fc58ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff8fc59000 -
    0x7fff8fceaff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
    0x7fff8fceb000 -
    0x7fff8fd19ff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff8fd1a000 -
    0x7fff8fd1eff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8fd1f000 -
    0x7fff8fe12ff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8fe20000 -
    0x7fff8fe21fff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
    0x7fff8fe22000 -
    0x7fff8fe33ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff8fe34000 -
    0x7fff8fe3fff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
    0x7fff8fee8000 -
    0x7fff8fefdfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff8fefe000 -
    0x7fff90016ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff90017000 -
    0x7fff90019ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9001a000 -
    0x7fff90294ff3  com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff902f0000 -
    0x7fff90302ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
    0x7fff90303000 -
    0x7fff90309fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
    0x7fff9030a000 -
    0x7fff90336fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x7fff9036b000 -
    0x7fff90378ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
    0x7fff90656000 -
    0x7fff90658fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff90664000 -
    0x7fff906aaff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff906ab000 -
    0x7fff906b3ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff90771000 -
    0x7fff907a8ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff907a9000 -
    0x7fff908e6fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff908e7000 -
    0x7fff908f5ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff908f6000 -
    0x7fff90912fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff90913000 -
    0x7fff909b1fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff909b2000 -
    0x7fff90a01ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff90a02000 -
    0x7fff90d35ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
    0x7fff90d36000 -
    0x7fff90db7ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff90db8000 -
    0x7fff90dc1ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff90dc2000 -
    0x7fff90e29ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff90e2a000 -
    0x7fff9102dff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff9102e000 -
    0x7fff91040fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
    0x7fff91089000 -
    0x7fff9126eff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
    0x7fff9126f000 -
    0x7fff91295ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff91426000 -
    0x7fff9142bfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff91453000 -
    0x7fff91469ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff9146a000 -
    0x7fff914eeff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge

  • If statement doesn't affect for loop

    I wrote a function within a function to control 2 Tweens.
    (the 2nd one isnt in the function, it's called)
    My problem is... is that it works for the first time.. the button is hovered over and all the other buttons show themselves and then disappear again, except the one you're over. Then I do it a 2nd time and it doesn't work. why is it only working right one time? and why isn't the if statement I put in the local function affecting the for loop? The 2nd time it takes the button you're hovering over with it and fades it out. (even though the if statement registers according to trace)
    this is the code
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var shortInst:Array = [btn1, btn2, btn3, exit];
    var objTween:Tween;
    function mouseOff(e:Event):void {
         if (e.currentTarget.alpha !== 0) {
              objTween = new Tween(e.currentTarget, "alpha", None.easeOut, 1, 0, 0.25, true);
    var eTimer:Timer = new Timer(3000, 1); //timer that only runs once (in ms)
    function navFX(e:Event):void {
         for (var i:Number = 0; i < shortInst.length; i++) {
              objTween = new Tween(shortInst[i], "alpha", None.easeOut, 0, 1, 0.25, true);
              eTimer.addEventListener(TimerEvent.TIMER, local);
              eTimer.start();
              function local(t:TimerEvent):void {
                   trace("e.target in local func: " + e.target);
                   for (var i:Number = 0; i < shortInst.length; i++) {
                        if (shortInst[i] !== e.target) {
                        shortInst[i].dispatchEvent(new Event(MouseEvent.MOUSE_OUT));

    is this what you want?
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var shortInst:Array = [btn1,btn2,btn3,exit];
    var objTween:Tween;
    function mouseOff(e:Event):void
    if (e.currentTarget.alpha !== 0)
      objTween = new Tween(e.currentTarget,"alpha",None.easeOut,1,0,0.25,true);
    function navFX(e:Event):void
    var eTimer:Timer = new Timer(3000,1); // <- moved that line here
    for (var i:Number = 0; i < shortInst.length; i++)
      objTween = new Tween(shortInst[i],"alpha",None.easeOut,0,1,0.25,true);
    eTimer.addEventListener(TimerEvent.TIMER, local);
    eTimer.start();
    function local(t:TimerEvent):void
      trace("e.target in local func: " + e.target);
      for (var i:Number = 0; i < shortInst.length; i++)
       if (shortInst[i] !== e.target)
        shortInst[i].dispatchEvent(new Event(MouseEvent.MOUSE_OUT));
    for (var i:Number = 0; i < shortInst.length; i++)
    shortInst[i].alpha = 0;
    shortInst[i].addEventListener(MouseEvent.MOUSE_OVER, navFX);
    shortInst[i].addEventListener(MouseEvent.MOUSE_OUT, mouseOff);

  • My new iPhone 4 doesn't work at all

    You are definitely not alone with your issues. I'm on my second iPhone 4 unit, and am still having the same problems. I've had proximity sensor insanity, battery draining after 8 hours of stand-by (NO USE, just sleeping) to the point that my phone goes into a coma and has to be plugged in to be revived, the grip of death dropping calls....
    But the single most irritating and infuriating problem is the signal strength/reception fluctuation. I share a house with two iPhone 3Gs users, and I had an original silverback iphone until July 2010. They all work fantastically well with no issues when I'm at home (where I am just about 24/7, since I work from home). *_My new iPhone 4 doesn't work at all.*_. Signal strength is all over the place. I did a test where I sat watching the bars showing signal strength for five minutes. In that time, I saw it switch from E (edge?) with full bars to 3G with full bars to 3G with 1 bar to 2 bars to 4 bars to 1 bar to "Searching." Then back to 3G, with degradation of bars from 3 to none, then E network appears again, this time with full strength. This all with the phone sitting on a table, not being touched by human hands.
    It seems that my iPhone is constantly switching actual physical networks, and as a result signal strength is all over the place from one 30 second period of time to the next. This drains the battery like crazy, and means that all incoming calls go to voicemail--usually without my phone ever ringing.
    The 3G phones in my house work great. The 1st G iPhone I have had since the week it came out worked great (though its battery doesn't hold much of a charge anymore, after three years). On my new IP4, games are awesome. The videos and photos are amazingly clear and high quality, and editing on the phone is out of sight. iPhone Apps rule. MobileMe syncs my contacts quickly and easy. The only thing I love more than the iP4 features is my iPad--it rocks.
    Everything works on my IP4 at home BUT THE ACTUAL TELEPHONE FUNCTIONS. This is unacceptable. In late August, after two weeks in which I had 4 minutes of phone use, the nice folks at the Apple store switched me to a new phone, no questions asked. The phone worked so much better, I could send texts and place calls most of the time (this was now the first part of September)...except that now that I was using my IP4 to make phone calls, I started having a problem with the proximity sensor during those calls. I'd be talking and my cheek would mute the phone, turn on speaker, open contacts and edit info (with gobbledygook), and of course, hang up on people.
    So around Sept. 18 I was told by Apple phone support to update to iOS 4.2, restore as new, and do two complete power up and drain down cycles. This would fix the proximity sensor and any other issues.
    Well, I would love to see if iOS 4.2 actually did fix the PS, but I can't get the signal strength to stabilize long enough to have an actual phone conversation. I'm back to watching the signal strength go up and down at random (with me touching/holding it carefully to avoid grip of death, and also when I leave phone on the table with screen lock off --no touching). It is back to switching between E network and 3G and varying strengths of wi-fi from my home network. This eats up battery from 100% to low enough to turn off in under 10 hours of standby (usually 6-7). Essentially, my IP4 is back to being unusable as a phone.
    So I did another long, involved call to Apple tech support on 9/18. They tell me that I have to turn off wi-fi, turn off 3G, turn off push/fetch and notifications, shut all apps (no multi-tasking) and do everything but switch my phone to airplane mode--and see if the battery holds up for 24 hours in standby. If that didn't work, I should restore from new, but not load any contacts or network or data or anything--just leave it as it would be out of the box new.
    As a test, I turned everything off as advised: 3G, wi-fi, push, etc. Now my battery life is back to normal, where I can have the IP4 on stand-by for up to two full days before needing a recharge. Fabulous. BUT IT'S NOT A SMART PHONE if I have to turn off 3G, turn off wireless, and not use email push and so forth.
    I'm so frustrated I could scream. I'm quickly coming to the conclusion that there is a significant flaw in the new iPhone. Or perhaps it is just an issue for iPhone 4 users in areas where the signal strength is marginal, or where there are two types of overlapping network coverage (E and 3G in my case). I know that the networks themselves are in good condition--though I'm in a semi-rural area, the state capital is 4 miles away, and I know they have a new tower and good coverage for the politicians and power brokers around town. The phone coverage area I live in has Edge network in the south part of the network area and 3G in the north part, which is the state capital. I'm right in between. Could this be the problem? AT&T says no, it's Apple's fault.
    Message was edited by: HighSierra

    So what to do besides complain? Troubleshoot?
    I just wonder if all of us who have had chronic signal strength and "Searching for network" issues that totally drain the battery might have something in common, despite being all over the world? I'm using wi-fi 95% of the time, and live in a semi-rural area with overlapping networks run by same carrier. Apple folks hinted that maybe in my area the network usage is nearing capacity (resulting in getting kicked off of 3G and down to E as new calls are placed that strain capacity). They also hinted there could be interference from mountains or other objects. But here's the thing--3G phones work fine, and my IP4 works fine when I'm away from home, usually in the capital city on strong 3G network. (When I say "works fine I mean the signal is good and calls go through, I haven't tested battery drain away from home yet).
    I have to conclude that the problem is the IP4 itself--something about the hardware or the software (namely, the way it connects to the phone network) is horribly wrong. Other folks who live in urban areas or with strong networks that (likely) aren't over-utilized don't seem to have this issue. After reading through these pages, it also seems the wi-fi may be a major culprit in draining the battery and in varying signal strength (this is from Apple phone support, which said that varying signal strength and the constant pinging off the home wi-fi is creating a "power struggle" and keeping the phone constantly looking for the best connection option). Mind you, 3G iphones on the same home network have no problems whatsoever.
    So while I'm not a technical expert, it seems like the problem HAS to lie in the differences in the way the IP4 connects to the cellular and/or wi-fi network. And since the connection/signal strength problem was "resolved" on my replacement phone, but then "broken" again by the software update of iOS 4.2, I'm leaning toward this being a software issue. I've offered to help Apple troubleshoot, and I'm trying to be patient--because the IP4 is a work of art and I've never had an issue with an Apple product before. But all they want me to do is restore, restore, reload, restore, and then drive 1 hour to the nearest Apple store (in Reno, NV) and get a new phone...and start the whole process over again. I don't have time for this, I need my phone back.
    I'm this close to trading in my beautiful but flawed IP4 for a 3G. Maybe I should just get a new battery for my original iPhone from 2007?
    I understand that Apple can't test for every possible variable of use all over the world, but they don't even seem to acknowledge that they have a problem with the IP4 that will not be resolved by replacing it with a new unit. They want me to believe it's a fluke, or it's just me...but I've been combing these threads and see a lot of people reporting the same issues I am--battery drain and wildly fluctuating signal strength issues, wi-fi problems, and dropped calls. Can't someone get on this? Because otherwise Apple is going to have to admit that their IP4 is not a good solution for people who live in areas of less than perfect signal strength or use wifi or whatever demonic combo I have in my home/work setting.
    Or people will have to do what I have done--if you who want the cool IP4 non-phone features, you will have to dumb down your IP4 in order to have it be even moderately useful as *a phone.* For $599 I expected better.
    My (temporary) workaround?
    To spare the battery:
    *Turn off wi-fi (which *****, because now I have to burn minutes when I'm at work using the email, downloads, safari, etc--and it's E network, so it's SLLOOOOOOOW)
    *turn off push and fetch, have mail get new messages manually
    *turn off data roaming
    To keep the signal somewhat stable (making it easier to complete calls and spare battery)
    *Turn off 3G (this leaves me on E network--fabulous, I had that with my 3 year old iPhone)
    *grip IP4 between two fingers placed at the top of the phone, away from death zone. Tough for us lefty phone users.
    *pray the free bumper will a) come soon and b) help. I'm not optimistic.
    To keep proximity sensor from going nuts and dropping calls, muting, turning on speaker etc:
    *use headset or bluetooth (unless you are also having one of the known bluetooth issues!)
    *keep phone pressed to one ear and don't move it a millimeter. Don't shift sides, don't hold phone with your shoulder, just keep it to one ear and talk fast).
    I'm about out of patience. I understand that lots of folks have and love their IP4s. I'd love to be one of those people. I'm open to suggestions and have spent many hours on phone with tech support, restoring my phone, reloading data and apps--there has to be a better way.
    Sorry for the thread-jacking, but someone from Apple has got to be following these threads--help us!
    null

  • What to do when Outlook AutoArchive doesn't work

    AutoArchive feature helps us manage the space in the mailboxes or on the e-mail server that were are using by automatically moving items to an archive location. These items can be Email messages, Calendar items, Tasks, Notes, Journal entries.
    However, sometimes some users may find that Outlook AutoArchive doesn’t work as expected, this can be frustrating. In this article I’ll introduce some steps to troubleshoot this issue, I hope it will be helpful to those who meet the issue.
    Always check the Default AutoArchive settings first
    When AutoArchive is not working properly, the first thing we should do to troubleshoot the issue, is to make sure the AutoArchive setting is correct.
    I’ll take Outlook 2013 for example, go to FILE tab -> Options -> Advanced -> AutoArchive -> AutoArchive Settings… button, we will see the AutoArchive window below:

    To make AutoArchive work, make sure the first checkbox has been selected and you have configured how frequently you want AutoArchive to run.

    If you select “Prompt before AutoArchive runs”, it will notify you before AutoArchive runs.

    If you want to delete expired items, select “Delete expired items (e-mail folders only)”.

    You should select “Archive or delete old items”, or only expired items will be deleted.

    Select “Show archive folder in folder list” to let the archive.pst appear in the folder list, which helps you find archived items easily.

    You can set the age of the items that you want to archive in the field of “Clean out items older than x”, the age is based on the last Modified date by default. I’ll introduce this later in this article.

    Then you need to decide whether to move old items to an archive .pst file, or permanently delete old items. Once you have your choice, you can apply these settings to all folders now and click OK to save the settings.
    AutoArchive doesn’t work on one specific folder?
    Apart from the default settings, each folder can be set with its own AutoArchive settings different from the global settings.
    Right click on the folder and select Properties -> AutoArchive tab.

    You can select “Do not archive items in this folder” if you want this folder to be an exception of AutoArchive.

    If you select “Archive items in this folder using the default settings”, you will archive items in this folder using the default settings as it states, and the “Default Archive settings” button below is referring to the same AutoArchive
    window as FILE -> Options -> Advanced -> AutoArchive -> AutoArchive Settings.

    If you want the AutoArchive settings for this folder to be different from the Default AutoArchive settings, select “Archive this folder using these settings”. The age of items can be set to a different one, you can even select a separate
    .pst file to archive items in this folder. After everything is decided, click OK to save the settings.
    Please note these settings are specific to each folder and are not applied to subfolders. Please configure the settings individually for each folder.
    Modify the ArchiveIgnoreLastModifiedTime registry value
    Outlook archive works based on the last modified date and time by default, if you
    reply, forward, move, edit, save, import an item, the modified date will change, this may cause the AutoArchive not to archive the item.
    If you want to let Outlook to archive items based on the received date, you need to set the ArchiveIgnoreLastModifiedTime registry value.
    Since serious problems might occur if you modify the registry incorrectly, please back up registry in Windows first:http://windows.microsoft.com/en-US/windows7/Back-up-the-registry
    To create the ArchiveIgnoreLastModifiedTime registry value, follow these steps:
    Press Win + R to start Run, type
    regedit in the Open box, and then click OK.
    Locate and then click the following registry subkey:
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences (Outlook 2010)
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences (Outlook 2013)
    On the Edit menu, point to New, click
    DWORD Value, type ArchiveIgnoreLastModifiedTime, and then press ENTER.
    Right-click ArchiveIgnoreLastModifiedTime, and then click
    Modify.
    In the Value data box, type 1, and then click
    OK.
    Exit Registry Editor and restart Outlook to make the registry take effect.
    Once the registry key is added, check if Outlook archives the items properly. We can try manually archiving:
    Go to FILE tab -> Info -> Cleanup Tools -> Archive, select the folders that you want to archive and archive criteria, click OK. Outlook should then archive the items based on the received date.
    The Archive .pst file
    As the Archive storage file, the .pst file may cause AutoArchive not working issue. If the .pst file is corrupted or too large, AutoArchive may not work as expected.
    Scanpst.exe is an Inbox repair tool to fix Outlook Data Files like .ost and .ost files, it can be used to fix a corrupted .pst file. To find Scanpst.exe, browse to the locations below:
    For Outlook 2013 on a 32-bit version of Windows:
    <disk drive>\Program Files\Microsoft Office 15\root\office15
    For Outlook 2013 on a 64-bit version of Windows:
    <disk drive>\Program Files(x86)\Microsoft Office 15\root\office15
    For Outlook 2010 on a 32-bit version of Windows:
    <disk drive>:\Program Files\Microsoft Office\Office14
    For Outlook 2010 on a 64-bit version of Windows:
    <disk drive>:\Program Files\Microsoft Office(x86)\Office14
    When the tool is opened, type the path and the file name of the .pst file or click Browse to locate the file by using the Windows file system, and then click Start.
    More details about the tool can be found in this kb below:
    How to repair your Outlook personal folder file (.pst)
    http://support.microsoft.com/kb/272227/en-us
    Another scenario is the .pst file is full. For Outlook 2003 and Outlook 2007 the default limit is 20GB and for Outlook 2010 and Outlook 2013 the limit is 50GB.
    You won’t be able to add items to the archive .pst file when the file reaches 19GB or 47.5GB, once the .pst file gets too large, I suggest you create a new .pst file to archive the items.
    One more thing to remember, don’t store the .pst file on the network share, which we always reminder our users of.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Consider this program that tests whether a number is
    prime.
    [attempt to divide by each integer from 2 to n-1]At risk of lowering the signal to noise ratio, I
    should point out that the algorithm given is just
    about the worst possible.
    I know that the point was to illustrate debugging
    and not good prime test algorithms, and I disagree
    with the correspondent who thought the post was
    condescending.
    Anyway, the java libraries have good prime testing
    methods based on advanced number theory research that the
    non-specialist is unlikely to know. Looking at the java
    libraries first is always a good idea.
    Even with the naive approach, dramatic improvements
    are possible.
    First, only try putative divisors up to the square root
    of the number. For 999997 this is about 1000 times faster.
    Next only try dividing by prime numbers. This is about
    7 times faster again. The snag, of course, is to find the
    prime numbers up to 1000, so there might not be much
    advantage unless you already have such a list. The sieve
    of Erastosthenes could be used. This involves 31 passes
    through an array of 1000 booleans and might allow an
    improvement in speed at the expense of space.
    Sorry if I've added too much noise :-)

Maybe you are looking for

  • [Patch 정보] TRACKING BUG FOR CUMULATIVE MLR#6 ON TOP OF BPEL PM 10.1.3.3.1

    최근에 출시된 BPEL PM 10.1.3.3.1의 통합패치입니다. 아래는 readme.txt에 포함된 patch list입니다. # WARNING: Failure to carefully read and understand these requirements may # result in your applying a patch that can cause your Oracle Server to # malfunction, including interru

  • Error 1316 and 1402 FAIL

    Am posting this to help save others from the Adobe and Microsoft near-disaster I just went through this morning. Unfortunately, I do not have a solution to these two error messages and, like many of you, am wondering why after years of trouble-free A

  • Adobe PDF direct open in internet explorer problem

    Hi all, I have a problem when I want do download a pdf byte stream created by Jasper Reports. I read the necessary information out of my formbean (Struts). Here's the code from the jsp: response.setContentType(runReportForm.getContentType()); String

  • How to create Location using tcode BBPMAININT

    Hi,     I wanted to create local plants in EBP/SRM. I was using tcode BBPMAININT to create Location but facing problem.     Can any one please list steps to follow to create local plant? Is there any other tcode we can use? Regards, SAP Guy.

  • Cannot set date& time and only computer and settings icons are showing

    I am having difficulty with my appletv(MC572LL/A). It will not set the time & date after it downloaded the last update. It just stalls saying "setting date and time". I have reset the system and even re-installed the latest update to the unit but get