The 'rewrite 1 core api class every day' Thread

as we all know, if you want something doing properly, you've gotta do it yourself
in light of this - I thought rewriting Javas entire core api (so it was done properly) would make quite a fun Thread :P
now, this being a Game Development forum - I thought a good place to start would be in a graphics oriented class that everyone will have used....
* @(#)DisplayMode.java     1.3 01/12/03
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
package java.awt;
public final class DisplayMode
    private Dimension size;
    private int bitDepth;
    private int refreshRate;
    public DisplayMode(int width, int height, int bitDepth, int refreshRate)
        this.size = new Dimension(width, height);
        this.bitDepth = bitDepth;
        this.refreshRate = refreshRate;
    public int getHeight()
        return size.height;
    public int getWidth()
        return size.width;
    public final static int BIT_DEPTH_MULTI = -1;
    public int getBitDepth()
        return bitDepth;
    public final static int REFRESH_RATE_UNKNOWN = 0;
    public int getRefreshRate()
        return refreshRate;
    public boolean equals(DisplayMode dm)
        return (getHeight() == dm.getHeight()
            && getWidth() == dm.getWidth()
            && getBitDepth() == dm.getBitDepth()
            && getRefreshRate() == dm.getRefreshRate());
    public int hashCode()
        return getWidth() + getHeight() + getBitDepth() * 7 + getRefreshRate() * 13;
//and the smaller, faster version...
package java.awt;
public final class DisplayMode
    public final int width;
    public final int height;
    public final int bitDepth;
    public final int refreshRate;
    public DisplayMode(int width, int height, int bitDepth, int refreshRate)
        this.width = width;
        this.height = height;
        this.bitDepth = bitDepth;
        this.refreshRate = refreshRate;
    public int getHeight()
        return height;
    public int getWidth()
        return width;
    public final static int BIT_DEPTH_MULTI = -1;
    public int getBitDepth()
        return bitDepth;
    public final static int REFRESH_RATE_UNKNOWN = 0;
    public int getRefreshRate()
        return refreshRate;
    public boolean equals(DisplayMode dm)
        return (height == dm.height
            && width == dm.width
            && bitDepth == dm.bitDepth
            && refreshRate == dm.refreshRate);
    public int hashCode()
        return width + height + bitDepth*7 + refreshRate*13;
}25th Jan 2003
abu,

m'kay...
i suppose you could do that...
anyway, i'm not good with this 'keyword' stuff and
all.../me wonders why you are posting here at all :D
but wouldn't final mean that you cannot change taht
variables value later...yup
of course you could say that you don't want to, and
that nobody needs to...well yeah... when classes are immutable (as the DisplayMode class is)
its values are, by definition, unchangable.
but why are ther these set methods then?there are no 'set' methods - DisplayMode is an immutable class.
>
this public thing i'm also not sure about.
in this class you may go public, but some classes user
should NOT have ability to set value of variable
directly.the only reason they are public, is because they are final (or should be atleast :P).
I wouldn't make them public otherwise.
Also, the only reason the getXXX methods exist, is it conform to the original spec. of the DisplayMode class. (and the 'standard' or having get methods for public attributes - Dimension,Rectangle,Point etc all do it)
maybe it would be better to stick with protected... ?as markuskidd has pointed out - this class is final, it cannot be extended, hence protected means nothing.
>
othervise it's a good idea.
if you get a bunch of classes that have been
perfected, then maybe sun will one day revise your
classes and replace these old crapier ones.gotta find 1 to do 2morrow now :P (though I doubt this will make any difference to Sun, they simply don't care about correct code)

Similar Messages

  • What's the power of spending more time every day in your IT career ?

    What's the power of spending more time every day in your IT career ?
    When you do the research to find the factors of the successful people, you'll find that they ALWAYS spent a lot of time every day in their businesses.
    The IT technologies change so fast and explode. The performance of IT people with 20 years experiences can be EASILY catched up by a IT people, maybe you, who has only 6 or 7 years or even less if you spend over 80 hours or even more every week on your job and on the latest technologies.
    The reasons are listed below:
    1. The out-of-date IT technologies is no use anymore. It's like the out-of-date IT books. The people with 20 years experience can't rely on his last experience any more.
    2. If you spend 80 hours every week, you'll absorb doubled the knowledge and experience than the people who spends only 40 hours every week. You may catch up with him who has 20 years experiences with your 10 years experiences. Not only this, most of your knowledge and experiences are newer and useful than his.
    3. Because you spend 80 hours, you have plenty of time to focus on your tasks. When the task comes in, you may finish your tasks many times faster than him and you may be the only person who still has the time to do any extra or urgent tasks. Because you have more time, you may prepare your next task to be ready to finish your next task even faster and you may absorb the latest IT technologies from a learner level to an expert level while other people is still doing his tasks. And due to your more spare time to learn the technologies all the time needed to do your task, you have much more knowledge needed to do your task and can finish your task much faster than others.
    According to my experience, if the comparison of the knowledge the worker has is 1 to 5, the real hours needed to finish a task may be 1 to 10. In IT field, if you know how to do it, you need minutes, but if you don't know how to do it, you need months to do the error-try or starting to learn it and do it. Please notice that the knowledge can be used for many times and the 1 to 5 and 1 to 10 comparisons will repeat again and again. Without spending more time on getting more knowledge, the comparison of 1 to 10 is still happening.
    4. Like trying to save the money, most of his 40 hours will be spent on his tasks. He may have only 5 hours left to learn new IT technologies. If you still need to spend the same time to finish your tasks like him, you still will have 45 hours to learn new technologies. You grow 9 times, 5 hours to 45 hours, faster than him. If you keep working and learning the new IT technologies 80 hours every week, you'll find that you'll need much less than 35 hours like him, you may have 60 or even more hours every week to do more tasks to get more experiences and to learn more latest technologies.
    ----- Someone asked me after read the above "You're absolutely right, but, what motivation can make people do that ?". I told him that "Don't ask me. Ask your boss" -----

    1) LabVIEW is a graphical based programming environment and
    LabWindows/CVI is a C based programming environment.  Both can be used
    for similar tasks.  Users familiar with C may prefer CVI.  LabVIEW is
    typically easier to learn if you are unfamiliar with both.
     2) 
    The Run-Time Engine is a separate component that can be installed to
    execute LabWindows/CVI programs and LabVIEW programs.  It is free of
    charge for both LabVIEW and LabWindows/CVI.
    3)  
    LabWindows/CVI does not convert any LabVIEW programs into C code. 
    LabVIEW programs are already compiled as you write them, so you won't
    need to convert them to C to use them.  You should see similar
    performance in similar LabVIEW and CVI code.
    Allen P.
    NI

  • My app seems to consume an enormous amount of API calls every day? Please help!

    I am tired and sad and frustrated here, and feel like a total moron. I am very sorry if my post is too long and not very well put together, but im beggin anyone with some experience here to please give me some advice.
    I am currently testing out a app I have created to let people add events, search for events, comment on and get notified about changes in events they have signed up for. I have used Azure Mobile Service for this, and it all seems to have worked well. This is
    mostly a learning app for me, since I am very much a noob.
    Now we are nearing launch of the app, and I have started to look at the numbers in Azure. I am on the free version right now, where 16k api calls a day are free (will move to priced tier on launch) - but the numbers look completely off the hook here!
    Every day 2-3 devices seem to run up 600-700 API calls. I do run the testing app hard, of course, but I guess some user might do that to.
    So - 4% of the daily free calls are consumed by 3 devices. That means 33 users could fill the quota, and the first paid tier only gives room for 300 users.
    Am I reading something wrong here? Is my app then not viable? I think it, even with my noobness, has a potentil to get a few thousand users. Does that mean Im gonna have to go to the top tier? Because I can not afford that.
    Over to the stack part of the question:
    I log the user in, I create the tables, and then when they hit search I do something like this:
    eventenItemList = await eventenTable.Take (200).Where (item => item.Dateandtimeend >= DateAndTimeIn).
    Where (item => item.Dateandtime <= DateAndTimeInEnd).
    Where (item => item.Fylke == fylke).
    Where (item => item.Pris <= MaksPris).ToListAsync ();
    I would expect that to be a single API-call, but it seems to run up tens of calls - just there? How is that possible?
    When the user is not in the app, I run a background service in Android that goes through a local db of events the user has created and then checks against the db for any changes to them. I do that like this:
    var table = db.Table<MyEvents> ();
    foreach (var e in table) {
    eventenItemList = await eventenTable.Where (item => item.Id == e.EventId).ToListAsync ();
    if (eventenItemList.Count == 0) {
    } else {
    //I here notify the user that something new is up - and what it is. Time changed, comments or whatever.
    Im guessing this is stupid of me, since it probably makes one API call for each loop here? But in the numbers it just seems to do 2 calls - like I expect it to.
    I am horribly lost here, people. I ran around a hundred random clicks around the app this evening - and racked up over 1500 api calls. I have been cold sweating since that. Any advice or info about how this api call-system works would be very much appreciated.

    Replying here in case someone else stumbles upon this post. This question was handled on SO:http://stackoverflow.com/questions/28685710/app-consumes-an-extreme-amount-of-api-calls-in-azure

  • Applet accidentally requests Java Core API classes from network

    Hi,
    starting an applet from a customers client machine (IE7, Windows XP, Standard JRE Installation of Java 1.6.0_26), I see in the tomcat access log entries signalizing that core java api classes are accidentally requested from the server:
    "GET /mywebapp/applet/java/lang/StringBuilder.class HTTP/1.1" 404 1156 0
    "GET /mywebapp/applet/javax/swing/JPanel.class HTTP/1.1" 404 1141 0
    "GET /mywebapp/applet/java/net/JarURLConnection.class HTTP/1.1" 404 1162 0
    "GET /mywebapp/applet/java/util/jar/JarEntry.class HTTP/1.1" 404 1153 0
    "GET /mywebapp/applet/java/util/jar/JarFile.class HTTP/1.1" 404 1150 0
    Although tomcat responses with HTTP 404, the applet works fine.
    Questions:
    1. For me, it looks like a security risk when the browser tries to load system classes from the network instead of using the local files from the jre dir, doesn't it?
    2. When starting the applet from my local machine (different network), no tomcat logfile entries are generated. An interesting fact is, that in the customer network, the applet "codebase" parameter in the HTML source gets modifed by a proxy server for whatever reason like the following:
    <applet codebase="http://mydomain.org/mywebapp/applet">
    becomes some kind of:
    <applet codebase="http://mydomain.org/mywebapp/applet/+sgrkjkrlgjklJKLjekrr4jewlkfjkerlkrelkjgregkjerlkgljkeglkjgjelkLKJLKefjei55435ijjkl=+">
    It seems that such codebases confuse the classloader. Any ideas about that?
    Thank you so much for any hints!

    <applet codebase="http://mydomain.org/mywebapp/applet">
    So you're loading individual .class files from the codebase? Don't do that, put them into a JAR and specify the JAR file(s) as the codebase. Much more efficient and it may solve this problem too.

  • How do i turn off the epicurean faxes that come through every day? they are wasting color ink.

    Every day I get a new fax from Epicurean and I didn't sign up for them. When I got on the printer to turn them off, it forced me here, where I had to give all my vital info. Please help me turn this garbage off. It's wasting my ink.

    Hello chrisludwa.
    In this link, you will find a number of links in the left side, one of them is "Managing Scheduled Delivery Apps". You'll find there information about how to cancel or finish the subscription to the app you want.
    Cheers!
    Wixma.
    I am an HP employee.
    Say thanks by clicking the Kudos star in the post.
    If my reply resolved your problem, please mark it as as Accepted Solution so that it can be found easier by other people.

  • Since I upgraded to Yosemite I see "iMac" followed by a long number under "Shared" in the navigatie column of Finder. Every day a new item is added with the same number, but followed by (1), (2) etc. My iMac has gotten very slooooow.

    Since I upgrade my iMac to Yosemite I see "iMac" followed by a long number under "Shared" in the navigatie column of the Finder. Every day a new item is added with the same name and number, but followed by (1), (2) etc.
    I use Time Machine.

    I suffered with numbers next to my unit's name in Shared Devices, Finder Pane.
    What I did was turned off my Time Capsule and whilst it was off I renamed my Macbook Pro in System Preferences / Shared.
    I turned on the Time Capsule and thus far, 12 hours later the change has stuck.
    There are many people suffering this bug, it's to do with ghosting on your network... Where your current machine see's itself as a ghost, hence you get a numbered mac...???

  • I have a four month old Iphone 4, from the Apple store, And seems like every day something stops working on it. Today I can't hear the person thats calling, but they hear me fine. Anyone know how to fix this?

    That is just the most recent problem. Other problems are the screen freezes all the time, and it won't scroll or do anything. Another is my keyboard lags as I type. another problem, is with some of my apps are constantly crashing. And It is not the apps itself per se, because my friends can be using the same app, and they are fine. Another would be emails not pushing. I will have some emails that show up, some will say I have new emails, but open to check and nothing there. Then other times i will have like 17 emails all show up at once, with some being sent days before. Another problem is my Wifi turns itself off all the time. Even when I am sitting less than 10 feet away from the router. And When I add new contacts, they are visible for a few days, then all the sudden they are nowhere to be found. Sometimes it will at least save the number in my contacts, and no name or other info. And other times it doesn't save anything. These are just a few of the many problems.
    Because I got this phone shortly after the new IOS7 update, I thought since I had read about problems others were having after updating, may have been the reason I was having some initial problems. But they have only grown to more problems, and not getting better.
    Has anyone else had these same problems? Do I just have a bad phone? If you have had any of these problems, were you able to get a fix and how? Any help would be greatly appreciated.
    Thanks

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • Where is the JavaDoc for depreciated API classes

    I have a v3.2.3 wizard that I'm trying to convert to v9.0.2.
    It uses the ClassPickerPanel class. I get
    Warning (175,21): constructor ClassPickerPanel ()
    in class oracle.jdeveloper.common.ClassPickerPanel has been deprecated.
    Where is the JDeveloper Javadoc (on-line, downloadable or in the Help system) so I can try to update the code (remove all the Borland JBuilder imports)?

    We're working on the answer.
    In the meanwhile, here is some code sample to address your need:
    ==================== file SampleTen.java ====
    package jdevextensions.sampleten;
    import oracle.ide.addin.Addin;
    import oracle.ide.addin.Context;
    import oracle.ide.addin.ContextMenuListener;
    import oracle.ide.addin.Controller;
    import oracle.ide.ContextMenu;
    import oracle.ide.Ide;
    import oracle.ide.IdeAction;
    import oracle.ide.MainWindow;
    import oracle.ide.model.Element;
    import oracle.jdeveloper.model.JProject;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JMenuItem;
    import javax.swing.JSeparator;
    import oracle.bali.ewt.dialog.JEWTDialog;
    import oracle.ide.dialogs.OnePageWizardDialogFactory;
    import oracle.ide.dialogs.WizardLauncher;
    import java.awt.Component;
    import javax.swing.JPanel;
    import oracle.ide.controls.tree.JMutableTreeNode;
    import oracle.ide.controls.tree.JTreeCellData;
    import java.util.Enumeration;
    import oracle.ide.util.TriStateBoolean;
    import oracle.ide.model.Document;
    import javax.swing.JOptionPane;
    public final class SampleTen
    implements Addin,
    Controller
    public static final int JPR_DIALOG_CMD_ID = Ide.newCmd("IdeMenu.JPR_DIALOG_CMD_ID");
    public SampleTen()
    oracle.jdeveloper.common.ClassPickerPanel cpp = new oracle.jdeveloper.common.ClassPickerPanel();
    public Controller supervisor()
    return null;
    public boolean handleEvent(IdeAction action, Context context)
    int cmdId = action.getCommandId();
    if (cmdId == JPR_DIALOG_CMD_ID)
    Element element = ((context==null)?null:context.getElement());
    if (element != null)
    if (element.getClass().getName().equals("oracle.jdeveloper.model.JProject"))
    // Get Current Project
    JProject jpr = (oracle.jdeveloper.model.JProject)Ide.getActiveProject();
    // Show Dialog
    TreePanel treePanel = new TreePanel(jpr);
    if (showTreeDialog(treePanel, null, "Project files"))
    // Do the job if OK has been clicked
    JMutableTreeNode root = treePanel.getRoot();
    Enumeration children = root.children(); // We have only one level here...
    String mess = "";
    while (children.hasMoreElements())
    JMutableTreeNode jmtn = (JMutableTreeNode)children.nextElement();
    JTreeCellData data = jmtn.getModel();
    TriStateBoolean selected = data.getCheckBoxState();
    if (selected == TriStateBoolean.TRUE)
    mess += (((Document)data.getUserObject()).getURL().toString() + "\n");
    JOptionPane.showMessageDialog(null, mess, "Selected", JOptionPane.INFORMATION_MESSAGE);
    return true;
    private static boolean showTreeDialog(JPanel panel, Component defComp, String title)
    JEWTDialog dlg = OnePageWizardDialogFactory.createJEWTDialog(panel, defComp, title);
    dlg.setDefaultButton(JEWTDialog.BUTTON_OK);
    dlg.setOKButtonEnabled(true);
    return WizardLauncher.runDialog(dlg);
    private static final void LogMessage(String msg)
    oracle.ide.Ide.getLogManager().showLog();
    oracle.ide.Ide.getLogManager().getMsgPage().log(msg + "\n");
    static boolean EnableJPRInfo(Context context)
    Element element = (context != null ? context.getElement() : null);
    boolean bEnable = ((element != null) && (element instanceof oracle.jdeveloper.model.JProject));
    System.out.println("EnableJPRInfo : " + bEnable);
    return bEnable;
    public boolean update(IdeAction action, Context context)
    int cmdId = action.getCommandId();
    if (cmdId == JPR_DIALOG_CMD_ID)
    action.setEnabled(EnableJPRInfo(context));
    return true;
    return false;
    public void checkCommands(Context context, Controller activeController)
    this.supervisor().checkCommands(context, activeController);
    protected static IdeAction eiAction; // Element Info Action
    private static JMenuItem CreateTableInfoMenuItem(Controller ctrlr)
    if (eiAction == null)
    Icon mi = new ImageIcon(SampleTen.class.getResource("spy.gif"));
    eiAction = IdeAction.create(JPR_DIALOG_CMD_ID, // int cmdId,
    null, // String cmdClass,
    "Project Tree", // String name,
    new Integer('P'), // Integer mnemonic,
    null, // KeyStroke accelerator,
    mi, // Icon icon,
    null, // Object data,
    true // boolean enabled
    eiAction.setController(ctrlr);
    JMenuItem menuItem = Ide.getMenubar().createMenuItem(eiAction);
    return menuItem;
    //private static IdeAction actionTM;
    public void shutdown()
    // Do any necessary cleanup here
    public void initialize()
    Controller ctrlr = this;
    final NamedContextMenu CMenus[] =
    new NamedContextMenu("Project Tree", null), // Manual Override!
    // new NamedContextMenu("Table Explorer", Ide.getExplorerManager().getContextMenu()), // OK = Structure Pane
    for (int i = 0; i < CMenus.length; i++)
    NamedContextMenu nmcm = CMenus;
    ContextMenu menu = nmcm.getMenu();
    String menuName = nmcm.getName();
    ctxMenuListener cml = new ctxMenuListener(ctrlr,
    menuName);
    if (menu == null)
    final Class nodeClass = null; // Passing in the appropriate class
    // where you want this context menu to appear on will optimize this operation
    Ide.getNavigatorManager().addContextMenuListener(cml, nodeClass);
    else
    menu.addContextMenuListener(cml);
    MainWindow.View.add(CreateTableInfoMenuItem(ctrlr));
    public float version()
    return 1.0f;
    public float ideVersion()
    return oracle.ide.Ide.IDE_VERSION;
    public boolean canShutdown()
    return true;
    private static final class ctxMenuListener implements ContextMenuListener
    private Controller ctrlr;
    private String clsName;
    // Simple Menu Item
    private static JSeparator miSeparator = null;
    private JMenuItem miTableInfo = null;
    ctxMenuListener(Controller controller, String className)
    ctrlr = controller;
    clsName = className;
    public void poppingUp(ContextMenu popup)
    Context context = (popup == null) ? null : popup.getContext();
    if (context == null)
    return;
    if (miSeparator == null)
    miSeparator = new JSeparator();
    // popup.add(miSeparator);
    // Insert Simple MenuItem in the Menu
    if (EnableJPRInfo(context))
    // If it should be enabled, then display it!
    // Otherwise, dont bother showing gray menu!
    if (miTableInfo == null)
    miTableInfo = CreateTableInfoMenuItem(ctrlr);
    popup.add(miTableInfo);
    return;
    public void poppingDown(ContextMenu popup)
    // Do any necessary clean up!
    public boolean handleDefaultAction(Context context)
    return false;
    private static final class NamedContextMenu
    private String nm;
    private ContextMenu cm;
    NamedContextMenu(String nm, ContextMenu cm)
    this.nm = nm;
    this.cm = cm;
    String getName() { return nm; }
    ContextMenu getMenu() { return cm; }
    ======================== File TreePanel.java =============
    package jdevextensions.sampleten;
    import javax.swing.JPanel;
    import java.awt.BorderLayout;
    import javax.swing.JScrollPane;
    import oracle.ide.controls.tree.CustomJTree;
    import oracle.ide.controls.tree.JMutableTreeNode;
    import javax.swing.tree.DefaultTreeModel;
    import java.net.URL;
    import oracle.ide.controls.tree.JTreeCellData;
    import oracle.jdeveloper.model.JProject;
    import java.util.HashSet;
    import oracle.ide.model.Document;
    import javax.swing.Icon;
    import oracle.ide.util.TriStateBoolean;
    import oracle.jdeveloper.deploy.common.SelectedProjectFiles;
    import oracle.jdevimpl.deploy.common.JProjectSelectionFilter;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.Comparator;
    import oracle.ide.model.Element;
    import java.util.Collections;
    public class TreePanel
    extends JPanel
    BorderLayout borderLayout1 = new BorderLayout();
    JScrollPane scrollPane = new JScrollPane();
    JMutableTreeNode root = new JMutableTreeNode();
    DefaultTreeModel treeModel = new DefaultTreeModel(root, true);
    CustomJTree customJTree = new CustomJTree(treeModel);
    JProject prj = null;
    private HashSet spfFiles;
    private SelectedProjectFiles spf;
    private ArrayList filtersList;
    private JProjectSelectionFilter[] filtersArray;
    public TreePanel()
    this(null);
    public TreePanel(JProject jpr)
    this.prj = jpr;
    try
    jbInit();
    catch(Exception e)
    e.printStackTrace();
    public JMutableTreeNode getRoot()
    { return this.root; }
    private void jbInit() throws Exception
    this.setLayout(borderLayout1);
    scrollPane.getViewport().add(customJTree, null);
    this.add(scrollPane, BorderLayout.CENTER);
    customJTree.setRootVisible(true);
    root = getTreeNode(prj);
    filtersArray = null;
    spfFiles = null; // Release reference for gc.
    treeModel.setRoot(root);
    root.descendingUpdateNodes();
    private boolean canBeSelected(Object object)
    if (filtersArray != null)
    return JProjectSelectionFilter.canBeSelected(object, filtersArray);
    else if (filtersList != null)
    return JProjectSelectionFilter.canBeSelected(object, filtersList);
    else
    return JProjectSelectionFilter.canBeSelected0(object);
    private JMutableTreeNode getTreeNode(Document document)
    final Icon icon = document.getIcon();
    final String text = document.getShortLabel();
    final TriStateBoolean checkedState;
    if (spfFiles != null)
    final URL documentURL = document.getURL();
    if (documentURL == null)
    checkedState = TriStateBoolean.FALSE;
    else if (spf.isAutoInclude())
    checkedState = spfFiles.contains(documentURL)?TriStateBoolean.FALSE:TriStateBoolean.TRUE;
    else
    checkedState = spfFiles.contains(documentURL)?TriStateBoolean.TRUE:TriStateBoolean.FALSE;
    else
    checkedState = TriStateBoolean.TRUE;
    final JTreeCellData treeCellData = new JTreeCellData(icon, text, true, checkedState);
    treeCellData.setUserObject(document);
    final JMutableTreeNode treeNode = new JMutableTreeNode(treeCellData);
    final ArrayList listOfChildren = new ArrayList();
    final Iterator childrenIter = document.getChildren();
    if (childrenIter != null)
    while (childrenIter.hasNext())
    listOfChildren.add(childrenIter.next());
    // Sort children by short label.
    final Comparator childComparator = new Comparator()
    public int compare(Object o1, Object o2)
    final Element e1 = (Element) o1;
    final Element e2 = (Element) o2;
    final String l1 = e1.getShortLabel();
    final String l2 = e2.getShortLabel();
    if (l1 == l2) { return 0; }
    else if (l1 == null) { return -1; }
    else { return l1.compareTo(l2); }
    Collections.sort(listOfChildren, childComparator);
    final Iterator iter = listOfChildren.iterator();
    while (iter.hasNext())
    final Object child = iter.next();
    if (canBeSelected(child))
    final JMutableTreeNode childNode = getTreeNode((Document) child);
    treeNode.add(childNode);
    return treeNode;

  • I bought a refurbished iphone 5 from Verizon. The battery has to be recharged every day. I don't use it very much, yet I always have to put it on the charger, why is that ?

    I'm really annoyed that the battery in my iphone 5 loses it's charge so quickly, won't even make it through the day. I turned off some of the notifications and other features that I don't use but it doesn't seem to make any difference.

        mizzlizz70,
    It is very frustrating when you have to frequently charge your phone. Help has arrived and we are able to assist with your battery needs. With a fully charged battery please dial #2539 and leave the line open for 10 minutes. An automated announcement will play. Review the current battery level after the test call. Let us know how much the battery drained.
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Could I set breakpoint in the code of core Java classes in JDK?

    The programme never stop at this kind of breakpoint when debugging.
    How can I do that?

    It is MyEclipse I used.
    It remind me someting like "no line number information".
    or it is the jdk version problem ?

  • Need core API of IBASE

    Hi All,
    I am new to IBASE management and I urgently need the following information.
    I need the list of core API's related to IBASE Management in CRM. Currently I know this list of core API's in function group IB_CRM_API, but I could only find a very few API which returns the list of all IBASE's or very specific details of IBASE's like IBASE components.
    But my requirement is to get API to achieve the following functionality:
    1. To get the list of all service contracts for an IBASE or if  I am wrong, then the list of all service contracts related to each component of IBASE.
    2. To get the list of all service processes for every component of IBASE.
    3. To get the list of counters associated to a product/object/ibase component of IBASE.
    4. Updating the IBASE like  changing the status, for a product component, changing the quantity and identification details and for a object component, changing the identificatio n & address info & also to capture additional info in Notes, and for a text component, changing the description and identificaiton.
    5. Updating the IBASE like installing/dismantling the product/object components.
    6. Related to counter readings - API to get the list of all counter readings in CRM system based on some selection criteria.
    Thanks,
    Siva.

    Few API which I can recall currently are:
    CRM_FIND_IBASE_OS for reading IBase for given product guid.
    CRM_STATUS_READ for reading current status of IBase
    CRM_IBASE_COMP_FIND for reading details of components of IBase
    CRM_IBASE_GET_PARTNER and CRM_IBASE_COMP_GET_PARTNER to get the business partners associated with IBase at header level as well as component level respectively.
    CRM_IBASE_CHANGE and CRM_IBASE_COMP_CHANGE to modify Ibase at header level and component level respectively.
    CRM_IBASE_SAVE to save the modifications. ( followed by COMMIT WORK)
    Hope the above APIs will help you.
    Cheers,
    Ashish

  • Safari quits unexpectedly after 10 minutes just once every day?

    Hi everyone,
    Basically the question says it all. Every day without fail i'll open my Macbook and go onto safari, after 10 minutes or so of doing anything safari will just quit resulting in me losing whatever I was doing. After re-opening it's fine for the rest of the day/night and just does the exact thing every day?
    Any suggestions? It doesn't happen with any other browsers but Safari is my favourite so I don't particularly want to stop using it.
    Thanks

    Hi Linc,
    Thanks for replying, here is what you asked for:
    Step 1:
    07/04/2015 13:22:58.897 Safari[72295]: CGContextClipToRect: invalid context 0x0
    07/04/2015 13:36:05.412 Installer[72658]:  GList Safari 6.200000 is Higher  runtime version  : 6.200000  
    07/04/2015 13:36:05.413 Installer[72658]: terminateSafari
    07/04/2015 13:36:39.076 WindowServer[6321]: CGXDisableUpdate: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    07/04/2015 13:36:39.883 WindowServer[6321]: reenable_update_for_connection: UI updates were finally reenabled by application "Safari" after 1.81 seconds (server forcibly re-enabled them after 1.00 seconds)
    07/04/2015 14:13:44.073 Safari[72765]: CGContextClipToRect: invalid context 0x0
    Step 2:
    Process:         PluginProcess [49262]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit.framework/PluginProcess.app/Cont ents/MacOS/PluginProcess
    Identifier:      com.apple.WebKit.PluginProcess
    Version:         8600 (8600.2.5)
    Build Info:      WebKit2-7600002005000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [49096]
    User ID:         501
    PlugIn Path:       /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    PlugIn Identifier: com.macromedia.FlashPlayer-10.6.plugin
    PlugIn Version:    16.0.0.305 (16.0.0.305)
    Date/Time:       2015-03-16 23:37:40.452 +0000
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000008000ec
    VM Regions Near 0x8000ec:
    -->
        __TEXT                 0000000102683000-0000000102684000 [    4K] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebKit.framework/PluginProcess.app/Cont ents/MacOS/PluginProcess
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108d44866 0x108755000 + 6223974
    1   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108d361a3 0x108755000 + 6164899
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108dc370d 0x108755000 + 6743821
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108dbe8bd 0x108755000 + 6723773
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108dbec8f 0x108755000 + 6724751
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108dbd4e8 0x108755000 + 6718696
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108a71b83 0x108755000 + 3263363
    7   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b76ee4 0x108755000 + 4333284
    8   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b7c239 0x108755000 + 4354617
    9   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b7bee3 0x108755000 + 4353763
    10  com.macromedia.FlashPlayer-10.6.plugin 0x00000001087a0ffe 0x108755000 + 311294
    11  com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b7ee74 0x108755000 + 4365940
    12  com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b050da 0x108755000 + 3866842
    13  com.apple.WebKit               0x00000001027822e7 WebKit::NetscapePlugin::destroy() + 27
    14  com.apple.WebKit               0x000000010275caa5 WebKit::Plugin::destroyPlugin() + 15
    15  com.apple.WebKit               0x000000010277906f WebKit::PluginControllerProxy::destroy() + 69
    16  com.apple.WebKit               0x00000001028fc69a WebKit::WebProcessConnection::destroyPlugin(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>) + 82
    17  com.apple.WebKit               0x00000001028fda78 void IPC::callMemberFunctionImpl<WebKit::WebProcessConnection, void (WebKit::WebProcessConnection::*)(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>), Messages::WebProcessConnection::DestroyPlugin::DelayedReply, std::__1::tuple<unsigned long long, bool>, 0ul, 1ul>(WebKit::WebProcessConnection*, void (WebKit::WebProcessConnection::*)(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>), ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>, std::__1::tuple<unsigned long long, bool>&&, std::index_sequence<0ul, 1ul>) + 54
    18  com.apple.WebKit               0x00000001028fd9f3 void IPC::callMemberFunction<WebKit::WebProcessConnection, void (WebKit::WebProcessConnection::*)(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>), Messages::WebProcessConnection::DestroyPlugin::DelayedReply, std::__1::tuple<unsigned long long, bool>, std::make_index_sequence<2ul> >(std::__1::tuple<unsigned long long, bool>&&, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>, WebKit::WebProcessConnection*, void (WebKit::WebProcessConnection::*)(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>)) + 49
    19  com.apple.WebKit               0x00000001028fd9a5 void IPC::handleMessageDelayed<Messages::WebProcessConnection::DestroyPlugin, WebKit::WebProcessConnection, void (WebKit::WebProcessConnection::*)(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>)>( IPC::Connection*, IPC::MessageDecoder&, std::__1::unique_ptr<IPC::MessageEncoder, std::__1::default_delete<IPC::MessageEncoder> >&, WebKit::WebProcessConnection*, void (WebKit::WebProcessConnection::*)(unsigned long long, bool, ***::PassRefPtr<Messages::WebProcessConnection::DestroyPlugin::DelayedReply>)) + 133
    20  com.apple.WebKit               0x00000001028fc4ef WebKit::WebProcessConnection::didReceiveSyncMessage(IPC::Connection*, IPC::MessageDecoder&, std::__1::unique_ptr<IPC::MessageEncoder, std::__1::default_delete<IPC::MessageEncoder> >&) + 187
    21  com.apple.WebKit               0x00000001027c4420 IPC::Connection::dispatchSyncMessage(IPC::MessageDecoder&) + 134
    22  com.apple.WebKit               0x00000001027c23fd IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::MessageDecoder, std::__1::default_delete<IPC::MessageDecoder> >) + 79
    23  com.apple.WebKit               0x00000001027c2294 IPC::Connection::SyncMessageState::dispatchMessages(IPC::Connection*) + 198
    24  com.apple.WebKit               0x00000001027c21c2 IPC::Connection::SyncMessageState::dispatchMessageAndResetDidScheduleDispatchMe ssagesForConnection(IPC::Connection*) + 92
    25  com.apple.JavaScriptCore       0x000000010340bfd5 ***::RunLoop::performWork() + 421
    26  com.apple.JavaScriptCore       0x000000010340c6b2 ***::RunLoop::performWork(void*) + 34
    27  com.apple.CoreFoundation       0x00007fff8a998b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    28  com.apple.CoreFoundation       0x00007fff8a99851d __CFRunLoopDoSources0 + 445
    29  com.apple.CoreFoundation       0x00007fff8a9bb7f5 __CFRunLoopRun + 789
    30  com.apple.CoreFoundation       0x00007fff8a9bb0e2 CFRunLoopRunSpecific + 290
    31  com.apple.HIToolbox           0x00007fff94aeceb4 RunCurrentEventLoopInMode + 209
    32  com.apple.HIToolbox           0x00007fff94aecc52 ReceiveNextEventCommon + 356
    33  com.apple.HIToolbox           0x00007fff94aecae3 BlockUntilNextEventMatchingListInMode + 62
    34  com.apple.AppKit               0x00007fff8f855533 _DPSNextEvent + 685
    35  com.apple.AppKit               0x00007fff8f854df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    36  com.apple.AppKit               0x00007fff8f84c1a3 -[NSApplication run] + 517
    37  com.apple.WebKit               0x000000010275fec9 int WebKit::ChildProcessMain<WebKit::PluginProcess, WebKit::PluginProcessMainDelegate>(int, char**) + 401
    38  com.apple.WebKit.PluginProcess 0x0000000102683d4f 0x102683000 + 3407
    39  libdyld.dylib                 0x00007fff8dc267e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff942d0d16 kevent + 10
    1   libdispatch.dylib             0x00007fff9043ddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff9043d9ee _dispatch_mgr_thread + 54
    Thread 2:: BackgroundThread
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19cfb 0x108755000 + 3951867
    3   com.macromedia.FlashPlayer-10.6.plugin 0x000000010876464e 0x108755000 + 63054
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 3:: BackgroundThread
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19cfb 0x108755000 + 3951867
    3   com.macromedia.FlashPlayer-10.6.plugin 0x000000010876464e 0x108755000 + 63054
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 4:: BackgroundThread
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19cfb 0x108755000 + 3951867
    3   com.macromedia.FlashPlayer-10.6.plugin 0x000000010876464e 0x108755000 + 63054
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 5:: BackgroundThread
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19cfb 0x108755000 + 3951867
    3   com.macromedia.FlashPlayer-10.6.plugin 0x000000010876464e 0x108755000 + 63054
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 6:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib         0x00007fff942ce686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff942cdc42 mach_msg + 70
    2   com.apple.audio.CoreAudio     0x00007fff8a29770c HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio     0x00007fff8a29769a HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio     0x00007fff8a295ad9 HALC_ProxyIOContext::IOWorkLoop() + 1161
    5   com.apple.audio.CoreAudio     0x00007fff8a2955bf HALC_ProxyIOContext::IOThreadEntry(void*) + 83
    6   com.apple.audio.CoreAudio     0x00007fff8a295497 HALB_IOThread::Entry(void*) + 75
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 7:: ScriptTimeout
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19d6e 0x108755000 + 3951982
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108945f46 0x108755000 + 2035526
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 8:: CoreLoop
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19d6e 0x108755000 + 3951982
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108a9f84f 0x108755000 + 3450959
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff942d06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8a5b6f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8a5b6ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8a5a1191 start_wqthread + 13
    Thread 10:: ScriptTimeout
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19d6e 0x108755000 + 3951982
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108945f46 0x108755000 + 2035526
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 11:: CoreLoop
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19d6e 0x108755000 + 3951982
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108a9f84f 0x108755000 + 3450959
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19cfb 0x108755000 + 3951867
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108806ad0 0x108755000 + 727760
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff942d0386 __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff8a63e7c8 nanosleep + 163
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b198f6 0x108755000 + 3950838
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108be6a4a 0x108755000 + 4790858
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19d6e 0x108755000 + 3951982
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108be6ffd 0x108755000 + 4792317
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 15:: NetStreamDataFeeder
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19d6e 0x108755000 + 3951982
    3   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108c04b2a 0x108755000 + 4913962
    4   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b0d 0x108755000 + 3951373
    5   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19b52 0x108755000 + 3951442
    6   com.macromedia.FlashPlayer-10.6.plugin 0x0000000108b19897 0x108755000 + 3950743
    7   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    8   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff942d00fa __psynch_cvwait + 10
    1   libsystem_c.dylib             0x00007fff8a5b8fb9 _pthread_cond_wait + 869
    2   com.apple.AppleGVAFramework   0x000000010d6657e8 0x10d631000 + 215016
    3   com.apple.AppleGVAFramework   0x000000010d665fca 0x10d631000 + 217034
    4   libsystem_c.dylib             0x00007fff8a5b4772 _pthread_start + 327
    5   libsystem_c.dylib             0x00007fff8a5a11a1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff942d06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8a5b6f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8a5b6ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8a5a1191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000125055160  rbx: 0x00000001195c03a0  rcx: 0x0000000000000010  rdx: 0x0000000000000000
      rdi: 0x0000000000800000  rsi: 0x00000001195c03a0  rbp: 0x00007fff5d57aaf0  rsp: 0x00007fff5d57aab0
       r8: 0x0000000122726038   r9: 0x000000013000d301  r10: 0x000000012ff44e70  r11: 0x0000000120da5ab0
      r12: 0x0000000000800000  r13: 0x0000000124d57b20  r14: 0x000000010faa7c08  r15: 0x00000001195c0000
      rip: 0x0000000108d44866  rfl: 0x0000000000010246  cr2: 0x00000000008000ec
    Logical CPU: 3
    Binary Images:
           0x102683000 -        0x102683fff  com.apple.WebKit.PluginProcess (8600 - 8600.2.5) <A0663AF7-4E0B-363C-B0A1-7D2E1947CC91> /System/Library/StagedFrameworks/Safari/WebKit.framework/PluginProcess.app/Cont ents/MacOS/PluginProcess
           0x102689000 -        0x102689fff  PluginProcessShim.dylib (7600.2.5) <C829A765-0982-3C98-8FDE-AC7BF092FC9E> /System/Library/StagedFrameworks/Safari/WebKit.framework/PluginProcess.app/Cont ents/MacOS/PluginProcessShim.dylib
           0x10271e000 -        0x102a75fff  com.apple.WebKit (8600 - 8600.2.5) <AA61A445-C134-376C-8D6D-3B16122BBA27> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x102d4a000 -        0x102eb1fff  com.apple.WebKitLegacy (8600 - 8600.2.5) <1B78D9C0-BC7B-373D-AAAD-03DAD6E01C87> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
           0x102fa4000 -        0x1034c9ff7  com.apple.JavaScriptCore (8600 - 8600.2.1) <8E8B1C8D-E8F1-38E9-83FB-89F03A176BBC> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x103636000 -        0x104725fff  com.apple.WebCore (8600 - 8600.2.1) <B0606FBC-EE83-3D82-B2EE-7C1DA4FBCA3E> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
           0x10652c000 -        0x106531fff  com.apple.audio.AppleHDAHALPlugIn (2.4.7 - 2.4.7fc4) <EA592C9E-AD15-3DD0-85BE-D47BBBE04286> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x106637000 -        0x10663aff7 +com.macromedia.Flash Player.plugin (16.0.0.305 - 16.0.0.305) <A73972EA-51BC-3F52-BDBD-42A18A10EAA2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
           0x10666f000 -        0x106674fff  com.apple.agl (3.2.1 - AGL-3.2.1) <328CAFF6-C443-303F-923A-F9EEA8E71794> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10667c000 -        0x106681fff  com.apple.IOAccelerator (74.17 - 74.17) <A0D327B5-D996-3CE2-A6E3-BFFDD8032DA9> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
           0x106689000 -        0x106695fff  libGPUSupportMercury.dylib (8.10.1) <1DE2D7F9-C031-3BBF-BD5F-4E1208B6F296> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
           0x106a84000 -        0x106c42fff  GLEngine (8.10.1) <1BD4D913-CE6C-3389-B4E1-FC7352E4C23F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x106c79000 -        0x106de9fff  libGLProgrammability.dylib (8.10.1) <3E488CEF-5751-3073-B8EE-0B4CA39CB6AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x106e21000 -        0x1072a9ff7  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.16.80 - 8.1.6) <18656AC1-59BB-31F2-966B-0E050AC1DE97> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
           0x10741d000 -        0x107448fff  GLRendererFloat (8.10.1) <055EC8E7-2D7E-370C-96AD-DBEEDB106927> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x107451000 -        0x10745afe7  libcldcpuengine.dylib (2.2.16) <B6E3B14B-1EAC-3FDD-8AED-87231A033BED> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x108755000 -        0x109bd1fff +com.macromedia.FlashPlayer-10.6.plugin (16.0.0.305 - 16.0.0.305) <C5AEEAB9-7A07-3895-A1B4-9F6C089CB747> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
           0x10b3e7000 -        0x10b3e8fff  com.apple.VideoDecodeAcceleration (1.1 - 8) <E4C8F57D-B66A-3BE4-A6D9-54B7E7BF4E81> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceler ation
           0x10ba72000 -        0x10ba7dfff  AppleIntelIVBVA (8.16.80) <173867C9-0E2C-3ED9-A20E-AB4FBA410C0F> /System/Library/Extensions/AppleIntelIVBVA.bundle/Contents/MacOS/AppleIntelIVBV A
           0x10d631000 -        0x10d7bcff7  com.apple.AppleGVAFramework (5.2.10 - 5.2.10) <DA3F2807-0ACC-3ACE-9940-8AEF05153BD2> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x11014c000 -        0x1102a1ff7  com.apple.audio.units.Components (1.9.1 - 1.9.1) <58B9FC07-053C-3123-AFBC-5A31851C379F> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x112fa5000 -        0x1130d9ff7  com.apple.AppleIntelHD4000GraphicsVADriver (8.16.80 - 8.1.6) <624AB55A-57E4-3AA4-BF57-9E64D0A6983D> /System/Library/Extensions/AppleIntelHD4000GraphicsVADriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsVADriver
        0x7fff62283000 -     0x7fff622b793f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8984f000 -     0x7fff898b8fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff898b9000 -     0x7fff899d192f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff899d2000 -     0x7fff89deffff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8a264000 -     0x7fff8a268ff7  com.apple.CommonPanels (1.2.5 - 94) <5F81D593-4B87-3DCC-B934-625D436B4CB1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8a269000 -     0x7fff8a269ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8a26a000 -     0x7fff8a2cdfff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8a2ce000 -     0x7fff8a2efff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
        0x7fff8a2f0000 -     0x7fff8a59ffff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8a5a0000 -     0x7fff8a66cff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8a66d000 -     0x7fff8a66eff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a79a000 -     0x7fff8a84cff7  com.apple.LaunchServices (539.11 - 539.11) <A86F44E5-F285-3029-A5D1-00CD3C231A08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a84d000 -     0x7fff8a87bff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
        0x7fff8a889000 -     0x7fff8a891fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8a892000 -     0x7fff8a8e8fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8a8e9000 -     0x7fff8a900fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8a901000 -     0x7fff8a903fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8a910000 -     0x7fff8a91cfff  libCSync.A.dylib (340) <1ED9A6B9-D1FF-3745-A289-981ACE0C89D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8a91d000 -     0x7fff8a985ff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
        0x7fff8a986000 -     0x7fff8ab70ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8ab71000 -     0x7fff8ab73fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8aba3000 -     0x7fff8ac98fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8ac99000 -     0x7fff8acc5ff7  libRIP.A.dylib (340) <F5269ACD-7A67-393C-8A57-862D28C5723F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8ace1000 -     0x7fff8ad2dfff  com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8ad2e000 -     0x7fff8ad6dff7  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
        0x7fff8ad6e000 -     0x7fff8ad73fff  com.apple.OpenDirectory (10.8 - 151.10) <1F47EC96-7403-3690-8D8D-C31D3B6FDA0A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8adc6000 -     0x7fff8b021ff7  com.apple.QuartzComposer (5.1 - 287.1) <D1DD68D1-05D5-3037-ABB6-BF6EB183C155> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8b022000 -     0x7fff8b050fff  com.apple.CoreServicesInternal (154.4 - 154.4) <EE77C328-BCC7-3EBD-B3BC-E0E48537D4FF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8b051000 -     0x7fff8b05dfff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b1da000 -     0x7fff8b4abfff  com.apple.security (7.0 - 55719.16.5) <0EEE5DDE-77FB-374A-B1E0-6B19CB44E8EC> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b4ac000 -     0x7fff8b4cdfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8b4df000 -     0x7fff8b4f3fff  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
        0x7fff8b54f000 -     0x7fff8b588ff7  libssl.0.9.8.dylib (52.1) <F0B242C3-917A-37F2-BABD-F9F23310E68A> /usr/lib/libssl.0.9.8.dylib
        0x7fff8b589000 -     0x7fff8b58aff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8b58b000 -     0x7fff8b58cfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b811000 -     0x7fff8b836ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8b837000 -     0x7fff8b9d2fef  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
        0x7fff8b9d3000 -     0x7fff8b9d7fff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8b9d8000 -     0x7fff8be14fff  com.apple.VideoToolbox (1.0 - 926.106) <B1185D9D-02AC-3D27-B894-21B1179F2AEF> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8bea5000 -     0x7fff8c835a07  com.apple.CoreGraphics (1.600.0 - 340) <4E39B001-BD9B-3A60-A495-C7F908F52C44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8cb16000 -     0x7fff8cb29ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8cb2a000 -     0x7fff8cb2afff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8cdee000 -     0x7fff8ce10ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8ce11000 -     0x7fff8ceacfff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8cead000 -     0x7fff8cf06ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8cf07000 -     0x7fff8cf08fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8d876000 -     0x7fff8d8c7ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8d8c8000 -     0x7fff8d985ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8d9c2000 -     0x7fff8d9cffff  com.apple.AppleFSCompression (49 - 1.0) <E616053D-D3C2-3600-B8DF-A5E0D9665634> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8da38000 -     0x7fff8da38fff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8da49000 -     0x7fff8dafcff7  com.apple.PDFKit (2.8.5 - 2.8.5) <EAAED40E-7B2C-3312-826E-26A9DEDBF0FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8dafd000 -     0x7fff8dafdfff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8db6e000 -     0x7fff8dbb1ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8dbb2000 -     0x7fff8dbd2fff  libPng.dylib (852) <CCBFA9A9-33C0-3189-AFE0-A77E831EEBA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8dbd3000 -     0x7fff8dbd7ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8dbd8000 -     0x7fff8dc23fff  com.apple.CoreMedia (1.0 - 926.106) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8dc24000 -     0x7fff8dc27ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8dc28000 -     0x7fff8dc2bfff  com.apple.AppleSystemInfo (2.0 - 2) <C9D7F3A6-F926-39F3-8F55-A3A137DDAE50> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8dcd4000 -     0x7fff8dcebfff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8dcec000 -     0x7fff8dd18fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <CCF2C41D-93D0-3547-A2B1-D6A69932CADF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8dd19000 -     0x7fff8ddadff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8ddb2000 -     0x7fff8ddb3ff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
        0x7fff8ddb4000 -     0x7fff8de1cfff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8de1d000 -     0x7fff8de1dfff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8de1e000 -     0x7fff8de7aff7  com.apple.Symbolication (1.3 - 93) <D3AAB36A-D5EB-3044-BE9D-0B77E64C00FC> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8dec7000 -     0x7fff8decdfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8dece000 -     0x7fff8ded2fff  libGIF.dylib (852) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8def6000 -     0x7fff8df75ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8df78000 -     0x7fff8dfc2ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8dfc3000 -     0x7fff8e0ddfff  com.apple.coreavchd (5.6.0 - 5600.4.16) <85670361-96CA-3805-B981-B41B47E99A37> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8e0de000 -     0x7fff8e11bfef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8e11c000 -     0x7fff8e147fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8e148000 -     0x7fff8e156ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
        0x7fff8e2e3000 -     0x7fff8e2e5ff7  com.apple.print.framework.Print (8.0 - 258) <8F243E49-021F-3892-B555-3010A7F450A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8e2e6000 -     0x7fff8e2f4fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8e2f5000 -     0x7fff8e3f3fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8e3f6000 -     0x7fff8e463ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8e729000 -     0x7fff8e72bfff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8e72c000 -     0x7fff8e774fff  libcurl.4.dylib (69.2.71) <F52E1881-A425-3AE9-8386-A434F10AE0A2> /usr/lib/libcurl.4.dylib
        0x7fff8e775000 -     0x7fff8ead4fff  com.apple.Foundation (6.8 - 945.19) <C98E55BA-553B-314B-B056-849FFB20C220> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ead5000 -     0x7fff8eb24fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8eb25000 -     0x7fff8ec96ff7  com.apple.QTKit (7.7.1 - 2599.48) <D5C5148C-C4FF-3C8E-8F7B-77F2226727F3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8ec97000 -     0x7fff8ec9fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8eca0000 -     0x7fff8ef57ff7  com.apple.MediaToolbox (1.0 - 926.106) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8ef58000 -     0x7fff8f106fff  com.apple.QuartzCore (1.8 - 304.4) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f158000 -     0x7fff8f15aff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
        0x7fff8f43a000 -     0x7fff8f4d8ff7  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
        0x7fff8f4d9000 -     0x7fff8f4e2fff  com.apple.CommerceCore (1.0 - 26.3) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8f6d8000 -     0x7fff8f6fffff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8f700000 -     0x7fff9032dfff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff9032e000 -     0x7fff90400ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff90401000 -     0x7fff90408fff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90409000 -     0x7fff9040efff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9040f000 -     0x7fff90438fff  libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
        0x7fff90439000 -     0x7fff9044eff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff9044f000 -     0x7fff905a1fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff905a2000 -     0x7fff9062fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff90630000 -     0x7fff90631ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff9064c000 -     0x7fff90669ff7  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
        0x7fff90b74000 -     0x7fff90b7bfff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90b7c000 -     0x7fff910ecff7  com.apple.CoreAUC (6.22.03 - 6.22.03) <A77BC97A-B695-3F7E-8696-5B2357C2726B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff910ed000 -     0x7fff91100ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff91101000 -     0x7fff91144ff7  com.apple.bom (12.0 - 192) <0EFE0F2D-B6DE-3D1E-93C2-EED6D96F70A2> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff91145000 -     0x7fff91145fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff91146000 -     0x7fff91151ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff91152000 -     0x7fff911a7ff7  libTIFF.dylib (852) <0CA1662F-EB05-34DE-B9BA-0A03EC59B846> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff911a8000 -     0x7fff91242fff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91243000 -     0x7fff913a1fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff913a2000 -     0x7fff913adff7  com.apple.DisplayServicesFW (2.7.2 - 357) <8AE56B58-A521-3F29-AAE2-10ADADBD30EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff91624000 -     0x7fff91670ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff91a5c000 -     0x7fff91a8dff7  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
        0x7fff91a8e000 -     0x7fff91ba7fff  com.apple.ImageIO.framework (3.2.2 - 852) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff91be3000 -     0x7fff91c1efff  com.apple.LDAPFramework (2.4.28 - 194.5) <7E4F2C08-0010-34AE-BC46-149B7EE8A0F5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff91c1f000 -     0x7fff91c7efff  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
        0x7fff91e0a000 -     0x7fff91e8bfff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff91f39000 -     0x7fff91f7dfff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff91f92000 -     0x7fff91f96fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff91f97000 -     0x7fff9223bff7  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
        0x7fff92288000 -     0x7fff9230aff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9230b000 -     0x7fff9230bfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff92323000 -     0x7fff92330ff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9239b000 -     0x7fff923e8fff  com.apple.CoreMediaIO (309.0 - 4163.1) <8FD1C1A9-25C5-3B9E-A76D-BE813253B358> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff923e9000 -     0x7fff923e9fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff923ea000 -     0x7fff92416fff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff92479000 -     0x7fff92480ff7  libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib
        0x7fff92481000 -     0x7fff92527ff7  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
        0x7fff92528000 -     0x7fff92619ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <5C56181F-1E9F-336A-B7BB-620565A8BD6E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff935da000 -     0x7fff935dafff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff935db000 -     0x7fff939d2fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff939d3000 -     0x7fff939e2ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
        0x7fff93a25000 -     0x7fff93a44ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff93b9f000 -     0x7fff93bd5ff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
        0x7fff93bd6000 -     0x7fff93cd3fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff93cfc000 -     0x7fff93d1eff7  com.apple.Kerberos (2.0 - 1) <416543F5-E7AF-3269-843F-C8CDA8DD0FFA> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff93d1f000 -     0x7fff93d23fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff93d24000 -     0x7fff93d7eff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff93d7f000 -     0x7fff93d91ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff93d92000 -     0x7fff93e9efff  libFontParser.dylib (84.7) <C3D1121B-B066-34C3-9D31-ADDF387C0B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff93e9f000 -     0x7fff93edfff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff93ef7000 -     0x7fff93f1eff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff93f26000 -     0x7fff93f2bfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff93f5f000 -     0x7fff94024ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff94025000 -     0x7fff9402bfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff940d0000 -     0x7fff9413eff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff9413f000 -     0x7fff94143fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff94144000 -     0x7fff94246fff  libJP2.dylib (852) <01E502E9-7FD3-3A5D-8EA4-2DC8C56E0497> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff94247000 -     0x7fff94255ff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff9427f000 -     0x7fff94282fff  libRadiance.dylib (852) <139962CD-21E2-3D31-9F47-D5F2D6C2C2BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff94283000 -     0x7fff942bdff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff942be000 -     0x7fff942d9ff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff94322000 -     0x7fff9434afff  libJPEG.dylib (852) <4E159C31-1B41-3EFF-89EC-3F7BC9053F2C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff9434b000 -     0x7fff9444afff  libcrypto.0.9.8.dylib (52.1) <796E5F5E-36BF-3B1B-A519-C9A1682199C4> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94458000 -     0x7fff944afff7  com.apple.ScalableUserInterface (1.0 - 1) <93C14595-6172-37E9-88F2-CBC80A1C54D0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff944b0000 -     0x7fff944c5fff  com.apple.ImageCapture (8.0 - 8.0) <71B24609-DEE9-3927-9C82-62E72270299C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff9457e000 -     0x7fff9457efff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9460a000 -     0x7fff9460dfff  com.apple.help (1.3.2 - 42) <418A9A41-BCB4-32A2-97ED-3A388F69CA9D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9460e000 -     0x7fff94783fff  com.apple.CFNetwork (596.6.3 - 596.6.3) <883CE0E5-17B6-3227-B7B1-0CCC16D2739E> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff94785000 -     0x7fff9479ffff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff947a0000 -     0x7fff94820ff7  com.apple.ApplicationServices.ATS (341.2 - 341.2) <0EF1BB57-71AA-304D-A455-55CBE0A4983A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff94821000 -     0x7fff94a21fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff94a22000 -     0x7fff94a2cfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff94a30000 -     0x7fff94a31fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff94a32000 -     0x7fff94a81ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff94a8d000 -     0x7fff94dbdfff  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
        0x7fff94dbe000 -     0x7fff94e0dff7  libFontRegistry.dylib (100) <F7EC0287-58E4-3ABE-A45E-B105A68EA76E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks

  • Dots Every Day in Calendar Month View

    I have the dots indicating an event on every day of the monthly view in the calendar even though there aren't any events on those dates. I am syncing with Outlook 2003 on Windows XP. I have read through posts here and:
    - Had some birthdays set up in the contacts but removed them
    - Do not have any events where the end time is earlier than the start time
    I have tried many different things including turning calendar syncing off, replacing all of the info for calendars, etc. but cannot get it fixed.
    Any other suggestions? How can I delete the info on the Calendar. Turning off syncing doesn't do it. Do I need to do a full reset?
    Thanks.

    Thanks. Your suggestion did the trick.
    I assumed it marked every date in perpetuity with a dot. I went backwards until I found a month without a dot. After a couple of dozen clicks on the back arrow, I realized if I held it down it would go faster.
    Went back to 1971 and found an entry for a birth date. The interesting thing is, is that it was in October. November looked fine and then in December, the dots started occurring. Deleted the entry and everything looks good again.
    Thanks.

  • Load Every Day 2LIS_03_BX (Full Load landscape) BI 7.0

    Hi,
    We want a simple landscape of material stocks from an SAP R/3 system to SAP BW.  We would like to transfer the complete current material stock for a calendar day (u201CSnapshotsu201D), every day. We think that the correct datasource for taht is 2LIS_03_BX, in "How To ..." documents appears that in an Infopackage for this datasource you can set an indicator:
    - Full update
    - Create Opening Balance
    But in BI 7.0 this option doesn't appears ... we can set only "Generate Initial Status" indicator, in infopazkage ...
    We try another way, creating two differents DTP, one in "Full" mode and other in "Initial Non-Cumulative for Non-Cumulative Values", but it doesn't works ... The first time we load all data from stock inizialitation (R/3 transaction MCNB), is correct, but the netx day appears the same data ... Any Idea ? Is necessary to execute the inizialitation process in R/3 every day and after that the data load to BW ¿?
    We know that we can create a Datasource with R/3 table MARD, but we want to check this landscape ...
    Thanks in advanced.
    Best Regards,
    Carlos.

    Hello,
    thanks for your answer, it was very useful for us.
    But We don't understand your second paragraph, when you say "use the snapshot capability" ...
    We thinked that with the solution you described in the first paragraph we can implement "snapshot capability", without
    initializing delta or using LO cockpit and delta jobs ? Deleting setup table and after executing setup everyday, don't we obtain a snapshot scenario ? Because we think that with delta queues is not possible to execute setup process, is that true ?
    Another thing, I read the document you recommended, and is an old version, because if you see the infopackage to load BX appears the option full, page eleven, and the datasource is 2LIS_40_S278 ... for that we thinked that is not useful for us ... We read about snapshot capability in How To ... handle Inventory Management Scenarios in BW (Version 1.3 - January 2005), but is an old version too. We think for Bi 7.0 there is no documentation.
    Best regards,
    Carlos.

  • User locked every day

    Hello all,
    It's quite funny, but I am trying to start to work on this issue for quite a long time, but I never had the time to do it.
    Every day my user is getting locked on a system, I unlock the pwd and it works. Next day it is the same.
    What can be the reason ?
    There are no jobs running under this user that can lock it, nor any RFCs.
    Any other ideas ?
    Thanks,

    might be 2 reasons for lock the id :
    1. if any other user login with your id . then follw what was previously posted by user
    or
    2.if user id is mapped with some RFC connection then follw below link:
    pls refer below blog might be it's helpful ur issue:
    http://scn.sap.com/thread/1899890

Maybe you are looking for

  • How can I route internet traffic over IPSec point to point?

    I have a remote site that connects by IPSEC with the end points on a router and ASA. The connection is working fine and the remote site can access my other networks at the main headquarters. The problem is, currently this remote site is accessing the

  • After Effects CS5 Configuration Error 3

    I'm really getting frustrated with Adobe After Effects CS5 right now. For the last month, I have been getting a message that says "Configuration Error 3, Please re-install the product". I uninstall it, then reinstall After Effects, and I still have t

  • Adding images to the stage

    Hello, I am currently working on a photo gallery which reads an XML file and load all picture from it. I am doing all by AS3 by adding bitmapdata to the container by loader object. What I want to do is when I add these images they behave like a butto

  • Has anyone else had this weird issue?

    It doesn't happen every time, but often when I travel on a coach for a long distance journey my iPhone 5c starts going crazy. For example when I'm using an app such as Facebook, I might be in the middle of typing a post out and the screen might go ba

  • FIELDSELECTION_ITEM method in ME_PROCESS_PO_CUST Badi

    Hi all, this question was posted before but looks not answered directly so I am posting again as I have similar problem. We have implemented BADI ME_PROCESS_PO_CUST especially on method FIELDSELECTION_ITEM, I look at the sample code and apply almost